-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1:3306
-- Generation Time: Dec 09, 2025 at 02:52 AM
-- Server version: 8.3.0
-- PHP Version: 8.2.18

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!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 */;

--
-- Database: `femauito_wp313_malware`
--

-- --------------------------------------------------------

--
-- Table structure for table `tds_billing`
--

DROP TABLE IF EXISTS `tds_billing`;
CREATE TABLE IF NOT EXISTS `tds_billing` (
  `id` int NOT NULL AUTO_INCREMENT,
  `user_id` int NOT NULL,
  `billing_first_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `billing_last_name` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `billing_company_name` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `billing_vat_number` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `billing_address` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `billing_country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `billing_city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `billing_county` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `billing_post_code` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `billing_phone` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `billing_email` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tds_companies`
--

DROP TABLE IF EXISTS `tds_companies`;
CREATE TABLE IF NOT EXISTS `tds_companies` (
  `id` int NOT NULL AUTO_INCREMENT,
  `company_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `billing_cui` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `billing_j` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `billing_address` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `billing_city` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `billing_country` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `billing_email` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `billing_bank_account` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `billing_post_code` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `billing_vat_number` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `options` longtext COLLATE utf8mb4_unicode_520_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `tds_companies`
--

INSERT INTO `tds_companies` (`id`, `company_name`, `billing_cui`, `billing_j`, `billing_address`, `billing_city`, `billing_country`, `billing_email`, `billing_bank_account`, `billing_post_code`, `billing_vat_number`, `options`, `created_at`) VALUES
(1, 'Demo Company', '75864589', '10/120/2021', '2656 Farm Meadow Drive', 'Tucson', 'Arizona', 'yourcompany@website.com', 'NL43INGB4186520410', '85712', '75864589', 'a:1:{s:15:\"td_demo_content\";i:1;}', '2022-02-22 08:53:18');

-- --------------------------------------------------------

--
-- Table structure for table `tds_coupons`
--

DROP TABLE IF EXISTS `tds_coupons`;
CREATE TABLE IF NOT EXISTS `tds_coupons` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(35) COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` varchar(35) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(35) COLLATE utf8mb4_unicode_ci NOT NULL,
  `usage_limit` int DEFAULT NULL,
  `desc` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tds_options`
--

DROP TABLE IF EXISTS `tds_options`;
CREATE TABLE IF NOT EXISTS `tds_options` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=71 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `tds_options`
--

INSERT INTO `tds_options` (`id`, `name`, `value`, `created_at`) VALUES
(1, 'version', '1.7', '2022-02-22 08:52:45'),
(2, 'payment_page_id', '27', '2022-02-22 08:52:46'),
(3, 'my_account_page_id', '28', '2022-02-22 08:52:46'),
(4, 'create_account_page_id', '29', '2022-02-22 08:52:46'),
(5, 'curr_name', 'USD', '2022-02-22 08:52:46'),
(6, 'curr_pos', 'left_space', '2022-02-22 08:52:46'),
(7, 'curr_th_sep', ',', '2022-02-22 08:52:46'),
(8, 'curr_dec_sep', '.', '2022-02-22 08:52:46'),
(9, 'curr_dec_no', '0', '2022-02-22 08:52:46'),
(10, 'td_demo_content', '1', '2022-02-22 08:53:18'),
(11, 'go_wizard', '1', '2022-02-22 08:53:18'),
(12, 'wizard_company_complete', '1', '2022-02-22 08:53:18'),
(13, 'wizard_payments_complete', '1', '2022-02-22 08:53:18'),
(14, 'wizard_plans_complete', '1', '2022-02-22 08:53:18'),
(15, 'wizard_locker_complete', '1', '2022-02-22 08:53:18'),
(16, 'disable_wizard', '1', '2022-02-22 08:53:18'),
(17, 'from_name', 'Online Shop in Dubai, UAE', '2024-07-05 08:59:09'),
(18, 'from_email', 'admin@onlineincshop.com', '2024-07-05 08:59:09'),
(19, 'admin_notice_emails', 'admin@onlineincshop.com', '2024-07-05 08:59:09'),
(20, 'email_footer_text', '&copy; Online Shop in Dubai, UAE', '2024-07-05 08:59:09'),
(21, 'register_email_enabled', '1', '2024-07-05 08:59:09'),
(22, 'register_email_enabled_admin', '1', '2024-07-05 08:59:09'),
(23, 'register_email_subject', '[%blogname%] Activate account', '2024-07-05 08:59:09'),
(24, 'register_email_subject_admin', '[%blogname%] New user registration', '2024-07-05 08:59:09'),
(25, 'email_logo', '', '2025-12-09 02:38:26'),
(26, 'register_email_body', '<h3>Welcome onboard!</h3>\r\n				<p>Hello %name%,</p>\r\n				<p>Thank you for registering on %blogname%! To activate your account, please visit the following link:</p>\r\n				<p><a href=\"%verification_link%\">%verification_link%</a></p>', '2025-12-09 02:38:26'),
(27, 'register_email_body_admin', '<h3>New user!</h3>\r\n				<p>A new user has registered on your website!</p>\r\n				<p>Username: %username%<br>\r\n				Email: %useremail%</p>', '2025-12-09 02:38:26'),
(28, 'optin_email_enabled', '1', '2025-12-09 02:38:26'),
(29, 'optin_email_enabled_admin', '0', '2025-12-09 02:38:26'),
(30, 'optin_email_subject', '[%blogname%] Confirm subscription', '2025-12-09 02:38:26'),
(31, 'optin_email_subject_admin', '', '2025-12-09 02:38:26'),
(32, 'optin_email_body', '<h3>Welcome onboard!</h3>\r\n				<p>Hello,</p>\r\n				<p>Thank you for subscribing to %blogname%! To confirm your subscription, please visit the following link:</p>\r\n				<p><a href=\"%optin_confirm_link%\">%optin_confirm_link%</a></p>', '2025-12-09 02:38:26'),
(33, 'optin_email_body_admin', '', '2025-12-09 02:38:26'),
(34, 'password_email_enabled', '1', '2025-12-09 02:38:26'),
(35, 'password_email_enabled_admin', '0', '2025-12-09 02:38:26'),
(36, 'password_email_subject', '[%blogname%] Password reset', '2025-12-09 02:38:26'),
(37, 'password_email_subject_admin', '', '2025-12-09 02:38:26'),
(38, 'password_email_body', '<h3>Password reset</h3>\r\n				<p>Hello %name%,</p>\r\n				<p>Someone has requested a password reset for your account.</p>\r\n				<p>To reset your password, visit the following address: <a href=\"%pass_reset_link%\">%pass_reset_link%</a>.</p>\r\n				<p>If this was a mistake, just ignore this email and nothing will happen.</p>', '2025-12-09 02:38:26'),
(39, 'password_email_body_admin', '', '2025-12-09 02:38:26'),
(40, 'subscription_email_enabled', '1', '2025-12-09 02:38:26'),
(41, 'subscription_email_enabled_admin', '1', '2025-12-09 02:38:26'),
(42, 'subscription_email_subject', '[%blogname%] Subscription confirmation', '2025-12-09 02:38:26'),
(43, 'subscription_email_subject_admin', '[%blogname%] New subscriber', '2025-12-09 02:38:26'),
(44, 'subscription_email_body', '<h3>Subscription confirmation</h3>\r\n				<p>Hello %name%,</p>\r\n				<p>Thank you for subscribing to %blogname%!</p>\r\n				<p>Subscription plan: %subscription_name%<br>\r\n				Subscription price: %subscription_price%</p>\r\n				%direct_bank_info%', '2025-12-09 02:38:26'),
(45, 'subscription_email_body_admin', '<h3>New subscription</h3>\r\n				<p>A new user has subscribed to your website.</p>\r\n				<p>Username: %username%<br>\r\n				Subscription plan: %subscription_name%<br>\r\n				Subscription price: %subscription_price%</p>', '2025-12-09 02:38:26'),
(46, 'renewal_email_enabled', '1', '2025-12-09 02:38:26'),
(47, 'renewal_email_enabled_admin', '0', '2025-12-09 02:38:26'),
(48, 'renewal_email_subject', '[%blogname%] Subscription renewal', '2025-12-09 02:38:26'),
(49, 'renewal_email_subject_admin', '[%blogname%] Subscription renewal', '2025-12-09 02:38:26'),
(50, 'renewal_email_body', '<h3>Subscription renewal</h3>\r\n				<p>Hello %name%,</p>\r\n				<p>Your subscription on %blogname% has been sucessfully renewed.\r\n				Subscription plan: %subscription_name%<br>\r\n				Subscription price: %subscription_price%</p>', '2025-12-09 02:38:26'),
(51, 'renewal_email_body_admin', '<h3>Subscription renewal</h3>\r\n				<p>An user has successfully renewed their subscription.</p>\r\n				<p>Username: %username%<br>\r\n				Subscription plan: %subscription_name%<br>\r\n				Subscription price: %subscription_price%</p>', '2025-12-09 02:38:26'),
(52, 'cancel_email_enabled', '1', '2025-12-09 02:38:26'),
(53, 'cancel_email_enabled_admin', '1', '2025-12-09 02:38:26'),
(54, 'cancel_email_subject', '[%blogname%] Subscription canceled', '2025-12-09 02:38:26'),
(55, 'cancel_email_subject_admin', '[%blogname%] Subscription canceled', '2025-12-09 02:38:26'),
(56, 'cancel_email_body', '<h3>Subscription cancelation</h3>\r\n				<p>Hello %name%,</p>\r\n				<p>We are sorry to see you go! Your subscription on %blogname% has been canceled and is only valid until %subscription_expiry%. You will not be charged in the future.</p>', '2025-12-09 02:38:26'),
(57, 'cancel_email_body_admin', '<h3>Subscription cancelation</h3>\r\n				<p>An user on your website has canceled their subscription.</p>\r\n				<p>Username: %username%<br>\r\n				Subscription plan: %subscription_name%<br>\r\n				Subscription expiry: %subscription_expiry%</p>', '2025-12-09 02:38:26'),
(58, 'failed_email_enabled', '1', '2025-12-09 02:38:26'),
(59, 'failed_email_enabled_admin', '0', '2025-12-09 02:38:26'),
(60, 'failed_email_subject', '[%blogname%] Your latest payment has failed', '2025-12-09 02:38:26'),
(61, 'failed_email_subject_admin', '[%blogname%] A subscription payment has failed', '2025-12-09 02:38:26'),
(62, 'failed_email_body', '<h3>Payment failure</h3>\r\n				<p>Hello %name%,</p>\r\n				<p>Your latest payment for \"%subscription_name%\" has failed.</p>\r\n				<p>You can go to the <a href=\"%subscriptions_page_link%\">account page</a> in order to try again.</p>', '2025-12-09 02:38:26'),
(63, 'failed_email_body_admin', '<h3>Payment failure</h3>\r\n				<p>An user on your website has failed to pay for their subscription.</p>\r\n				<p>Username: %username%<br>\r\n				Subscription plan: %subscription_name%<br>\r\n				Subscription price: %subscription_price%</p>', '2025-12-09 02:38:26'),
(64, 'register_enabled', '1', '2025-12-09 02:38:45'),
(65, 'donation_email_enabled', '1', '2025-12-09 02:38:45'),
(66, 'donation_email_enabled_admin', '1', '2025-12-09 02:38:45'),
(67, 'donation_email_subject', '[%blogname%] Donation confirmation', '2025-12-09 02:38:45'),
(68, 'donation_email_subject_admin', '[%blogname%] New donation', '2025-12-09 02:38:45'),
(69, 'donation_email_body', '<h3>Donation confirmation</h3>\r\n                    <p>Hello %name%,</p>\r\n                    <p>Thank you for your donation!</p>\r\n                    <p>Donation plan: %subscription_name%<br>\r\n                    Donation amount: %subscription_price%</p>\r\n                    %direct_bank_info%', '2025-12-09 02:38:45'),
(70, 'donation_email_body_admin', '<h3>New donation</h3>\r\n                    <p>You have received a donation payment.</p>\r\n                    <p>Username: %username%<br>\r\n                    Donation plan: %subscription_name%<br>\r\n                    Donation amount: %subscription_price%</p>', '2025-12-09 02:38:45');

-- --------------------------------------------------------

--
-- Table structure for table `tds_payment_bank`
--

DROP TABLE IF EXISTS `tds_payment_bank`;
CREATE TABLE IF NOT EXISTS `tds_payment_bank` (
  `id` int NOT NULL AUTO_INCREMENT,
  `account_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `account_number` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `bank_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `routing_number` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `iban` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `bic_swift` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `description` varchar(1000) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `instruction` varchar(1000) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL,
  `options` longtext COLLATE utf8mb4_unicode_520_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `tds_payment_bank`
--

INSERT INTO `tds_payment_bank` (`id`, `account_name`, `account_number`, `bank_name`, `routing_number`, `iban`, `bic_swift`, `description`, `instruction`, `is_active`, `options`, `created_at`) VALUES
(1, 'Alpha Bank Account', '123456', 'Alpha Bank', '123456', 'NL43INGB4186520410', '123456', 'Make your payment directly into our bank account. Please use your Subscription ID as the payment reference. Your subscription will be activated when the funds are cleared in our account.', 'Payment method instructions go here.', 1, 'a:1:{s:15:\"td_demo_content\";i:1;}', '2022-02-22 08:53:18');

-- --------------------------------------------------------

--
-- Table structure for table `tds_payment_paypal`
--

DROP TABLE IF EXISTS `tds_payment_paypal`;
CREATE TABLE IF NOT EXISTS `tds_payment_paypal` (
  `id` int NOT NULL AUTO_INCREMENT,
  `client_id` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_active` tinyint(1) NOT NULL,
  `is_sandbox` tinyint(1) NOT NULL,
  `client_id_sandbox` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `instructions` varchar(1000) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `description` varchar(1000) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tds_payment_stripe`
--

DROP TABLE IF EXISTS `tds_payment_stripe`;
CREATE TABLE IF NOT EXISTS `tds_payment_stripe` (
  `id` int NOT NULL AUTO_INCREMENT,
  `is_active` tinyint(1) NOT NULL,
  `is_sandbox` tinyint(1) NOT NULL,
  `secret_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `public_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `sandbox_secret_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `sandbox_public_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `webhook_endpoint` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `webhook_endpoint_secret` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `payment_methods` longtext COLLATE utf8mb4_unicode_ci,
  `description` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
  `instructions` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
  `automatic_tax` tinyint(1) DEFAULT '1',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tds_paypal_payments`
--

DROP TABLE IF EXISTS `tds_paypal_payments`;
CREATE TABLE IF NOT EXISTS `tds_paypal_payments` (
  `id` int NOT NULL AUTO_INCREMENT,
  `subscription_id` int DEFAULT NULL,
  `order_id` varchar(50) DEFAULT '',
  `order_intent` varchar(50) DEFAULT '',
  `order_status` varchar(50) DEFAULT '',
  `order_payer_id` varchar(50) DEFAULT '',
  `order_payer_given_name` varchar(50) DEFAULT '',
  `order_payer_surname` varchar(50) DEFAULT '',
  `order_payer_email` varchar(50) DEFAULT '',
  `order_payee_id` varchar(50) DEFAULT '',
  `order_payee_email` varchar(50) DEFAULT '',
  `order_amount_currency_code` varchar(50) DEFAULT '',
  `order_amount_value` varchar(50) DEFAULT '',
  `order_info` text,
  `order_create_time` varchar(40) DEFAULT '',
  `order_update_time` varchar(40) DEFAULT '',
  `order_capture_create_time` varchar(40) DEFAULT '',
  `order_capture_update_time` varchar(40) DEFAULT '',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `tds_plans`
--

DROP TABLE IF EXISTS `tds_plans`;
CREATE TABLE IF NOT EXISTS `tds_plans` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `price` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `interval_count` int NOT NULL DEFAULT '1',
  `interval` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `months_in_cycle` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `trial_days` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '0',
  `is_free` tinyint(1) DEFAULT '0',
  `is_unlimited` tinyint(1) DEFAULT '0',
  `is_with_credits` tinyint(1) DEFAULT '0',
  `is_donation` tinyint(1) DEFAULT '0',
  `options` longtext COLLATE utf8mb4_unicode_520_ci,
  `list` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `publishing_limits` longtext COLLATE utf8mb4_unicode_520_ci,
  `automatic_delistings` longtext COLLATE utf8mb4_unicode_520_ci,
  `credits` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `auto_subscribe` tinyint(1) DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `tds_plans`
--

INSERT INTO `tds_plans` (`id`, `name`, `price`, `interval_count`, `interval`, `months_in_cycle`, `trial_days`, `is_free`, `is_unlimited`, `is_with_credits`, `is_donation`, `options`, `list`, `publishing_limits`, `automatic_delistings`, `credits`, `auto_subscribe`, `created_at`) VALUES
(1, 'Yearly Plan', '100', 1, 'year', '12', '0', 0, 0, 0, 0, 'a:2:{s:15:\"td_demo_content\";i:1;s:9:\"unique_id\";s:15:\"5961b9c837a77e4\";}', NULL, NULL, NULL, '', 0, '2022-02-22 08:53:18'),
(2, 'Free Plan', '', 1, '', '', '0', 1, 0, 0, 0, 'a:2:{s:15:\"td_demo_content\";i:1;s:9:\"unique_id\";s:15:\"9661b9c837a9db8\";}', NULL, NULL, NULL, '', 0, '2022-02-22 08:53:18'),
(3, 'Monthly Plan', '10', 1, 'month', '1', '0', 0, 0, 0, 0, 'a:2:{s:15:\"td_demo_content\";i:1;s:9:\"unique_id\";s:15:\"5261b9c837abf3e\";}', NULL, NULL, NULL, '', 0, '2022-02-22 08:53:18');

-- --------------------------------------------------------

--
-- Table structure for table `tds_subscriptions`
--

DROP TABLE IF EXISTS `tds_subscriptions`;
CREATE TABLE IF NOT EXISTS `tds_subscriptions` (
  `id` int NOT NULL AUTO_INCREMENT,
  `plan_id` int NOT NULL,
  `user_id` int NOT NULL,
  `ref_id` int DEFAULT NULL,
  `billing_first_name` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `billing_last_name` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `billing_company_name` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `billing_cui` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `billing_j` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `billing_address` varchar(500) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `billing_county` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `billing_city` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `billing_country` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `billing_phone` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `billing_email` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `billing_bank_account` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `billing_post_code` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `billing_vat_number` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `price` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `next_price` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `curr_name` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `curr_pos` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `curr_th_sep` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `curr_dec_sep` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `curr_dec_no` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `payment_type` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `payment_details` text COLLATE utf8mb4_unicode_520_ci,
  `status` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_free` tinyint(1) DEFAULT '0',
  `is_unlimited` tinyint(1) DEFAULT '0',
  `is_with_credits` tinyint(1) DEFAULT '0',
  `is_donation` tinyint(1) DEFAULT '0',
  `cycle_interval` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cycle_interval_count` int NOT NULL DEFAULT '1',
  `last_months_in_cycle` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `start_day` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `trial_days` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT '0',
  `start_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `stripe_payment_intent` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `stripe_payment_method` text COLLATE utf8mb4_unicode_520_ci,
  `stripe_payment_status` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `stripe_payment_info` text COLLATE utf8mb4_unicode_520_ci,
  `stripe_invoice_details` text COLLATE utf8mb4_unicode_520_ci,
  `stripe_subscription_id` varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `stripe_customer_id` varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `confirm_key` varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `canceled` tinyint NOT NULL DEFAULT '0',
  `coupon_id` int NOT NULL DEFAULT '0',
  `credits` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `plan_posts_remaining` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tds_trackings`
--

DROP TABLE IF EXISTS `tds_trackings`;
CREATE TABLE IF NOT EXISTS `tds_trackings` (
  `id` int NOT NULL AUTO_INCREMENT,
  `rdr_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `click_count` bigint NOT NULL DEFAULT '0',
  `page_html` varchar(2000) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `notes` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `tds_trackings_templates`
--

DROP TABLE IF EXISTS `tds_trackings_templates`;
CREATE TABLE IF NOT EXISTS `tds_trackings_templates` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `page_html` varchar(2000) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `tds_trackings_templates`
--

INSERT INTO `tds_trackings_templates` (`id`, `name`, `page_html`, `created_at`) VALUES
(1, 'Default Template', '<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-xxxxxxxx\"></script> //Your Google Analytics ID\n<script>\n    window.dataLayer = window.dataLayer || [];\n    function gtag(){ dataLayer.push(arguments); }\n    gtag( \'js\', new Date() );\n    gtag( \'config\', \'UA-xxxxxxxx-x\' ); //Your Google Analytics ID\n    gtag(\n        \'event\', // Sends your conversion as an Event with the \"ecommerce\" \"category\" in your GA events reports\n        \'purchase\', // Specifies the \"action\" of the event\n        {\n            \'event_label\': \'NAMEIT\', // This is the \"label\" of the event. You can rename. (e.g. Plan2)\n            \'transaction_id\': \'INVOICE NUMBER\', // This is the ID of conversion. (e.g. 634)\n            \'value\': XXX.00, // Specifies the total revenue or grand total associated with the transaction (e.g. 11.99)\n            \'currency\': \"XXX\", // Local currency code. (e.g USD)\n            \'tax\': 0.0, // Specifies the total shipping cost of the transaction. (e.g. 5)\n            \'shipping\': 0, // Specifies the total tax of the transaction. (e.g. 1.29)\n            \"items\": [\n                {\n                    \"id\": \"Your Plan ID\", // Transaction ID. For this specific case it\'s SKU. Required.\n                    \"name\": \"NameIt\", // Product name. Required.\n                    \"quantity\": XX, // Quantity. Required.\n                    \"price\": \"XX.0\" // Price per Unit. Required.\n                },\n                {\n                    \"id\": \"Your Plan ID2\",\n                    \"name\": \"NameIt2\",\n                    \"quantity\": XX,\n                    \"price\": \"XX.0\"\n                },\n                {\n                    \"id\": \"Your Plan ID3\",\n                    \"name\": \"NameIt3\",\n                    \"quantity\": XX,\n                    \"price\": \"XX.0\"\n                }\n            ],\n            \'event_callback\': function() {\n                redirect(1000);\n            }\n        }\n    );\n</script>', '2022-02-22 08:52:45');

-- --------------------------------------------------------

--
-- Table structure for table `wpom_commentmeta`
--

DROP TABLE IF EXISTS `wpom_commentmeta`;
CREATE TABLE IF NOT EXISTS `wpom_commentmeta` (
  `meta_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `comment_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_comments`
--

DROP TABLE IF EXISTS `wpom_comments`;
CREATE TABLE IF NOT EXISTS `wpom_comments` (
  `comment_ID` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint UNSIGNED NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_karma` int NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint UNSIGNED NOT NULL DEFAULT '0',
  `user_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_e_events`
--

DROP TABLE IF EXISTS `wpom_e_events`;
CREATE TABLE IF NOT EXISTS `wpom_e_events` (
  `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `event_data` text,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpom_e_events`
--

INSERT INTO `wpom_e_events` (`id`, `event_data`, `created_at`) VALUES
(1, '{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2023-05-29T14:51:31.450-05:00\"}', '2023-05-29 14:51:31');

-- --------------------------------------------------------

--
-- Table structure for table `wpom_e_notes`
--

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

-- --------------------------------------------------------

--
-- Table structure for table `wpom_e_notes_users_relations`
--

DROP TABLE IF EXISTS `wpom_e_notes_users_relations`;
CREATE TABLE IF NOT EXISTS `wpom_e_notes_users_relations` (
  `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `type` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL COMMENT 'The relation type between user and note (e.g mention, watch, read).',
  `note_id` bigint UNSIGNED NOT NULL,
  `user_id` bigint UNSIGNED NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `type_index` (`type`),
  KEY `note_id_index` (`note_id`),
  KEY `user_id_index` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_e_submissions`
--

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

-- --------------------------------------------------------

--
-- Table structure for table `wpom_e_submissions_actions_log`
--

DROP TABLE IF EXISTS `wpom_e_submissions_actions_log`;
CREATE TABLE IF NOT EXISTS `wpom_e_submissions_actions_log` (
  `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `submission_id` bigint UNSIGNED NOT NULL,
  `action_name` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `action_label` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `log` text COLLATE utf8mb4_unicode_520_ci,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `action_name_index` (`action_name`),
  KEY `status_index` (`status`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_e_submissions_values`
--

DROP TABLE IF EXISTS `wpom_e_submissions_values`;
CREATE TABLE IF NOT EXISTS `wpom_e_submissions_values` (
  `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `submission_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `key` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `key_index` (`key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_frm_fields`
--

DROP TABLE IF EXISTS `wpom_frm_fields`;
CREATE TABLE IF NOT EXISTS `wpom_frm_fields` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `field_key` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `name` text COLLATE utf8mb4_unicode_520_ci,
  `description` longtext COLLATE utf8mb4_unicode_520_ci,
  `type` text COLLATE utf8mb4_unicode_520_ci,
  `default_value` longtext COLLATE utf8mb4_unicode_520_ci,
  `options` longtext COLLATE utf8mb4_unicode_520_ci,
  `field_order` int DEFAULT '0',
  `required` int DEFAULT NULL,
  `field_options` longtext COLLATE utf8mb4_unicode_520_ci,
  `form_id` int DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `field_key` (`field_key`),
  KEY `form_id` (`form_id`),
  KEY `idx_form_id_type` (`form_id`,`type`(30))
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_frm_fields`
--

INSERT INTO `wpom_frm_fields` (`id`, `field_key`, `name`, `description`, `type`, `default_value`, `options`, `field_order`, `required`, `field_options`, `form_id`, `created_at`) VALUES
(1, 'qh4icy', 'Name', 'First', 'text', '', '', 1, 1, 'a:16:{s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:0:\"\";s:5:\"blank\";s:0:\"\";s:18:\"required_indicator\";s:1:\"*\";s:7:\"invalid\";s:0:\"\";s:14:\"separate_value\";i:0;s:14:\"clear_on_focus\";i:0;s:7:\"classes\";s:18:\"frm_first frm_half\";s:11:\"custom_html\";s:545:\"<div id=\\\"frm_field_[id]_container\\\" class=\\\"frm_form_field form-field [required_class][error_class]\\\">\r\n    <label for=\\\"field_[key]\\\" id=\\\"field_[key]_label\\\" class=\\\"frm_primary_label\\\">[field_name]\r\n        <span class=\\\"frm_required\\\" aria-hidden=\\\"true\\\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\\\"frm_description\\\" id=\\\"frm_desc_field_[key]\\\">[description]</div>[/if description]\r\n    [if error]<div class=\\\"frm_error\\\" role=\\\"alert\\\" id=\\\"frm_error_field_[key]\\\">[error]</div>[/if error]\r\n</div>\";s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:10:\"in_section\";i:0;}', 1, '2022-07-25 08:13:26'),
(2, 'ocfup1', 'Last', 'Last', 'text', '', '', 2, 1, 'a:16:{s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:6:\"hidden\";s:5:\"blank\";s:0:\"\";s:18:\"required_indicator\";s:1:\"*\";s:7:\"invalid\";s:0:\"\";s:14:\"separate_value\";i:0;s:14:\"clear_on_focus\";i:0;s:7:\"classes\";s:8:\"frm_half\";s:11:\"custom_html\";s:545:\"<div id=\\\"frm_field_[id]_container\\\" class=\\\"frm_form_field form-field [required_class][error_class]\\\">\r\n    <label for=\\\"field_[key]\\\" id=\\\"field_[key]_label\\\" class=\\\"frm_primary_label\\\">[field_name]\r\n        <span class=\\\"frm_required\\\" aria-hidden=\\\"true\\\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\\\"frm_description\\\" id=\\\"frm_desc_field_[key]\\\">[description]</div>[/if description]\r\n    [if error]<div class=\\\"frm_error\\\" role=\\\"alert\\\" id=\\\"frm_error_field_[key]\\\">[error]</div>[/if error]\r\n</div>\";s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:10:\"in_section\";i:0;}', 1, '2022-07-25 08:13:26'),
(3, '29yf4d', 'Email', '', 'email', '', '', 3, 1, 'a:16:{s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:0:\"\";s:5:\"blank\";s:0:\"\";s:18:\"required_indicator\";s:1:\"*\";s:7:\"invalid\";s:34:\"Please enter a valid email address\";s:14:\"separate_value\";i:0;s:14:\"clear_on_focus\";i:0;s:7:\"classes\";s:8:\"frm_full\";s:11:\"custom_html\";s:545:\"<div id=\\\"frm_field_[id]_container\\\" class=\\\"frm_form_field form-field [required_class][error_class]\\\">\r\n    <label for=\\\"field_[key]\\\" id=\\\"field_[key]_label\\\" class=\\\"frm_primary_label\\\">[field_name]\r\n        <span class=\\\"frm_required\\\" aria-hidden=\\\"true\\\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\\\"frm_description\\\" id=\\\"frm_desc_field_[key]\\\">[description]</div>[/if description]\r\n    [if error]<div class=\\\"frm_error\\\" role=\\\"alert\\\" id=\\\"frm_error_field_[key]\\\">[error]</div>[/if error]\r\n</div>\";s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:10:\"in_section\";i:0;}', 1, '2022-07-25 08:13:26'),
(4, 'e6lis6', 'Subject', '', 'text', '', '', 5, 1, 'a:16:{s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:0:\"\";s:5:\"blank\";s:0:\"\";s:18:\"required_indicator\";s:1:\"*\";s:7:\"invalid\";s:0:\"\";s:14:\"separate_value\";i:0;s:14:\"clear_on_focus\";i:0;s:7:\"classes\";s:8:\"frm_full\";s:11:\"custom_html\";s:545:\"<div id=\\\"frm_field_[id]_container\\\" class=\\\"frm_form_field form-field [required_class][error_class]\\\">\r\n    <label for=\\\"field_[key]\\\" id=\\\"field_[key]_label\\\" class=\\\"frm_primary_label\\\">[field_name]\r\n        <span class=\\\"frm_required\\\" aria-hidden=\\\"true\\\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\\\"frm_description\\\" id=\\\"frm_desc_field_[key]\\\">[description]</div>[/if description]\r\n    [if error]<div class=\\\"frm_error\\\" role=\\\"alert\\\" id=\\\"frm_error_field_[key]\\\">[error]</div>[/if error]\r\n</div>\";s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:10:\"in_section\";i:0;}', 1, '2022-07-25 08:13:26'),
(5, '9jv0r1', 'Message', '', 'textarea', '', '', 6, 1, 'a:16:{s:4:\"size\";s:0:\"\";s:3:\"max\";s:1:\"5\";s:5:\"label\";s:0:\"\";s:5:\"blank\";s:0:\"\";s:18:\"required_indicator\";s:1:\"*\";s:7:\"invalid\";s:0:\"\";s:14:\"separate_value\";i:0;s:14:\"clear_on_focus\";i:0;s:7:\"classes\";s:8:\"frm_full\";s:11:\"custom_html\";s:545:\"<div id=\\\"frm_field_[id]_container\\\" class=\\\"frm_form_field form-field [required_class][error_class]\\\">\r\n    <label for=\\\"field_[key]\\\" id=\\\"field_[key]_label\\\" class=\\\"frm_primary_label\\\">[field_name]\r\n        <span class=\\\"frm_required\\\" aria-hidden=\\\"true\\\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\\\"frm_description\\\" id=\\\"frm_desc_field_[key]\\\">[description]</div>[/if description]\r\n    [if error]<div class=\\\"frm_error\\\" role=\\\"alert\\\" id=\\\"frm_error_field_[key]\\\">[error]</div>[/if error]\r\n</div>\";s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:10:\"in_section\";i:0;}', 1, '2022-07-25 08:13:26'),
(6, 'ck5p6', 'Name', '', 'text', '', '', 2, 1, 'a:15:{s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:0:\"\";s:5:\"blank\";s:0:\"\";s:18:\"required_indicator\";s:1:\"*\";s:7:\"invalid\";s:15:\"Text is invalid\";s:14:\"separate_value\";i:0;s:14:\"clear_on_focus\";i:0;s:7:\"classes\";s:0:\"\";s:11:\"custom_html\";s:545:\"<div id=\\\"frm_field_[id]_container\\\" class=\\\"frm_form_field form-field [required_class][error_class]\\\">\r\n    <label for=\\\"field_[key]\\\" id=\\\"field_[key]_label\\\" class=\\\"frm_primary_label\\\">[field_name]\r\n        <span class=\\\"frm_required\\\" aria-hidden=\\\"true\\\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\\\"frm_description\\\" id=\\\"frm_desc_field_[key]\\\">[description]</div>[/if description]\r\n    [if error]<div class=\\\"frm_error\\\" role=\\\"alert\\\" id=\\\"frm_error_field_[key]\\\">[error]</div>[/if error]\r\n</div>\";s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}', 2, '2022-07-25 08:13:49'),
(8, 'bboxh', 'Website/URL', '', 'url', '', '', 4, 1, 'a:16:{s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:0:\"\";s:5:\"blank\";s:0:\"\";s:18:\"required_indicator\";s:1:\"*\";s:7:\"invalid\";s:22:\"Website/URL is invalid\";s:14:\"separate_value\";i:0;s:14:\"clear_on_focus\";i:0;s:7:\"classes\";s:0:\"\";s:11:\"custom_html\";s:545:\"<div id=\\\"frm_field_[id]_container\\\" class=\\\"frm_form_field form-field [required_class][error_class]\\\">\r\n    <label for=\\\"field_[key]\\\" id=\\\"field_[key]_label\\\" class=\\\"frm_primary_label\\\">[field_name]\r\n        <span class=\\\"frm_required\\\" aria-hidden=\\\"true\\\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\\\"frm_description\\\" id=\\\"frm_desc_field_[key]\\\">[description]</div>[/if description]\r\n    [if error]<div class=\\\"frm_error\\\" role=\\\"alert\\\" id=\\\"frm_error_field_[key]\\\">[error]</div>[/if error]\r\n</div>\";s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:10:\"show_image\";i:0;}', 2, '2022-07-25 08:14:06'),
(9, 'msgq9', 'Email', '', 'email', '', '', 6, 1, 'a:15:{s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:0:\"\";s:5:\"blank\";s:0:\"\";s:18:\"required_indicator\";s:1:\"*\";s:7:\"invalid\";s:16:\"Email is invalid\";s:14:\"separate_value\";i:0;s:14:\"clear_on_focus\";i:0;s:7:\"classes\";s:0:\"\";s:11:\"custom_html\";s:545:\"<div id=\\\"frm_field_[id]_container\\\" class=\\\"frm_form_field form-field [required_class][error_class]\\\">\r\n    <label for=\\\"field_[key]\\\" id=\\\"field_[key]_label\\\" class=\\\"frm_primary_label\\\">[field_name]\r\n        <span class=\\\"frm_required\\\" aria-hidden=\\\"true\\\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\\\"frm_description\\\" id=\\\"frm_desc_field_[key]\\\">[description]</div>[/if description]\r\n    [if error]<div class=\\\"frm_error\\\" role=\\\"alert\\\" id=\\\"frm_error_field_[key]\\\">[error]</div>[/if error]\r\n</div>\";s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}', 2, '2022-07-25 08:14:10'),
(10, 'ldaa7', 'Comment', '', 'textarea', '', '', 8, 1, 'a:15:{s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:0:\"\";s:5:\"blank\";s:0:\"\";s:18:\"required_indicator\";s:1:\"*\";s:7:\"invalid\";s:15:\"Text is invalid\";s:14:\"separate_value\";i:0;s:14:\"clear_on_focus\";i:0;s:7:\"classes\";s:0:\"\";s:11:\"custom_html\";s:545:\"<div id=\\\"frm_field_[id]_container\\\" class=\\\"frm_form_field form-field [required_class][error_class]\\\">\r\n    <label for=\\\"field_[key]\\\" id=\\\"field_[key]_label\\\" class=\\\"frm_primary_label\\\">[field_name]\r\n        <span class=\\\"frm_required\\\" aria-hidden=\\\"true\\\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\\\"frm_description\\\" id=\\\"frm_desc_field_[key]\\\">[description]</div>[/if description]\r\n    [if error]<div class=\\\"frm_error\\\" role=\\\"alert\\\" id=\\\"frm_error_field_[key]\\\">[error]</div>[/if error]\r\n</div>\";s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}', 2, '2022-07-25 08:14:27'),
(11, 'ekjl4', 'reCAPTCHA', '', 'captcha', '', '', 10, 0, 'a:17:{s:4:\"size\";s:0:\"\";s:3:\"max\";s:0:\"\";s:5:\"label\";s:4:\"none\";s:5:\"blank\";s:0:\"\";s:18:\"required_indicator\";s:1:\"*\";s:7:\"invalid\";s:39:\"The reCAPTCHA was not entered correctly\";s:14:\"separate_value\";i:0;s:14:\"clear_on_focus\";i:0;s:7:\"classes\";s:0:\"\";s:11:\"custom_html\";s:545:\"<div id=\\\"frm_field_[id]_container\\\" class=\\\"frm_form_field form-field [required_class][error_class]\\\">\r\n    <label for=\\\"field_[key]\\\" id=\\\"field_[key]_label\\\" class=\\\"frm_primary_label\\\">[field_name]\r\n        <span class=\\\"frm_required\\\" aria-hidden=\\\"true\\\">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class=\\\"frm_description\\\" id=\\\"frm_desc_field_[key]\\\">[description]</div>[/if description]\r\n    [if error]<div class=\\\"frm_error\\\" role=\\\"alert\\\" id=\\\"frm_error_field_[key]\\\">[error]</div>[/if error]\r\n</div>\";s:6:\"minnum\";i:1;s:6:\"maxnum\";i:10;s:4:\"step\";i:1;s:6:\"format\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:12:\"captcha_size\";s:6:\"normal\";s:13:\"captcha_theme\";s:5:\"light\";}', 2, '2022-07-25 08:14:45');

-- --------------------------------------------------------

--
-- Table structure for table `wpom_frm_forms`
--

DROP TABLE IF EXISTS `wpom_frm_forms`;
CREATE TABLE IF NOT EXISTS `wpom_frm_forms` (
  `id` int NOT NULL AUTO_INCREMENT,
  `form_key` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_520_ci,
  `parent_form_id` int DEFAULT '0',
  `logged_in` tinyint(1) DEFAULT NULL,
  `editable` tinyint(1) DEFAULT NULL,
  `is_template` tinyint(1) DEFAULT '0',
  `default_template` tinyint(1) DEFAULT '0',
  `status` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `options` longtext COLLATE utf8mb4_unicode_520_ci,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `form_key` (`form_key`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_frm_forms`
--

INSERT INTO `wpom_frm_forms` (`id`, `form_key`, `name`, `description`, `parent_form_id`, `logged_in`, `editable`, `is_template`, `default_template`, `status`, `options`, `created_at`) VALUES
(1, 'contact-form', 'Contact Us', '<p>We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly.</p>\r\n', 0, 0, 0, 0, 0, 'published', 'a:19:{s:14:\"success_action\";s:7:\"message\";s:11:\"success_url\";s:0:\"\";s:15:\"success_page_id\";s:0:\"\";s:8:\"honeypot\";s:5:\"basic\";s:11:\"success_msg\";s:54:\"Your responses were successfully submitted. Thank you!\";s:12:\"custom_style\";s:1:\"1\";s:12:\"submit_value\";s:6:\"Submit\";s:10:\"form_class\";s:0:\"\";s:11:\"before_html\";s:232:\"<legend class=\\\"frm_screen_reader\\\">[form_name]</legend>\r\n[if form_name]<h3 class=\\\"frm_form_title\\\">[form_name]</h3>[/if form_name]\r\n[if form_description]<div class=\\\"frm_description\\\">[form_description]</div>[/if form_description]\";s:10:\"after_html\";s:0:\"\";s:11:\"submit_html\";s:545:\"<div class=\\\"frm_submit\\\">\r\n[if back_button]<button type=\\\"submit\\\" name=\\\"frm_prev_page\\\" formnovalidate=\\\"formnovalidate\\\" class=\\\"frm_prev_page\\\" [back_hook]>[back_label]</button>[/if back_button]\r\n<button class=\\\"frm_button_submit\\\" type=\\\"submit\\\"  [button_action]>[button_label]</button>\r\n[if save_draft]<a href=\\\"#\\\" tabindex=\\\"0\\\" class=\\\"frm_save_draft\\\" [draft_hook]>[draft_label]</a>[/if save_draft]\r\n[if start_over]<a href=\\\"#\\\" tabindex=\\\"0\\\" class=\\\"frm_start_over\\\" [start_over_hook]>[start_over_label]</a>[/if start_over]\r\n</div>\";s:9:\"show_form\";i:0;s:7:\"akismet\";s:0:\"\";s:8:\"antispam\";i:0;s:7:\"no_save\";i:0;s:9:\"ajax_load\";i:0;s:11:\"js_validate\";i:0;s:10:\"show_title\";i:0;s:16:\"show_description\";i:0;}', '2022-07-25 08:13:26'),
(2, 'writetous', 'Write to Us', '', 0, 0, 0, 0, 0, 'published', 'a:19:{s:14:\"success_action\";s:7:\"message\";s:11:\"success_url\";s:0:\"\";s:15:\"success_page_id\";s:0:\"\";s:8:\"honeypot\";s:5:\"basic\";s:8:\"antispam\";s:1:\"1\";s:11:\"success_msg\";s:54:\"Your responses were successfully submitted. Thank you!\";s:12:\"custom_style\";s:1:\"1\";s:12:\"submit_value\";s:6:\"Submit\";s:10:\"form_class\";s:0:\"\";s:11:\"before_html\";s:232:\"<legend class=\\\"frm_screen_reader\\\">[form_name]</legend>\r\n[if form_name]<h3 class=\\\"frm_form_title\\\">[form_name]</h3>[/if form_name]\r\n[if form_description]<div class=\\\"frm_description\\\">[form_description]</div>[/if form_description]\";s:10:\"after_html\";s:0:\"\";s:11:\"submit_html\";s:545:\"<div class=\\\"frm_submit\\\">\r\n[if back_button]<button type=\\\"submit\\\" name=\\\"frm_prev_page\\\" formnovalidate=\\\"formnovalidate\\\" class=\\\"frm_prev_page\\\" [back_hook]>[back_label]</button>[/if back_button]\r\n<button class=\\\"frm_button_submit\\\" type=\\\"submit\\\"  [button_action]>[button_label]</button>\r\n[if save_draft]<a href=\\\"#\\\" tabindex=\\\"0\\\" class=\\\"frm_save_draft\\\" [draft_hook]>[draft_label]</a>[/if save_draft]\r\n[if start_over]<a href=\\\"#\\\" tabindex=\\\"0\\\" class=\\\"frm_start_over\\\" [start_over_hook]>[start_over_label]</a>[/if start_over]\r\n</div>\";s:9:\"show_form\";i:0;s:7:\"akismet\";s:0:\"\";s:7:\"no_save\";i:0;s:9:\"ajax_load\";i:0;s:11:\"js_validate\";i:0;s:10:\"show_title\";i:0;s:16:\"show_description\";i:0;}', '2022-07-25 08:13:43');

-- --------------------------------------------------------

--
-- Table structure for table `wpom_frm_items`
--

DROP TABLE IF EXISTS `wpom_frm_items`;
CREATE TABLE IF NOT EXISTS `wpom_frm_items` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `item_key` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_520_ci,
  `ip` text COLLATE utf8mb4_unicode_520_ci,
  `form_id` bigint DEFAULT NULL,
  `post_id` bigint DEFAULT NULL,
  `user_id` bigint DEFAULT NULL,
  `parent_item_id` bigint DEFAULT '0',
  `is_draft` tinyint(1) DEFAULT '0',
  `updated_by` bigint DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `item_key` (`item_key`),
  KEY `form_id` (`form_id`),
  KEY `post_id` (`post_id`),
  KEY `user_id` (`user_id`),
  KEY `parent_item_id` (`parent_item_id`),
  KEY `idx_is_draft_created_at` (`is_draft`,`created_at`),
  KEY `idx_form_id_is_draft` (`form_id`,`is_draft`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_frm_items`
--

INSERT INTO `wpom_frm_items` (`id`, `item_key`, `name`, `description`, `ip`, `form_id`, `post_id`, `user_id`, `parent_item_id`, `is_draft`, `updated_by`, `created_at`, `updated_at`) VALUES
(1, 'zmhn3', 'james liam', '{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/106.0.0.0 Safari\\/537.36\",\"referrer\":\"https:\\/\\/onlineincshop.com\\/contact-us\\/\"}', '119.73.115.96', 2, 0, 0, 0, 0, 0, '2022-10-08 06:21:52', '2022-10-08 06:21:52'),
(2, 'skn0w', 'Zohaib Ahmad', '{\"browser\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/106.0.0.0 Safari\\/537.36\",\"referrer\":\"https:\\/\\/onlineincshop.com\\/contact-us\\/\"}', '124.29.216.28', 2, 0, 0, 0, 0, 0, '2022-10-19 09:17:42', '2022-10-19 09:17:42'),
(3, 'x5nnq', 'Business Setup In Dubai', '{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/106.0.0.0 Safari\\/537.36\",\"referrer\":\"https:\\/\\/onlineincshop.com\\/contact-us\\/\"}', '86.99.218.111', 2, 0, 0, 0, 0, 0, '2022-10-26 07:14:15', '2022-10-26 07:14:15'),
(4, 'yuzmi', 'Disposable Store AE', '{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/114.0.0.0 Safari\\/537.36\",\"referrer\":\"https:\\/\\/onlineincshop.com\\/contact-us\\/\"}', '202.65.173.16', 2, 0, 0, 0, 0, 0, '2023-07-18 05:20:23', '2023-07-18 05:20:23'),
(5, 'ew5vb', 'MateenSalik', '{\"browser\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/115.0.0.0 Safari\\/537.36\",\"referrer\":\"https:\\/\\/onlineincshop.com\\/contact-us\\/\"}', '86.98.62.165', 2, 0, 0, 0, 0, 0, '2023-08-08 08:55:04', '2023-08-08 08:55:04'),
(6, '42147a', 'test', '{\"browser\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/131.0.0.0 Safari\\/537.36\",\"referrer\":\"https:\\/\\/onlineincshop.com\\/contact-us\\/\"}', '94.204.86.127', 2, 0, 9467, 0, 0, 9467, '2024-12-30 05:31:21', '2024-12-30 05:31:21');

-- --------------------------------------------------------

--
-- Table structure for table `wpom_frm_item_metas`
--

DROP TABLE IF EXISTS `wpom_frm_item_metas`;
CREATE TABLE IF NOT EXISTS `wpom_frm_item_metas` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  `field_id` bigint NOT NULL,
  `item_id` bigint NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `field_id` (`field_id`),
  KEY `item_id` (`item_id`),
  KEY `idx_field_id_item_id` (`field_id`,`item_id`)
) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_frm_item_metas`
--

INSERT INTO `wpom_frm_item_metas` (`id`, `meta_value`, `field_id`, `item_id`, `created_at`) VALUES
(1, 'james liam', 6, 1, '2022-10-08 06:21:52'),
(2, 'https://onlineincshop.com/', 8, 1, '2022-10-08 06:21:52'),
(3, 'liamj9300@gmail.com', 9, 1, '2022-10-08 06:21:52'),
(4, 'i need post on this site\r\nhttps://onlineincshop.com/\r\nplease tell me price of this site', 10, 1, '2022-10-08 06:21:52'),
(5, 'Zohaib Ahmad', 6, 2, '2022-10-19 09:17:42'),
(6, 'https://rugsandcarpets.ae/', 8, 2, '2022-10-19 09:17:42'),
(7, 'zohaibahmad626@gmail.com', 9, 2, '2022-10-19 09:17:42'),
(8, 'Hi,\r\nI am Zohaib Ahmad, and I\'m writing to ask whether you are taking on any\r\nfuture guest writers. I have visited your site where you publish\r\narticles relevant to my niche. I want to write on these topics which are\r\nmissing from your site.\r\n\r\nI also have a variety of several articles which are:\r\n\r\n➤ Grammarly Passed\r\n\r\n➤ Plagiarism-Free\r\n\r\n➤ Well-Written\r\n\r\n➤ Informative and Engaging\r\n\r\nIt would be highly appreciated if you put a permanent back link to my\r\nblog regarding these articles. Feel free to contact me if you are\r\ninterested in collaborating. I am anxiously waiting for your positive\r\nresponse.\r\n\r\nBest Regards,\r\nZohaib Ahmad', 10, 2, '2022-10-19 09:17:42'),
(9, 'Business Setup In Dubai', 6, 3, '2022-10-26 07:14:15'),
(10, 'https://alarawae.com/', 8, 3, '2022-10-26 07:14:15'),
(11, 'bde2.alarawae@gmail.com', 9, 3, '2022-10-26 07:14:15'),
(12, 'So, you want to start a business in the UAE? That may not be a bad idea. The local government is encouraging investment and startups in many ways, therefore this is a good time to get on board. The Emirates is also comparatively easy for foreigners to do business in. It is easy to set up a company and, coupled with the fact that the government now offers long-term visas for investment, business in the UAE is booming.  The business culture in the UAE is very conservative and hierarchical. However, it’s easy to navigate if you know what to expect. Personal relationships are important and face-to-face communication is highly valued. As a result, anyone who does the right thing can succeed in business in the country.\r\n\r\n      Respect for local customs and culture is important. Business meetings usually start with small talk and personal questions. That’s why it’s important to build strong relationships with your business partners.\r\n\r\n      If you are planning to do business in the UAE, this guide will give you an insight into the business culture and help you succeed in your ventures.\r\n Starting a business in the UAE is very easy. In fact, almost everyone can do it. This is why the government offers many incentives to set up a business there. There are many options for international companies looking to establish business relationships with Dubai.\r\nLicensing\r\n\r\n      The basic requirement for all business activities in Dubai is one of the following three license categories:\r\n\r\nBusiness licenses covering all types of business activities;\r\n\r\nProfessional licenses that include professions, services, craftsmen and artisans;\r\n\r\nIndustrial licenses for organizing industrial or production activities.\r\n\r\nThese licenses are all issued by the Dubai Economic Development Department. However, licenses for some business categories require the approval of certain ministries and other authorities: for example;\r\n\r\nTo learn more about the requirements of each business activity and legal form, check the following pages:\r\n\r\nBanks and financial institutions from the Central Bank of the UAE;\r\n\r\nInsurance companies and related agencies from Insurance Authority;\r\n\r\nManufacturing license; from the Ministry of Finance and Industry;\r\n\r\nPharmaceutical and medical products from the Ministry of Health;\r\n\r\nContracting and Building Maintenance and some other activities from Municipality\r\n\r\nTransportation and vehicle rental activities from Road and Transport Authority\r\n\r\nPrinting, publishing and advertising activities from National Media Council;\r\n\r\nCargo Clearing, Cargo packaging, Canal dredging contracting and Fishing cages manufacturing activities from Dubai Maritime City;\r\n\r\nTravel and tourism activities (now direct approval from DED. No need approval from Department of Tourism and Commerce Marketing DTCM).\r\n\r\nGymnasium Club activity from Dubai Sports Council.\r\n\r\nSocial Club registration and licensing to be completed from Community Development Authority.\r\n\r\nTents, awnings and Tarpaulin manufacturing from Environment Protection Section of Dubai Municipality.\r\n\r\n      Car Wash License is issued only in locations where there is a petrol filling station. This will need an agreement with the said oil company to lease the space at their filling station. Other norms on environment protection and safety have to be followed as per the standards prescribed.\r\n\r\n      More detailed procedures apply to businesses engaged in oil or gas production and related industries.\r\n\r\n      Practicing some trade activities (e.g. jewellery and insurance) requires the submission of a financial guarantee issued by a bank operating in Dubai.\r\n\r\nIn general, all commercial and industrial businesses in Dubai should be registered with the Dubai Chamber of Commerce and Industry.\r\n\r\nTourism Companies\r\n\r\n      Dubai provides 3 main types of license namely:\r\n\r\nTravel agency license as an operator of inbound tourism.\r\n\r\nTravel agency license as an operator of outbound tourism.\r\n\r\nTravel agency license as a travel agent.\r\n\r\nFor Inbound Tourism  to be deposited in Bank\r\nFor Outbound Tourism  to be deposited in Bank\r\nThese deposits are irrevocable till the license cancelled.\r\n\r\nTravels\r\n\r\n      For Travel Agency  to be deposited at Department of Tourism & Commerce Marketing. This deposit is irrevocable till the license is cancelled.\r\n\r\n      The documentation that must be submitted with the Dubai Department of Tourism and Commerce along with the deposit is:\r\n\r\nan application form,\r\n\r\ncopies of the passports of the applicants and manager,\r\n\r\na family record ‘khulasat Al Qid’ and a copy of the identification documents for UAE nationals,\r\n\r\na notarized copy of the manager’s certificate of experience,\r\n\r\nthe owner and manager’s  certificates of good conduct,\r\n\r\na no objection letter issued by the Civil Aviation Authority.\r\n\r\nBuilding Contracting Companies\r\n\r\n      For Building Contracting Company License,  to be extra at the Department of Economic Development when the license issued first time.\r\n\r\nGeneral Trading\r\n\r\n      One of the first tasks on the entrepreneur’s checklist when starting a business in the UAE concerns licensing. Specifically, gaining a clear understanding of the different types of business licenses that are on offer.\r\n\r\n      For General Trading License,  to be extra at the Department of Economic Development when the license issued first time.\r\n\r\nCustoms Broker\r\n\r\nto be deposited at Dubai Customs. This deposit is irrevocable till the license is cancelled.\r\n\r\nRTA Activities (following fees to be paid for RTA initial approval)\r\nRent a Car:\r\nBus Rental:\r\nPassenger Transport by rented Buses:\r\n\r\nTelephones & Telecommunications Equipment Trading\r\n\r\n      to be paid at Telecommunications Regulator Authority (TRA). This is one time fee.\r\n\r\n      Security Service: Property guard & Surveillance Services, Party security & private guarding services Initial approval from Department of Protective Systems, Dubai. Tel. 04-2048312\r\n\r\nOilfield & Natural Gas related activities\r\nInitial approval from Ruler’s Court\r\n\r\nMoney Exchange\r\nInitial approval from Central Bank of UAE and Department of Protective Systems\r\n\r\nJewelry, Mobile SIM Card Trading, Stamp & Seal Making\r\nInitial approval from Department of Protective Systems\r\n\r\nSupermarket\r\n\r\nFor supermarket, 2000 square feet area is required.\r\n\r\nElectrical Fitting Contracting: minimum 360 square feet office area is required.\r\n\r\nCafeteria/Coffee Shop\r\n\r\nMinimum 175 square feet kitchen area is required.', 10, 3, '2022-10-26 07:14:15'),
(13, 'Disposable Store AE', 6, 4, '2023-07-18 05:20:23'),
(14, 'https://www.disposablestore.ae/product-category/elfbar/', 8, 4, '2023-07-18 05:20:23'),
(15, 'ismailctg100@gmail.com', 9, 4, '2023-07-18 05:20:23'),
(16, 'Title: The Rising Popularity of Elf Bar Disposable Vapes in UAE Dubai\r\nIntroduction:\r\nThe world of vaping has experienced significant growth and innovation in recent years, with numerous options available to satisfy the diverse preferences of enthusiasts. Among these options, Elf Bar Disposable Vape has emerged as a popular choice for vaping enthusiasts in the UAE, particularly in Dubai. This article will delve into the reasons behind the soaring popularity of Elf Bar Disposable Vape in the region, exploring its features, benefits, and the unique factors that have contributed to its success.\r\nConvenient and User-Friendly Design:\r\nElf Bar Disposable Vape stands out for its convenient and user-friendly design, making it an attractive option for both beginners and experienced vapers. The device comes pre-filled with e-liquid, eliminating the need for refilling or replacing coils. Its all-in-one construction ensures ease of use, allowing users to simply inhale and enjoy their vaping experience without any additional steps or complicated settings.\r\nPortability and Disposability:\r\nIn a fast-paced society like Dubai, where individuals are constantly on the move, the portability and disposable of Elf Bar Disposable Vape have made it highly desirable. The compact size of the device allows for easy storage in pockets, purses, or small bags, making it a convenient option for vapers who are always on the go. Additionally, the disposable factor eliminates the need for carrying around extra e-liquid bottles, chargers, or other accessories, providing a hassle-free experience.\r\nVariety of Flavors:\r\nOne of the key reasons behind the popularity of Elf Bar Disposable Vape is its extensive range of flavors. The device offers an array of options, including classic tobacco, refreshing menthol, fruity blends, and indulgent dessert flavors. UAE residents in Dubai have diverse taste preferences, and Elf Bar Disposable Vape caters to their individual choices, ensuring there is something to suit every palate.\r\nHigh-Quality Ingredients and Safety:\r\nElf Bar Disposable Vape places a strong emphasis on using high-quality ingredients in its e-liquids. The brand is committed to delivering a safe and enjoyable vaping experience, adhering to rigorous quality standards. Their e-liquids are crafted from premium ingredients, ensuring a smooth inhale, satisfying throat hit, and robust flavor profiles. Additionally, Elf Bar Disposable Vape devices comply with safety regulations, providing users with peace of mind regarding product reliability and user safety.\r\nNo Maintenance or Technical Knowledge Required:\r\nThe simplicity of Elf Bar Disposable Vape makes it an appealing choice for vapers of all levels of experience. There is no need for maintenance, coil replacements, or technical knowledge to operate the device effectively. This characteristic has attracted many novice vapers who are seeking a straightforward and hassle-free vaping experience.\r\nCost-Effective Solution:\r\nElf Bar Disposable Vape offers a cost-effective solution for vaping enthusiasts in Dubai. The affordability of the device, combined with its long-lasting battery life and ample e-liquid capacity, provides users with excellent value for their money. Rather than investing in expensive vaping devices or constantly purchasing replacement parts, Elf Bar Disposable Vape offers an accessible option that doesn\'t compromise on quality or performance.\r\nConclusion:\r\nElf Bar Disposable Vape has emerged as a popular choice among vapers in Dubai, UAE, for numerous reasons. Its convenient and user-friendly design, portability, extensive flavor range, high-quality ingredients, safety, and cost-effectiveness have all contributed to its rising popularity. With its commitment to providing a satisfying and hassle-free vaping experience, Elf Bar Disposable Vape continues to captivate vaping enthusiasts in Dubai and beyond, making it a top contender in the disposable vape market.\r\nNote: This is a fictional article created to provide information about the Elf Bar Disposable Vape. The URL provided is also fictional and does not correspond to an actual website.', 10, 4, '2023-07-18 05:20:23'),
(17, 'MateenSalik', 6, 5, '2023-08-08 08:55:04'),
(18, 'http://elanrealestate.ae', 8, 5, '2023-08-08 08:55:04'),
(19, 'mateensalik@gmail.com', 9, 5, '2023-08-08 08:55:04'),
(20, 'Hi,\r\nI want to publish my guest post on your website. Please inform me about the process.\r\nThanks:\r\nMateen', 10, 5, '2023-08-08 08:55:04'),
(21, 'test', 6, 6, '2024-12-30 05:31:21'),
(22, 'http://test.com', 8, 6, '2024-12-30 05:31:21'),
(23, 'test@gmail.com', 9, 6, '2024-12-30 05:31:21'),
(24, 'I want test', 10, 6, '2024-12-30 05:31:21'),
(25, 'a:1:{s:9:\"unique_id\";s:28:\"db0cc0c880ff1279-194160c1f42\";}', 0, 6, '2024-12-30 05:31:21');

-- --------------------------------------------------------

--
-- Table structure for table `wpom_links`
--

DROP TABLE IF EXISTS `wpom_links`;
CREATE TABLE IF NOT EXISTS `wpom_links` (
  `link_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint UNSIGNED NOT NULL DEFAULT '1',
  `link_rating` int NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_litespeed_url`
--

DROP TABLE IF EXISTS `wpom_litespeed_url`;
CREATE TABLE IF NOT EXISTS `wpom_litespeed_url` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `url` varchar(500) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `cache_tags` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  UNIQUE KEY `url` (`url`(191)),
  KEY `cache_tags` (`cache_tags`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_litespeed_url_file`
--

DROP TABLE IF EXISTS `wpom_litespeed_url_file`;
CREATE TABLE IF NOT EXISTS `wpom_litespeed_url_file` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `url_id` bigint NOT NULL,
  `vary` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'md5 of final vary',
  `filename` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'md5 of file content',
  `type` tinyint NOT NULL COMMENT 'css=1,js=2,ccss=3,ucss=4',
  `mobile` tinyint NOT NULL COMMENT 'mobile=1',
  `webp` tinyint NOT NULL COMMENT 'webp=1',
  `expired` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `filename` (`filename`),
  KEY `type` (`type`),
  KEY `url_id_2` (`url_id`,`vary`,`type`),
  KEY `filename_2` (`filename`,`expired`),
  KEY `url_id` (`url_id`,`expired`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_loginizer_logs`
--

DROP TABLE IF EXISTS `wpom_loginizer_logs`;
CREATE TABLE IF NOT EXISTS `wpom_loginizer_logs` (
  `username` varchar(255) NOT NULL DEFAULT '',
  `time` int NOT NULL DEFAULT '0',
  `count` int NOT NULL DEFAULT '0',
  `lockout` int NOT NULL DEFAULT '0',
  `ip` varchar(255) NOT NULL DEFAULT '',
  `url` varchar(255) NOT NULL DEFAULT '',
  UNIQUE KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_action_log`
--

DROP TABLE IF EXISTS `wpom_mainwp_action_log`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_action_log` (
  `id` int NOT NULL AUTO_INCREMENT,
  `log_content` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `log_type` tinyint(1) DEFAULT '0',
  `log_color` tinyint(1) DEFAULT '0',
  `log_user` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `log_timestamp` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_mainwp_action_log`
--

INSERT INTO `wpom_mainwp_action_log` (`id`, `log_content`, `log_type`, `log_color`, `log_user`, `log_timestamp`) VALUES
(1, 'CRON :: updates check found 0 websites', 2, 0, 'DOING_CRON', 1765214141),
(2, 'CRON :: Automatic updates finished', 2, 0, 'DOING_CRON', 1765246427),
(3, 'CRON :: stats', 2, 0, 'DOING_CRON', 1765246427),
(4, 'CRON :: stats', 2, 0, 'DOING_CRON', 1765246528);

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_api_keys`
--

DROP TABLE IF EXISTS `wpom_mainwp_api_keys`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_api_keys` (
  `key_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `user_id` bigint UNSIGNED NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_520_ci,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `key_pass` char(64) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `key_type` tinyint(1) NOT NULL DEFAULT '0',
  `enabled` tinyint(1) DEFAULT '0',
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_cost_tracker`
--

DROP TABLE IF EXISTS `wpom_mainwp_cost_tracker`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_cost_tracker` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `url` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `product_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `slug` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `license_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `cost_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `payment_method` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `price` decimal(26,8) NOT NULL,
  `renewal_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_renewal` int NOT NULL,
  `next_renewal` int NOT NULL,
  `next_renewal_today` int NOT NULL,
  `last_alert` int NOT NULL,
  `cost_icon` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cost_color` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `sites` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `groups` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `clients` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `note` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_group`
--

DROP TABLE IF EXISTS `wpom_mainwp_group`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_group` (
  `id` int NOT NULL AUTO_INCREMENT,
  `userid` int NOT NULL,
  `name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `color` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_lookup_item_objects`
--

DROP TABLE IF EXISTS `wpom_mainwp_lookup_item_objects`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_lookup_item_objects` (
  `lookup_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `item_id` bigint UNSIGNED NOT NULL,
  `item_name` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `object_id` bigint UNSIGNED NOT NULL,
  `object_name` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`lookup_id`),
  KEY `item_id` (`item_id`),
  KEY `object_id` (`object_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_monitors`
--

DROP TABLE IF EXISTS `wpom_mainwp_monitors`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_monitors` (
  `monitor_id` int NOT NULL AUTO_INCREMENT,
  `wpid` int NOT NULL,
  `active` tinyint(1) DEFAULT '-1',
  `type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `keyword` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `suburl` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `issub` tinyint(1) DEFAULT '0',
  `timeout` smallint NOT NULL DEFAULT '-1',
  `interval` int NOT NULL DEFAULT '-1',
  `retry_interval` int NOT NULL DEFAULT '1',
  `up_status_codes` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_status` tinyint(1) DEFAULT '99',
  `last_http_code` int NOT NULL DEFAULT '0',
  `lasttime_check` int NOT NULL,
  `retries` tinyint(1) DEFAULT '0',
  `maxretries` tinyint(1) DEFAULT '-1',
  `maxredirects` tinyint(1) DEFAULT '2',
  `method` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `dts_interval_lasttime` int NOT NULL DEFAULT '0',
  `dts_auto_monitoring_time` int NOT NULL DEFAULT '0',
  `dts_auto_monitoring_start` int NOT NULL DEFAULT '0',
  `dts_auto_monitoring_retry_time` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`monitor_id`),
  KEY `idx_wpid` (`wpid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_monitor_heartbeat`
--

DROP TABLE IF EXISTS `wpom_mainwp_monitor_heartbeat`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_monitor_heartbeat` (
  `heartbeat_id` int NOT NULL AUTO_INCREMENT,
  `monitor_id` int NOT NULL,
  `msg` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `importance` tinyint(1) NOT NULL DEFAULT '0',
  `status` smallint NOT NULL DEFAULT '3',
  `time` datetime NOT NULL,
  `ping_ms` int DEFAULT '0',
  `duration` int DEFAULT '0',
  `down_count` tinyint(1) NOT NULL DEFAULT '0',
  `http_code` smallint NOT NULL DEFAULT '0',
  PRIMARY KEY (`heartbeat_id`),
  KEY `idx_monitor_id` (`monitor_id`),
  KEY `idx_monitor_time` (`time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_monitor_stat_hourly`
--

DROP TABLE IF EXISTS `wpom_mainwp_monitor_stat_hourly`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_monitor_stat_hourly` (
  `stat_hourly_id` int NOT NULL AUTO_INCREMENT,
  `monitor_id` int NOT NULL,
  `up` int DEFAULT '0',
  `down` int DEFAULT '0',
  `ping_avg` int DEFAULT '0',
  `ping_min` int DEFAULT '0',
  `ping_max` int DEFAULT '0',
  `timestamp` int DEFAULT '0',
  PRIMARY KEY (`stat_hourly_id`),
  KEY `idx_monitor_id` (`monitor_id`),
  KEY `idx_hourly_timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_request_log`
--

DROP TABLE IF EXISTS `wpom_mainwp_request_log`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_request_log` (
  `id` int NOT NULL AUTO_INCREMENT,
  `wpid` int NOT NULL,
  `ip` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `subnet` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_schedule_processes`
--

DROP TABLE IF EXISTS `wpom_mainwp_schedule_processes`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_schedule_processes` (
  `process_id` int NOT NULL AUTO_INCREMENT,
  `item_id` int NOT NULL,
  `type` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `process_slug` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `dts_process_start` int NOT NULL DEFAULT '0',
  `dts_process_init_time` int NOT NULL DEFAULT '0',
  `dts_process_stop` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`process_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_sucuri`
--

DROP TABLE IF EXISTS `wpom_mainwp_sucuri`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_sucuri` (
  `id` int NOT NULL AUTO_INCREMENT,
  `site_id` int NOT NULL DEFAULT '0',
  `lastscan` int NOT NULL DEFAULT '0',
  `remind` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `lastremind` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_sucuri_report`
--

DROP TABLE IF EXISTS `wpom_mainwp_sucuri_report`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_sucuri_report` (
  `id` int NOT NULL AUTO_INCREMENT,
  `site_id` int NOT NULL DEFAULT '0',
  `timescan` int NOT NULL,
  `data` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_users`
--

DROP TABLE IF EXISTS `wpom_mainwp_users`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_users` (
  `userid` int NOT NULL,
  `user_email` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `ignored_plugins` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `trusted_plugins` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `trusted_plugins_notes` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `ignored_themes` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `ignored_wp_upgrades` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `trusted_themes` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `trusted_themes_notes` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `site_view` tinyint(1) NOT NULL DEFAULT '0',
  `pluginDir` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `dismissed_plugins` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `dismissed_themes` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_mainwp_users`
--

INSERT INTO `wpom_mainwp_users` (`userid`, `user_email`, `ignored_plugins`, `trusted_plugins`, `trusted_plugins_notes`, `ignored_themes`, `ignored_wp_upgrades`, `trusted_themes`, `trusted_themes_notes`, `site_view`, `pluginDir`, `dismissed_plugins`, `dismissed_themes`) VALUES
(0, '', '', '', '', '', '', '', '', 0, '', '', '');

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_wp`
--

DROP TABLE IF EXISTS `wpom_mainwp_wp`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_wp` (
  `id` int NOT NULL AUTO_INCREMENT,
  `userid` int NOT NULL,
  `adminname` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `url` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pubkey` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `privkey` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `siteurl` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `ga_id` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `gas_id` int NOT NULL,
  `offline_checks_last` int NOT NULL,
  `offline_check_result` int NOT NULL,
  `http_response_code` int NOT NULL DEFAULT '0',
  `http_code_noticed` tinyint(1) NOT NULL DEFAULT '1',
  `disable_health_check` tinyint(1) NOT NULL DEFAULT '0',
  `health_threshold` int NOT NULL DEFAULT '0',
  `note` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `statsUpdate` int NOT NULL,
  `directories` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `plugin_upgrades` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `theme_upgrades` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `translation_upgrades` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `premium_upgrades` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `securityIssues` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `themes` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `ignored_themes` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `plugins` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `ignored_plugins` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `users` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `categories` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pluginDir` text COLLATE utf8mb4_unicode_520_ci 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 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `uniqueId` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `maximumFileDescriptorsOverride` tinyint(1) NOT NULL DEFAULT '0',
  `maximumFileDescriptorsAuto` tinyint(1) NOT NULL DEFAULT '1',
  `maximumFileDescriptors` int NOT NULL DEFAULT '150',
  `primary_backup_method` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `http_user` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `http_pass` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `wpe` tinyint(1) NOT NULL,
  `is_staging` tinyint(1) NOT NULL DEFAULT '0',
  `client_id` int NOT NULL DEFAULT '0',
  `suspended` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_userid` (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_wp_backup`
--

DROP TABLE IF EXISTS `wpom_mainwp_wp_backup`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_wp_backup` (
  `id` int NOT NULL AUTO_INCREMENT,
  `userid` int NOT NULL,
  `name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `schedule` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `type` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `exclude` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `sites` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `groups` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last` int NOT NULL,
  `last_run` int NOT NULL,
  `lastStartNotificationSent` int NOT NULL DEFAULT '0',
  `last_run_manually` int NOT NULL,
  `completed_sites` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `completed` int NOT NULL,
  `backup_errors` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `subfolder` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `filename` text COLLATE utf8mb4_unicode_520_ci 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 COLLATE utf8mb4_unicode_520_ci 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 NOT NULL DEFAULT '150',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_wp_backup_progress`
--

DROP TABLE IF EXISTS `wpom_mainwp_wp_backup_progress`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_wp_backup_progress` (
  `task_id` int NOT NULL,
  `wp_id` int NOT NULL,
  `dtsFetched` int NOT NULL DEFAULT '0',
  `fetchResult` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `downloadedDB` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `downloadedFULL` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `downloadedDBComplete` tinyint(1) NOT NULL DEFAULT '0',
  `downloadedFULLComplete` tinyint(1) NOT NULL DEFAULT '0',
  `removedFiles` tinyint(1) NOT NULL DEFAULT '0',
  `attempts` int NOT NULL DEFAULT '0',
  `last_error` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pid` int NOT NULL DEFAULT '0',
  UNIQUE KEY `task_id` (`task_id`),
  KEY `idx_task_id` (`task_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_wp_clients`
--

DROP TABLE IF EXISTS `wpom_mainwp_wp_clients`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_wp_clients` (
  `client_id` int NOT NULL AUTO_INCREMENT,
  `image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `address_1` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `address_2` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `city` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `zip` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `state` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `country` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `note` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `selected_icon_info` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `client_email` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `client_phone` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `client_facebook` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `client_twitter` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `client_instagram` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `client_linkedin` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `created` int NOT NULL DEFAULT '0',
  `suspended` tinyint(1) NOT NULL DEFAULT '0',
  `primary_contact_id` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`client_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_wp_clients_contacts`
--

DROP TABLE IF EXISTS `wpom_mainwp_wp_clients_contacts`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_wp_clients_contacts` (
  `contact_id` int NOT NULL AUTO_INCREMENT,
  `contact_client_id` int NOT NULL,
  `contact_email` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `contact_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `contact_icon_info` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `contact_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `contact_phone` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `contact_role` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `facebook` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `twitter` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `instagram` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `linkedin` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`contact_id`),
  UNIQUE KEY `contact_email` (`contact_email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_wp_clients_fields`
--

DROP TABLE IF EXISTS `wpom_mainwp_wp_clients_fields`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_wp_clients_fields` (
  `field_id` int NOT NULL AUTO_INCREMENT,
  `field_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `field_desc` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `client_id` int NOT NULL,
  PRIMARY KEY (`field_id`),
  UNIQUE KEY `client_id_field_name` (`client_id`,`field_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_wp_clients_field_values`
--

DROP TABLE IF EXISTS `wpom_mainwp_wp_clients_field_values`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_wp_clients_field_values` (
  `value_id` int NOT NULL AUTO_INCREMENT,
  `field_id` int NOT NULL,
  `field_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `value_client_id` int NOT NULL,
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `value_client_id_field_id` (`value_client_id`,`field_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_wp_group`
--

DROP TABLE IF EXISTS `wpom_mainwp_wp_group`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_wp_group` (
  `wp_group_id` int NOT NULL AUTO_INCREMENT,
  `wpid` int NOT NULL,
  `groupid` int NOT NULL,
  PRIMARY KEY (`wp_group_id`),
  KEY `idx_wpid` (`wpid`),
  KEY `idx_groupid` (`groupid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_wp_logs`
--

DROP TABLE IF EXISTS `wpom_mainwp_wp_logs`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_wp_logs` (
  `log_id` bigint NOT NULL AUTO_INCREMENT,
  `site_id` bigint UNSIGNED DEFAULT NULL,
  `object_id` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `item` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` int UNSIGNED NOT NULL DEFAULT '0',
  `action` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `context` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `connector` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `state` tinyint UNSIGNED DEFAULT NULL,
  `created` int NOT NULL DEFAULT '0',
  `duration` float(11,4) NOT NULL DEFAULT '0.0000',
  `dismiss` tinyint(1) NOT NULL DEFAULT '0',
  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`),
  KEY `index_site_object_id` (`site_id`,`object_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_wp_logs_meta`
--

DROP TABLE IF EXISTS `wpom_mainwp_wp_logs_meta`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_wp_logs_meta` (
  `meta_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `meta_log_id` bigint UNSIGNED NOT NULL,
  `meta_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_value` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `meta_log_id` (`meta_log_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_wp_options`
--

DROP TABLE IF EXISTS `wpom_mainwp_wp_options`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_wp_options` (
  `opt_id` int NOT NULL AUTO_INCREMENT,
  `wpid` int NOT NULL,
  `name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`opt_id`),
  KEY `idx_wpid` (`wpid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_wp_settings_backup`
--

DROP TABLE IF EXISTS `wpom_mainwp_wp_settings_backup`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_wp_settings_backup` (
  `set_id` int NOT NULL AUTO_INCREMENT,
  `wpid` int NOT NULL,
  `archiveFormat` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`set_id`),
  KEY `idx_wpid` (`wpid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_wp_status`
--

DROP TABLE IF EXISTS `wpom_mainwp_wp_status`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_wp_status` (
  `statusid` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `wpid` int NOT NULL,
  `http_code` smallint NOT NULL DEFAULT '0',
  `status` tinyint(1) NOT NULL DEFAULT '0',
  `event_timestamp` int NOT NULL,
  `duration` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`statusid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_mainwp_wp_sync`
--

DROP TABLE IF EXISTS `wpom_mainwp_wp_sync`;
CREATE TABLE IF NOT EXISTS `wpom_mainwp_wp_sync` (
  `sync_id` int NOT NULL AUTO_INCREMENT,
  `wpid` int NOT NULL,
  `version` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `sync_errors` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `uptodate` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `dtsAutomaticSync` int NOT NULL DEFAULT '0',
  `dtsAutomaticSyncStart` int NOT NULL DEFAULT '0',
  `dtsSync` int NOT NULL DEFAULT '0',
  `dtsSyncStart` int NOT NULL DEFAULT '0',
  `totalsize` int NOT NULL DEFAULT '0',
  `dbsize` int NOT NULL DEFAULT '0',
  `extauth` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_post_gmt` int NOT NULL DEFAULT '0',
  `health_value` int 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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_options`
--

DROP TABLE IF EXISTS `wpom_options`;
CREATE TABLE IF NOT EXISTS `wpom_options` (
  `option_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=MyISAM AUTO_INCREMENT=348644 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_options`
--

INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://localhost/onlineincshop', 'yes'),
(2, 'home', 'http://localhost/onlineincshop', 'yes'),
(3, 'blogname', 'Online Shop in Dubai, UAE', 'yes'),
(4, 'blogdescription', 'Write for us - Guest Post', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', 'admin@onlineincshop.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', '', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', 'login@example.com', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', '', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%year%/%monthnum%/%day%/%postname%/', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:16:{i:0;s:49:\"advanced-database-cleaner/advanced-db-cleaner.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:11:\"amp/amp.php\";i:3;s:33:\"classic-editor/classic-editor.php\";i:4;s:35:\"insert-headers-and-footers/ihaf.php\";i:5;s:51:\"mainwp-sucuri-extension/mainwp-sucuri-extension.php\";i:6;s:17:\"mainwp/mainwp.php\";i:7;s:47:\"robin-image-optimizer/robin-image-optimizer.php\";i:8;s:39:\"robots-txt-editor/robots-txt-editor.php\";i:9;s:37:\"td-cloud-library/td-cloud-library.php\";i:10;s:27:\"td-composer/td-composer.php\";i:11;s:37:\"td-mobile-plugin/td-mobile-plugin.php\";i:12;s:31:\"td-newsletter/td-newsletter.php\";i:13;s:39:\"td-social-counter/td-social-counter.php\";i:14;s:37:\"td-standard-pack/td-standard-pack.php\";i:15;s:35:\"td-subscription/td-subscription.php\";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'https://rpc.pingomatic.com/', 'yes'),
(36, 'comment_max_links', '2', 'yes'),
(37, 'gmt_offset', '0', 'yes'),
(38, 'default_email_category', '1', 'yes'),
(39, 'recently_edited', 'a:2:{i:0;s:70:\"/home/femauito/onlineincshop.com/wp-content/themes/Newspaper/style.css\";i:1;s:0:\"\";}', 'no'),
(40, 'template', 'Newspaper', 'yes'),
(41, 'stylesheet', 'Newspaper', 'yes'),
(42, 'comment_registration', '', 'yes'),
(43, 'html_type', 'text/html', 'yes'),
(44, 'use_trackback', '0', 'yes'),
(45, 'default_role', 'subscriber', 'yes'),
(46, 'db_version', '60717', 'yes'),
(47, 'uploads_use_yearmonth_folders', '1', 'yes'),
(48, 'upload_path', '', 'yes'),
(49, 'blog_public', '1', 'yes'),
(50, 'default_link_category', '2', 'yes'),
(51, 'show_on_front', 'page', 'yes'),
(52, 'tag_base', '', 'yes'),
(53, 'show_avatars', '1', 'yes'),
(54, 'avatar_rating', 'G', 'yes'),
(55, 'upload_url_path', '', 'yes'),
(56, 'thumbnail_size_w', '150', 'yes'),
(57, 'thumbnail_size_h', '150', 'yes'),
(58, 'thumbnail_crop', '1', 'yes'),
(59, 'medium_size_w', '300', 'yes'),
(60, 'medium_size_h', '300', 'yes'),
(61, 'avatar_default', 'mystery', 'yes'),
(62, 'large_size_w', '1024', 'yes'),
(63, 'large_size_h', '1024', 'yes'),
(64, 'image_default_link_type', 'none', 'yes'),
(65, 'image_default_size', '', 'yes'),
(66, 'image_default_align', '', 'yes'),
(67, 'close_comments_for_old_posts', '', 'yes'),
(68, 'close_comments_days_old', '14', 'yes'),
(69, 'thread_comments', '1', 'yes'),
(70, 'thread_comments_depth', '5', 'yes'),
(71, 'page_comments', '', '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:6:{s:23:\"loginizer/loginizer.php\";s:22:\"loginizer_deactivation\";s:39:\"robots-txt-editor/robots-txt-editor.php\";a:2:{i:0;s:25:\"RobotsTxt\\RobotsTxtPlugin\";i:1;s:9:\"uninstall\";}s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:27:\"perfmatters/perfmatters.php\";s:21:\"perfmatters_uninstall\";s:49:\"advanced-database-cleaner/advanced-db-cleaner.php\";a:2:{i:0;s:24:\"ADBC_Advanced_DB_Cleaner\";i:1;s:14:\"aDBc_uninstall\";}s:35:\"litespeed-cache/litespeed-cache.php\";s:47:\"LiteSpeed\\Activation::uninstall_litespeed_cache\";}', 'no'),
(80, 'timezone_string', '', 'yes'),
(81, 'page_for_posts', '0', 'yes'),
(82, 'page_on_front', '32', 'yes'),
(83, 'default_post_format', '0', 'yes'),
(84, 'link_manager_enabled', '0', 'yes'),
(85, 'finished_splitting_shared_terms', '1', 'yes'),
(86, 'site_icon', '0', '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', '1779601979', '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:{}', 'off'),
(99, 'initial_db_version', '51917', 'yes'),
(100, 'wpom_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:77:{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:14:\"frm_view_forms\";b:1;s:14:\"frm_edit_forms\";b:1;s:16:\"frm_delete_forms\";b:1;s:19:\"frm_change_settings\";b:1;s:16:\"frm_view_entries\";b:1;s:18:\"frm_delete_entries\";b:1;s:15:\"manage_security\";b:1;s:20:\"wpcode_edit_snippets\";b:1;s:24:\"wpcode_activate_snippets\";b:1;s:26:\"create_notes_elementor-pro\";b:1;s:24:\"edit_notes_elementor-pro\";b:1;s:26:\"delete_notes_elementor-pro\";b:1;s:24:\"read_notes_elementor-pro\";b:1;s:31:\"edit_others_notes_elementor-pro\";b:1;s:33:\"delete_others_notes_elementor-pro\";b:1;s:39:\"read_others_private_notes_elementor-pro\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}', 'yes'),
(101, 'fresh_site', '0', 'off'),
(102, 'widget_block', 'a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}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'),
(103, 'sidebars_widgets', 'a:3:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:10:\"td-default\";a:0:{}s:13:\"array_version\";i:3;}', 'yes'),
(104, 'cron', 'a:24:{i:1756546161;a:0:{}i:1765248761;a:3:{s:30:\"mainwp_cronupdatescheck_action\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:8:\"minutely\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}s:39:\"mainwp_cronuptimemonitoringcheck_action\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:8:\"minutely\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}s:35:\"mainwp_cron_perform_general_process\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:8:\"minutely\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1765250081;a:1:{s:27:\"mainwp_cronreconnect_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:1765250150;a:2:{s:17:\"amp_validate_urls\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:31:\"amp_validated_url_stylesheet_gc\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1765250591;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:1765252547;a:1:{s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1765255100;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"a7099463c1119be482c503fc5d4d64ee\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:648;}}}}i:1765256529;a:1:{s:21:\"td_instagram_cron_job\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"3hours\";s:4:\"args\";a:0:{}s:8:\"interval\";i:10800;}}}i:1765258696;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1765261439;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:1765263291;a:1:{s:33:\"updraftplus_clean_temporary_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1765270366;a:1:{s:13:\"tds_cron_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1765273923;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:1765275332;a:1:{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;}}}i:1765275789;a:4:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1765275903;a:1:{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:1765275904;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:1765278950;a:2:{s:33:\"amp_monitor_css_transient_caching\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:22:\"amp_validation_data_gc\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1765279695;a:1:{s:19:\"td_clear_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:1765295409;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:1765300481;a:3:{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;}}s:42:\"mainwp_crondeactivatedlicensesalert_action\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:53:\"mainwp_sucuri_extension_cronsecurityscan_notification\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1765423431;a:1:{s:26:\"wpcode_usage_tracking_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1765707789;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}', 'on'),
(348346, 'litespeed.optimize.timestamp_purge_css', '1765214220', 'auto'),
(348347, 'litespeed.gui.lscwp_whm_install', '-1', 'auto'),
(326063, 'frm_feedback_expired', '2025-09-11', 'auto'),
(325900, 'wpseo_llms_txt_content_hash', '', 'auto'),
(105, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(106, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(107, 'widget_archives', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(108, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(109, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(110, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(111, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(112, 'widget_meta', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(113, 'widget_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(114, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(115, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(116, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(118, 'recovery_keys', 'a:0:{}', 'off'),
(119, 'theme_mods_twentytwentytwo', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1645519843;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\";}}}}', 'no'),
(120, 'loginizer_version', '2.0.3', 'yes'),
(121, 'loginizer_options', 'a:0:{}', 'yes'),
(122, 'loginizer_last_reset', '1765213327', 'yes'),
(123, 'loginizer_whitelist', 'a:0:{}', 'yes'),
(124, 'loginizer_blacklist', 'a:0:{}', 'yes'),
(125, 'loginizer_2fa_whitelist', 'a:0:{}', 'yes'),
(126, 'loginizer_ins_time', '1644661391', 'yes'),
(127, 'loginizer_promo_time', '-1657789069', 'yes'),
(131, 'https_detection_errors', 'a:0:{}', 'off'),
(745, 'auto_core_update_notified', 'a:4:{s:4:\"type\";s:4:\"fail\";s:5:\"email\";s:23:\"admin@onlineincshop.com\";s:7:\"version\";s:3:\"6.9\";s:9:\"timestamp\";i:1764738958;}', 'off'),
(589, 'widget_td_block_ad_box_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(590, 'widget_td_block_authors_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(591, 'widget_td_block_author_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(592, 'widget_td_block_popular_categories_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(593, 'widget_td_block_slide_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(594, 'widget_td_block_text_with_title_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(595, 'widget_td_block_weather_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(596, 'widget_td_block_exchange_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(597, 'widget_td_block_instagram_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(147, 'finished_updating_comment_type', '1', 'yes'),
(8870, 'user_count', '1', 'no'),
(598, 'widget_td_block_pinterest_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(599, 'widget_td_block_image_box_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(601, 'td_011', 'a:219:{s:27:\"theme_update_latest_version\";s:87:\"{\"12.7.3\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/Newspaper-1.zip\"}\";s:21:\"theme_update_versions\";s:431:\"[{\"12.7.3\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/Newspaper-1.zip\"},{\"12.7.2\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/Newspaper.zip\"},{\"12.7.1\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/04\\/Newspaper.zip\"},{\"12.7\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/03\\/Newspaper.zip\"},{\"12.6.9\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/02\\/Newspaper.zip\"}]\";s:14:\"td_remote_http\";a:2:{s:9:\"test_time\";i:1632929798;s:11:\"test_status\";s:9:\"wordpress\";}s:12:\"firstInstall\";s:14:\"themeInstalled\";s:13:\"td_log_status\";s:3:\"off\";s:24:\"tds_login_sign_in_widget\";s:0:\"\";s:18:\"tds_thumb_td_150x0\";s:3:\"yes\";s:20:\"tds_thumb_td_218x150\";s:3:\"yes\";s:18:\"tds_thumb_td_300x0\";s:3:\"yes\";s:20:\"tds_thumb_td_324x400\";s:3:\"yes\";s:20:\"tds_thumb_td_485x360\";s:3:\"yes\";s:18:\"tds_thumb_td_696x0\";s:3:\"yes\";s:19:\"tds_thumb_td_1068x0\";s:3:\"yes\";s:19:\"tds_thumb_td_1920x0\";s:3:\"yes\";s:23:\"td_social_drag_and_drop\";a:21:{s:8:\"facebook\";b:1;s:7:\"twitter\";b:1;s:9:\"pinterest\";b:1;s:8:\"whatsapp\";b:1;s:8:\"linkedin\";b:0;s:6:\"reddit\";b:0;s:4:\"mail\";b:0;s:5:\"print\";b:0;s:6:\"tumblr\";b:0;s:8:\"telegram\";b:0;s:11:\"stumbleupon\";b:0;s:2:\"vk\";b:0;s:4:\"digg\";b:0;s:4:\"line\";b:0;s:5:\"viber\";b:0;s:5:\"naver\";b:0;s:9:\"flipboard\";s:0:\"\";s:8:\"copy_url\";s:0:\"\";s:5:\"kakao\";s:0:\"\";s:5:\"gettr\";s:0:\"\";s:3:\"koo\";s:0:\"\";}s:18:\"td_social_networks\";a:0:{}s:10:\"td_version\";s:6:\"12.6.8\";s:9:\"td_011_tp\";i:1645519906;s:9:\"td_011_ta\";s:7:\"lp_sent\";s:7:\"td_011_\";i:2;s:11:\"tdc_savings\";a:4:{s:12:\"recentColors\";a:18:{i:0;s:12:\"IiNhYWFhYWEi\";i:1;s:24:\"InJnYmEoMCwwLDAsMC4wOCki\";i:2;s:24:\"InJnYmEoMCwwLDAsMC4wOSki\";i:3;s:32:\"InJnYmEoMjU1LDI1NSwyNTUsMC44KSI=\";i:4;s:28:\"InJnYmEoMjU1LDI1NSwyNTUsMCki\";i:5;s:12:\"IiNkZGRkZGQi\";i:6;s:12:\"IiM2ZDI5Mjki\";i:7;s:12:\"IiM5OTk5OTki\";i:8;s:12:\"IiMxNTJiZjci\";i:9;s:12:\"IiM1NjVmNmQi\";i:10;s:12:\"IiNlYWVhZWEi\";i:11;s:12:\"IiMwMDAwMDAi\";i:12;s:12:\"IiNmN2Y3Zjci\";i:13;s:12:\"IiNmNGY0ZjQi\";i:14;s:12:\"IiNmZmZmZmYi\";i:15;s:24:\"InJnYmEoMCwwLDAsMC4xMiki\";i:16;s:12:\"IiNjMTFmMWYi\";i:17;s:12:\"IiNlYzM1MzUi\";}s:11:\"recentFonts\";a:7:{i:0;s:3:\"421\";i:1;s:3:\"420\";i:2;s:3:\"892\";i:3;s:3:\"453\";i:4;s:3:\"456\";i:5;s:4:\"fs_2\";i:6;s:3:\"653\";}s:5:\"fonts\";a:9:{i:0;a:2:{s:4:\"name\";s:20:\"Block title Work BIG\";s:5:\"value\";s:212:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfd2VpZ2h0IjoiNzAwIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl6TWlJc0luQnZjblJ5WVdsMElqb2lNakFpTENKc1lXNWtjMk5oY0dVaU9pSXlOaUo5IiwiZm9udF9zcGFjaW5nIjoiLTEiLCJmb250X2xpbmVfaGVpZ2h0IjoiMSJ9\";}i:1;a:2:{s:4:\"name\";s:15:\"Small Caps Work\";s:5:\"value\";s:200:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TXlJc0luQnZjblJ5WVdsMElqb2lNVElpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxLjIiLCJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSJ9\";}i:2;a:2:{s:4:\"name\";s:6:\"big pt\";s:5:\"value\";s:248:\"eyJmb250X2ZhbWlseSI6IjQ1NiIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJeU5pSXNJbXhoYm1SelkyRndaU0k2SWpFNUlpd2ljRzl5ZEhKaGFYUWlPaUl4TnlKOSIsImZvbnRfbGluZV9oZWlnaHQiOiIxLjEiLCJmb250X3N0eWxlIjoidW5kZWZpbmVkIiwiZm9udF93ZWlnaHQiOiI2MDAiLCJmb250X3RyYW5zZm9ybSI6IiJ9\";}i:3;a:2:{s:4:\"name\";s:8:\"cat work\";s:5:\"value\";s:252:\"eyJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9mYW1pbHkiOiI2NTMiLCJmb250X3NpemUiOiJleUpoYkd3aU9pSXhNeUlzSW5CdmNuUnlZV2wwSWpvaU1USWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE1pSXNJbkJvYjI1bElqb2lNVElpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIn0=\";}i:4;a:2:{s:4:\"name\";s:6:\"cat-sm\";s:5:\"value\";s:228:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfdHJhbnNmb3JtIjoidXBwZXJjYXNlIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TWlJc0lteGhibVJ6WTJGd1pTSTZJakV4SW4wPSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9saW5lX2hlaWdodCI6IjEiLCJmb250X3NwYWNpbmciOiItMC41In0=\";}i:5;a:2:{s:4:\"name\";s:7:\"excl-sm\";s:5:\"value\";s:280:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfdHJhbnNmb3JtIjoidXBwZXJjYXNlIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TWlJc0lteGhibVJ6WTJGd1pTSTZJakV4SWl3aWNHOXlkSEpoYVhRaU9pSXhNU0lzSW5Cb2IyNWxJam9pTVRFaWZRPT0iLCJmb250X3dlaWdodCI6IjUwMCIsImZvbnRfbGluZV9oZWlnaHQiOiIxIiwiZm9udF9zcGFjaW5nIjoiLTAuNSJ9\";}i:6;a:2:{s:4:\"name\";s:8:\"excl-big\";s:5:\"value\";s:252:\"eyJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9mYW1pbHkiOiI2NTMiLCJmb250X3NpemUiOiJleUpoYkd3aU9pSXhNeUlzSW5CdmNuUnlZV2wwSWpvaU1URWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE1pSXNJbkJvYjI1bElqb2lNVEVpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIn0=\";}i:7;a:2:{s:4:\"name\";s:11:\"medium work\";s:5:\"value\";s:212:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJeU5DSXNJbkJ2Y25SeVlXbDBJam9pTWpBaUxDSnNZVzVrYzJOaGNHVWlPaUl5TWlKOSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIiwiZm9udF93ZWlnaHQiOiI3MDAiLCJmb250X3NwYWNpbmciOiItMSJ9\";}i:8;a:2:{s:4:\"name\";s:6:\"bigggg\";s:5:\"value\";s:272:\"eyJmb250X3dlaWdodCI6IjcwMCIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJME1pSXNJbXhoYm1SelkyRndaU0k2SWpNMklpd2ljRzl5ZEhKaGFYUWlPaUl6TWlJc0luQm9iMjVsSWpvaU16QWlmUT09IiwiZm9udF9mYW1pbHkiOiI0NTYiLCJmb250X2xpbmVfaGVpZ2h0IjoiMSIsImZvbnRfc3R5bGUiOiJ1bmRlZmluZWQiLCJmb250X3RyYW5zZm9ybSI6IiJ9\";}}s:9:\"gradients\";a:1:{i:0;s:660:\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\";}}s:19:\"tdb_header_template\";s:15:\"tdb_template_84\";s:12:\"tds_logo_alt\";s:0:\"\";s:14:\"tds_logo_title\";s:0:\"\";s:13:\"tds_logo_text\";s:0:\"\";s:16:\"tds_tagline_text\";s:0:\"\";s:15:\"tds_ios_icon_76\";s:0:\"\";s:16:\"tds_ios_icon_114\";s:0:\"\";s:16:\"tds_ios_icon_120\";s:0:\"\";s:16:\"tds_ios_icon_144\";s:0:\"\";s:16:\"tds_ios_icon_152\";s:0:\"\";s:19:\"tdb_footer_template\";s:15:\"tdb_template_92\";s:18:\"tds_modal_video_ad\";s:0:\"\";s:24:\"tds_modal_video_ad_title\";s:0:\"\";s:26:\"tds_modal_video_ad_disable\";s:0:\"\";s:24:\"tds_background_click_url\";s:0:\"\";s:27:\"tds_background_click_target\";s:0:\"\";s:17:\"tds_smart_sidebar\";s:0:\"\";s:10:\"tds_to_top\";s:0:\"\";s:20:\"tds_to_top_on_mobile\";s:0:\"\";s:19:\"tds_animation_stack\";s:0:\"\";s:26:\"tds_animation_stack_effect\";s:0:\"\";s:19:\"tds_404_page_layout\";s:0:\"\";s:23:\"tds_archive_page_layout\";s:0:\"\";s:23:\"tds_archive_sidebar_pos\";s:0:\"\";s:19:\"tds_archive_sidebar\";s:0:\"\";s:26:\"tds_attachment_sidebar_pos\";s:0:\"\";s:22:\"tds_attachment_sidebar\";s:0:\"\";s:22:\"tds_author_page_layout\";s:0:\"\";s:22:\"tds_author_sidebar_pos\";s:0:\"\";s:18:\"tds_author_sidebar\";s:0:\"\";s:20:\"tds_home_page_layout\";s:0:\"\";s:20:\"tds_home_sidebar_pos\";s:0:\"\";s:16:\"tds_home_sidebar\";s:0:\"\";s:20:\"tds_page_layout_size\";s:49:\"td_cl tdc-row stretch_row_1400 td-stretch-content\";s:20:\"tds_page_sidebar_pos\";s:0:\"\";s:16:\"tds_page_sidebar\";s:0:\"\";s:26:\"tds_disable_comments_pages\";s:0:\"\";s:22:\"tds_search_page_layout\";s:0:\"\";s:22:\"tds_search_sidebar_pos\";s:0:\"\";s:18:\"tds_search_sidebar\";s:0:\"\";s:19:\"tds_tag_page_layout\";s:0:\"\";s:19:\"tds_tag_sidebar_pos\";s:0:\"\";s:15:\"tds_tag_sidebar\";s:0:\"\";s:19:\"tds_woo_sidebar_pos\";s:0:\"\";s:15:\"tds_woo_sidebar\";s:0:\"\";s:26:\"tds_woo_single_sidebar_pos\";s:0:\"\";s:22:\"tds_woo_single_sidebar\";s:0:\"\";s:23:\"tds_bbpress_sidebar_pos\";s:0:\"\";s:19:\"tds_bbpress_sidebar\";s:0:\"\";s:36:\"tds_taxonomy_post_format_page_layout\";s:0:\"\";s:36:\"tds_taxonomy_post_format_sidebar_pos\";s:0:\"\";s:32:\"tds_taxonomy_post_format_sidebar\";s:0:\"\";s:21:\"tdb_category_template\";s:15:\"tdb_template_86\";s:23:\"tds_general_modal_image\";s:0:\"\";s:26:\"tds_disable_article_schema\";s:0:\"\";s:29:\"td_default_site_post_template\";s:15:\"tdb_template_89\";s:20:\"tds_tweeter_username\";s:0:\"\";s:24:\"tds_ajax_post_view_count\";s:0:\"\";s:21:\"tds_video_playing_one\";s:0:\"\";s:22:\"tds_video_pause_hidden\";s:0:\"\";s:14:\"tds_video_lazy\";s:0:\"\";s:16:\"tds_video_scroll\";s:0:\"\";s:15:\"tds_video_width\";s:0:\"\";s:20:\"tds_video_position_v\";s:0:\"\";s:20:\"tds_video_distance_v\";s:0:\"\";s:20:\"tds_video_position_h\";s:0:\"\";s:20:\"tds_video_distance_h\";s:0:\"\";s:25:\"tds_global_block_template\";s:0:\"\";s:25:\"tds_category_module_slide\";s:0:\"\";s:29:\"tds_category_module_mega_menu\";s:0:\"\";s:22:\"tds_m_show_author_name\";s:0:\"\";s:15:\"tds_m_show_date\";s:0:\"\";s:24:\"tds_m_show_modified_date\";s:0:\"\";s:19:\"tds_m_show_comments\";s:0:\"\";s:17:\"tds_m_show_review\";s:0:\"\";s:25:\"tds_p_enable_7_days_count\";s:0:\"\";s:26:\"tds_site_background_repeat\";s:0:\"\";s:30:\"tds_site_background_position_x\";s:0:\"\";s:30:\"tds_site_background_attachment\";s:0:\"\";s:22:\"tds_stretch_background\";s:0:\"\";s:27:\"tds_mobile_background_image\";s:59:\"https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\";s:28:\"tds_mobile_background_repeat\";s:0:\"\";s:26:\"tds_mobile_background_size\";s:0:\"\";s:30:\"tds_mobile_background_position\";s:0:\"\";s:26:\"tds_login_background_image\";s:59:\"https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\";s:27:\"tds_login_background_repeat\";s:0:\"\";s:25:\"tds_login_background_size\";s:0:\"\";s:29:\"tds_login_background_position\";s:0:\"\";s:17:\"tds_excerpts_type\";s:0:\"\";s:29:\"td_module_slide_title_excerpt\";s:0:\"\";s:33:\"td_module_mega_menu_title_excerpt\";s:0:\"\";s:36:\"td_module_trending_now_title_excerpt\";s:0:\"\";s:12:\"tds_language\";s:0:\"\";s:18:\"g_use_google_fonts\";s:0:\"\";s:22:\"g_mob_use_google_fonts\";s:0:\"\";s:14:\"tds_custom_css\";s:0:\"\";s:26:\"tds_responsive_css_desktop\";s:0:\"\";s:33:\"tds_responsive_css_ipad_landscape\";s:0:\"\";s:32:\"tds_responsive_css_ipad_portrait\";s:0:\"\";s:24:\"tds_responsive_css_phone\";s:0:\"\";s:15:\"td_body_classes\";s:0:\"\";s:21:\"tds_custom_javascript\";s:0:\"\";s:15:\"tds_custom_html\";s:0:\"\";s:12:\"td_analytics\";s:0:\"\";s:12:\"td_body_code\";s:0:\"\";s:14:\"td_footer_code\";s:0:\"\";s:14:\"tds_yt_api_key\";s:0:\"\";s:18:\"tds_flickr_api_key\";s:0:\"\";s:12:\"tds_rel_type\";s:0:\"\";s:10:\"tds_button\";s:0:\"\";s:14:\"tdm_btn_radius\";s:0:\"\";s:9:\"tds_title\";s:0:\"\";s:20:\"tdm_bordered_website\";s:0:\"\";s:22:\"td_fonts_user_inserted\";a:31:{s:11:\"font_file_1\";s:0:\"\";s:13:\"font_family_1\";s:0:\"\";s:11:\"font_file_2\";s:0:\"\";s:13:\"font_family_2\";s:0:\"\";s:11:\"font_file_3\";s:0:\"\";s:13:\"font_family_3\";s:0:\"\";s:11:\"font_file_4\";s:0:\"\";s:13:\"font_family_4\";s:0:\"\";s:11:\"font_file_5\";s:0:\"\";s:13:\"font_family_5\";s:0:\"\";s:10:\"typekit_js\";s:0:\"\";s:22:\"type_kit_font_family_1\";s:0:\"\";s:22:\"type_kit_font_family_2\";s:0:\"\";s:22:\"type_kit_font_family_3\";s:0:\"\";s:10:\"g_100_thin\";s:0:\"\";s:17:\"g_100_thin_italic\";s:0:\"\";s:17:\"g_200_extra_light\";s:0:\"\";s:24:\"g_200_extra_light_italic\";s:0:\"\";s:11:\"g_300_light\";s:0:\"\";s:18:\"g_300_light_italic\";s:0:\"\";s:19:\"g_400_normal_italic\";s:0:\"\";s:12:\"g_500_medium\";s:0:\"\";s:19:\"g_500_medium_italic\";s:0:\"\";s:15:\"g_600_semi_bold\";s:0:\"\";s:22:\"g_600_semi_bold_italic\";s:0:\"\";s:10:\"g_700_bold\";s:0:\"\";s:17:\"g_700_bold_italic\";s:0:\"\";s:16:\"g_800_extra_bold\";s:0:\"\";s:23:\"g_800_extra_bold_italic\";s:0:\"\";s:11:\"g_900_black\";s:0:\"\";s:18:\"g_900_black_italic\";s:0:\"\";}s:19:\"td_fonts_css_buffer\";s:0:\"\";s:18:\"td_fonts_js_buffer\";s:0:\"\";s:16:\"td_fonts_default\";a:1:{s:13:\"default_fonts\";s:0:\"\";}s:20:\"tds_user_compile_css\";s:5392:\".td-menu-background,\r\n    .td-search-background {\r\n        background-image: url(\'https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\');\r\n    }\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n\r\n\r\n    \r\n    .white-popup-block:before {\r\n        background-image: url(\'https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\');\r\n    }\r\n\r\n    \r\n    .td_cl .td-container {\r\n        width: 100%;\r\n    }\r\n    @media (min-width: 768px) and (max-width: 1018px) {\r\n        .td_cl {\r\n            padding: 0 14px;\r\n        }\r\n    }\r\n    @media (max-width: 767px) {\r\n        .td_cl .td-container {\r\n            padding: 0;\r\n        }\r\n    }\r\n    @media (min-width: 1019px) and (max-width: 1140px) {\r\n        .td_cl.stretch_row_content_no_space {\r\n            padding-left: 20px;\r\n            padding-right: 20px;\r\n        }\r\n    }\r\n    @media (min-width: 1141px) {\r\n        .td_cl.stretch_row_content_no_space {\r\n            padding-left: 24px;\r\n            padding-right: 24px;\r\n        }\r\n    }\r\n        \r\n    :root{--td_theme_color:#ec3535;--td_slider_text:rgba(236,53,53,0.7);--td_mobile_gradient_one_mob:rgba(0,0,0,0.8);--td_mobile_gradient_two_mob:rgba(0,0,0,0.8);--td_mobile_text_active_color:#ec3535;--td_login_hover_background:#ec3535;--td_login_hover_color:#ffffff;--td_login_gradient_one:rgba(0,0,0,0.65);--td_login_gradient_two:rgba(0,0,0,0.72);}.td-header-style-12 .td-header-menu-wrap-full,\r\n    .td-header-style-12 .td-affix,\r\n    .td-grid-style-1.td-hover-1 .td-big-grid-post:hover .td-post-category,\r\n    .td-grid-style-5.td-hover-1 .td-big-grid-post:hover .td-post-category,\r\n    .td_category_template_3 .td-current-sub-category,\r\n    .td_category_template_8 .td-category-header .td-category a.td-current-sub-category,\r\n    .td_category_template_4 .td-category-siblings .td-category a:hover,\r\n     .td_block_big_grid_9.td-grid-style-1 .td-post-category,\r\n    .td_block_big_grid_9.td-grid-style-5 .td-post-category,\r\n    .td-grid-style-6.td-hover-1 .td-module-thumb:after,\r\n     .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > li > a:hover,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .sfHover > a {\r\n        background-color: #ec3535;\r\n    }\r\n    \r\n    .td_mega_menu_sub_cats .cur-sub-cat,\r\n    .td-mega-span h3 a:hover,\r\n    .td_mod_mega_menu:hover .entry-title a,\r\n    .header-search-wrap .result-msg a:hover,\r\n    .td-header-top-menu .td-drop-down-search .td_module_wrap:hover .entry-title a,\r\n    .td-header-top-menu .td-icon-search:hover,\r\n    .td-header-wrap .result-msg a:hover,\r\n    .top-header-menu li a:hover,\r\n    .top-header-menu .current-menu-item > a,\r\n    .top-header-menu .current-menu-ancestor > a,\r\n    .top-header-menu .current-category-ancestor > a,\r\n    .td-social-icon-wrap > a:hover,\r\n    .td-header-sp-top-widget .td-social-icon-wrap a:hover,\r\n    .td_mod_related_posts:hover h3 > a,\r\n    .td-post-template-11 .td-related-title .td-related-left:hover,\r\n    .td-post-template-11 .td-related-title .td-related-right:hover,\r\n    .td-post-template-11 .td-related-title .td-cur-simple-item,\r\n    .td-post-template-11 .td_block_related_posts .td-next-prev-wrap a:hover,\r\n    .td-category-header .td-pulldown-category-filter-link:hover,\r\n    .td-category-siblings .td-subcat-dropdown a:hover,\r\n    .td-category-siblings .td-subcat-dropdown a.td-current-sub-category,\r\n    .footer-text-wrap .footer-email-wrap a,\r\n    .footer-social-wrap a:hover,\r\n    .td_module_17 .td-read-more a:hover,\r\n    .td_module_18 .td-read-more a:hover,\r\n    .td_module_19 .td-post-author-name a:hover,\r\n    .td-pulldown-syle-2 .td-subcat-dropdown:hover .td-subcat-more span,\r\n    .td-pulldown-syle-2 .td-subcat-dropdown:hover .td-subcat-more i,\r\n    .td-pulldown-syle-3 .td-subcat-dropdown:hover .td-subcat-more span,\r\n    .td-pulldown-syle-3 .td-subcat-dropdown:hover .td-subcat-more i,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .sfHover > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > li > a:hover {\r\n        color: #ec3535;\r\n    }\r\n    \r\n    .td-mega-menu-page .wpb_content_element ul li a:hover,\r\n    .td-theme-wrap .td-aj-search-results .td_module_wrap:hover .entry-title a,\r\n    .td-theme-wrap .header-search-wrap .result-msg a:hover {\r\n        color: #ec3535 !important;\r\n    }\r\n    \r\n    .td_category_template_8 .td-category-header .td-category a.td-current-sub-category,\r\n    .td_category_template_4 .td-category-siblings .td-category a:hover,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > li > a:hover,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .sfHover > a {\r\n        border-color: #ec3535;\r\n    }\";s:15:\"tds_theme_color\";s:7:\"#ec3535\";s:25:\"tds_site_background_color\";s:0:\"\";s:14:\"tds_site_boxed\";s:0:\"\";s:16:\"tds_header_color\";s:0:\"\";s:21:\"tds_text_header_color\";s:0:\"\";s:21:\"tds_mobile_menu_color\";s:0:\"\";s:22:\"tds_mobile_icons_color\";s:0:\"\";s:27:\"tds_mobile_gradient_one_mob\";s:15:\"rgba(0,0,0,0.8)\";s:27:\"tds_mobile_gradient_two_mob\";s:15:\"rgba(0,0,0,0.8)\";s:21:\"tds_mobile_text_color\";s:0:\"\";s:28:\"tds_mobile_text_active_color\";s:7:\"#ec3535\";s:32:\"tds_mobile_button_background_mob\";s:0:\"\";s:27:\"tds_mobile_button_color_mob\";s:0:\"\";s:21:\"tdb_p_autoload_status\";s:3:\"off\";s:19:\"tdb_p_autoload_type\";s:0:\"\";s:20:\"tdb_p_autoload_count\";s:0:\"\";s:29:\"tdb_p_autoload_scroll_percent\";s:0:\"\";s:16:\"tdb_404_template\";s:15:\"tdb_template_90\";s:17:\"tdb_date_template\";s:15:\"tdb_template_91\";s:23:\"tdb_attachment_template\";s:0:\"\";s:19:\"tdb_author_template\";s:15:\"tdb_template_85\";s:20:\"tdb_author_templates\";a:1:{i:1;s:0:\"\";}s:19:\"tdb_search_template\";s:15:\"tdb_template_88\";s:16:\"tdb_tag_template\";s:15:\"tdb_template_87\";s:17:\"tdb_tag_templates\";a:1:{s:16:\"tdb_template_420\";s:0:\"\";}s:11:\"tds_captcha\";s:0:\"\";s:20:\"tds_captcha_site_key\";s:0:\"\";s:22:\"tds_captcha_secret_key\";s:0:\"\";s:17:\"tds_captcha_score\";s:0:\"\";s:22:\"tds_login_gradient_one\";s:16:\"rgba(0,0,0,0.65)\";s:22:\"tds_login_gradient_two\";s:16:\"rgba(0,0,0,0.72)\";s:20:\"tds_login_text_color\";s:0:\"\";s:27:\"tds_login_button_background\";s:0:\"\";s:22:\"tds_login_button_color\";s:0:\"\";s:26:\"tds_login_hover_background\";s:7:\"#ec3535\";s:21:\"tds_login_hover_color\";s:7:\"#ffffff\";s:41:\"plugin_subscription_update_latest_version\";s:90:\"{\"1.7.2\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/td-subscription.zip\"}\";s:27:\"tds_header_background_image\";b:0;s:27:\"tds_footer_background_image\";b:0;s:6:\"td_011\";s:44:\"KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKio=\";s:6:\"td_010\";s:0:\"\";s:7:\"td_010_\";s:0:\"\";s:9:\"td_010_ta\";s:0:\"\";s:9:\"td_010_tp\";s:0:\"\";s:28:\"td_timestamp_install_plugins\";s:0:\"\";s:23:\"theme_update_to_version\";s:0:\"\";s:16:\"td_updated_fonts\";b:1;s:16:\"category_options\";a:11:{i:4;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:2;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:5;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:6;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:7;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:8;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:9;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:10;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:11;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:12;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:1;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}}s:16:\"tds_demo_options\";s:259:\"a:1:{s:5:\"plans\";a:3:{i:0;a:2:{s:9:\"unique_id\";s:15:\"5961b9c837a77e4\";s:4:\"name\";s:11:\"Yearly Plan\";}i:1;a:2:{s:9:\"unique_id\";s:15:\"9661b9c837a9db8\";s:4:\"name\";s:9:\"Free Plan\";}i:2;a:2:{s:9:\"unique_id\";s:15:\"5261b9c837abf3e\";s:4:\"name\";s:12:\"Monthly Plan\";}}}\";s:25:\"tds_site_background_image\";s:0:\"\";s:15:\"tds_footer_text\";s:0:\"\";s:15:\"tds_logo_upload\";s:0:\"\";s:17:\"tds_logo_upload_r\";s:0:\"\";s:20:\"tds_logo_menu_upload\";s:0:\"\";s:22:\"tds_footer_logo_upload\";s:0:\"\";s:29:\"tds_footer_retina_logo_upload\";s:0:\"\";s:18:\"tds_favicon_upload\";s:0:\"\";s:28:\"td_theme_deactivated_plugins\";a:0:{}s:21:\"tds_logo_width_height\";b:1;s:36:\"td_updated_td_posts_form_submit_meta\";b:1;s:15:\"firstinstallMob\";s:20:\"mobilethemeInstalled\";s:24:\"tds_logo_menu_upload_mob\";s:0:\"\";s:26:\"tds_logo_menu_upload_r_mob\";s:0:\"\";s:16:\"tds_logo_alt_mob\";s:0:\"\";s:18:\"tds_logo_title_mob\";s:0:\"\";s:14:\"tds_footer_mob\";s:0:\"\";s:26:\"tds_footer_logo_upload_mob\";s:0:\"\";s:33:\"tds_footer_retina_logo_upload_mob\";s:0:\"\";s:19:\"tds_footer_text_mob\";s:0:\"\";s:20:\"tds_footer_email_mob\";s:0:\"\";s:23:\"tds_footer_logo_alt_mob\";s:0:\"\";s:25:\"tds_footer_logo_title_mob\";s:0:\"\";s:21:\"tds_footer_social_mob\";s:0:\"\";s:18:\"tds_sub_footer_mob\";s:0:\"\";s:24:\"tds_footer_copyright_mob\";s:0:\"\";s:26:\"tds_footer_copy_symbol_mob\";s:0:\"\";s:20:\"tds_thumb_td_265x198\";s:3:\"yes\";s:20:\"tds_thumb_td_741x486\";s:3:\"yes\";s:23:\"tdm_frontpage_grid_sort\";s:6:\"latest\";s:42:\"tdm_frontpage_latest_articles_posts_offset\";s:1:\"3\";}', 'yes'),
(244026, 'amp-options', 'a:17:{s:13:\"theme_support\";s:6:\"reader\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:9:\"analytics\";a:0:{}s:23:\"all_templates_supported\";b:1;s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:7:\"version\";s:5:\"2.5.5\";s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"paired_url_structure\";s:9:\"query_var\";s:17:\"plugin_configured\";b:0;s:24:\"delete_data_at_uninstall\";b:1;s:18:\"use_native_img_tag\";b:0;s:15:\"mobile_redirect\";b:1;s:17:\"late_defined_slug\";N;s:18:\"suppressed_plugins\";a:0:{}s:18:\"sandboxing_enabled\";b:0;s:16:\"sandboxing_level\";i:1;s:21:\"primary_theme_support\";N;}', 'off'),
(244029, 'amp_url_validation_queue', 'a:3:{s:4:\"urls\";a:1:{i:0;s:37:\"https://onlineincshop.com/contact-us/\";}s:9:\"timestamp\";i:1735038959;s:3:\"env\";a:3:{s:5:\"theme\";a:1:{s:9:\"Newspaper\";s:6:\"12.6.8\";}s:7:\"plugins\";a:20:{s:25:\"advanced-database-cleaner\";s:5:\"3.1.5\";s:7:\"akismet\";s:5:\"5.3.5\";s:23:\"all-in-one-wp-migration\";s:4:\"7.87\";s:3:\"amp\";s:5:\"2.5.5\";s:14:\"classic-editor\";s:5:\"1.6.5\";s:9:\"elementor\";s:6:\"3.25.4\";s:10:\"formidable\";s:4:\"6.16\";s:15:\"litespeed-cache\";s:5:\"6.5.2\";s:9:\"loginizer\";s:5:\"1.9.3\";s:23:\"mainwp-sucuri-extension\";s:3:\"5.0\";s:17:\"really-simple-ssl\";s:5:\"9.1.2\";s:21:\"robin-image-optimizer\";s:5:\"1.7.0\";s:17:\"robots-txt-editor\";s:5:\"1.1.4\";s:33:\"stop-spammer-registrations-plugin\";s:6:\"2024.7\";s:16:\"td-mobile-plugin\";s:30:\"2.6 | built on 31.05.2024 8:20\";s:13:\"td-newsletter\";s:30:\"2.1 | built on 31.05.2024 8:20\";s:17:\"td-social-counter\";s:30:\"5.6 | built on 31.05.2024 8:20\";s:26:\"insert-headers-and-footers\";s:5:\"2.2.3\";s:16:\"xml-sitemap-feed\";s:5:\"5.4.9\";s:13:\"wordpress-seo\";s:4:\"23.8\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:6:\"reader\";}}}', 'auto'),
(578, 'current_theme', 'Newspaper', 'yes'),
(579, 'theme_mods_Newspaper', 'a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:0:\"\";i:15;s:11:\"header-menu\";s:0:\"\";}s:18:\"custom_css_post_id\";i:223;}', 'yes'),
(580, 'theme_switched', '', 'yes'),
(584, 'recently_activated', 'a:2:{s:23:\"loginizer/loginizer.php\";i:1765214238;s:35:\"litespeed-cache/litespeed-cache.php\";i:1765214220;}', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(602, 'td_011_settings', 'a:5:{s:19:\"2025-12-09 02:38:29\";a:219:{s:27:\"theme_update_latest_version\";s:87:\"{\"12.7.3\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/Newspaper-1.zip\"}\";s:21:\"theme_update_versions\";s:431:\"[{\"12.7.3\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/Newspaper-1.zip\"},{\"12.7.2\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/Newspaper.zip\"},{\"12.7.1\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/04\\/Newspaper.zip\"},{\"12.7\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/03\\/Newspaper.zip\"},{\"12.6.9\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/02\\/Newspaper.zip\"}]\";s:14:\"td_remote_http\";a:2:{s:9:\"test_time\";i:1632929798;s:11:\"test_status\";s:9:\"wordpress\";}s:12:\"firstInstall\";s:14:\"themeInstalled\";s:13:\"td_log_status\";s:3:\"off\";s:24:\"tds_login_sign_in_widget\";s:0:\"\";s:18:\"tds_thumb_td_150x0\";s:3:\"yes\";s:20:\"tds_thumb_td_218x150\";s:3:\"yes\";s:18:\"tds_thumb_td_300x0\";s:3:\"yes\";s:20:\"tds_thumb_td_324x400\";s:3:\"yes\";s:20:\"tds_thumb_td_485x360\";s:3:\"yes\";s:18:\"tds_thumb_td_696x0\";s:3:\"yes\";s:19:\"tds_thumb_td_1068x0\";s:3:\"yes\";s:19:\"tds_thumb_td_1920x0\";s:3:\"yes\";s:23:\"td_social_drag_and_drop\";a:21:{s:8:\"facebook\";b:1;s:7:\"twitter\";b:1;s:9:\"pinterest\";b:1;s:8:\"whatsapp\";b:1;s:8:\"linkedin\";b:0;s:6:\"reddit\";b:0;s:4:\"mail\";b:0;s:5:\"print\";b:0;s:6:\"tumblr\";b:0;s:8:\"telegram\";b:0;s:11:\"stumbleupon\";b:0;s:2:\"vk\";b:0;s:4:\"digg\";b:0;s:4:\"line\";b:0;s:5:\"viber\";b:0;s:5:\"naver\";b:0;s:9:\"flipboard\";s:0:\"\";s:8:\"copy_url\";s:0:\"\";s:5:\"kakao\";s:0:\"\";s:5:\"gettr\";s:0:\"\";s:3:\"koo\";s:0:\"\";}s:18:\"td_social_networks\";a:0:{}s:10:\"td_version\";s:6:\"12.6.8\";s:9:\"td_011_tp\";i:1645519906;s:9:\"td_011_ta\";s:7:\"lp_sent\";s:7:\"td_011_\";i:2;s:11:\"tdc_savings\";a:4:{s:12:\"recentColors\";a:18:{i:0;s:12:\"IiNhYWFhYWEi\";i:1;s:24:\"InJnYmEoMCwwLDAsMC4wOCki\";i:2;s:24:\"InJnYmEoMCwwLDAsMC4wOSki\";i:3;s:32:\"InJnYmEoMjU1LDI1NSwyNTUsMC44KSI=\";i:4;s:28:\"InJnYmEoMjU1LDI1NSwyNTUsMCki\";i:5;s:12:\"IiNkZGRkZGQi\";i:6;s:12:\"IiM2ZDI5Mjki\";i:7;s:12:\"IiM5OTk5OTki\";i:8;s:12:\"IiMxNTJiZjci\";i:9;s:12:\"IiM1NjVmNmQi\";i:10;s:12:\"IiNlYWVhZWEi\";i:11;s:12:\"IiMwMDAwMDAi\";i:12;s:12:\"IiNmN2Y3Zjci\";i:13;s:12:\"IiNmNGY0ZjQi\";i:14;s:12:\"IiNmZmZmZmYi\";i:15;s:24:\"InJnYmEoMCwwLDAsMC4xMiki\";i:16;s:12:\"IiNjMTFmMWYi\";i:17;s:12:\"IiNlYzM1MzUi\";}s:11:\"recentFonts\";a:7:{i:0;s:3:\"421\";i:1;s:3:\"420\";i:2;s:3:\"892\";i:3;s:3:\"453\";i:4;s:3:\"456\";i:5;s:4:\"fs_2\";i:6;s:3:\"653\";}s:5:\"fonts\";a:9:{i:0;a:2:{s:4:\"name\";s:20:\"Block title Work BIG\";s:5:\"value\";s:212:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfd2VpZ2h0IjoiNzAwIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl6TWlJc0luQnZjblJ5WVdsMElqb2lNakFpTENKc1lXNWtjMk5oY0dVaU9pSXlOaUo5IiwiZm9udF9zcGFjaW5nIjoiLTEiLCJmb250X2xpbmVfaGVpZ2h0IjoiMSJ9\";}i:1;a:2:{s:4:\"name\";s:15:\"Small Caps Work\";s:5:\"value\";s:200:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TXlJc0luQnZjblJ5WVdsMElqb2lNVElpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxLjIiLCJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSJ9\";}i:2;a:2:{s:4:\"name\";s:6:\"big pt\";s:5:\"value\";s:248:\"eyJmb250X2ZhbWlseSI6IjQ1NiIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJeU5pSXNJbXhoYm1SelkyRndaU0k2SWpFNUlpd2ljRzl5ZEhKaGFYUWlPaUl4TnlKOSIsImZvbnRfbGluZV9oZWlnaHQiOiIxLjEiLCJmb250X3N0eWxlIjoidW5kZWZpbmVkIiwiZm9udF93ZWlnaHQiOiI2MDAiLCJmb250X3RyYW5zZm9ybSI6IiJ9\";}i:3;a:2:{s:4:\"name\";s:8:\"cat work\";s:5:\"value\";s:252:\"eyJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9mYW1pbHkiOiI2NTMiLCJmb250X3NpemUiOiJleUpoYkd3aU9pSXhNeUlzSW5CdmNuUnlZV2wwSWpvaU1USWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE1pSXNJbkJvYjI1bElqb2lNVElpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIn0=\";}i:4;a:2:{s:4:\"name\";s:6:\"cat-sm\";s:5:\"value\";s:228:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfdHJhbnNmb3JtIjoidXBwZXJjYXNlIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TWlJc0lteGhibVJ6WTJGd1pTSTZJakV4SW4wPSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9saW5lX2hlaWdodCI6IjEiLCJmb250X3NwYWNpbmciOiItMC41In0=\";}i:5;a:2:{s:4:\"name\";s:7:\"excl-sm\";s:5:\"value\";s:280:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfdHJhbnNmb3JtIjoidXBwZXJjYXNlIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TWlJc0lteGhibVJ6WTJGd1pTSTZJakV4SWl3aWNHOXlkSEpoYVhRaU9pSXhNU0lzSW5Cb2IyNWxJam9pTVRFaWZRPT0iLCJmb250X3dlaWdodCI6IjUwMCIsImZvbnRfbGluZV9oZWlnaHQiOiIxIiwiZm9udF9zcGFjaW5nIjoiLTAuNSJ9\";}i:6;a:2:{s:4:\"name\";s:8:\"excl-big\";s:5:\"value\";s:252:\"eyJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9mYW1pbHkiOiI2NTMiLCJmb250X3NpemUiOiJleUpoYkd3aU9pSXhNeUlzSW5CdmNuUnlZV2wwSWpvaU1URWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE1pSXNJbkJvYjI1bElqb2lNVEVpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIn0=\";}i:7;a:2:{s:4:\"name\";s:11:\"medium work\";s:5:\"value\";s:212:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJeU5DSXNJbkJ2Y25SeVlXbDBJam9pTWpBaUxDSnNZVzVrYzJOaGNHVWlPaUl5TWlKOSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIiwiZm9udF93ZWlnaHQiOiI3MDAiLCJmb250X3NwYWNpbmciOiItMSJ9\";}i:8;a:2:{s:4:\"name\";s:6:\"bigggg\";s:5:\"value\";s:272:\"eyJmb250X3dlaWdodCI6IjcwMCIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJME1pSXNJbXhoYm1SelkyRndaU0k2SWpNMklpd2ljRzl5ZEhKaGFYUWlPaUl6TWlJc0luQm9iMjVsSWpvaU16QWlmUT09IiwiZm9udF9mYW1pbHkiOiI0NTYiLCJmb250X2xpbmVfaGVpZ2h0IjoiMSIsImZvbnRfc3R5bGUiOiJ1bmRlZmluZWQiLCJmb250X3RyYW5zZm9ybSI6IiJ9\";}}s:9:\"gradients\";a:1:{i:0;s:660:\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\";}}s:19:\"tdb_header_template\";s:15:\"tdb_template_84\";s:12:\"tds_logo_alt\";s:0:\"\";s:14:\"tds_logo_title\";s:0:\"\";s:13:\"tds_logo_text\";s:0:\"\";s:16:\"tds_tagline_text\";s:0:\"\";s:15:\"tds_ios_icon_76\";s:0:\"\";s:16:\"tds_ios_icon_114\";s:0:\"\";s:16:\"tds_ios_icon_120\";s:0:\"\";s:16:\"tds_ios_icon_144\";s:0:\"\";s:16:\"tds_ios_icon_152\";s:0:\"\";s:19:\"tdb_footer_template\";s:15:\"tdb_template_92\";s:18:\"tds_modal_video_ad\";s:0:\"\";s:24:\"tds_modal_video_ad_title\";s:0:\"\";s:26:\"tds_modal_video_ad_disable\";s:0:\"\";s:24:\"tds_background_click_url\";s:0:\"\";s:27:\"tds_background_click_target\";s:0:\"\";s:17:\"tds_smart_sidebar\";s:0:\"\";s:10:\"tds_to_top\";s:0:\"\";s:20:\"tds_to_top_on_mobile\";s:0:\"\";s:19:\"tds_animation_stack\";s:0:\"\";s:26:\"tds_animation_stack_effect\";s:0:\"\";s:19:\"tds_404_page_layout\";s:0:\"\";s:23:\"tds_archive_page_layout\";s:0:\"\";s:23:\"tds_archive_sidebar_pos\";s:0:\"\";s:19:\"tds_archive_sidebar\";s:0:\"\";s:26:\"tds_attachment_sidebar_pos\";s:0:\"\";s:22:\"tds_attachment_sidebar\";s:0:\"\";s:22:\"tds_author_page_layout\";s:0:\"\";s:22:\"tds_author_sidebar_pos\";s:0:\"\";s:18:\"tds_author_sidebar\";s:0:\"\";s:20:\"tds_home_page_layout\";s:0:\"\";s:20:\"tds_home_sidebar_pos\";s:0:\"\";s:16:\"tds_home_sidebar\";s:0:\"\";s:20:\"tds_page_layout_size\";s:49:\"td_cl tdc-row stretch_row_1400 td-stretch-content\";s:20:\"tds_page_sidebar_pos\";s:0:\"\";s:16:\"tds_page_sidebar\";s:0:\"\";s:26:\"tds_disable_comments_pages\";s:0:\"\";s:22:\"tds_search_page_layout\";s:0:\"\";s:22:\"tds_search_sidebar_pos\";s:0:\"\";s:18:\"tds_search_sidebar\";s:0:\"\";s:19:\"tds_tag_page_layout\";s:0:\"\";s:19:\"tds_tag_sidebar_pos\";s:0:\"\";s:15:\"tds_tag_sidebar\";s:0:\"\";s:19:\"tds_woo_sidebar_pos\";s:0:\"\";s:15:\"tds_woo_sidebar\";s:0:\"\";s:26:\"tds_woo_single_sidebar_pos\";s:0:\"\";s:22:\"tds_woo_single_sidebar\";s:0:\"\";s:23:\"tds_bbpress_sidebar_pos\";s:0:\"\";s:19:\"tds_bbpress_sidebar\";s:0:\"\";s:36:\"tds_taxonomy_post_format_page_layout\";s:0:\"\";s:36:\"tds_taxonomy_post_format_sidebar_pos\";s:0:\"\";s:32:\"tds_taxonomy_post_format_sidebar\";s:0:\"\";s:21:\"tdb_category_template\";s:15:\"tdb_template_86\";s:23:\"tds_general_modal_image\";s:0:\"\";s:26:\"tds_disable_article_schema\";s:0:\"\";s:29:\"td_default_site_post_template\";s:15:\"tdb_template_89\";s:20:\"tds_tweeter_username\";s:0:\"\";s:24:\"tds_ajax_post_view_count\";s:0:\"\";s:21:\"tds_video_playing_one\";s:0:\"\";s:22:\"tds_video_pause_hidden\";s:0:\"\";s:14:\"tds_video_lazy\";s:0:\"\";s:16:\"tds_video_scroll\";s:0:\"\";s:15:\"tds_video_width\";s:0:\"\";s:20:\"tds_video_position_v\";s:0:\"\";s:20:\"tds_video_distance_v\";s:0:\"\";s:20:\"tds_video_position_h\";s:0:\"\";s:20:\"tds_video_distance_h\";s:0:\"\";s:25:\"tds_global_block_template\";s:0:\"\";s:25:\"tds_category_module_slide\";s:0:\"\";s:29:\"tds_category_module_mega_menu\";s:0:\"\";s:22:\"tds_m_show_author_name\";s:0:\"\";s:15:\"tds_m_show_date\";s:0:\"\";s:24:\"tds_m_show_modified_date\";s:0:\"\";s:19:\"tds_m_show_comments\";s:0:\"\";s:17:\"tds_m_show_review\";s:0:\"\";s:25:\"tds_p_enable_7_days_count\";s:0:\"\";s:26:\"tds_site_background_repeat\";s:0:\"\";s:30:\"tds_site_background_position_x\";s:0:\"\";s:30:\"tds_site_background_attachment\";s:0:\"\";s:22:\"tds_stretch_background\";s:0:\"\";s:27:\"tds_mobile_background_image\";s:59:\"https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\";s:28:\"tds_mobile_background_repeat\";s:0:\"\";s:26:\"tds_mobile_background_size\";s:0:\"\";s:30:\"tds_mobile_background_position\";s:0:\"\";s:26:\"tds_login_background_image\";s:59:\"https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\";s:27:\"tds_login_background_repeat\";s:0:\"\";s:25:\"tds_login_background_size\";s:0:\"\";s:29:\"tds_login_background_position\";s:0:\"\";s:17:\"tds_excerpts_type\";s:0:\"\";s:29:\"td_module_slide_title_excerpt\";s:0:\"\";s:33:\"td_module_mega_menu_title_excerpt\";s:0:\"\";s:36:\"td_module_trending_now_title_excerpt\";s:0:\"\";s:12:\"tds_language\";s:0:\"\";s:18:\"g_use_google_fonts\";s:0:\"\";s:22:\"g_mob_use_google_fonts\";s:0:\"\";s:14:\"tds_custom_css\";s:0:\"\";s:26:\"tds_responsive_css_desktop\";s:0:\"\";s:33:\"tds_responsive_css_ipad_landscape\";s:0:\"\";s:32:\"tds_responsive_css_ipad_portrait\";s:0:\"\";s:24:\"tds_responsive_css_phone\";s:0:\"\";s:15:\"td_body_classes\";s:0:\"\";s:21:\"tds_custom_javascript\";s:0:\"\";s:15:\"tds_custom_html\";s:0:\"\";s:12:\"td_analytics\";s:0:\"\";s:12:\"td_body_code\";s:0:\"\";s:14:\"td_footer_code\";s:0:\"\";s:14:\"tds_yt_api_key\";s:0:\"\";s:18:\"tds_flickr_api_key\";s:0:\"\";s:12:\"tds_rel_type\";s:0:\"\";s:10:\"tds_button\";s:0:\"\";s:14:\"tdm_btn_radius\";s:0:\"\";s:9:\"tds_title\";s:0:\"\";s:20:\"tdm_bordered_website\";s:0:\"\";s:22:\"td_fonts_user_inserted\";a:31:{s:11:\"font_file_1\";s:0:\"\";s:13:\"font_family_1\";s:0:\"\";s:11:\"font_file_2\";s:0:\"\";s:13:\"font_family_2\";s:0:\"\";s:11:\"font_file_3\";s:0:\"\";s:13:\"font_family_3\";s:0:\"\";s:11:\"font_file_4\";s:0:\"\";s:13:\"font_family_4\";s:0:\"\";s:11:\"font_file_5\";s:0:\"\";s:13:\"font_family_5\";s:0:\"\";s:10:\"typekit_js\";s:0:\"\";s:22:\"type_kit_font_family_1\";s:0:\"\";s:22:\"type_kit_font_family_2\";s:0:\"\";s:22:\"type_kit_font_family_3\";s:0:\"\";s:10:\"g_100_thin\";s:0:\"\";s:17:\"g_100_thin_italic\";s:0:\"\";s:17:\"g_200_extra_light\";s:0:\"\";s:24:\"g_200_extra_light_italic\";s:0:\"\";s:11:\"g_300_light\";s:0:\"\";s:18:\"g_300_light_italic\";s:0:\"\";s:19:\"g_400_normal_italic\";s:0:\"\";s:12:\"g_500_medium\";s:0:\"\";s:19:\"g_500_medium_italic\";s:0:\"\";s:15:\"g_600_semi_bold\";s:0:\"\";s:22:\"g_600_semi_bold_italic\";s:0:\"\";s:10:\"g_700_bold\";s:0:\"\";s:17:\"g_700_bold_italic\";s:0:\"\";s:16:\"g_800_extra_bold\";s:0:\"\";s:23:\"g_800_extra_bold_italic\";s:0:\"\";s:11:\"g_900_black\";s:0:\"\";s:18:\"g_900_black_italic\";s:0:\"\";}s:19:\"td_fonts_css_buffer\";s:0:\"\";s:18:\"td_fonts_js_buffer\";s:0:\"\";s:16:\"td_fonts_default\";a:1:{s:13:\"default_fonts\";s:0:\"\";}s:20:\"tds_user_compile_css\";s:5392:\".td-menu-background,\r\n    .td-search-background {\r\n        background-image: url(\'https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\');\r\n    }\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n\r\n\r\n    \r\n    .white-popup-block:before {\r\n        background-image: url(\'https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\');\r\n    }\r\n\r\n    \r\n    .td_cl .td-container {\r\n        width: 100%;\r\n    }\r\n    @media (min-width: 768px) and (max-width: 1018px) {\r\n        .td_cl {\r\n            padding: 0 14px;\r\n        }\r\n    }\r\n    @media (max-width: 767px) {\r\n        .td_cl .td-container {\r\n            padding: 0;\r\n        }\r\n    }\r\n    @media (min-width: 1019px) and (max-width: 1140px) {\r\n        .td_cl.stretch_row_content_no_space {\r\n            padding-left: 20px;\r\n            padding-right: 20px;\r\n        }\r\n    }\r\n    @media (min-width: 1141px) {\r\n        .td_cl.stretch_row_content_no_space {\r\n            padding-left: 24px;\r\n            padding-right: 24px;\r\n        }\r\n    }\r\n        \r\n    :root{--td_theme_color:#ec3535;--td_slider_text:rgba(236,53,53,0.7);--td_mobile_gradient_one_mob:rgba(0,0,0,0.8);--td_mobile_gradient_two_mob:rgba(0,0,0,0.8);--td_mobile_text_active_color:#ec3535;--td_login_hover_background:#ec3535;--td_login_hover_color:#ffffff;--td_login_gradient_one:rgba(0,0,0,0.65);--td_login_gradient_two:rgba(0,0,0,0.72);}.td-header-style-12 .td-header-menu-wrap-full,\r\n    .td-header-style-12 .td-affix,\r\n    .td-grid-style-1.td-hover-1 .td-big-grid-post:hover .td-post-category,\r\n    .td-grid-style-5.td-hover-1 .td-big-grid-post:hover .td-post-category,\r\n    .td_category_template_3 .td-current-sub-category,\r\n    .td_category_template_8 .td-category-header .td-category a.td-current-sub-category,\r\n    .td_category_template_4 .td-category-siblings .td-category a:hover,\r\n     .td_block_big_grid_9.td-grid-style-1 .td-post-category,\r\n    .td_block_big_grid_9.td-grid-style-5 .td-post-category,\r\n    .td-grid-style-6.td-hover-1 .td-module-thumb:after,\r\n     .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > li > a:hover,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .sfHover > a {\r\n        background-color: #ec3535;\r\n    }\r\n    \r\n    .td_mega_menu_sub_cats .cur-sub-cat,\r\n    .td-mega-span h3 a:hover,\r\n    .td_mod_mega_menu:hover .entry-title a,\r\n    .header-search-wrap .result-msg a:hover,\r\n    .td-header-top-menu .td-drop-down-search .td_module_wrap:hover .entry-title a,\r\n    .td-header-top-menu .td-icon-search:hover,\r\n    .td-header-wrap .result-msg a:hover,\r\n    .top-header-menu li a:hover,\r\n    .top-header-menu .current-menu-item > a,\r\n    .top-header-menu .current-menu-ancestor > a,\r\n    .top-header-menu .current-category-ancestor > a,\r\n    .td-social-icon-wrap > a:hover,\r\n    .td-header-sp-top-widget .td-social-icon-wrap a:hover,\r\n    .td_mod_related_posts:hover h3 > a,\r\n    .td-post-template-11 .td-related-title .td-related-left:hover,\r\n    .td-post-template-11 .td-related-title .td-related-right:hover,\r\n    .td-post-template-11 .td-related-title .td-cur-simple-item,\r\n    .td-post-template-11 .td_block_related_posts .td-next-prev-wrap a:hover,\r\n    .td-category-header .td-pulldown-category-filter-link:hover,\r\n    .td-category-siblings .td-subcat-dropdown a:hover,\r\n    .td-category-siblings .td-subcat-dropdown a.td-current-sub-category,\r\n    .footer-text-wrap .footer-email-wrap a,\r\n    .footer-social-wrap a:hover,\r\n    .td_module_17 .td-read-more a:hover,\r\n    .td_module_18 .td-read-more a:hover,\r\n    .td_module_19 .td-post-author-name a:hover,\r\n    .td-pulldown-syle-2 .td-subcat-dropdown:hover .td-subcat-more span,\r\n    .td-pulldown-syle-2 .td-subcat-dropdown:hover .td-subcat-more i,\r\n    .td-pulldown-syle-3 .td-subcat-dropdown:hover .td-subcat-more span,\r\n    .td-pulldown-syle-3 .td-subcat-dropdown:hover .td-subcat-more i,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .sfHover > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > li > a:hover {\r\n        color: #ec3535;\r\n    }\r\n    \r\n    .td-mega-menu-page .wpb_content_element ul li a:hover,\r\n    .td-theme-wrap .td-aj-search-results .td_module_wrap:hover .entry-title a,\r\n    .td-theme-wrap .header-search-wrap .result-msg a:hover {\r\n        color: #ec3535 !important;\r\n    }\r\n    \r\n    .td_category_template_8 .td-category-header .td-category a.td-current-sub-category,\r\n    .td_category_template_4 .td-category-siblings .td-category a:hover,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > li > a:hover,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .sfHover > a {\r\n        border-color: #ec3535;\r\n    }\";s:15:\"tds_theme_color\";s:7:\"#ec3535\";s:25:\"tds_site_background_color\";s:0:\"\";s:14:\"tds_site_boxed\";s:0:\"\";s:16:\"tds_header_color\";s:0:\"\";s:21:\"tds_text_header_color\";s:0:\"\";s:21:\"tds_mobile_menu_color\";s:0:\"\";s:22:\"tds_mobile_icons_color\";s:0:\"\";s:27:\"tds_mobile_gradient_one_mob\";s:15:\"rgba(0,0,0,0.8)\";s:27:\"tds_mobile_gradient_two_mob\";s:15:\"rgba(0,0,0,0.8)\";s:21:\"tds_mobile_text_color\";s:0:\"\";s:28:\"tds_mobile_text_active_color\";s:7:\"#ec3535\";s:32:\"tds_mobile_button_background_mob\";s:0:\"\";s:27:\"tds_mobile_button_color_mob\";s:0:\"\";s:21:\"tdb_p_autoload_status\";s:3:\"off\";s:19:\"tdb_p_autoload_type\";s:0:\"\";s:20:\"tdb_p_autoload_count\";s:0:\"\";s:29:\"tdb_p_autoload_scroll_percent\";s:0:\"\";s:16:\"tdb_404_template\";s:15:\"tdb_template_90\";s:17:\"tdb_date_template\";s:15:\"tdb_template_91\";s:23:\"tdb_attachment_template\";s:0:\"\";s:19:\"tdb_author_template\";s:15:\"tdb_template_85\";s:20:\"tdb_author_templates\";a:1:{i:1;s:0:\"\";}s:19:\"tdb_search_template\";s:15:\"tdb_template_88\";s:16:\"tdb_tag_template\";s:15:\"tdb_template_87\";s:17:\"tdb_tag_templates\";a:1:{s:16:\"tdb_template_420\";s:0:\"\";}s:11:\"tds_captcha\";s:0:\"\";s:20:\"tds_captcha_site_key\";s:0:\"\";s:22:\"tds_captcha_secret_key\";s:0:\"\";s:17:\"tds_captcha_score\";s:0:\"\";s:22:\"tds_login_gradient_one\";s:16:\"rgba(0,0,0,0.65)\";s:22:\"tds_login_gradient_two\";s:16:\"rgba(0,0,0,0.72)\";s:20:\"tds_login_text_color\";s:0:\"\";s:27:\"tds_login_button_background\";s:0:\"\";s:22:\"tds_login_button_color\";s:0:\"\";s:26:\"tds_login_hover_background\";s:7:\"#ec3535\";s:21:\"tds_login_hover_color\";s:7:\"#ffffff\";s:41:\"plugin_subscription_update_latest_version\";s:90:\"{\"1.7.2\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/td-subscription.zip\"}\";s:27:\"tds_header_background_image\";b:0;s:27:\"tds_footer_background_image\";b:0;s:6:\"td_011\";s:44:\"KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKio=\";s:6:\"td_010\";s:0:\"\";s:7:\"td_010_\";s:0:\"\";s:9:\"td_010_ta\";s:0:\"\";s:9:\"td_010_tp\";s:0:\"\";s:28:\"td_timestamp_install_plugins\";s:0:\"\";s:23:\"theme_update_to_version\";s:0:\"\";s:16:\"td_updated_fonts\";b:1;s:16:\"category_options\";a:11:{i:4;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:2;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:5;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:6;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:7;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:8;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:9;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:10;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:11;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:12;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:1;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}}s:16:\"tds_demo_options\";s:259:\"a:1:{s:5:\"plans\";a:3:{i:0;a:2:{s:9:\"unique_id\";s:15:\"5961b9c837a77e4\";s:4:\"name\";s:11:\"Yearly Plan\";}i:1;a:2:{s:9:\"unique_id\";s:15:\"9661b9c837a9db8\";s:4:\"name\";s:9:\"Free Plan\";}i:2;a:2:{s:9:\"unique_id\";s:15:\"5261b9c837abf3e\";s:4:\"name\";s:12:\"Monthly Plan\";}}}\";s:25:\"tds_site_background_image\";s:0:\"\";s:15:\"tds_footer_text\";s:0:\"\";s:15:\"tds_logo_upload\";s:0:\"\";s:17:\"tds_logo_upload_r\";s:0:\"\";s:20:\"tds_logo_menu_upload\";s:0:\"\";s:22:\"tds_footer_logo_upload\";s:0:\"\";s:29:\"tds_footer_retina_logo_upload\";s:0:\"\";s:18:\"tds_favicon_upload\";s:0:\"\";s:28:\"td_theme_deactivated_plugins\";a:0:{}s:21:\"tds_logo_width_height\";b:1;s:36:\"td_updated_td_posts_form_submit_meta\";b:1;s:15:\"firstinstallMob\";s:20:\"mobilethemeInstalled\";s:24:\"tds_logo_menu_upload_mob\";s:0:\"\";s:26:\"tds_logo_menu_upload_r_mob\";s:0:\"\";s:16:\"tds_logo_alt_mob\";s:0:\"\";s:18:\"tds_logo_title_mob\";s:0:\"\";s:14:\"tds_footer_mob\";s:0:\"\";s:26:\"tds_footer_logo_upload_mob\";s:0:\"\";s:33:\"tds_footer_retina_logo_upload_mob\";s:0:\"\";s:19:\"tds_footer_text_mob\";s:0:\"\";s:20:\"tds_footer_email_mob\";s:0:\"\";s:23:\"tds_footer_logo_alt_mob\";s:0:\"\";s:25:\"tds_footer_logo_title_mob\";s:0:\"\";s:21:\"tds_footer_social_mob\";s:0:\"\";s:18:\"tds_sub_footer_mob\";s:0:\"\";s:24:\"tds_footer_copyright_mob\";s:0:\"\";s:26:\"tds_footer_copy_symbol_mob\";s:0:\"\";s:20:\"tds_thumb_td_265x198\";s:3:\"yes\";s:20:\"tds_thumb_td_741x486\";s:3:\"yes\";s:23:\"tdm_frontpage_grid_sort\";s:6:\"latest\";s:42:\"tdm_frontpage_latest_articles_posts_offset\";s:1:\"3\";}s:19:\"2025-12-08 17:08:30\";a:219:{s:27:\"theme_update_latest_version\";s:87:\"{\"12.7.3\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/Newspaper-1.zip\"}\";s:21:\"theme_update_versions\";s:431:\"[{\"12.7.3\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/Newspaper-1.zip\"},{\"12.7.2\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/Newspaper.zip\"},{\"12.7.1\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/04\\/Newspaper.zip\"},{\"12.7\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/03\\/Newspaper.zip\"},{\"12.6.9\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/02\\/Newspaper.zip\"}]\";s:14:\"td_remote_http\";a:2:{s:9:\"test_time\";i:1632929798;s:11:\"test_status\";s:9:\"wordpress\";}s:12:\"firstInstall\";s:14:\"themeInstalled\";s:13:\"td_log_status\";s:3:\"off\";s:24:\"tds_login_sign_in_widget\";s:0:\"\";s:18:\"tds_thumb_td_150x0\";s:3:\"yes\";s:20:\"tds_thumb_td_218x150\";s:3:\"yes\";s:18:\"tds_thumb_td_300x0\";s:3:\"yes\";s:20:\"tds_thumb_td_324x400\";s:3:\"yes\";s:20:\"tds_thumb_td_485x360\";s:3:\"yes\";s:18:\"tds_thumb_td_696x0\";s:3:\"yes\";s:19:\"tds_thumb_td_1068x0\";s:3:\"yes\";s:19:\"tds_thumb_td_1920x0\";s:3:\"yes\";s:23:\"td_social_drag_and_drop\";a:21:{s:8:\"facebook\";b:1;s:7:\"twitter\";b:1;s:9:\"pinterest\";b:1;s:8:\"whatsapp\";b:1;s:8:\"linkedin\";b:0;s:6:\"reddit\";b:0;s:4:\"mail\";b:0;s:5:\"print\";b:0;s:6:\"tumblr\";b:0;s:8:\"telegram\";b:0;s:11:\"stumbleupon\";b:0;s:2:\"vk\";b:0;s:4:\"digg\";b:0;s:4:\"line\";b:0;s:5:\"viber\";b:0;s:5:\"naver\";b:0;s:9:\"flipboard\";s:0:\"\";s:8:\"copy_url\";s:0:\"\";s:5:\"kakao\";s:0:\"\";s:5:\"gettr\";s:0:\"\";s:3:\"koo\";s:0:\"\";}s:18:\"td_social_networks\";a:0:{}s:10:\"td_version\";s:6:\"12.6.8\";s:9:\"td_011_tp\";i:1645519906;s:9:\"td_011_ta\";s:7:\"lp_sent\";s:7:\"td_011_\";i:2;s:11:\"tdc_savings\";a:4:{s:12:\"recentColors\";a:18:{i:0;s:12:\"IiNhYWFhYWEi\";i:1;s:24:\"InJnYmEoMCwwLDAsMC4wOCki\";i:2;s:24:\"InJnYmEoMCwwLDAsMC4wOSki\";i:3;s:32:\"InJnYmEoMjU1LDI1NSwyNTUsMC44KSI=\";i:4;s:28:\"InJnYmEoMjU1LDI1NSwyNTUsMCki\";i:5;s:12:\"IiNkZGRkZGQi\";i:6;s:12:\"IiM2ZDI5Mjki\";i:7;s:12:\"IiM5OTk5OTki\";i:8;s:12:\"IiMxNTJiZjci\";i:9;s:12:\"IiM1NjVmNmQi\";i:10;s:12:\"IiNlYWVhZWEi\";i:11;s:12:\"IiMwMDAwMDAi\";i:12;s:12:\"IiNmN2Y3Zjci\";i:13;s:12:\"IiNmNGY0ZjQi\";i:14;s:12:\"IiNmZmZmZmYi\";i:15;s:24:\"InJnYmEoMCwwLDAsMC4xMiki\";i:16;s:12:\"IiNjMTFmMWYi\";i:17;s:12:\"IiNlYzM1MzUi\";}s:11:\"recentFonts\";a:7:{i:0;s:3:\"421\";i:1;s:3:\"420\";i:2;s:3:\"892\";i:3;s:3:\"453\";i:4;s:3:\"456\";i:5;s:4:\"fs_2\";i:6;s:3:\"653\";}s:5:\"fonts\";a:9:{i:0;a:2:{s:4:\"name\";s:20:\"Block title Work BIG\";s:5:\"value\";s:212:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfd2VpZ2h0IjoiNzAwIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl6TWlJc0luQnZjblJ5WVdsMElqb2lNakFpTENKc1lXNWtjMk5oY0dVaU9pSXlOaUo5IiwiZm9udF9zcGFjaW5nIjoiLTEiLCJmb250X2xpbmVfaGVpZ2h0IjoiMSJ9\";}i:1;a:2:{s:4:\"name\";s:15:\"Small Caps Work\";s:5:\"value\";s:200:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TXlJc0luQnZjblJ5WVdsMElqb2lNVElpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxLjIiLCJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSJ9\";}i:2;a:2:{s:4:\"name\";s:6:\"big pt\";s:5:\"value\";s:248:\"eyJmb250X2ZhbWlseSI6IjQ1NiIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJeU5pSXNJbXhoYm1SelkyRndaU0k2SWpFNUlpd2ljRzl5ZEhKaGFYUWlPaUl4TnlKOSIsImZvbnRfbGluZV9oZWlnaHQiOiIxLjEiLCJmb250X3N0eWxlIjoidW5kZWZpbmVkIiwiZm9udF93ZWlnaHQiOiI2MDAiLCJmb250X3RyYW5zZm9ybSI6IiJ9\";}i:3;a:2:{s:4:\"name\";s:8:\"cat work\";s:5:\"value\";s:252:\"eyJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9mYW1pbHkiOiI2NTMiLCJmb250X3NpemUiOiJleUpoYkd3aU9pSXhNeUlzSW5CdmNuUnlZV2wwSWpvaU1USWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE1pSXNJbkJvYjI1bElqb2lNVElpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIn0=\";}i:4;a:2:{s:4:\"name\";s:6:\"cat-sm\";s:5:\"value\";s:228:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfdHJhbnNmb3JtIjoidXBwZXJjYXNlIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TWlJc0lteGhibVJ6WTJGd1pTSTZJakV4SW4wPSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9saW5lX2hlaWdodCI6IjEiLCJmb250X3NwYWNpbmciOiItMC41In0=\";}i:5;a:2:{s:4:\"name\";s:7:\"excl-sm\";s:5:\"value\";s:280:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfdHJhbnNmb3JtIjoidXBwZXJjYXNlIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TWlJc0lteGhibVJ6WTJGd1pTSTZJakV4SWl3aWNHOXlkSEpoYVhRaU9pSXhNU0lzSW5Cb2IyNWxJam9pTVRFaWZRPT0iLCJmb250X3dlaWdodCI6IjUwMCIsImZvbnRfbGluZV9oZWlnaHQiOiIxIiwiZm9udF9zcGFjaW5nIjoiLTAuNSJ9\";}i:6;a:2:{s:4:\"name\";s:8:\"excl-big\";s:5:\"value\";s:252:\"eyJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9mYW1pbHkiOiI2NTMiLCJmb250X3NpemUiOiJleUpoYkd3aU9pSXhNeUlzSW5CdmNuUnlZV2wwSWpvaU1URWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE1pSXNJbkJvYjI1bElqb2lNVEVpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIn0=\";}i:7;a:2:{s:4:\"name\";s:11:\"medium work\";s:5:\"value\";s:212:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJeU5DSXNJbkJ2Y25SeVlXbDBJam9pTWpBaUxDSnNZVzVrYzJOaGNHVWlPaUl5TWlKOSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIiwiZm9udF93ZWlnaHQiOiI3MDAiLCJmb250X3NwYWNpbmciOiItMSJ9\";}i:8;a:2:{s:4:\"name\";s:6:\"bigggg\";s:5:\"value\";s:272:\"eyJmb250X3dlaWdodCI6IjcwMCIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJME1pSXNJbXhoYm1SelkyRndaU0k2SWpNMklpd2ljRzl5ZEhKaGFYUWlPaUl6TWlJc0luQm9iMjVsSWpvaU16QWlmUT09IiwiZm9udF9mYW1pbHkiOiI0NTYiLCJmb250X2xpbmVfaGVpZ2h0IjoiMSIsImZvbnRfc3R5bGUiOiJ1bmRlZmluZWQiLCJmb250X3RyYW5zZm9ybSI6IiJ9\";}}s:9:\"gradients\";a:1:{i:0;s:660:\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\";}}s:19:\"tdb_header_template\";s:15:\"tdb_template_84\";s:12:\"tds_logo_alt\";s:0:\"\";s:14:\"tds_logo_title\";s:0:\"\";s:13:\"tds_logo_text\";s:0:\"\";s:16:\"tds_tagline_text\";s:0:\"\";s:15:\"tds_ios_icon_76\";s:0:\"\";s:16:\"tds_ios_icon_114\";s:0:\"\";s:16:\"tds_ios_icon_120\";s:0:\"\";s:16:\"tds_ios_icon_144\";s:0:\"\";s:16:\"tds_ios_icon_152\";s:0:\"\";s:19:\"tdb_footer_template\";s:15:\"tdb_template_92\";s:18:\"tds_modal_video_ad\";s:0:\"\";s:24:\"tds_modal_video_ad_title\";s:0:\"\";s:26:\"tds_modal_video_ad_disable\";s:0:\"\";s:24:\"tds_background_click_url\";s:0:\"\";s:27:\"tds_background_click_target\";s:0:\"\";s:17:\"tds_smart_sidebar\";s:0:\"\";s:10:\"tds_to_top\";s:0:\"\";s:20:\"tds_to_top_on_mobile\";s:0:\"\";s:19:\"tds_animation_stack\";s:0:\"\";s:26:\"tds_animation_stack_effect\";s:0:\"\";s:19:\"tds_404_page_layout\";s:0:\"\";s:23:\"tds_archive_page_layout\";s:0:\"\";s:23:\"tds_archive_sidebar_pos\";s:0:\"\";s:19:\"tds_archive_sidebar\";s:0:\"\";s:26:\"tds_attachment_sidebar_pos\";s:0:\"\";s:22:\"tds_attachment_sidebar\";s:0:\"\";s:22:\"tds_author_page_layout\";s:0:\"\";s:22:\"tds_author_sidebar_pos\";s:0:\"\";s:18:\"tds_author_sidebar\";s:0:\"\";s:20:\"tds_home_page_layout\";s:0:\"\";s:20:\"tds_home_sidebar_pos\";s:0:\"\";s:16:\"tds_home_sidebar\";s:0:\"\";s:20:\"tds_page_layout_size\";s:49:\"td_cl tdc-row stretch_row_1400 td-stretch-content\";s:20:\"tds_page_sidebar_pos\";s:0:\"\";s:16:\"tds_page_sidebar\";s:0:\"\";s:26:\"tds_disable_comments_pages\";s:0:\"\";s:22:\"tds_search_page_layout\";s:0:\"\";s:22:\"tds_search_sidebar_pos\";s:0:\"\";s:18:\"tds_search_sidebar\";s:0:\"\";s:19:\"tds_tag_page_layout\";s:0:\"\";s:19:\"tds_tag_sidebar_pos\";s:0:\"\";s:15:\"tds_tag_sidebar\";s:0:\"\";s:19:\"tds_woo_sidebar_pos\";s:0:\"\";s:15:\"tds_woo_sidebar\";s:0:\"\";s:26:\"tds_woo_single_sidebar_pos\";s:0:\"\";s:22:\"tds_woo_single_sidebar\";s:0:\"\";s:23:\"tds_bbpress_sidebar_pos\";s:0:\"\";s:19:\"tds_bbpress_sidebar\";s:0:\"\";s:36:\"tds_taxonomy_post_format_page_layout\";s:0:\"\";s:36:\"tds_taxonomy_post_format_sidebar_pos\";s:0:\"\";s:32:\"tds_taxonomy_post_format_sidebar\";s:0:\"\";s:21:\"tdb_category_template\";s:15:\"tdb_template_86\";s:23:\"tds_general_modal_image\";s:0:\"\";s:26:\"tds_disable_article_schema\";s:0:\"\";s:29:\"td_default_site_post_template\";s:15:\"tdb_template_89\";s:20:\"tds_tweeter_username\";s:0:\"\";s:24:\"tds_ajax_post_view_count\";s:0:\"\";s:21:\"tds_video_playing_one\";s:0:\"\";s:22:\"tds_video_pause_hidden\";s:0:\"\";s:14:\"tds_video_lazy\";s:0:\"\";s:16:\"tds_video_scroll\";s:0:\"\";s:15:\"tds_video_width\";s:0:\"\";s:20:\"tds_video_position_v\";s:0:\"\";s:20:\"tds_video_distance_v\";s:0:\"\";s:20:\"tds_video_position_h\";s:0:\"\";s:20:\"tds_video_distance_h\";s:0:\"\";s:25:\"tds_global_block_template\";s:0:\"\";s:25:\"tds_category_module_slide\";s:0:\"\";s:29:\"tds_category_module_mega_menu\";s:0:\"\";s:22:\"tds_m_show_author_name\";s:0:\"\";s:15:\"tds_m_show_date\";s:0:\"\";s:24:\"tds_m_show_modified_date\";s:0:\"\";s:19:\"tds_m_show_comments\";s:0:\"\";s:17:\"tds_m_show_review\";s:0:\"\";s:25:\"tds_p_enable_7_days_count\";s:0:\"\";s:26:\"tds_site_background_repeat\";s:0:\"\";s:30:\"tds_site_background_position_x\";s:0:\"\";s:30:\"tds_site_background_attachment\";s:0:\"\";s:22:\"tds_stretch_background\";s:0:\"\";s:27:\"tds_mobile_background_image\";s:59:\"https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\";s:28:\"tds_mobile_background_repeat\";s:0:\"\";s:26:\"tds_mobile_background_size\";s:0:\"\";s:30:\"tds_mobile_background_position\";s:0:\"\";s:26:\"tds_login_background_image\";s:59:\"https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\";s:27:\"tds_login_background_repeat\";s:0:\"\";s:25:\"tds_login_background_size\";s:0:\"\";s:29:\"tds_login_background_position\";s:0:\"\";s:17:\"tds_excerpts_type\";s:0:\"\";s:29:\"td_module_slide_title_excerpt\";s:0:\"\";s:33:\"td_module_mega_menu_title_excerpt\";s:0:\"\";s:36:\"td_module_trending_now_title_excerpt\";s:0:\"\";s:12:\"tds_language\";s:0:\"\";s:18:\"g_use_google_fonts\";s:0:\"\";s:22:\"g_mob_use_google_fonts\";s:0:\"\";s:14:\"tds_custom_css\";s:0:\"\";s:26:\"tds_responsive_css_desktop\";s:0:\"\";s:33:\"tds_responsive_css_ipad_landscape\";s:0:\"\";s:32:\"tds_responsive_css_ipad_portrait\";s:0:\"\";s:24:\"tds_responsive_css_phone\";s:0:\"\";s:15:\"td_body_classes\";s:0:\"\";s:21:\"tds_custom_javascript\";s:0:\"\";s:15:\"tds_custom_html\";s:0:\"\";s:12:\"td_analytics\";s:0:\"\";s:12:\"td_body_code\";s:0:\"\";s:14:\"td_footer_code\";s:0:\"\";s:14:\"tds_yt_api_key\";s:0:\"\";s:18:\"tds_flickr_api_key\";s:0:\"\";s:12:\"tds_rel_type\";s:0:\"\";s:10:\"tds_button\";s:0:\"\";s:14:\"tdm_btn_radius\";s:0:\"\";s:9:\"tds_title\";s:0:\"\";s:20:\"tdm_bordered_website\";s:0:\"\";s:22:\"td_fonts_user_inserted\";a:31:{s:11:\"font_file_1\";s:0:\"\";s:13:\"font_family_1\";s:0:\"\";s:11:\"font_file_2\";s:0:\"\";s:13:\"font_family_2\";s:0:\"\";s:11:\"font_file_3\";s:0:\"\";s:13:\"font_family_3\";s:0:\"\";s:11:\"font_file_4\";s:0:\"\";s:13:\"font_family_4\";s:0:\"\";s:11:\"font_file_5\";s:0:\"\";s:13:\"font_family_5\";s:0:\"\";s:10:\"typekit_js\";s:0:\"\";s:22:\"type_kit_font_family_1\";s:0:\"\";s:22:\"type_kit_font_family_2\";s:0:\"\";s:22:\"type_kit_font_family_3\";s:0:\"\";s:10:\"g_100_thin\";s:0:\"\";s:17:\"g_100_thin_italic\";s:0:\"\";s:17:\"g_200_extra_light\";s:0:\"\";s:24:\"g_200_extra_light_italic\";s:0:\"\";s:11:\"g_300_light\";s:0:\"\";s:18:\"g_300_light_italic\";s:0:\"\";s:19:\"g_400_normal_italic\";s:0:\"\";s:12:\"g_500_medium\";s:0:\"\";s:19:\"g_500_medium_italic\";s:0:\"\";s:15:\"g_600_semi_bold\";s:0:\"\";s:22:\"g_600_semi_bold_italic\";s:0:\"\";s:10:\"g_700_bold\";s:0:\"\";s:17:\"g_700_bold_italic\";s:0:\"\";s:16:\"g_800_extra_bold\";s:0:\"\";s:23:\"g_800_extra_bold_italic\";s:0:\"\";s:11:\"g_900_black\";s:0:\"\";s:18:\"g_900_black_italic\";s:0:\"\";}s:19:\"td_fonts_css_buffer\";s:0:\"\";s:18:\"td_fonts_js_buffer\";s:0:\"\";s:16:\"td_fonts_default\";a:1:{s:13:\"default_fonts\";s:0:\"\";}s:20:\"tds_user_compile_css\";s:5392:\".td-menu-background,\r\n    .td-search-background {\r\n        background-image: url(\'https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\');\r\n    }\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n\r\n\r\n    \r\n    .white-popup-block:before {\r\n        background-image: url(\'https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\');\r\n    }\r\n\r\n    \r\n    .td_cl .td-container {\r\n        width: 100%;\r\n    }\r\n    @media (min-width: 768px) and (max-width: 1018px) {\r\n        .td_cl {\r\n            padding: 0 14px;\r\n        }\r\n    }\r\n    @media (max-width: 767px) {\r\n        .td_cl .td-container {\r\n            padding: 0;\r\n        }\r\n    }\r\n    @media (min-width: 1019px) and (max-width: 1140px) {\r\n        .td_cl.stretch_row_content_no_space {\r\n            padding-left: 20px;\r\n            padding-right: 20px;\r\n        }\r\n    }\r\n    @media (min-width: 1141px) {\r\n        .td_cl.stretch_row_content_no_space {\r\n            padding-left: 24px;\r\n            padding-right: 24px;\r\n        }\r\n    }\r\n        \r\n    :root{--td_theme_color:#ec3535;--td_slider_text:rgba(236,53,53,0.7);--td_mobile_gradient_one_mob:rgba(0,0,0,0.8);--td_mobile_gradient_two_mob:rgba(0,0,0,0.8);--td_mobile_text_active_color:#ec3535;--td_login_hover_background:#ec3535;--td_login_hover_color:#ffffff;--td_login_gradient_one:rgba(0,0,0,0.65);--td_login_gradient_two:rgba(0,0,0,0.72);}.td-header-style-12 .td-header-menu-wrap-full,\r\n    .td-header-style-12 .td-affix,\r\n    .td-grid-style-1.td-hover-1 .td-big-grid-post:hover .td-post-category,\r\n    .td-grid-style-5.td-hover-1 .td-big-grid-post:hover .td-post-category,\r\n    .td_category_template_3 .td-current-sub-category,\r\n    .td_category_template_8 .td-category-header .td-category a.td-current-sub-category,\r\n    .td_category_template_4 .td-category-siblings .td-category a:hover,\r\n     .td_block_big_grid_9.td-grid-style-1 .td-post-category,\r\n    .td_block_big_grid_9.td-grid-style-5 .td-post-category,\r\n    .td-grid-style-6.td-hover-1 .td-module-thumb:after,\r\n     .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > li > a:hover,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .sfHover > a {\r\n        background-color: #ec3535;\r\n    }\r\n    \r\n    .td_mega_menu_sub_cats .cur-sub-cat,\r\n    .td-mega-span h3 a:hover,\r\n    .td_mod_mega_menu:hover .entry-title a,\r\n    .header-search-wrap .result-msg a:hover,\r\n    .td-header-top-menu .td-drop-down-search .td_module_wrap:hover .entry-title a,\r\n    .td-header-top-menu .td-icon-search:hover,\r\n    .td-header-wrap .result-msg a:hover,\r\n    .top-header-menu li a:hover,\r\n    .top-header-menu .current-menu-item > a,\r\n    .top-header-menu .current-menu-ancestor > a,\r\n    .top-header-menu .current-category-ancestor > a,\r\n    .td-social-icon-wrap > a:hover,\r\n    .td-header-sp-top-widget .td-social-icon-wrap a:hover,\r\n    .td_mod_related_posts:hover h3 > a,\r\n    .td-post-template-11 .td-related-title .td-related-left:hover,\r\n    .td-post-template-11 .td-related-title .td-related-right:hover,\r\n    .td-post-template-11 .td-related-title .td-cur-simple-item,\r\n    .td-post-template-11 .td_block_related_posts .td-next-prev-wrap a:hover,\r\n    .td-category-header .td-pulldown-category-filter-link:hover,\r\n    .td-category-siblings .td-subcat-dropdown a:hover,\r\n    .td-category-siblings .td-subcat-dropdown a.td-current-sub-category,\r\n    .footer-text-wrap .footer-email-wrap a,\r\n    .footer-social-wrap a:hover,\r\n    .td_module_17 .td-read-more a:hover,\r\n    .td_module_18 .td-read-more a:hover,\r\n    .td_module_19 .td-post-author-name a:hover,\r\n    .td-pulldown-syle-2 .td-subcat-dropdown:hover .td-subcat-more span,\r\n    .td-pulldown-syle-2 .td-subcat-dropdown:hover .td-subcat-more i,\r\n    .td-pulldown-syle-3 .td-subcat-dropdown:hover .td-subcat-more span,\r\n    .td-pulldown-syle-3 .td-subcat-dropdown:hover .td-subcat-more i,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .sfHover > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > li > a:hover {\r\n        color: #ec3535;\r\n    }\r\n    \r\n    .td-mega-menu-page .wpb_content_element ul li a:hover,\r\n    .td-theme-wrap .td-aj-search-results .td_module_wrap:hover .entry-title a,\r\n    .td-theme-wrap .header-search-wrap .result-msg a:hover {\r\n        color: #ec3535 !important;\r\n    }\r\n    \r\n    .td_category_template_8 .td-category-header .td-category a.td-current-sub-category,\r\n    .td_category_template_4 .td-category-siblings .td-category a:hover,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > li > a:hover,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .sfHover > a {\r\n        border-color: #ec3535;\r\n    }\";s:15:\"tds_theme_color\";s:7:\"#ec3535\";s:25:\"tds_site_background_color\";s:0:\"\";s:14:\"tds_site_boxed\";s:0:\"\";s:16:\"tds_header_color\";s:0:\"\";s:21:\"tds_text_header_color\";s:0:\"\";s:21:\"tds_mobile_menu_color\";s:0:\"\";s:22:\"tds_mobile_icons_color\";s:0:\"\";s:27:\"tds_mobile_gradient_one_mob\";s:15:\"rgba(0,0,0,0.8)\";s:27:\"tds_mobile_gradient_two_mob\";s:15:\"rgba(0,0,0,0.8)\";s:21:\"tds_mobile_text_color\";s:0:\"\";s:28:\"tds_mobile_text_active_color\";s:7:\"#ec3535\";s:32:\"tds_mobile_button_background_mob\";s:0:\"\";s:27:\"tds_mobile_button_color_mob\";s:0:\"\";s:21:\"tdb_p_autoload_status\";s:3:\"off\";s:19:\"tdb_p_autoload_type\";s:0:\"\";s:20:\"tdb_p_autoload_count\";s:0:\"\";s:29:\"tdb_p_autoload_scroll_percent\";s:0:\"\";s:16:\"tdb_404_template\";s:15:\"tdb_template_90\";s:17:\"tdb_date_template\";s:15:\"tdb_template_91\";s:23:\"tdb_attachment_template\";s:0:\"\";s:19:\"tdb_author_template\";s:15:\"tdb_template_85\";s:20:\"tdb_author_templates\";a:1:{i:1;s:0:\"\";}s:19:\"tdb_search_template\";s:15:\"tdb_template_88\";s:16:\"tdb_tag_template\";s:15:\"tdb_template_87\";s:17:\"tdb_tag_templates\";a:1:{s:16:\"tdb_template_420\";s:0:\"\";}s:11:\"tds_captcha\";s:0:\"\";s:20:\"tds_captcha_site_key\";s:0:\"\";s:22:\"tds_captcha_secret_key\";s:0:\"\";s:17:\"tds_captcha_score\";s:0:\"\";s:22:\"tds_login_gradient_one\";s:16:\"rgba(0,0,0,0.65)\";s:22:\"tds_login_gradient_two\";s:16:\"rgba(0,0,0,0.72)\";s:20:\"tds_login_text_color\";s:0:\"\";s:27:\"tds_login_button_background\";s:0:\"\";s:22:\"tds_login_button_color\";s:0:\"\";s:26:\"tds_login_hover_background\";s:7:\"#ec3535\";s:21:\"tds_login_hover_color\";s:7:\"#ffffff\";s:41:\"plugin_subscription_update_latest_version\";s:90:\"{\"1.6.1\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2024\\/05\\/td-subscription.zip\"}\";s:27:\"tds_header_background_image\";b:0;s:27:\"tds_footer_background_image\";b:0;s:6:\"td_011\";s:44:\"KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKio=\";s:6:\"td_010\";s:0:\"\";s:7:\"td_010_\";s:0:\"\";s:9:\"td_010_ta\";s:0:\"\";s:9:\"td_010_tp\";s:0:\"\";s:28:\"td_timestamp_install_plugins\";s:0:\"\";s:23:\"theme_update_to_version\";s:0:\"\";s:16:\"td_updated_fonts\";b:1;s:16:\"category_options\";a:11:{i:4;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:2;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:5;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:6;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:7;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:8;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:9;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:10;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:11;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:12;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:1;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}}s:16:\"tds_demo_options\";s:259:\"a:1:{s:5:\"plans\";a:3:{i:0;a:2:{s:9:\"unique_id\";s:15:\"5961b9c837a77e4\";s:4:\"name\";s:11:\"Yearly Plan\";}i:1;a:2:{s:9:\"unique_id\";s:15:\"9661b9c837a9db8\";s:4:\"name\";s:9:\"Free Plan\";}i:2;a:2:{s:9:\"unique_id\";s:15:\"5261b9c837abf3e\";s:4:\"name\";s:12:\"Monthly Plan\";}}}\";s:25:\"tds_site_background_image\";s:0:\"\";s:15:\"tds_footer_text\";s:0:\"\";s:15:\"tds_logo_upload\";s:0:\"\";s:17:\"tds_logo_upload_r\";s:0:\"\";s:20:\"tds_logo_menu_upload\";s:0:\"\";s:22:\"tds_footer_logo_upload\";s:0:\"\";s:29:\"tds_footer_retina_logo_upload\";s:0:\"\";s:18:\"tds_favicon_upload\";s:0:\"\";s:28:\"td_theme_deactivated_plugins\";a:0:{}s:21:\"tds_logo_width_height\";b:1;s:36:\"td_updated_td_posts_form_submit_meta\";b:1;s:15:\"firstinstallMob\";s:20:\"mobilethemeInstalled\";s:24:\"tds_logo_menu_upload_mob\";s:0:\"\";s:26:\"tds_logo_menu_upload_r_mob\";s:0:\"\";s:16:\"tds_logo_alt_mob\";s:0:\"\";s:18:\"tds_logo_title_mob\";s:0:\"\";s:14:\"tds_footer_mob\";s:0:\"\";s:26:\"tds_footer_logo_upload_mob\";s:0:\"\";s:33:\"tds_footer_retina_logo_upload_mob\";s:0:\"\";s:19:\"tds_footer_text_mob\";s:0:\"\";s:20:\"tds_footer_email_mob\";s:0:\"\";s:23:\"tds_footer_logo_alt_mob\";s:0:\"\";s:25:\"tds_footer_logo_title_mob\";s:0:\"\";s:21:\"tds_footer_social_mob\";s:0:\"\";s:18:\"tds_sub_footer_mob\";s:0:\"\";s:24:\"tds_footer_copyright_mob\";s:0:\"\";s:26:\"tds_footer_copy_symbol_mob\";s:0:\"\";s:20:\"tds_thumb_td_265x198\";s:3:\"yes\";s:20:\"tds_thumb_td_741x486\";s:3:\"yes\";s:23:\"tdm_frontpage_grid_sort\";s:6:\"latest\";s:42:\"tdm_frontpage_latest_articles_posts_offset\";s:1:\"3\";}s:19:\"2025-11-10 05:58:19\";a:219:{s:27:\"theme_update_latest_version\";s:87:\"{\"12.7.3\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/Newspaper-1.zip\"}\";s:21:\"theme_update_versions\";s:431:\"[{\"12.7.3\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/Newspaper-1.zip\"},{\"12.7.2\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/Newspaper.zip\"},{\"12.7.1\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/04\\/Newspaper.zip\"},{\"12.7\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/03\\/Newspaper.zip\"},{\"12.6.9\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/02\\/Newspaper.zip\"}]\";s:14:\"td_remote_http\";a:2:{s:9:\"test_time\";i:1632929798;s:11:\"test_status\";s:9:\"wordpress\";}s:12:\"firstInstall\";s:14:\"themeInstalled\";s:13:\"td_log_status\";s:3:\"off\";s:24:\"tds_login_sign_in_widget\";s:0:\"\";s:18:\"tds_thumb_td_150x0\";s:3:\"yes\";s:20:\"tds_thumb_td_218x150\";s:3:\"yes\";s:18:\"tds_thumb_td_300x0\";s:3:\"yes\";s:20:\"tds_thumb_td_324x400\";s:3:\"yes\";s:20:\"tds_thumb_td_485x360\";s:3:\"yes\";s:18:\"tds_thumb_td_696x0\";s:3:\"yes\";s:19:\"tds_thumb_td_1068x0\";s:3:\"yes\";s:19:\"tds_thumb_td_1920x0\";s:3:\"yes\";s:23:\"td_social_drag_and_drop\";a:21:{s:8:\"facebook\";b:1;s:7:\"twitter\";b:1;s:9:\"pinterest\";b:1;s:8:\"whatsapp\";b:1;s:8:\"linkedin\";b:0;s:6:\"reddit\";b:0;s:4:\"mail\";b:0;s:5:\"print\";b:0;s:6:\"tumblr\";b:0;s:8:\"telegram\";b:0;s:11:\"stumbleupon\";b:0;s:2:\"vk\";b:0;s:4:\"digg\";b:0;s:4:\"line\";b:0;s:5:\"viber\";b:0;s:5:\"naver\";b:0;s:9:\"flipboard\";s:0:\"\";s:8:\"copy_url\";s:0:\"\";s:5:\"kakao\";s:0:\"\";s:5:\"gettr\";s:0:\"\";s:3:\"koo\";s:0:\"\";}s:18:\"td_social_networks\";a:0:{}s:10:\"td_version\";s:6:\"12.6.8\";s:9:\"td_011_tp\";i:1645519906;s:9:\"td_011_ta\";s:7:\"lp_sent\";s:7:\"td_011_\";i:2;s:11:\"tdc_savings\";a:4:{s:12:\"recentColors\";a:18:{i:0;s:12:\"IiNhYWFhYWEi\";i:1;s:24:\"InJnYmEoMCwwLDAsMC4wOCki\";i:2;s:24:\"InJnYmEoMCwwLDAsMC4wOSki\";i:3;s:32:\"InJnYmEoMjU1LDI1NSwyNTUsMC44KSI=\";i:4;s:28:\"InJnYmEoMjU1LDI1NSwyNTUsMCki\";i:5;s:12:\"IiNkZGRkZGQi\";i:6;s:12:\"IiM2ZDI5Mjki\";i:7;s:12:\"IiM5OTk5OTki\";i:8;s:12:\"IiMxNTJiZjci\";i:9;s:12:\"IiM1NjVmNmQi\";i:10;s:12:\"IiNlYWVhZWEi\";i:11;s:12:\"IiMwMDAwMDAi\";i:12;s:12:\"IiNmN2Y3Zjci\";i:13;s:12:\"IiNmNGY0ZjQi\";i:14;s:12:\"IiNmZmZmZmYi\";i:15;s:24:\"InJnYmEoMCwwLDAsMC4xMiki\";i:16;s:12:\"IiNjMTFmMWYi\";i:17;s:12:\"IiNlYzM1MzUi\";}s:11:\"recentFonts\";a:7:{i:0;s:3:\"421\";i:1;s:3:\"420\";i:2;s:3:\"892\";i:3;s:3:\"453\";i:4;s:3:\"456\";i:5;s:4:\"fs_2\";i:6;s:3:\"653\";}s:5:\"fonts\";a:9:{i:0;a:2:{s:4:\"name\";s:20:\"Block title Work BIG\";s:5:\"value\";s:212:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfd2VpZ2h0IjoiNzAwIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl6TWlJc0luQnZjblJ5WVdsMElqb2lNakFpTENKc1lXNWtjMk5oY0dVaU9pSXlOaUo5IiwiZm9udF9zcGFjaW5nIjoiLTEiLCJmb250X2xpbmVfaGVpZ2h0IjoiMSJ9\";}i:1;a:2:{s:4:\"name\";s:15:\"Small Caps Work\";s:5:\"value\";s:200:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TXlJc0luQnZjblJ5WVdsMElqb2lNVElpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxLjIiLCJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSJ9\";}i:2;a:2:{s:4:\"name\";s:6:\"big pt\";s:5:\"value\";s:248:\"eyJmb250X2ZhbWlseSI6IjQ1NiIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJeU5pSXNJbXhoYm1SelkyRndaU0k2SWpFNUlpd2ljRzl5ZEhKaGFYUWlPaUl4TnlKOSIsImZvbnRfbGluZV9oZWlnaHQiOiIxLjEiLCJmb250X3N0eWxlIjoidW5kZWZpbmVkIiwiZm9udF93ZWlnaHQiOiI2MDAiLCJmb250X3RyYW5zZm9ybSI6IiJ9\";}i:3;a:2:{s:4:\"name\";s:8:\"cat work\";s:5:\"value\";s:252:\"eyJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9mYW1pbHkiOiI2NTMiLCJmb250X3NpemUiOiJleUpoYkd3aU9pSXhNeUlzSW5CdmNuUnlZV2wwSWpvaU1USWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE1pSXNJbkJvYjI1bElqb2lNVElpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIn0=\";}i:4;a:2:{s:4:\"name\";s:6:\"cat-sm\";s:5:\"value\";s:228:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfdHJhbnNmb3JtIjoidXBwZXJjYXNlIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TWlJc0lteGhibVJ6WTJGd1pTSTZJakV4SW4wPSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9saW5lX2hlaWdodCI6IjEiLCJmb250X3NwYWNpbmciOiItMC41In0=\";}i:5;a:2:{s:4:\"name\";s:7:\"excl-sm\";s:5:\"value\";s:280:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfdHJhbnNmb3JtIjoidXBwZXJjYXNlIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TWlJc0lteGhibVJ6WTJGd1pTSTZJakV4SWl3aWNHOXlkSEpoYVhRaU9pSXhNU0lzSW5Cb2IyNWxJam9pTVRFaWZRPT0iLCJmb250X3dlaWdodCI6IjUwMCIsImZvbnRfbGluZV9oZWlnaHQiOiIxIiwiZm9udF9zcGFjaW5nIjoiLTAuNSJ9\";}i:6;a:2:{s:4:\"name\";s:8:\"excl-big\";s:5:\"value\";s:252:\"eyJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9mYW1pbHkiOiI2NTMiLCJmb250X3NpemUiOiJleUpoYkd3aU9pSXhNeUlzSW5CdmNuUnlZV2wwSWpvaU1URWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE1pSXNJbkJvYjI1bElqb2lNVEVpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIn0=\";}i:7;a:2:{s:4:\"name\";s:11:\"medium work\";s:5:\"value\";s:212:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJeU5DSXNJbkJ2Y25SeVlXbDBJam9pTWpBaUxDSnNZVzVrYzJOaGNHVWlPaUl5TWlKOSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIiwiZm9udF93ZWlnaHQiOiI3MDAiLCJmb250X3NwYWNpbmciOiItMSJ9\";}i:8;a:2:{s:4:\"name\";s:6:\"bigggg\";s:5:\"value\";s:272:\"eyJmb250X3dlaWdodCI6IjcwMCIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJME1pSXNJbXhoYm1SelkyRndaU0k2SWpNMklpd2ljRzl5ZEhKaGFYUWlPaUl6TWlJc0luQm9iMjVsSWpvaU16QWlmUT09IiwiZm9udF9mYW1pbHkiOiI0NTYiLCJmb250X2xpbmVfaGVpZ2h0IjoiMSIsImZvbnRfc3R5bGUiOiJ1bmRlZmluZWQiLCJmb250X3RyYW5zZm9ybSI6IiJ9\";}}s:9:\"gradients\";a:1:{i:0;s:660:\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\";}}s:19:\"tdb_header_template\";s:15:\"tdb_template_84\";s:12:\"tds_logo_alt\";s:0:\"\";s:14:\"tds_logo_title\";s:0:\"\";s:13:\"tds_logo_text\";s:0:\"\";s:16:\"tds_tagline_text\";s:0:\"\";s:15:\"tds_ios_icon_76\";s:0:\"\";s:16:\"tds_ios_icon_114\";s:0:\"\";s:16:\"tds_ios_icon_120\";s:0:\"\";s:16:\"tds_ios_icon_144\";s:0:\"\";s:16:\"tds_ios_icon_152\";s:0:\"\";s:19:\"tdb_footer_template\";s:15:\"tdb_template_92\";s:18:\"tds_modal_video_ad\";s:0:\"\";s:24:\"tds_modal_video_ad_title\";s:0:\"\";s:26:\"tds_modal_video_ad_disable\";s:0:\"\";s:24:\"tds_background_click_url\";s:0:\"\";s:27:\"tds_background_click_target\";s:0:\"\";s:17:\"tds_smart_sidebar\";s:0:\"\";s:10:\"tds_to_top\";s:0:\"\";s:20:\"tds_to_top_on_mobile\";s:0:\"\";s:19:\"tds_animation_stack\";s:0:\"\";s:26:\"tds_animation_stack_effect\";s:0:\"\";s:19:\"tds_404_page_layout\";s:0:\"\";s:23:\"tds_archive_page_layout\";s:0:\"\";s:23:\"tds_archive_sidebar_pos\";s:0:\"\";s:19:\"tds_archive_sidebar\";s:0:\"\";s:26:\"tds_attachment_sidebar_pos\";s:0:\"\";s:22:\"tds_attachment_sidebar\";s:0:\"\";s:22:\"tds_author_page_layout\";s:0:\"\";s:22:\"tds_author_sidebar_pos\";s:0:\"\";s:18:\"tds_author_sidebar\";s:0:\"\";s:20:\"tds_home_page_layout\";s:0:\"\";s:20:\"tds_home_sidebar_pos\";s:0:\"\";s:16:\"tds_home_sidebar\";s:0:\"\";s:20:\"tds_page_layout_size\";s:49:\"td_cl tdc-row stretch_row_1400 td-stretch-content\";s:20:\"tds_page_sidebar_pos\";s:0:\"\";s:16:\"tds_page_sidebar\";s:0:\"\";s:26:\"tds_disable_comments_pages\";s:0:\"\";s:22:\"tds_search_page_layout\";s:0:\"\";s:22:\"tds_search_sidebar_pos\";s:0:\"\";s:18:\"tds_search_sidebar\";s:0:\"\";s:19:\"tds_tag_page_layout\";s:0:\"\";s:19:\"tds_tag_sidebar_pos\";s:0:\"\";s:15:\"tds_tag_sidebar\";s:0:\"\";s:19:\"tds_woo_sidebar_pos\";s:0:\"\";s:15:\"tds_woo_sidebar\";s:0:\"\";s:26:\"tds_woo_single_sidebar_pos\";s:0:\"\";s:22:\"tds_woo_single_sidebar\";s:0:\"\";s:23:\"tds_bbpress_sidebar_pos\";s:0:\"\";s:19:\"tds_bbpress_sidebar\";s:0:\"\";s:36:\"tds_taxonomy_post_format_page_layout\";s:0:\"\";s:36:\"tds_taxonomy_post_format_sidebar_pos\";s:0:\"\";s:32:\"tds_taxonomy_post_format_sidebar\";s:0:\"\";s:21:\"tdb_category_template\";s:15:\"tdb_template_86\";s:23:\"tds_general_modal_image\";s:0:\"\";s:26:\"tds_disable_article_schema\";s:0:\"\";s:29:\"td_default_site_post_template\";s:15:\"tdb_template_89\";s:20:\"tds_tweeter_username\";s:0:\"\";s:24:\"tds_ajax_post_view_count\";s:0:\"\";s:21:\"tds_video_playing_one\";s:0:\"\";s:22:\"tds_video_pause_hidden\";s:0:\"\";s:14:\"tds_video_lazy\";s:0:\"\";s:16:\"tds_video_scroll\";s:0:\"\";s:15:\"tds_video_width\";s:0:\"\";s:20:\"tds_video_position_v\";s:0:\"\";s:20:\"tds_video_distance_v\";s:0:\"\";s:20:\"tds_video_position_h\";s:0:\"\";s:20:\"tds_video_distance_h\";s:0:\"\";s:25:\"tds_global_block_template\";s:0:\"\";s:25:\"tds_category_module_slide\";s:0:\"\";s:29:\"tds_category_module_mega_menu\";s:0:\"\";s:22:\"tds_m_show_author_name\";s:0:\"\";s:15:\"tds_m_show_date\";s:0:\"\";s:24:\"tds_m_show_modified_date\";s:0:\"\";s:19:\"tds_m_show_comments\";s:0:\"\";s:17:\"tds_m_show_review\";s:0:\"\";s:25:\"tds_p_enable_7_days_count\";s:0:\"\";s:26:\"tds_site_background_repeat\";s:0:\"\";s:30:\"tds_site_background_position_x\";s:0:\"\";s:30:\"tds_site_background_attachment\";s:0:\"\";s:22:\"tds_stretch_background\";s:0:\"\";s:27:\"tds_mobile_background_image\";s:59:\"https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\";s:28:\"tds_mobile_background_repeat\";s:0:\"\";s:26:\"tds_mobile_background_size\";s:0:\"\";s:30:\"tds_mobile_background_position\";s:0:\"\";s:26:\"tds_login_background_image\";s:59:\"https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\";s:27:\"tds_login_background_repeat\";s:0:\"\";s:25:\"tds_login_background_size\";s:0:\"\";s:29:\"tds_login_background_position\";s:0:\"\";s:17:\"tds_excerpts_type\";s:0:\"\";s:29:\"td_module_slide_title_excerpt\";s:0:\"\";s:33:\"td_module_mega_menu_title_excerpt\";s:0:\"\";s:36:\"td_module_trending_now_title_excerpt\";s:0:\"\";s:12:\"tds_language\";s:0:\"\";s:18:\"g_use_google_fonts\";s:0:\"\";s:22:\"g_mob_use_google_fonts\";s:0:\"\";s:14:\"tds_custom_css\";s:0:\"\";s:26:\"tds_responsive_css_desktop\";s:0:\"\";s:33:\"tds_responsive_css_ipad_landscape\";s:0:\"\";s:32:\"tds_responsive_css_ipad_portrait\";s:0:\"\";s:24:\"tds_responsive_css_phone\";s:0:\"\";s:15:\"td_body_classes\";s:0:\"\";s:21:\"tds_custom_javascript\";s:0:\"\";s:15:\"tds_custom_html\";s:0:\"\";s:12:\"td_analytics\";s:0:\"\";s:12:\"td_body_code\";s:0:\"\";s:14:\"td_footer_code\";s:0:\"\";s:14:\"tds_yt_api_key\";s:0:\"\";s:18:\"tds_flickr_api_key\";s:0:\"\";s:12:\"tds_rel_type\";s:0:\"\";s:10:\"tds_button\";s:0:\"\";s:14:\"tdm_btn_radius\";s:0:\"\";s:9:\"tds_title\";s:0:\"\";s:20:\"tdm_bordered_website\";s:0:\"\";s:22:\"td_fonts_user_inserted\";a:31:{s:11:\"font_file_1\";s:0:\"\";s:13:\"font_family_1\";s:0:\"\";s:11:\"font_file_2\";s:0:\"\";s:13:\"font_family_2\";s:0:\"\";s:11:\"font_file_3\";s:0:\"\";s:13:\"font_family_3\";s:0:\"\";s:11:\"font_file_4\";s:0:\"\";s:13:\"font_family_4\";s:0:\"\";s:11:\"font_file_5\";s:0:\"\";s:13:\"font_family_5\";s:0:\"\";s:10:\"typekit_js\";s:0:\"\";s:22:\"type_kit_font_family_1\";s:0:\"\";s:22:\"type_kit_font_family_2\";s:0:\"\";s:22:\"type_kit_font_family_3\";s:0:\"\";s:10:\"g_100_thin\";s:0:\"\";s:17:\"g_100_thin_italic\";s:0:\"\";s:17:\"g_200_extra_light\";s:0:\"\";s:24:\"g_200_extra_light_italic\";s:0:\"\";s:11:\"g_300_light\";s:0:\"\";s:18:\"g_300_light_italic\";s:0:\"\";s:19:\"g_400_normal_italic\";s:0:\"\";s:12:\"g_500_medium\";s:0:\"\";s:19:\"g_500_medium_italic\";s:0:\"\";s:15:\"g_600_semi_bold\";s:0:\"\";s:22:\"g_600_semi_bold_italic\";s:0:\"\";s:10:\"g_700_bold\";s:0:\"\";s:17:\"g_700_bold_italic\";s:0:\"\";s:16:\"g_800_extra_bold\";s:0:\"\";s:23:\"g_800_extra_bold_italic\";s:0:\"\";s:11:\"g_900_black\";s:0:\"\";s:18:\"g_900_black_italic\";s:0:\"\";}s:19:\"td_fonts_css_buffer\";s:0:\"\";s:18:\"td_fonts_js_buffer\";s:0:\"\";s:16:\"td_fonts_default\";a:1:{s:13:\"default_fonts\";s:0:\"\";}s:20:\"tds_user_compile_css\";s:5392:\".td-menu-background,\r\n    .td-search-background {\r\n        background-image: url(\'https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\');\r\n    }\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n\r\n\r\n    \r\n    .white-popup-block:before {\r\n        background-image: url(\'https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\');\r\n    }\r\n\r\n    \r\n    .td_cl .td-container {\r\n        width: 100%;\r\n    }\r\n    @media (min-width: 768px) and (max-width: 1018px) {\r\n        .td_cl {\r\n            padding: 0 14px;\r\n        }\r\n    }\r\n    @media (max-width: 767px) {\r\n        .td_cl .td-container {\r\n            padding: 0;\r\n        }\r\n    }\r\n    @media (min-width: 1019px) and (max-width: 1140px) {\r\n        .td_cl.stretch_row_content_no_space {\r\n            padding-left: 20px;\r\n            padding-right: 20px;\r\n        }\r\n    }\r\n    @media (min-width: 1141px) {\r\n        .td_cl.stretch_row_content_no_space {\r\n            padding-left: 24px;\r\n            padding-right: 24px;\r\n        }\r\n    }\r\n        \r\n    :root{--td_theme_color:#ec3535;--td_slider_text:rgba(236,53,53,0.7);--td_mobile_gradient_one_mob:rgba(0,0,0,0.8);--td_mobile_gradient_two_mob:rgba(0,0,0,0.8);--td_mobile_text_active_color:#ec3535;--td_login_hover_background:#ec3535;--td_login_hover_color:#ffffff;--td_login_gradient_one:rgba(0,0,0,0.65);--td_login_gradient_two:rgba(0,0,0,0.72);}.td-header-style-12 .td-header-menu-wrap-full,\r\n    .td-header-style-12 .td-affix,\r\n    .td-grid-style-1.td-hover-1 .td-big-grid-post:hover .td-post-category,\r\n    .td-grid-style-5.td-hover-1 .td-big-grid-post:hover .td-post-category,\r\n    .td_category_template_3 .td-current-sub-category,\r\n    .td_category_template_8 .td-category-header .td-category a.td-current-sub-category,\r\n    .td_category_template_4 .td-category-siblings .td-category a:hover,\r\n     .td_block_big_grid_9.td-grid-style-1 .td-post-category,\r\n    .td_block_big_grid_9.td-grid-style-5 .td-post-category,\r\n    .td-grid-style-6.td-hover-1 .td-module-thumb:after,\r\n     .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > li > a:hover,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .sfHover > a {\r\n        background-color: #ec3535;\r\n    }\r\n    \r\n    .td_mega_menu_sub_cats .cur-sub-cat,\r\n    .td-mega-span h3 a:hover,\r\n    .td_mod_mega_menu:hover .entry-title a,\r\n    .header-search-wrap .result-msg a:hover,\r\n    .td-header-top-menu .td-drop-down-search .td_module_wrap:hover .entry-title a,\r\n    .td-header-top-menu .td-icon-search:hover,\r\n    .td-header-wrap .result-msg a:hover,\r\n    .top-header-menu li a:hover,\r\n    .top-header-menu .current-menu-item > a,\r\n    .top-header-menu .current-menu-ancestor > a,\r\n    .top-header-menu .current-category-ancestor > a,\r\n    .td-social-icon-wrap > a:hover,\r\n    .td-header-sp-top-widget .td-social-icon-wrap a:hover,\r\n    .td_mod_related_posts:hover h3 > a,\r\n    .td-post-template-11 .td-related-title .td-related-left:hover,\r\n    .td-post-template-11 .td-related-title .td-related-right:hover,\r\n    .td-post-template-11 .td-related-title .td-cur-simple-item,\r\n    .td-post-template-11 .td_block_related_posts .td-next-prev-wrap a:hover,\r\n    .td-category-header .td-pulldown-category-filter-link:hover,\r\n    .td-category-siblings .td-subcat-dropdown a:hover,\r\n    .td-category-siblings .td-subcat-dropdown a.td-current-sub-category,\r\n    .footer-text-wrap .footer-email-wrap a,\r\n    .footer-social-wrap a:hover,\r\n    .td_module_17 .td-read-more a:hover,\r\n    .td_module_18 .td-read-more a:hover,\r\n    .td_module_19 .td-post-author-name a:hover,\r\n    .td-pulldown-syle-2 .td-subcat-dropdown:hover .td-subcat-more span,\r\n    .td-pulldown-syle-2 .td-subcat-dropdown:hover .td-subcat-more i,\r\n    .td-pulldown-syle-3 .td-subcat-dropdown:hover .td-subcat-more span,\r\n    .td-pulldown-syle-3 .td-subcat-dropdown:hover .td-subcat-more i,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .sfHover > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > li > a:hover {\r\n        color: #ec3535;\r\n    }\r\n    \r\n    .td-mega-menu-page .wpb_content_element ul li a:hover,\r\n    .td-theme-wrap .td-aj-search-results .td_module_wrap:hover .entry-title a,\r\n    .td-theme-wrap .header-search-wrap .result-msg a:hover {\r\n        color: #ec3535 !important;\r\n    }\r\n    \r\n    .td_category_template_8 .td-category-header .td-category a.td-current-sub-category,\r\n    .td_category_template_4 .td-category-siblings .td-category a:hover,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > li > a:hover,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .sfHover > a {\r\n        border-color: #ec3535;\r\n    }\";s:15:\"tds_theme_color\";s:7:\"#ec3535\";s:25:\"tds_site_background_color\";s:0:\"\";s:14:\"tds_site_boxed\";s:0:\"\";s:16:\"tds_header_color\";s:0:\"\";s:21:\"tds_text_header_color\";s:0:\"\";s:21:\"tds_mobile_menu_color\";s:0:\"\";s:22:\"tds_mobile_icons_color\";s:0:\"\";s:27:\"tds_mobile_gradient_one_mob\";s:15:\"rgba(0,0,0,0.8)\";s:27:\"tds_mobile_gradient_two_mob\";s:15:\"rgba(0,0,0,0.8)\";s:21:\"tds_mobile_text_color\";s:0:\"\";s:28:\"tds_mobile_text_active_color\";s:7:\"#ec3535\";s:32:\"tds_mobile_button_background_mob\";s:0:\"\";s:27:\"tds_mobile_button_color_mob\";s:0:\"\";s:21:\"tdb_p_autoload_status\";s:3:\"off\";s:19:\"tdb_p_autoload_type\";s:0:\"\";s:20:\"tdb_p_autoload_count\";s:0:\"\";s:29:\"tdb_p_autoload_scroll_percent\";s:0:\"\";s:16:\"tdb_404_template\";s:15:\"tdb_template_90\";s:17:\"tdb_date_template\";s:15:\"tdb_template_91\";s:23:\"tdb_attachment_template\";s:0:\"\";s:19:\"tdb_author_template\";s:15:\"tdb_template_85\";s:20:\"tdb_author_templates\";a:1:{i:1;s:0:\"\";}s:19:\"tdb_search_template\";s:15:\"tdb_template_88\";s:16:\"tdb_tag_template\";s:15:\"tdb_template_87\";s:17:\"tdb_tag_templates\";a:1:{s:16:\"tdb_template_420\";s:0:\"\";}s:11:\"tds_captcha\";s:0:\"\";s:20:\"tds_captcha_site_key\";s:0:\"\";s:22:\"tds_captcha_secret_key\";s:0:\"\";s:17:\"tds_captcha_score\";s:0:\"\";s:22:\"tds_login_gradient_one\";s:16:\"rgba(0,0,0,0.65)\";s:22:\"tds_login_gradient_two\";s:16:\"rgba(0,0,0,0.72)\";s:20:\"tds_login_text_color\";s:0:\"\";s:27:\"tds_login_button_background\";s:0:\"\";s:22:\"tds_login_button_color\";s:0:\"\";s:26:\"tds_login_hover_background\";s:7:\"#ec3535\";s:21:\"tds_login_hover_color\";s:7:\"#ffffff\";s:41:\"plugin_subscription_update_latest_version\";s:90:\"{\"1.6.1\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2024\\/05\\/td-subscription.zip\"}\";s:27:\"tds_header_background_image\";b:0;s:27:\"tds_footer_background_image\";b:0;s:6:\"td_011\";s:44:\"KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKio=\";s:6:\"td_010\";s:0:\"\";s:7:\"td_010_\";s:0:\"\";s:9:\"td_010_ta\";s:0:\"\";s:9:\"td_010_tp\";s:0:\"\";s:28:\"td_timestamp_install_plugins\";s:0:\"\";s:23:\"theme_update_to_version\";s:0:\"\";s:16:\"td_updated_fonts\";b:1;s:16:\"category_options\";a:11:{i:4;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:2;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:5;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:6;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:7;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:8;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:9;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:10;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:11;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:12;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:1;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}}s:16:\"tds_demo_options\";s:259:\"a:1:{s:5:\"plans\";a:3:{i:0;a:2:{s:9:\"unique_id\";s:15:\"5961b9c837a77e4\";s:4:\"name\";s:11:\"Yearly Plan\";}i:1;a:2:{s:9:\"unique_id\";s:15:\"9661b9c837a9db8\";s:4:\"name\";s:9:\"Free Plan\";}i:2;a:2:{s:9:\"unique_id\";s:15:\"5261b9c837abf3e\";s:4:\"name\";s:12:\"Monthly Plan\";}}}\";s:25:\"tds_site_background_image\";s:0:\"\";s:15:\"tds_footer_text\";s:0:\"\";s:15:\"tds_logo_upload\";s:0:\"\";s:17:\"tds_logo_upload_r\";s:0:\"\";s:20:\"tds_logo_menu_upload\";s:0:\"\";s:22:\"tds_footer_logo_upload\";s:0:\"\";s:29:\"tds_footer_retina_logo_upload\";s:0:\"\";s:18:\"tds_favicon_upload\";s:0:\"\";s:28:\"td_theme_deactivated_plugins\";a:3:{s:11:\"td-composer\";s:32:\"def8edc4e13d95bdf49953a9dce2f608\";s:16:\"td-cloud-library\";s:32:\"b33652f2535d2f3812f59e306e26300d\";s:16:\"td-standard-pack\";s:32:\"1b3d5bf2c64738aa07b4643e31257da9\";}s:21:\"tds_logo_width_height\";b:1;s:36:\"td_updated_td_posts_form_submit_meta\";b:1;s:15:\"firstinstallMob\";s:20:\"mobilethemeInstalled\";s:24:\"tds_logo_menu_upload_mob\";s:0:\"\";s:26:\"tds_logo_menu_upload_r_mob\";s:0:\"\";s:16:\"tds_logo_alt_mob\";s:0:\"\";s:18:\"tds_logo_title_mob\";s:0:\"\";s:14:\"tds_footer_mob\";s:0:\"\";s:26:\"tds_footer_logo_upload_mob\";s:0:\"\";s:33:\"tds_footer_retina_logo_upload_mob\";s:0:\"\";s:19:\"tds_footer_text_mob\";s:0:\"\";s:20:\"tds_footer_email_mob\";s:0:\"\";s:23:\"tds_footer_logo_alt_mob\";s:0:\"\";s:25:\"tds_footer_logo_title_mob\";s:0:\"\";s:21:\"tds_footer_social_mob\";s:0:\"\";s:18:\"tds_sub_footer_mob\";s:0:\"\";s:24:\"tds_footer_copyright_mob\";s:0:\"\";s:26:\"tds_footer_copy_symbol_mob\";s:0:\"\";s:20:\"tds_thumb_td_265x198\";s:3:\"yes\";s:20:\"tds_thumb_td_741x486\";s:3:\"yes\";s:23:\"tdm_frontpage_grid_sort\";s:6:\"latest\";s:42:\"tdm_frontpage_latest_articles_posts_offset\";s:1:\"3\";}s:19:\"2025-10-22 16:32:58\";a:219:{s:27:\"theme_update_latest_version\";s:87:\"{\"12.7.3\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/Newspaper-1.zip\"}\";s:21:\"theme_update_versions\";s:517:\"[{\"12.7.3\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/Newspaper-1.zip\"},{\"12.7.2\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/Newspaper.zip\"},{\"12.7.1\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/04\\/Newspaper.zip\"},{\"12.7\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/03\\/Newspaper.zip\"},{\"12.6.9\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/02\\/Newspaper.zip\"},{\"12.6.8\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2024\\/09\\/Newspaper.zip\"}]\";s:14:\"td_remote_http\";a:2:{s:9:\"test_time\";i:1632929798;s:11:\"test_status\";s:9:\"wordpress\";}s:12:\"firstInstall\";s:14:\"themeInstalled\";s:13:\"td_log_status\";s:3:\"off\";s:24:\"tds_login_sign_in_widget\";s:0:\"\";s:18:\"tds_thumb_td_150x0\";s:3:\"yes\";s:20:\"tds_thumb_td_218x150\";s:3:\"yes\";s:18:\"tds_thumb_td_300x0\";s:3:\"yes\";s:20:\"tds_thumb_td_324x400\";s:3:\"yes\";s:20:\"tds_thumb_td_485x360\";s:3:\"yes\";s:18:\"tds_thumb_td_696x0\";s:3:\"yes\";s:19:\"tds_thumb_td_1068x0\";s:3:\"yes\";s:19:\"tds_thumb_td_1920x0\";s:3:\"yes\";s:23:\"td_social_drag_and_drop\";a:21:{s:8:\"facebook\";b:1;s:7:\"twitter\";b:1;s:9:\"pinterest\";b:1;s:8:\"whatsapp\";b:1;s:8:\"linkedin\";b:0;s:6:\"reddit\";b:0;s:4:\"mail\";b:0;s:5:\"print\";b:0;s:6:\"tumblr\";b:0;s:8:\"telegram\";b:0;s:11:\"stumbleupon\";b:0;s:2:\"vk\";b:0;s:4:\"digg\";b:0;s:4:\"line\";b:0;s:5:\"viber\";b:0;s:5:\"naver\";b:0;s:9:\"flipboard\";s:0:\"\";s:8:\"copy_url\";s:0:\"\";s:5:\"kakao\";s:0:\"\";s:5:\"gettr\";s:0:\"\";s:3:\"koo\";s:0:\"\";}s:18:\"td_social_networks\";a:0:{}s:10:\"td_version\";s:6:\"12.6.8\";s:9:\"td_011_tp\";i:1645519906;s:9:\"td_011_ta\";s:7:\"lp_sent\";s:7:\"td_011_\";i:2;s:11:\"tdc_savings\";a:4:{s:12:\"recentColors\";a:18:{i:0;s:12:\"IiNhYWFhYWEi\";i:1;s:24:\"InJnYmEoMCwwLDAsMC4wOCki\";i:2;s:24:\"InJnYmEoMCwwLDAsMC4wOSki\";i:3;s:32:\"InJnYmEoMjU1LDI1NSwyNTUsMC44KSI=\";i:4;s:28:\"InJnYmEoMjU1LDI1NSwyNTUsMCki\";i:5;s:12:\"IiNkZGRkZGQi\";i:6;s:12:\"IiM2ZDI5Mjki\";i:7;s:12:\"IiM5OTk5OTki\";i:8;s:12:\"IiMxNTJiZjci\";i:9;s:12:\"IiM1NjVmNmQi\";i:10;s:12:\"IiNlYWVhZWEi\";i:11;s:12:\"IiMwMDAwMDAi\";i:12;s:12:\"IiNmN2Y3Zjci\";i:13;s:12:\"IiNmNGY0ZjQi\";i:14;s:12:\"IiNmZmZmZmYi\";i:15;s:24:\"InJnYmEoMCwwLDAsMC4xMiki\";i:16;s:12:\"IiNjMTFmMWYi\";i:17;s:12:\"IiNlYzM1MzUi\";}s:11:\"recentFonts\";a:7:{i:0;s:3:\"421\";i:1;s:3:\"420\";i:2;s:3:\"892\";i:3;s:3:\"453\";i:4;s:3:\"456\";i:5;s:4:\"fs_2\";i:6;s:3:\"653\";}s:5:\"fonts\";a:9:{i:0;a:2:{s:4:\"name\";s:20:\"Block title Work BIG\";s:5:\"value\";s:212:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfd2VpZ2h0IjoiNzAwIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl6TWlJc0luQnZjblJ5WVdsMElqb2lNakFpTENKc1lXNWtjMk5oY0dVaU9pSXlOaUo5IiwiZm9udF9zcGFjaW5nIjoiLTEiLCJmb250X2xpbmVfaGVpZ2h0IjoiMSJ9\";}i:1;a:2:{s:4:\"name\";s:15:\"Small Caps Work\";s:5:\"value\";s:200:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TXlJc0luQnZjblJ5WVdsMElqb2lNVElpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxLjIiLCJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSJ9\";}i:2;a:2:{s:4:\"name\";s:6:\"big pt\";s:5:\"value\";s:248:\"eyJmb250X2ZhbWlseSI6IjQ1NiIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJeU5pSXNJbXhoYm1SelkyRndaU0k2SWpFNUlpd2ljRzl5ZEhKaGFYUWlPaUl4TnlKOSIsImZvbnRfbGluZV9oZWlnaHQiOiIxLjEiLCJmb250X3N0eWxlIjoidW5kZWZpbmVkIiwiZm9udF93ZWlnaHQiOiI2MDAiLCJmb250X3RyYW5zZm9ybSI6IiJ9\";}i:3;a:2:{s:4:\"name\";s:8:\"cat work\";s:5:\"value\";s:252:\"eyJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9mYW1pbHkiOiI2NTMiLCJmb250X3NpemUiOiJleUpoYkd3aU9pSXhNeUlzSW5CdmNuUnlZV2wwSWpvaU1USWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE1pSXNJbkJvYjI1bElqb2lNVElpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIn0=\";}i:4;a:2:{s:4:\"name\";s:6:\"cat-sm\";s:5:\"value\";s:228:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfdHJhbnNmb3JtIjoidXBwZXJjYXNlIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TWlJc0lteGhibVJ6WTJGd1pTSTZJakV4SW4wPSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9saW5lX2hlaWdodCI6IjEiLCJmb250X3NwYWNpbmciOiItMC41In0=\";}i:5;a:2:{s:4:\"name\";s:7:\"excl-sm\";s:5:\"value\";s:280:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfdHJhbnNmb3JtIjoidXBwZXJjYXNlIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TWlJc0lteGhibVJ6WTJGd1pTSTZJakV4SWl3aWNHOXlkSEpoYVhRaU9pSXhNU0lzSW5Cb2IyNWxJam9pTVRFaWZRPT0iLCJmb250X3dlaWdodCI6IjUwMCIsImZvbnRfbGluZV9oZWlnaHQiOiIxIiwiZm9udF9zcGFjaW5nIjoiLTAuNSJ9\";}i:6;a:2:{s:4:\"name\";s:8:\"excl-big\";s:5:\"value\";s:252:\"eyJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9mYW1pbHkiOiI2NTMiLCJmb250X3NpemUiOiJleUpoYkd3aU9pSXhNeUlzSW5CdmNuUnlZV2wwSWpvaU1URWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE1pSXNJbkJvYjI1bElqb2lNVEVpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIn0=\";}i:7;a:2:{s:4:\"name\";s:11:\"medium work\";s:5:\"value\";s:212:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJeU5DSXNJbkJ2Y25SeVlXbDBJam9pTWpBaUxDSnNZVzVrYzJOaGNHVWlPaUl5TWlKOSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIiwiZm9udF93ZWlnaHQiOiI3MDAiLCJmb250X3NwYWNpbmciOiItMSJ9\";}i:8;a:2:{s:4:\"name\";s:6:\"bigggg\";s:5:\"value\";s:272:\"eyJmb250X3dlaWdodCI6IjcwMCIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJME1pSXNJbXhoYm1SelkyRndaU0k2SWpNMklpd2ljRzl5ZEhKaGFYUWlPaUl6TWlJc0luQm9iMjVsSWpvaU16QWlmUT09IiwiZm9udF9mYW1pbHkiOiI0NTYiLCJmb250X2xpbmVfaGVpZ2h0IjoiMSIsImZvbnRfc3R5bGUiOiJ1bmRlZmluZWQiLCJmb250X3RyYW5zZm9ybSI6IiJ9\";}}s:9:\"gradients\";a:1:{i:0;s:660:\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\";}}s:19:\"tdb_header_template\";s:15:\"tdb_template_84\";s:12:\"tds_logo_alt\";s:0:\"\";s:14:\"tds_logo_title\";s:0:\"\";s:13:\"tds_logo_text\";s:0:\"\";s:16:\"tds_tagline_text\";s:0:\"\";s:15:\"tds_ios_icon_76\";s:0:\"\";s:16:\"tds_ios_icon_114\";s:0:\"\";s:16:\"tds_ios_icon_120\";s:0:\"\";s:16:\"tds_ios_icon_144\";s:0:\"\";s:16:\"tds_ios_icon_152\";s:0:\"\";s:19:\"tdb_footer_template\";s:15:\"tdb_template_92\";s:18:\"tds_modal_video_ad\";s:0:\"\";s:24:\"tds_modal_video_ad_title\";s:0:\"\";s:26:\"tds_modal_video_ad_disable\";s:0:\"\";s:24:\"tds_background_click_url\";s:0:\"\";s:27:\"tds_background_click_target\";s:0:\"\";s:17:\"tds_smart_sidebar\";s:0:\"\";s:10:\"tds_to_top\";s:0:\"\";s:20:\"tds_to_top_on_mobile\";s:0:\"\";s:19:\"tds_animation_stack\";s:0:\"\";s:26:\"tds_animation_stack_effect\";s:0:\"\";s:19:\"tds_404_page_layout\";s:0:\"\";s:23:\"tds_archive_page_layout\";s:0:\"\";s:23:\"tds_archive_sidebar_pos\";s:0:\"\";s:19:\"tds_archive_sidebar\";s:0:\"\";s:26:\"tds_attachment_sidebar_pos\";s:0:\"\";s:22:\"tds_attachment_sidebar\";s:0:\"\";s:22:\"tds_author_page_layout\";s:0:\"\";s:22:\"tds_author_sidebar_pos\";s:0:\"\";s:18:\"tds_author_sidebar\";s:0:\"\";s:20:\"tds_home_page_layout\";s:0:\"\";s:20:\"tds_home_sidebar_pos\";s:0:\"\";s:16:\"tds_home_sidebar\";s:0:\"\";s:20:\"tds_page_layout_size\";s:49:\"td_cl tdc-row stretch_row_1400 td-stretch-content\";s:20:\"tds_page_sidebar_pos\";s:0:\"\";s:16:\"tds_page_sidebar\";s:0:\"\";s:26:\"tds_disable_comments_pages\";s:0:\"\";s:22:\"tds_search_page_layout\";s:0:\"\";s:22:\"tds_search_sidebar_pos\";s:0:\"\";s:18:\"tds_search_sidebar\";s:0:\"\";s:19:\"tds_tag_page_layout\";s:0:\"\";s:19:\"tds_tag_sidebar_pos\";s:0:\"\";s:15:\"tds_tag_sidebar\";s:0:\"\";s:19:\"tds_woo_sidebar_pos\";s:0:\"\";s:15:\"tds_woo_sidebar\";s:0:\"\";s:26:\"tds_woo_single_sidebar_pos\";s:0:\"\";s:22:\"tds_woo_single_sidebar\";s:0:\"\";s:23:\"tds_bbpress_sidebar_pos\";s:0:\"\";s:19:\"tds_bbpress_sidebar\";s:0:\"\";s:36:\"tds_taxonomy_post_format_page_layout\";s:0:\"\";s:36:\"tds_taxonomy_post_format_sidebar_pos\";s:0:\"\";s:32:\"tds_taxonomy_post_format_sidebar\";s:0:\"\";s:21:\"tdb_category_template\";s:15:\"tdb_template_86\";s:23:\"tds_general_modal_image\";s:0:\"\";s:26:\"tds_disable_article_schema\";s:0:\"\";s:29:\"td_default_site_post_template\";s:15:\"tdb_template_89\";s:20:\"tds_tweeter_username\";s:0:\"\";s:24:\"tds_ajax_post_view_count\";s:0:\"\";s:21:\"tds_video_playing_one\";s:0:\"\";s:22:\"tds_video_pause_hidden\";s:0:\"\";s:14:\"tds_video_lazy\";s:0:\"\";s:16:\"tds_video_scroll\";s:0:\"\";s:15:\"tds_video_width\";s:0:\"\";s:20:\"tds_video_position_v\";s:0:\"\";s:20:\"tds_video_distance_v\";s:0:\"\";s:20:\"tds_video_position_h\";s:0:\"\";s:20:\"tds_video_distance_h\";s:0:\"\";s:25:\"tds_global_block_template\";s:0:\"\";s:25:\"tds_category_module_slide\";s:0:\"\";s:29:\"tds_category_module_mega_menu\";s:0:\"\";s:22:\"tds_m_show_author_name\";s:0:\"\";s:15:\"tds_m_show_date\";s:0:\"\";s:24:\"tds_m_show_modified_date\";s:0:\"\";s:19:\"tds_m_show_comments\";s:0:\"\";s:17:\"tds_m_show_review\";s:0:\"\";s:25:\"tds_p_enable_7_days_count\";s:0:\"\";s:26:\"tds_site_background_repeat\";s:0:\"\";s:30:\"tds_site_background_position_x\";s:0:\"\";s:30:\"tds_site_background_attachment\";s:0:\"\";s:22:\"tds_stretch_background\";s:0:\"\";s:27:\"tds_mobile_background_image\";s:59:\"https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\";s:28:\"tds_mobile_background_repeat\";s:0:\"\";s:26:\"tds_mobile_background_size\";s:0:\"\";s:30:\"tds_mobile_background_position\";s:0:\"\";s:26:\"tds_login_background_image\";s:59:\"https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\";s:27:\"tds_login_background_repeat\";s:0:\"\";s:25:\"tds_login_background_size\";s:0:\"\";s:29:\"tds_login_background_position\";s:0:\"\";s:17:\"tds_excerpts_type\";s:0:\"\";s:29:\"td_module_slide_title_excerpt\";s:0:\"\";s:33:\"td_module_mega_menu_title_excerpt\";s:0:\"\";s:36:\"td_module_trending_now_title_excerpt\";s:0:\"\";s:12:\"tds_language\";s:0:\"\";s:18:\"g_use_google_fonts\";s:0:\"\";s:22:\"g_mob_use_google_fonts\";s:0:\"\";s:14:\"tds_custom_css\";s:0:\"\";s:26:\"tds_responsive_css_desktop\";s:0:\"\";s:33:\"tds_responsive_css_ipad_landscape\";s:0:\"\";s:32:\"tds_responsive_css_ipad_portrait\";s:0:\"\";s:24:\"tds_responsive_css_phone\";s:0:\"\";s:15:\"td_body_classes\";s:0:\"\";s:21:\"tds_custom_javascript\";s:0:\"\";s:15:\"tds_custom_html\";s:0:\"\";s:12:\"td_analytics\";s:0:\"\";s:12:\"td_body_code\";s:0:\"\";s:14:\"td_footer_code\";s:0:\"\";s:14:\"tds_yt_api_key\";s:0:\"\";s:18:\"tds_flickr_api_key\";s:0:\"\";s:12:\"tds_rel_type\";s:0:\"\";s:10:\"tds_button\";s:0:\"\";s:14:\"tdm_btn_radius\";s:0:\"\";s:9:\"tds_title\";s:0:\"\";s:20:\"tdm_bordered_website\";s:0:\"\";s:22:\"td_fonts_user_inserted\";a:31:{s:11:\"font_file_1\";s:0:\"\";s:13:\"font_family_1\";s:0:\"\";s:11:\"font_file_2\";s:0:\"\";s:13:\"font_family_2\";s:0:\"\";s:11:\"font_file_3\";s:0:\"\";s:13:\"font_family_3\";s:0:\"\";s:11:\"font_file_4\";s:0:\"\";s:13:\"font_family_4\";s:0:\"\";s:11:\"font_file_5\";s:0:\"\";s:13:\"font_family_5\";s:0:\"\";s:10:\"typekit_js\";s:0:\"\";s:22:\"type_kit_font_family_1\";s:0:\"\";s:22:\"type_kit_font_family_2\";s:0:\"\";s:22:\"type_kit_font_family_3\";s:0:\"\";s:10:\"g_100_thin\";s:0:\"\";s:17:\"g_100_thin_italic\";s:0:\"\";s:17:\"g_200_extra_light\";s:0:\"\";s:24:\"g_200_extra_light_italic\";s:0:\"\";s:11:\"g_300_light\";s:0:\"\";s:18:\"g_300_light_italic\";s:0:\"\";s:19:\"g_400_normal_italic\";s:0:\"\";s:12:\"g_500_medium\";s:0:\"\";s:19:\"g_500_medium_italic\";s:0:\"\";s:15:\"g_600_semi_bold\";s:0:\"\";s:22:\"g_600_semi_bold_italic\";s:0:\"\";s:10:\"g_700_bold\";s:0:\"\";s:17:\"g_700_bold_italic\";s:0:\"\";s:16:\"g_800_extra_bold\";s:0:\"\";s:23:\"g_800_extra_bold_italic\";s:0:\"\";s:11:\"g_900_black\";s:0:\"\";s:18:\"g_900_black_italic\";s:0:\"\";}s:19:\"td_fonts_css_buffer\";s:0:\"\";s:18:\"td_fonts_js_buffer\";s:0:\"\";s:16:\"td_fonts_default\";a:1:{s:13:\"default_fonts\";s:0:\"\";}s:20:\"tds_user_compile_css\";s:5392:\".td-menu-background,\r\n    .td-search-background {\r\n        background-image: url(\'https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\');\r\n    }\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n\r\n\r\n    \r\n    .white-popup-block:before {\r\n        background-image: url(\'https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\');\r\n    }\r\n\r\n    \r\n    .td_cl .td-container {\r\n        width: 100%;\r\n    }\r\n    @media (min-width: 768px) and (max-width: 1018px) {\r\n        .td_cl {\r\n            padding: 0 14px;\r\n        }\r\n    }\r\n    @media (max-width: 767px) {\r\n        .td_cl .td-container {\r\n            padding: 0;\r\n        }\r\n    }\r\n    @media (min-width: 1019px) and (max-width: 1140px) {\r\n        .td_cl.stretch_row_content_no_space {\r\n            padding-left: 20px;\r\n            padding-right: 20px;\r\n        }\r\n    }\r\n    @media (min-width: 1141px) {\r\n        .td_cl.stretch_row_content_no_space {\r\n            padding-left: 24px;\r\n            padding-right: 24px;\r\n        }\r\n    }\r\n        \r\n    :root{--td_theme_color:#ec3535;--td_slider_text:rgba(236,53,53,0.7);--td_mobile_gradient_one_mob:rgba(0,0,0,0.8);--td_mobile_gradient_two_mob:rgba(0,0,0,0.8);--td_mobile_text_active_color:#ec3535;--td_login_hover_background:#ec3535;--td_login_hover_color:#ffffff;--td_login_gradient_one:rgba(0,0,0,0.65);--td_login_gradient_two:rgba(0,0,0,0.72);}.td-header-style-12 .td-header-menu-wrap-full,\r\n    .td-header-style-12 .td-affix,\r\n    .td-grid-style-1.td-hover-1 .td-big-grid-post:hover .td-post-category,\r\n    .td-grid-style-5.td-hover-1 .td-big-grid-post:hover .td-post-category,\r\n    .td_category_template_3 .td-current-sub-category,\r\n    .td_category_template_8 .td-category-header .td-category a.td-current-sub-category,\r\n    .td_category_template_4 .td-category-siblings .td-category a:hover,\r\n     .td_block_big_grid_9.td-grid-style-1 .td-post-category,\r\n    .td_block_big_grid_9.td-grid-style-5 .td-post-category,\r\n    .td-grid-style-6.td-hover-1 .td-module-thumb:after,\r\n     .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > li > a:hover,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .sfHover > a {\r\n        background-color: #ec3535;\r\n    }\r\n    \r\n    .td_mega_menu_sub_cats .cur-sub-cat,\r\n    .td-mega-span h3 a:hover,\r\n    .td_mod_mega_menu:hover .entry-title a,\r\n    .header-search-wrap .result-msg a:hover,\r\n    .td-header-top-menu .td-drop-down-search .td_module_wrap:hover .entry-title a,\r\n    .td-header-top-menu .td-icon-search:hover,\r\n    .td-header-wrap .result-msg a:hover,\r\n    .top-header-menu li a:hover,\r\n    .top-header-menu .current-menu-item > a,\r\n    .top-header-menu .current-menu-ancestor > a,\r\n    .top-header-menu .current-category-ancestor > a,\r\n    .td-social-icon-wrap > a:hover,\r\n    .td-header-sp-top-widget .td-social-icon-wrap a:hover,\r\n    .td_mod_related_posts:hover h3 > a,\r\n    .td-post-template-11 .td-related-title .td-related-left:hover,\r\n    .td-post-template-11 .td-related-title .td-related-right:hover,\r\n    .td-post-template-11 .td-related-title .td-cur-simple-item,\r\n    .td-post-template-11 .td_block_related_posts .td-next-prev-wrap a:hover,\r\n    .td-category-header .td-pulldown-category-filter-link:hover,\r\n    .td-category-siblings .td-subcat-dropdown a:hover,\r\n    .td-category-siblings .td-subcat-dropdown a.td-current-sub-category,\r\n    .footer-text-wrap .footer-email-wrap a,\r\n    .footer-social-wrap a:hover,\r\n    .td_module_17 .td-read-more a:hover,\r\n    .td_module_18 .td-read-more a:hover,\r\n    .td_module_19 .td-post-author-name a:hover,\r\n    .td-pulldown-syle-2 .td-subcat-dropdown:hover .td-subcat-more span,\r\n    .td-pulldown-syle-2 .td-subcat-dropdown:hover .td-subcat-more i,\r\n    .td-pulldown-syle-3 .td-subcat-dropdown:hover .td-subcat-more span,\r\n    .td-pulldown-syle-3 .td-subcat-dropdown:hover .td-subcat-more i,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .sfHover > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > li > a:hover {\r\n        color: #ec3535;\r\n    }\r\n    \r\n    .td-mega-menu-page .wpb_content_element ul li a:hover,\r\n    .td-theme-wrap .td-aj-search-results .td_module_wrap:hover .entry-title a,\r\n    .td-theme-wrap .header-search-wrap .result-msg a:hover {\r\n        color: #ec3535 !important;\r\n    }\r\n    \r\n    .td_category_template_8 .td-category-header .td-category a.td-current-sub-category,\r\n    .td_category_template_4 .td-category-siblings .td-category a:hover,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > li > a:hover,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .sfHover > a {\r\n        border-color: #ec3535;\r\n    }\";s:15:\"tds_theme_color\";s:7:\"#ec3535\";s:25:\"tds_site_background_color\";s:0:\"\";s:14:\"tds_site_boxed\";s:0:\"\";s:16:\"tds_header_color\";s:0:\"\";s:21:\"tds_text_header_color\";s:0:\"\";s:21:\"tds_mobile_menu_color\";s:0:\"\";s:22:\"tds_mobile_icons_color\";s:0:\"\";s:27:\"tds_mobile_gradient_one_mob\";s:15:\"rgba(0,0,0,0.8)\";s:27:\"tds_mobile_gradient_two_mob\";s:15:\"rgba(0,0,0,0.8)\";s:21:\"tds_mobile_text_color\";s:0:\"\";s:28:\"tds_mobile_text_active_color\";s:7:\"#ec3535\";s:32:\"tds_mobile_button_background_mob\";s:0:\"\";s:27:\"tds_mobile_button_color_mob\";s:0:\"\";s:21:\"tdb_p_autoload_status\";s:3:\"off\";s:19:\"tdb_p_autoload_type\";s:0:\"\";s:20:\"tdb_p_autoload_count\";s:0:\"\";s:29:\"tdb_p_autoload_scroll_percent\";s:0:\"\";s:16:\"tdb_404_template\";s:15:\"tdb_template_90\";s:17:\"tdb_date_template\";s:15:\"tdb_template_91\";s:23:\"tdb_attachment_template\";s:0:\"\";s:19:\"tdb_author_template\";s:15:\"tdb_template_85\";s:20:\"tdb_author_templates\";a:1:{i:1;s:0:\"\";}s:19:\"tdb_search_template\";s:15:\"tdb_template_88\";s:16:\"tdb_tag_template\";s:15:\"tdb_template_87\";s:17:\"tdb_tag_templates\";a:1:{s:16:\"tdb_template_420\";s:0:\"\";}s:11:\"tds_captcha\";s:0:\"\";s:20:\"tds_captcha_site_key\";s:0:\"\";s:22:\"tds_captcha_secret_key\";s:0:\"\";s:17:\"tds_captcha_score\";s:0:\"\";s:22:\"tds_login_gradient_one\";s:16:\"rgba(0,0,0,0.65)\";s:22:\"tds_login_gradient_two\";s:16:\"rgba(0,0,0,0.72)\";s:20:\"tds_login_text_color\";s:0:\"\";s:27:\"tds_login_button_background\";s:0:\"\";s:22:\"tds_login_button_color\";s:0:\"\";s:26:\"tds_login_hover_background\";s:7:\"#ec3535\";s:21:\"tds_login_hover_color\";s:7:\"#ffffff\";s:41:\"plugin_subscription_update_latest_version\";s:90:\"{\"1.6.1\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2024\\/05\\/td-subscription.zip\"}\";s:27:\"tds_header_background_image\";b:0;s:27:\"tds_footer_background_image\";b:0;s:6:\"td_011\";s:44:\"KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKio=\";s:6:\"td_010\";s:0:\"\";s:7:\"td_010_\";s:0:\"\";s:9:\"td_010_ta\";s:0:\"\";s:9:\"td_010_tp\";s:0:\"\";s:28:\"td_timestamp_install_plugins\";s:0:\"\";s:23:\"theme_update_to_version\";s:0:\"\";s:16:\"td_updated_fonts\";b:1;s:16:\"category_options\";a:11:{i:4;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:2;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:5;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:6;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:7;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:8;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:9;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:10;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:11;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:12;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:1;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}}s:16:\"tds_demo_options\";s:259:\"a:1:{s:5:\"plans\";a:3:{i:0;a:2:{s:9:\"unique_id\";s:15:\"5961b9c837a77e4\";s:4:\"name\";s:11:\"Yearly Plan\";}i:1;a:2:{s:9:\"unique_id\";s:15:\"9661b9c837a9db8\";s:4:\"name\";s:9:\"Free Plan\";}i:2;a:2:{s:9:\"unique_id\";s:15:\"5261b9c837abf3e\";s:4:\"name\";s:12:\"Monthly Plan\";}}}\";s:25:\"tds_site_background_image\";s:0:\"\";s:15:\"tds_footer_text\";s:0:\"\";s:15:\"tds_logo_upload\";s:0:\"\";s:17:\"tds_logo_upload_r\";s:0:\"\";s:20:\"tds_logo_menu_upload\";s:0:\"\";s:22:\"tds_footer_logo_upload\";s:0:\"\";s:29:\"tds_footer_retina_logo_upload\";s:0:\"\";s:18:\"tds_favicon_upload\";s:0:\"\";s:28:\"td_theme_deactivated_plugins\";a:3:{s:11:\"td-composer\";s:32:\"def8edc4e13d95bdf49953a9dce2f608\";s:16:\"td-cloud-library\";s:32:\"b33652f2535d2f3812f59e306e26300d\";s:16:\"td-standard-pack\";s:32:\"1b3d5bf2c64738aa07b4643e31257da9\";}s:21:\"tds_logo_width_height\";b:1;s:36:\"td_updated_td_posts_form_submit_meta\";b:1;s:15:\"firstinstallMob\";s:20:\"mobilethemeInstalled\";s:24:\"tds_logo_menu_upload_mob\";s:0:\"\";s:26:\"tds_logo_menu_upload_r_mob\";s:0:\"\";s:16:\"tds_logo_alt_mob\";s:0:\"\";s:18:\"tds_logo_title_mob\";s:0:\"\";s:14:\"tds_footer_mob\";s:0:\"\";s:26:\"tds_footer_logo_upload_mob\";s:0:\"\";s:33:\"tds_footer_retina_logo_upload_mob\";s:0:\"\";s:19:\"tds_footer_text_mob\";s:0:\"\";s:20:\"tds_footer_email_mob\";s:0:\"\";s:23:\"tds_footer_logo_alt_mob\";s:0:\"\";s:25:\"tds_footer_logo_title_mob\";s:0:\"\";s:21:\"tds_footer_social_mob\";s:0:\"\";s:18:\"tds_sub_footer_mob\";s:0:\"\";s:24:\"tds_footer_copyright_mob\";s:0:\"\";s:26:\"tds_footer_copy_symbol_mob\";s:0:\"\";s:20:\"tds_thumb_td_265x198\";s:3:\"yes\";s:20:\"tds_thumb_td_741x486\";s:3:\"yes\";s:23:\"tdm_frontpage_grid_sort\";s:6:\"latest\";s:42:\"tdm_frontpage_latest_articles_posts_offset\";s:1:\"3\";}s:19:\"2025-10-15 04:07:43\";a:219:{s:27:\"theme_update_latest_version\";s:85:\"{\"12.7.2\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/Newspaper.zip\"}\";s:21:\"theme_update_versions\";s:515:\"[{\"12.7.2\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/10\\/Newspaper.zip\"},{\"12.7.1\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/04\\/Newspaper.zip\"},{\"12.7\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/03\\/Newspaper.zip\"},{\"12.6.9\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2025\\/02\\/Newspaper.zip\"},{\"12.6.8\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2024\\/09\\/Newspaper.zip\"},{\"12.6.7\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2024\\/08\\/Newspaper.zip\"}]\";s:14:\"td_remote_http\";a:2:{s:9:\"test_time\";i:1632929798;s:11:\"test_status\";s:9:\"wordpress\";}s:12:\"firstInstall\";s:14:\"themeInstalled\";s:13:\"td_log_status\";s:3:\"off\";s:24:\"tds_login_sign_in_widget\";s:0:\"\";s:18:\"tds_thumb_td_150x0\";s:3:\"yes\";s:20:\"tds_thumb_td_218x150\";s:3:\"yes\";s:18:\"tds_thumb_td_300x0\";s:3:\"yes\";s:20:\"tds_thumb_td_324x400\";s:3:\"yes\";s:20:\"tds_thumb_td_485x360\";s:3:\"yes\";s:18:\"tds_thumb_td_696x0\";s:3:\"yes\";s:19:\"tds_thumb_td_1068x0\";s:3:\"yes\";s:19:\"tds_thumb_td_1920x0\";s:3:\"yes\";s:23:\"td_social_drag_and_drop\";a:21:{s:8:\"facebook\";b:1;s:7:\"twitter\";b:1;s:9:\"pinterest\";b:1;s:8:\"whatsapp\";b:1;s:8:\"linkedin\";b:0;s:6:\"reddit\";b:0;s:4:\"mail\";b:0;s:5:\"print\";b:0;s:6:\"tumblr\";b:0;s:8:\"telegram\";b:0;s:11:\"stumbleupon\";b:0;s:2:\"vk\";b:0;s:4:\"digg\";b:0;s:4:\"line\";b:0;s:5:\"viber\";b:0;s:5:\"naver\";b:0;s:9:\"flipboard\";s:0:\"\";s:8:\"copy_url\";s:0:\"\";s:5:\"kakao\";s:0:\"\";s:5:\"gettr\";s:0:\"\";s:3:\"koo\";s:0:\"\";}s:18:\"td_social_networks\";a:0:{}s:10:\"td_version\";s:6:\"12.6.8\";s:9:\"td_011_tp\";i:1645519906;s:9:\"td_011_ta\";s:7:\"lp_sent\";s:7:\"td_011_\";i:2;s:11:\"tdc_savings\";a:4:{s:12:\"recentColors\";a:18:{i:0;s:12:\"IiNhYWFhYWEi\";i:1;s:24:\"InJnYmEoMCwwLDAsMC4wOCki\";i:2;s:24:\"InJnYmEoMCwwLDAsMC4wOSki\";i:3;s:32:\"InJnYmEoMjU1LDI1NSwyNTUsMC44KSI=\";i:4;s:28:\"InJnYmEoMjU1LDI1NSwyNTUsMCki\";i:5;s:12:\"IiNkZGRkZGQi\";i:6;s:12:\"IiM2ZDI5Mjki\";i:7;s:12:\"IiM5OTk5OTki\";i:8;s:12:\"IiMxNTJiZjci\";i:9;s:12:\"IiM1NjVmNmQi\";i:10;s:12:\"IiNlYWVhZWEi\";i:11;s:12:\"IiMwMDAwMDAi\";i:12;s:12:\"IiNmN2Y3Zjci\";i:13;s:12:\"IiNmNGY0ZjQi\";i:14;s:12:\"IiNmZmZmZmYi\";i:15;s:24:\"InJnYmEoMCwwLDAsMC4xMiki\";i:16;s:12:\"IiNjMTFmMWYi\";i:17;s:12:\"IiNlYzM1MzUi\";}s:11:\"recentFonts\";a:7:{i:0;s:3:\"421\";i:1;s:3:\"420\";i:2;s:3:\"892\";i:3;s:3:\"453\";i:4;s:3:\"456\";i:5;s:4:\"fs_2\";i:6;s:3:\"653\";}s:5:\"fonts\";a:9:{i:0;a:2:{s:4:\"name\";s:20:\"Block title Work BIG\";s:5:\"value\";s:212:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfd2VpZ2h0IjoiNzAwIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl6TWlJc0luQnZjblJ5WVdsMElqb2lNakFpTENKc1lXNWtjMk5oY0dVaU9pSXlOaUo5IiwiZm9udF9zcGFjaW5nIjoiLTEiLCJmb250X2xpbmVfaGVpZ2h0IjoiMSJ9\";}i:1;a:2:{s:4:\"name\";s:15:\"Small Caps Work\";s:5:\"value\";s:200:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TXlJc0luQnZjblJ5WVdsMElqb2lNVElpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxLjIiLCJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSJ9\";}i:2;a:2:{s:4:\"name\";s:6:\"big pt\";s:5:\"value\";s:248:\"eyJmb250X2ZhbWlseSI6IjQ1NiIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJeU5pSXNJbXhoYm1SelkyRndaU0k2SWpFNUlpd2ljRzl5ZEhKaGFYUWlPaUl4TnlKOSIsImZvbnRfbGluZV9oZWlnaHQiOiIxLjEiLCJmb250X3N0eWxlIjoidW5kZWZpbmVkIiwiZm9udF93ZWlnaHQiOiI2MDAiLCJmb250X3RyYW5zZm9ybSI6IiJ9\";}i:3;a:2:{s:4:\"name\";s:8:\"cat work\";s:5:\"value\";s:252:\"eyJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9mYW1pbHkiOiI2NTMiLCJmb250X3NpemUiOiJleUpoYkd3aU9pSXhNeUlzSW5CdmNuUnlZV2wwSWpvaU1USWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE1pSXNJbkJvYjI1bElqb2lNVElpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIn0=\";}i:4;a:2:{s:4:\"name\";s:6:\"cat-sm\";s:5:\"value\";s:228:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfdHJhbnNmb3JtIjoidXBwZXJjYXNlIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TWlJc0lteGhibVJ6WTJGd1pTSTZJakV4SW4wPSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9saW5lX2hlaWdodCI6IjEiLCJmb250X3NwYWNpbmciOiItMC41In0=\";}i:5;a:2:{s:4:\"name\";s:7:\"excl-sm\";s:5:\"value\";s:280:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfdHJhbnNmb3JtIjoidXBwZXJjYXNlIiwiZm9udF9zaXplIjoiZXlKaGJHd2lPaUl4TWlJc0lteGhibVJ6WTJGd1pTSTZJakV4SWl3aWNHOXlkSEpoYVhRaU9pSXhNU0lzSW5Cb2IyNWxJam9pTVRFaWZRPT0iLCJmb250X3dlaWdodCI6IjUwMCIsImZvbnRfbGluZV9oZWlnaHQiOiIxIiwiZm9udF9zcGFjaW5nIjoiLTAuNSJ9\";}i:6;a:2:{s:4:\"name\";s:8:\"excl-big\";s:5:\"value\";s:252:\"eyJmb250X3RyYW5zZm9ybSI6InVwcGVyY2FzZSIsImZvbnRfd2VpZ2h0IjoiNjAwIiwiZm9udF9mYW1pbHkiOiI2NTMiLCJmb250X3NpemUiOiJleUpoYkd3aU9pSXhNeUlzSW5CdmNuUnlZV2wwSWpvaU1URWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE1pSXNJbkJvYjI1bElqb2lNVEVpZlE9PSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIn0=\";}i:7;a:2:{s:4:\"name\";s:11:\"medium work\";s:5:\"value\";s:212:\"eyJmb250X2ZhbWlseSI6IjY1MyIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJeU5DSXNJbkJ2Y25SeVlXbDBJam9pTWpBaUxDSnNZVzVrYzJOaGNHVWlPaUl5TWlKOSIsImZvbnRfbGluZV9oZWlnaHQiOiIxIiwiZm9udF93ZWlnaHQiOiI3MDAiLCJmb250X3NwYWNpbmciOiItMSJ9\";}i:8;a:2:{s:4:\"name\";s:6:\"bigggg\";s:5:\"value\";s:272:\"eyJmb250X3dlaWdodCI6IjcwMCIsImZvbnRfc2l6ZSI6ImV5SmhiR3dpT2lJME1pSXNJbXhoYm1SelkyRndaU0k2SWpNMklpd2ljRzl5ZEhKaGFYUWlPaUl6TWlJc0luQm9iMjVsSWpvaU16QWlmUT09IiwiZm9udF9mYW1pbHkiOiI0NTYiLCJmb250X2xpbmVfaGVpZ2h0IjoiMSIsImZvbnRfc3R5bGUiOiJ1bmRlZmluZWQiLCJmb250X3RyYW5zZm9ybSI6IiJ9\";}}s:9:\"gradients\";a:1:{i:0;s:660:\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\";}}s:19:\"tdb_header_template\";s:15:\"tdb_template_84\";s:12:\"tds_logo_alt\";s:0:\"\";s:14:\"tds_logo_title\";s:0:\"\";s:13:\"tds_logo_text\";s:0:\"\";s:16:\"tds_tagline_text\";s:0:\"\";s:15:\"tds_ios_icon_76\";s:0:\"\";s:16:\"tds_ios_icon_114\";s:0:\"\";s:16:\"tds_ios_icon_120\";s:0:\"\";s:16:\"tds_ios_icon_144\";s:0:\"\";s:16:\"tds_ios_icon_152\";s:0:\"\";s:19:\"tdb_footer_template\";s:15:\"tdb_template_92\";s:18:\"tds_modal_video_ad\";s:0:\"\";s:24:\"tds_modal_video_ad_title\";s:0:\"\";s:26:\"tds_modal_video_ad_disable\";s:0:\"\";s:24:\"tds_background_click_url\";s:0:\"\";s:27:\"tds_background_click_target\";s:0:\"\";s:17:\"tds_smart_sidebar\";s:0:\"\";s:10:\"tds_to_top\";s:0:\"\";s:20:\"tds_to_top_on_mobile\";s:0:\"\";s:19:\"tds_animation_stack\";s:0:\"\";s:26:\"tds_animation_stack_effect\";s:0:\"\";s:19:\"tds_404_page_layout\";s:0:\"\";s:23:\"tds_archive_page_layout\";s:0:\"\";s:23:\"tds_archive_sidebar_pos\";s:0:\"\";s:19:\"tds_archive_sidebar\";s:0:\"\";s:26:\"tds_attachment_sidebar_pos\";s:0:\"\";s:22:\"tds_attachment_sidebar\";s:0:\"\";s:22:\"tds_author_page_layout\";s:0:\"\";s:22:\"tds_author_sidebar_pos\";s:0:\"\";s:18:\"tds_author_sidebar\";s:0:\"\";s:20:\"tds_home_page_layout\";s:0:\"\";s:20:\"tds_home_sidebar_pos\";s:0:\"\";s:16:\"tds_home_sidebar\";s:0:\"\";s:20:\"tds_page_layout_size\";s:49:\"td_cl tdc-row stretch_row_1400 td-stretch-content\";s:20:\"tds_page_sidebar_pos\";s:0:\"\";s:16:\"tds_page_sidebar\";s:0:\"\";s:26:\"tds_disable_comments_pages\";s:0:\"\";s:22:\"tds_search_page_layout\";s:0:\"\";s:22:\"tds_search_sidebar_pos\";s:0:\"\";s:18:\"tds_search_sidebar\";s:0:\"\";s:19:\"tds_tag_page_layout\";s:0:\"\";s:19:\"tds_tag_sidebar_pos\";s:0:\"\";s:15:\"tds_tag_sidebar\";s:0:\"\";s:19:\"tds_woo_sidebar_pos\";s:0:\"\";s:15:\"tds_woo_sidebar\";s:0:\"\";s:26:\"tds_woo_single_sidebar_pos\";s:0:\"\";s:22:\"tds_woo_single_sidebar\";s:0:\"\";s:23:\"tds_bbpress_sidebar_pos\";s:0:\"\";s:19:\"tds_bbpress_sidebar\";s:0:\"\";s:36:\"tds_taxonomy_post_format_page_layout\";s:0:\"\";s:36:\"tds_taxonomy_post_format_sidebar_pos\";s:0:\"\";s:32:\"tds_taxonomy_post_format_sidebar\";s:0:\"\";s:21:\"tdb_category_template\";s:15:\"tdb_template_86\";s:23:\"tds_general_modal_image\";s:0:\"\";s:26:\"tds_disable_article_schema\";s:0:\"\";s:29:\"td_default_site_post_template\";s:15:\"tdb_template_89\";s:20:\"tds_tweeter_username\";s:0:\"\";s:24:\"tds_ajax_post_view_count\";s:0:\"\";s:21:\"tds_video_playing_one\";s:0:\"\";s:22:\"tds_video_pause_hidden\";s:0:\"\";s:14:\"tds_video_lazy\";s:0:\"\";s:16:\"tds_video_scroll\";s:0:\"\";s:15:\"tds_video_width\";s:0:\"\";s:20:\"tds_video_position_v\";s:0:\"\";s:20:\"tds_video_distance_v\";s:0:\"\";s:20:\"tds_video_position_h\";s:0:\"\";s:20:\"tds_video_distance_h\";s:0:\"\";s:25:\"tds_global_block_template\";s:0:\"\";s:25:\"tds_category_module_slide\";s:0:\"\";s:29:\"tds_category_module_mega_menu\";s:0:\"\";s:22:\"tds_m_show_author_name\";s:0:\"\";s:15:\"tds_m_show_date\";s:0:\"\";s:24:\"tds_m_show_modified_date\";s:0:\"\";s:19:\"tds_m_show_comments\";s:0:\"\";s:17:\"tds_m_show_review\";s:0:\"\";s:25:\"tds_p_enable_7_days_count\";s:0:\"\";s:26:\"tds_site_background_repeat\";s:0:\"\";s:30:\"tds_site_background_position_x\";s:0:\"\";s:30:\"tds_site_background_attachment\";s:0:\"\";s:22:\"tds_stretch_background\";s:0:\"\";s:27:\"tds_mobile_background_image\";s:59:\"https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\";s:28:\"tds_mobile_background_repeat\";s:0:\"\";s:26:\"tds_mobile_background_size\";s:0:\"\";s:30:\"tds_mobile_background_position\";s:0:\"\";s:26:\"tds_login_background_image\";s:59:\"https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\";s:27:\"tds_login_background_repeat\";s:0:\"\";s:25:\"tds_login_background_size\";s:0:\"\";s:29:\"tds_login_background_position\";s:0:\"\";s:17:\"tds_excerpts_type\";s:0:\"\";s:29:\"td_module_slide_title_excerpt\";s:0:\"\";s:33:\"td_module_mega_menu_title_excerpt\";s:0:\"\";s:36:\"td_module_trending_now_title_excerpt\";s:0:\"\";s:12:\"tds_language\";s:0:\"\";s:18:\"g_use_google_fonts\";s:0:\"\";s:22:\"g_mob_use_google_fonts\";s:0:\"\";s:14:\"tds_custom_css\";s:0:\"\";s:26:\"tds_responsive_css_desktop\";s:0:\"\";s:33:\"tds_responsive_css_ipad_landscape\";s:0:\"\";s:32:\"tds_responsive_css_ipad_portrait\";s:0:\"\";s:24:\"tds_responsive_css_phone\";s:0:\"\";s:15:\"td_body_classes\";s:0:\"\";s:21:\"tds_custom_javascript\";s:0:\"\";s:15:\"tds_custom_html\";s:0:\"\";s:12:\"td_analytics\";s:0:\"\";s:12:\"td_body_code\";s:0:\"\";s:14:\"td_footer_code\";s:0:\"\";s:14:\"tds_yt_api_key\";s:0:\"\";s:18:\"tds_flickr_api_key\";s:0:\"\";s:12:\"tds_rel_type\";s:0:\"\";s:10:\"tds_button\";s:0:\"\";s:14:\"tdm_btn_radius\";s:0:\"\";s:9:\"tds_title\";s:0:\"\";s:20:\"tdm_bordered_website\";s:0:\"\";s:22:\"td_fonts_user_inserted\";a:31:{s:11:\"font_file_1\";s:0:\"\";s:13:\"font_family_1\";s:0:\"\";s:11:\"font_file_2\";s:0:\"\";s:13:\"font_family_2\";s:0:\"\";s:11:\"font_file_3\";s:0:\"\";s:13:\"font_family_3\";s:0:\"\";s:11:\"font_file_4\";s:0:\"\";s:13:\"font_family_4\";s:0:\"\";s:11:\"font_file_5\";s:0:\"\";s:13:\"font_family_5\";s:0:\"\";s:10:\"typekit_js\";s:0:\"\";s:22:\"type_kit_font_family_1\";s:0:\"\";s:22:\"type_kit_font_family_2\";s:0:\"\";s:22:\"type_kit_font_family_3\";s:0:\"\";s:10:\"g_100_thin\";s:0:\"\";s:17:\"g_100_thin_italic\";s:0:\"\";s:17:\"g_200_extra_light\";s:0:\"\";s:24:\"g_200_extra_light_italic\";s:0:\"\";s:11:\"g_300_light\";s:0:\"\";s:18:\"g_300_light_italic\";s:0:\"\";s:19:\"g_400_normal_italic\";s:0:\"\";s:12:\"g_500_medium\";s:0:\"\";s:19:\"g_500_medium_italic\";s:0:\"\";s:15:\"g_600_semi_bold\";s:0:\"\";s:22:\"g_600_semi_bold_italic\";s:0:\"\";s:10:\"g_700_bold\";s:0:\"\";s:17:\"g_700_bold_italic\";s:0:\"\";s:16:\"g_800_extra_bold\";s:0:\"\";s:23:\"g_800_extra_bold_italic\";s:0:\"\";s:11:\"g_900_black\";s:0:\"\";s:18:\"g_900_black_italic\";s:0:\"\";}s:19:\"td_fonts_css_buffer\";s:0:\"\";s:18:\"td_fonts_js_buffer\";s:0:\"\";s:16:\"td_fonts_default\";a:1:{s:13:\"default_fonts\";s:0:\"\";}s:20:\"tds_user_compile_css\";s:5392:\".td-menu-background,\r\n    .td-search-background {\r\n        background-image: url(\'https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\');\r\n    }\r\n\r\n    \r\n    \r\n    \r\n    \r\n    \r\n    \r\n\r\n\r\n    \r\n    .white-popup-block:before {\r\n        background-image: url(\'https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg\');\r\n    }\r\n\r\n    \r\n    .td_cl .td-container {\r\n        width: 100%;\r\n    }\r\n    @media (min-width: 768px) and (max-width: 1018px) {\r\n        .td_cl {\r\n            padding: 0 14px;\r\n        }\r\n    }\r\n    @media (max-width: 767px) {\r\n        .td_cl .td-container {\r\n            padding: 0;\r\n        }\r\n    }\r\n    @media (min-width: 1019px) and (max-width: 1140px) {\r\n        .td_cl.stretch_row_content_no_space {\r\n            padding-left: 20px;\r\n            padding-right: 20px;\r\n        }\r\n    }\r\n    @media (min-width: 1141px) {\r\n        .td_cl.stretch_row_content_no_space {\r\n            padding-left: 24px;\r\n            padding-right: 24px;\r\n        }\r\n    }\r\n        \r\n    :root{--td_theme_color:#ec3535;--td_slider_text:rgba(236,53,53,0.7);--td_mobile_gradient_one_mob:rgba(0,0,0,0.8);--td_mobile_gradient_two_mob:rgba(0,0,0,0.8);--td_mobile_text_active_color:#ec3535;--td_login_hover_background:#ec3535;--td_login_hover_color:#ffffff;--td_login_gradient_one:rgba(0,0,0,0.65);--td_login_gradient_two:rgba(0,0,0,0.72);}.td-header-style-12 .td-header-menu-wrap-full,\r\n    .td-header-style-12 .td-affix,\r\n    .td-grid-style-1.td-hover-1 .td-big-grid-post:hover .td-post-category,\r\n    .td-grid-style-5.td-hover-1 .td-big-grid-post:hover .td-post-category,\r\n    .td_category_template_3 .td-current-sub-category,\r\n    .td_category_template_8 .td-category-header .td-category a.td-current-sub-category,\r\n    .td_category_template_4 .td-category-siblings .td-category a:hover,\r\n     .td_block_big_grid_9.td-grid-style-1 .td-post-category,\r\n    .td_block_big_grid_9.td-grid-style-5 .td-post-category,\r\n    .td-grid-style-6.td-hover-1 .td-module-thumb:after,\r\n     .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > li > a:hover,\r\n    .tdm-menu-active-style5 .td-header-menu-wrap .sf-menu > .sfHover > a {\r\n        background-color: #ec3535;\r\n    }\r\n    \r\n    .td_mega_menu_sub_cats .cur-sub-cat,\r\n    .td-mega-span h3 a:hover,\r\n    .td_mod_mega_menu:hover .entry-title a,\r\n    .header-search-wrap .result-msg a:hover,\r\n    .td-header-top-menu .td-drop-down-search .td_module_wrap:hover .entry-title a,\r\n    .td-header-top-menu .td-icon-search:hover,\r\n    .td-header-wrap .result-msg a:hover,\r\n    .top-header-menu li a:hover,\r\n    .top-header-menu .current-menu-item > a,\r\n    .top-header-menu .current-menu-ancestor > a,\r\n    .top-header-menu .current-category-ancestor > a,\r\n    .td-social-icon-wrap > a:hover,\r\n    .td-header-sp-top-widget .td-social-icon-wrap a:hover,\r\n    .td_mod_related_posts:hover h3 > a,\r\n    .td-post-template-11 .td-related-title .td-related-left:hover,\r\n    .td-post-template-11 .td-related-title .td-related-right:hover,\r\n    .td-post-template-11 .td-related-title .td-cur-simple-item,\r\n    .td-post-template-11 .td_block_related_posts .td-next-prev-wrap a:hover,\r\n    .td-category-header .td-pulldown-category-filter-link:hover,\r\n    .td-category-siblings .td-subcat-dropdown a:hover,\r\n    .td-category-siblings .td-subcat-dropdown a.td-current-sub-category,\r\n    .footer-text-wrap .footer-email-wrap a,\r\n    .footer-social-wrap a:hover,\r\n    .td_module_17 .td-read-more a:hover,\r\n    .td_module_18 .td-read-more a:hover,\r\n    .td_module_19 .td-post-author-name a:hover,\r\n    .td-pulldown-syle-2 .td-subcat-dropdown:hover .td-subcat-more span,\r\n    .td-pulldown-syle-2 .td-subcat-dropdown:hover .td-subcat-more i,\r\n    .td-pulldown-syle-3 .td-subcat-dropdown:hover .td-subcat-more span,\r\n    .td-pulldown-syle-3 .td-subcat-dropdown:hover .td-subcat-more i,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > .sfHover > a,\r\n    .tdm-menu-active-style3 .tdm-header.td-header-wrap .sf-menu > li > a:hover {\r\n        color: #ec3535;\r\n    }\r\n    \r\n    .td-mega-menu-page .wpb_content_element ul li a:hover,\r\n    .td-theme-wrap .td-aj-search-results .td_module_wrap:hover .entry-title a,\r\n    .td-theme-wrap .header-search-wrap .result-msg a:hover {\r\n        color: #ec3535 !important;\r\n    }\r\n    \r\n    .td_category_template_8 .td-category-header .td-category a.td-current-sub-category,\r\n    .td_category_template_4 .td-category-siblings .td-category a:hover,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-menu-item > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-menu-ancestor > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .current-category-ancestor > a,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > li > a:hover,\r\n    .tdm-menu-active-style4 .tdm-header .sf-menu > .sfHover > a {\r\n        border-color: #ec3535;\r\n    }\";s:15:\"tds_theme_color\";s:7:\"#ec3535\";s:25:\"tds_site_background_color\";s:0:\"\";s:14:\"tds_site_boxed\";s:0:\"\";s:16:\"tds_header_color\";s:0:\"\";s:21:\"tds_text_header_color\";s:0:\"\";s:21:\"tds_mobile_menu_color\";s:0:\"\";s:22:\"tds_mobile_icons_color\";s:0:\"\";s:27:\"tds_mobile_gradient_one_mob\";s:15:\"rgba(0,0,0,0.8)\";s:27:\"tds_mobile_gradient_two_mob\";s:15:\"rgba(0,0,0,0.8)\";s:21:\"tds_mobile_text_color\";s:0:\"\";s:28:\"tds_mobile_text_active_color\";s:7:\"#ec3535\";s:32:\"tds_mobile_button_background_mob\";s:0:\"\";s:27:\"tds_mobile_button_color_mob\";s:0:\"\";s:21:\"tdb_p_autoload_status\";s:3:\"off\";s:19:\"tdb_p_autoload_type\";s:0:\"\";s:20:\"tdb_p_autoload_count\";s:0:\"\";s:29:\"tdb_p_autoload_scroll_percent\";s:0:\"\";s:16:\"tdb_404_template\";s:15:\"tdb_template_90\";s:17:\"tdb_date_template\";s:15:\"tdb_template_91\";s:23:\"tdb_attachment_template\";s:0:\"\";s:19:\"tdb_author_template\";s:15:\"tdb_template_85\";s:20:\"tdb_author_templates\";a:1:{i:1;s:0:\"\";}s:19:\"tdb_search_template\";s:15:\"tdb_template_88\";s:16:\"tdb_tag_template\";s:15:\"tdb_template_87\";s:17:\"tdb_tag_templates\";a:1:{s:16:\"tdb_template_420\";s:0:\"\";}s:11:\"tds_captcha\";s:0:\"\";s:20:\"tds_captcha_site_key\";s:0:\"\";s:22:\"tds_captcha_secret_key\";s:0:\"\";s:17:\"tds_captcha_score\";s:0:\"\";s:22:\"tds_login_gradient_one\";s:16:\"rgba(0,0,0,0.65)\";s:22:\"tds_login_gradient_two\";s:16:\"rgba(0,0,0,0.72)\";s:20:\"tds_login_text_color\";s:0:\"\";s:27:\"tds_login_button_background\";s:0:\"\";s:22:\"tds_login_button_color\";s:0:\"\";s:26:\"tds_login_hover_background\";s:7:\"#ec3535\";s:21:\"tds_login_hover_color\";s:7:\"#ffffff\";s:41:\"plugin_subscription_update_latest_version\";s:90:\"{\"1.6.1\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2024\\/05\\/td-subscription.zip\"}\";s:27:\"tds_header_background_image\";b:0;s:27:\"tds_footer_background_image\";b:0;s:6:\"td_011\";s:44:\"KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKio=\";s:6:\"td_010\";s:0:\"\";s:7:\"td_010_\";s:0:\"\";s:9:\"td_010_ta\";s:0:\"\";s:9:\"td_010_tp\";s:0:\"\";s:28:\"td_timestamp_install_plugins\";s:0:\"\";s:23:\"theme_update_to_version\";s:0:\"\";s:16:\"td_updated_fonts\";b:1;s:16:\"category_options\";a:11:{i:4;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:2;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:5;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:6;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:7;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:8;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:9;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:10;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:11;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:12;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}i:1;a:1:{s:19:\"tdb_show_background\";s:4:\"hide\";}}s:16:\"tds_demo_options\";s:259:\"a:1:{s:5:\"plans\";a:3:{i:0;a:2:{s:9:\"unique_id\";s:15:\"5961b9c837a77e4\";s:4:\"name\";s:11:\"Yearly Plan\";}i:1;a:2:{s:9:\"unique_id\";s:15:\"9661b9c837a9db8\";s:4:\"name\";s:9:\"Free Plan\";}i:2;a:2:{s:9:\"unique_id\";s:15:\"5261b9c837abf3e\";s:4:\"name\";s:12:\"Monthly Plan\";}}}\";s:25:\"tds_site_background_image\";s:0:\"\";s:15:\"tds_footer_text\";s:0:\"\";s:15:\"tds_logo_upload\";s:0:\"\";s:17:\"tds_logo_upload_r\";s:0:\"\";s:20:\"tds_logo_menu_upload\";s:0:\"\";s:22:\"tds_footer_logo_upload\";s:0:\"\";s:29:\"tds_footer_retina_logo_upload\";s:0:\"\";s:18:\"tds_favicon_upload\";s:0:\"\";s:28:\"td_theme_deactivated_plugins\";a:3:{s:11:\"td-composer\";s:32:\"def8edc4e13d95bdf49953a9dce2f608\";s:16:\"td-cloud-library\";s:32:\"b33652f2535d2f3812f59e306e26300d\";s:16:\"td-standard-pack\";s:32:\"1b3d5bf2c64738aa07b4643e31257da9\";}s:21:\"tds_logo_width_height\";b:1;s:36:\"td_updated_td_posts_form_submit_meta\";b:1;s:15:\"firstinstallMob\";s:20:\"mobilethemeInstalled\";s:24:\"tds_logo_menu_upload_mob\";s:0:\"\";s:26:\"tds_logo_menu_upload_r_mob\";s:0:\"\";s:16:\"tds_logo_alt_mob\";s:0:\"\";s:18:\"tds_logo_title_mob\";s:0:\"\";s:14:\"tds_footer_mob\";s:0:\"\";s:26:\"tds_footer_logo_upload_mob\";s:0:\"\";s:33:\"tds_footer_retina_logo_upload_mob\";s:0:\"\";s:19:\"tds_footer_text_mob\";s:0:\"\";s:20:\"tds_footer_email_mob\";s:0:\"\";s:23:\"tds_footer_logo_alt_mob\";s:0:\"\";s:25:\"tds_footer_logo_title_mob\";s:0:\"\";s:21:\"tds_footer_social_mob\";s:0:\"\";s:18:\"tds_sub_footer_mob\";s:0:\"\";s:24:\"tds_footer_copyright_mob\";s:0:\"\";s:26:\"tds_footer_copy_symbol_mob\";s:0:\"\";s:20:\"tds_thumb_td_265x198\";s:3:\"yes\";s:20:\"tds_thumb_td_741x486\";s:3:\"yes\";s:23:\"tdm_frontpage_grid_sort\";s:6:\"latest\";s:42:\"tdm_frontpage_latest_articles_posts_offset\";s:1:\"3\";}}', 'yes');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(348599, '_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:6:\"6.0.11\";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:62:\"https://downloads.wordpress.org/translation/core/6.0.11/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.7\";s:7:\"updated\";s:19:\"2024-02-13 12:49:38\";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.7/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.27\";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.27/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-07-10 08:09:09\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.9/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.7\";s:7:\"updated\";s:19:\"2024-01-19 08:58:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.4.7/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.28\";s:7:\"updated\";s:19:\"2024-12-26 00:37:42\";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.28/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-01 10:38:20\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-07 14:52:58\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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.8\";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.8/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-05 09:40:40\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.9/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:6:\"6.9-RC\";s:7:\"updated\";s:19:\"2025-09-09 08:25:54\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.9-RC/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-26 15:18:01\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.9/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-18 15:47:02\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-10-23 12:01:47\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-03 18:37:16\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-03 18:36:56\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.9/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:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-28 08:11:27\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-28 08:08:17\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.9/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:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.8\";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.8/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-03 20:02:46\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.9/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-05-22 11:56:25\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-25 13:30:15\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-13 00:57:20\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:6:\"6.9-RC\";s:7:\"updated\";s:19:\"2025-07-29 13:22:09\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.9-RC/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_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-25 15:42:18\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-08-19 08:40:47\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.9/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_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-27 01:55:32\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-20 03:23:00\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-03 11:10:15\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:6:\"6.9-RC\";s:7:\"updated\";s:19:\"2024-10-16 21:04:12\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.9-RC/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_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:6:\"6.9-RC\";s:7:\"updated\";s:19:\"2025-10-01 22:54:47\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.9-RC/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_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.4.7\";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.7/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.8\";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.8/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:6:\"5.8.12\";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:65:\"https://downloads.wordpress.org/translation/core/5.8.12/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_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.18\";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.18/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_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-28 13:13:48\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.23\";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.23/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-16 01:19:35\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"6.5.5\";s:7:\"updated\";s:19:\"2024-06-06 09:50:37\";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.5.5/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:6:\"6.9-RC\";s:7:\"updated\";s:19:\"2025-11-05 21:53:17\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9-RC/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-06 02:07:08\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:6:\"6.9-RC\";s:7:\"updated\";s:19:\"2025-02-14 17:29:08\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.9-RC/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-29 11:04:04\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.9/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-10-03 04:54:28\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"6.5.7\";s:7:\"updated\";s:19:\"2024-02-01 23:56:53\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.5.7/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-02 12:17:41\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.27\";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.27/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.8\";s:7:\"updated\";s:19:\"2025-10-21 16:35:04\";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.8/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-18 15:51:09\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-08-29 04:27:18\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.9/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.34\";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.34/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.8\";s:7:\"updated\";s:19:\"2024-05-04 18:39:24\";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.8/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.7\";s:7:\"updated\";s:19:\"2025-02-06 05:17:11\";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.7/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-03 02:14:36\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.9/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.8\";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.8/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-03 02:11:55\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-10-23 03:46:40\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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.28\";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.28/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-01 17:48:46\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-28 11:59:02\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.9/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.28\";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.28/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-25 08:25:07\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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.8\";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.8/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:\"6.9-RC\";s:7:\"updated\";s:19:\"2024-07-18 02:49:24\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9-RC/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.23\";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.23/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-10-29 19:46:21\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.9/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-03 12:23:06\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-08 08:55:07\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/6.9/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-23 15:08:15\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/translation/core/6.9/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:6:\"6.9-RC\";s:7:\"updated\";s:19:\"2025-09-27 20:51:17\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.9-RC/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-07-15 19:11:43\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.9/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:6:\"6.0.11\";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:65:\"https://downloads.wordpress.org/translation/core/6.0.11/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-02 19:15:51\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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.5.7\";s:7:\"updated\";s:19:\"2024-06-20 17:22:06\";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.5.7/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-05 11:38:40\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.9/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.17\";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.17/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.39\";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.39/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-02 19:55:58\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:6:\"6.9-RC\";s:7:\"updated\";s:19:\"2025-11-07 08:26:32\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.9-RC/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:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-28 09:40:20\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-04 07:55:08\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-18 15:26:13\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.9/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:\"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.27\";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.27/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-01 09:45:52\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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.35\";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.35/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_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-02 18:21:27\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-02 10:17:43\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-02 00:03:57\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/6.9/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:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.4.7\";s:7:\"updated\";s:19:\"2023-08-21 12:15:00\";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.7/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-08 16:30:06\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-08 13:01:10\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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.18\";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.18/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-01 04:57:17\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:6:\"6.9-RC\";s:7:\"updated\";s:19:\"2025-04-24 16:58:02\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/6.9-RC/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-10-29 11:19:02\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-21 22:07:32\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.9/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-03 15:37:44\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-27 15:18:03\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-16 17:19:56\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.9/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.39\";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.39/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:6:\"5.8.12\";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:62:\"https://downloads.wordpress.org/translation/core/5.8.12/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-10-10 17:38:55\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.9/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"6.9\";s:7:\"updated\";s:19:\"2025-11-26 15:28:41\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-08 23:20:22\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"6.8\";s:7:\"updated\";s:19:\"2025-04-18 21:10:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.8/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.18\";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.18/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-09-01 09:12:13\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/translation/core/6.9/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-02 00:32:44\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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:3:\"6.9\";s:7:\"updated\";s:19:\"2025-12-03 08:19:35\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.9/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.8\";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.8/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:\"繼續\";}}}', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(348546, '_transient_timeout_wbcr_io_5c7db043395903a8339758d86d8ac4cd', '1765260922', 'off'),
(348547, '_transient_wbcr_io_5c7db043395903a8339758d86d8ac4cd', 'a:2:{s:5:\"error\";s:46:\"Failed request to the remote server. Code: 404\";s:10:\"error_code\";s:18:\"http_request_error\";}', 'off'),
(201660, 'rsssl_encryption_keys_set', '1', 'off'),
(201661, 'rsssl_upgrade_le_key', '1', 'off'),
(603, 'td_011_log', 'a:3:{i:0;a:5:{s:4:\"file\";s:103:\"/home/femauito/onlineincshop.com/wp-content/themes/Newspaper/includes/wp-booster/tagdiv-remote-http.php\";s:8:\"function\";s:8:\"get_page\";s:3:\"msg\";s:48:\"first run -> test passed with channel: wordpress\";s:9:\"more_data\";s:56:\"https://cloud.tagdiv.com/wp-json/wp/v2/media?search=.zip\";s:9:\"timestamp\";i:1645519902;}i:1;a:5:{s:4:\"file\";s:91:\"/home/femauito/onlineincshop.com/wp-content/plugins/td-subscription/includes/tds_update.php\";s:8:\"function\";s:7:\"_to_1p5\";s:3:\"msg\";s:25:\"tds_update to_1p5 results\";s:9:\"more_data\";a:4:{s:19:\"tds_paypal_payments\";s:41:\"the tds_paypal_payments table was created\";s:17:\"tds_subscriptions\";a:8:{s:25:\"paypal_column_drop_result\";s:56:\"paypal_order.. columns found | drop query was successful\";s:41:\"billing_company_name_column_modify_result\";s:27:\"modify query was successful\";s:21:\"stripe_payment_method\";s:5:\"added\";s:20:\"cycle_interval_count\";s:5:\"added\";s:14:\"cycle_interval\";s:5:\"added\";s:12:\"is_unlimited\";s:5:\"added\";s:32:\"tds_subscriptions_columns_update\";s:3:\"yes\";s:39:\"tds_subscriptions_columns_update_result\";s:7:\"updated\";}s:18:\"tds_payment_stripe\";a:6:{s:23:\"webhook_endpoint_secret\";s:62:\"error: Table \'femauito_wp313.tds_payment_stripe\' doesn\'t exist\";s:16:\"webhook_endpoint\";s:62:\"error: Table \'femauito_wp313.tds_payment_stripe\' doesn\'t exist\";s:15:\"payment_methods\";s:62:\"error: Table \'femauito_wp313.tds_payment_stripe\' doesn\'t exist\";s:11:\"description\";s:62:\"error: Table \'femauito_wp313.tds_payment_stripe\' doesn\'t exist\";s:12:\"instructions\";s:62:\"error: Table \'femauito_wp313.tds_payment_stripe\' doesn\'t exist\";s:20:\"stripe_payments_data\";s:3:\"N/A\";}s:9:\"tds_plans\";a:7:{s:32:\"convert_to_character_set_utf8mb4\";s:7:\"updated\";s:8:\"interval\";s:5:\"added\";s:14:\"interval_count\";s:5:\"added\";s:12:\"is_unlimited\";s:5:\"added\";s:20:\"automatic_delistings\";s:5:\"found\";s:24:\"tds_plans_columns_update\";s:3:\"yes\";s:31:\"tds_plans_columns_update_result\";s:7:\"updated\";}}s:9:\"timestamp\";i:1720169949;}i:2;a:5:{s:4:\"file\";s:86:\"D:\\wamp64\\www\\onlineincshop\\wp-content\\plugins\\td-subscription\\includes\\tds_update.php\";s:8:\"function\";s:7:\"_to_1p7\";s:3:\"msg\";s:26:\"tds_update _to_1p7 results\";s:9:\"more_data\";a:1:{s:18:\"tds_payment_stripe\";a:1:{s:20:\"stripe_payments_data\";s:3:\"N/A\";}}s:9:\"timestamp\";i:1765247925;}}', 'yes'),
(613, 'tds_list_children', 'a:0:{}', 'yes'),
(614, 'default_term_tds_list', '3', 'yes'),
(615, 'tds_default_locker_id', '7', 'yes'),
(619, 'Newspaper_demo_history', 'a:8:{s:13:\"page_on_front\";s:1:\"0\";s:13:\"show_on_front\";s:5:\"posts\";s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:3:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:10:\"td-default\";a:0:{}s:13:\"array_version\";i:3;}s:12:\"used_widgets\";a:1:{s:5:\"block\";a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}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;}}s:13:\"theme_options\";a:21:{s:27:\"theme_update_latest_version\";s:85:\"{\"11.4.1\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2022\\/02\\/Newspaper.zip\"}\";s:21:\"theme_update_versions\";s:429:\"[{\"11.4.1\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2022\\/02\\/Newspaper.zip\"},{\"11.4\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2021\\/12\\/Newspaper.zip\"},{\"11.3.2\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2021\\/11\\/Newspaper.zip\"},{\"11.3.1\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2021\\/10\\/Newspaper-1.zip\"},{\"11.3\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2021\\/10\\/Newspaper.zip\"}]\";s:14:\"td_remote_http\";a:2:{s:9:\"test_time\";i:1645519902;s:11:\"test_status\";s:9:\"wordpress\";}s:12:\"firstInstall\";s:14:\"themeInstalled\";s:13:\"td_log_status\";s:3:\"off\";s:24:\"tds_login_sign_in_widget\";s:4:\"show\";s:18:\"tds_thumb_td_150x0\";s:3:\"yes\";s:20:\"tds_thumb_td_218x150\";s:3:\"yes\";s:18:\"tds_thumb_td_300x0\";s:3:\"yes\";s:20:\"tds_thumb_td_324x400\";s:3:\"yes\";s:20:\"tds_thumb_td_485x360\";s:3:\"yes\";s:18:\"tds_thumb_td_696x0\";s:3:\"yes\";s:19:\"tds_thumb_td_1068x0\";s:3:\"yes\";s:19:\"tds_thumb_td_1920x0\";s:3:\"yes\";s:23:\"td_social_drag_and_drop\";a:16:{s:8:\"facebook\";b:1;s:7:\"twitter\";b:1;s:9:\"pinterest\";b:1;s:8:\"whatsapp\";b:1;s:8:\"linkedin\";s:0:\"\";s:6:\"reddit\";s:0:\"\";s:4:\"mail\";s:0:\"\";s:5:\"print\";s:0:\"\";s:6:\"tumblr\";s:0:\"\";s:8:\"telegram\";s:0:\"\";s:11:\"stumbleupon\";s:0:\"\";s:2:\"vk\";s:0:\"\";s:4:\"digg\";s:0:\"\";s:4:\"line\";s:0:\"\";s:5:\"viber\";s:0:\"\";s:5:\"naver\";s:0:\"\";}s:18:\"td_social_networks\";a:0:{}s:10:\"td_version\";s:4:\"11.4\";s:9:\"td_011_tp\";i:1645519906;s:16:\"td_updated_fonts\";b:1;s:7:\"td_011_\";s:1:\"1\";s:41:\"plugin_subscription_update_latest_version\";s:88:\"{\"1.2\":\"https:\\/\\/cloud.tagdiv.com\\/wp-content\\/uploads\\/2022\\/02\\/td-subscription.zip\"}\";}s:18:\"td_social_networks\";b:0;s:18:\"demo_settings_date\";i:1645519968;}', 'yes'),
(620, 'Newspaper_demo_state', 'a:2:{s:7:\"demo_id\";s:8:\"week_pro\";s:17:\"demo_install_type\";s:4:\"full\";}', 'yes'),
(622, 'td_demo_categories_id', 'a:11:{i:0;i:4;i:1;s:1:\"2\";i:2;i:5;i:3;i:6;i:4;i:7;i:5;i:8;i:6;i:9;i:7;i:10;i:8;i:11;i:9;i:12;i:10;s:1:\"1\";}', 'yes'),
(631, 'wp_calendar_block_has_published_posts', '1', 'yes'),
(635, 'widget_recent-comments', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(636, 'widget_recent-posts', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'yes'),
(672, 'robotsOptions', 'a:1:{s:9:\"robotsTxt\";s:551:\"User-Agent: *\r\nDisallow: /cgi-bin\r\nDisallow: /wp-\r\nDisallow: /?s=\r\nDisallow: *&s=           \r\nDisallow: /search         \r\nDisallow: /author/        \r\nDisallow: *?attachment_id=\r\nDisallow: */feed\r\nDisallow: */rss\r\nDisallow: */embed\r\nAllow: /wp-content/uploads/\r\nAllow: /wp-content/themes/\r\nAllow: /*/*.js           \r\nAllow: /*/*.css           \r\nAllow: /wp-*.png          \r\nAllow: /wp-*.jpg          \r\nAllow: /wp-*.jpeg        \r\nAllow: /wp-*.gif           \r\nAllow: /wp-*.svg          \r\nAllow: /wp-*.pdf\r\n \r\nSitemap: https://onlineincshop.com/sitemap.xml\";}', 'yes'),
(39315, 'rsssl_wp_version_detected', 'no-response', 'no'),
(39295, 'rsssl_show_onboarding', '1', 'yes'),
(39300, 'rsssl_options', 'a:35:{s:12:\"site_has_ssl\";s:1:\"1\";s:8:\"redirect\";s:11:\"wp_redirect\";s:36:\"vulnerability_notification_dashboard\";s:1:\"l\";s:35:\"vulnerability_notification_sitewide\";s:1:\"h\";s:38:\"vulnerability_notification_email_admin\";s:1:\"c\";s:16:\"x_xss_protection\";s:4:\"zero\";s:15:\"x_frame_options\";s:0:\"\";s:15:\"referrer_policy\";s:31:\"strict-origin-when-cross-origin\";s:12:\"hsts_max_age\";s:8:\"63072000\";s:26:\"cross_origin_opener_policy\";s:8:\"disabled\";s:28:\"cross_origin_resource_policy\";s:8:\"disabled\";s:28:\"cross_origin_embedder_policy\";s:8:\"disabled\";s:19:\"csp_frame_ancestors\";s:8:\"disabled\";s:15:\"accept_le_terms\";i:1;s:13:\"email_address\";s:25:\"nabeel.smoninja@gmail.com\";s:19:\"mixed_content_fixer\";i:1;s:11:\"ssl_enabled\";s:0:\"\";s:24:\"enabled_captcha_provider\";s:4:\"none\";s:25:\"password_change_frequency\";s:2:\"12\";s:23:\"login_cookie_expiration\";s:2:\"48\";s:27:\"disable_anyone_can_register\";i:1;s:20:\"disable_file_editing\";i:1;s:28:\"block_code_execution_uploads\";i:1;s:22:\"hide_wordpress_version\";i:1;s:22:\"disable_login_feedback\";i:1;s:16:\"disable_indexing\";i:1;s:24:\"disable_user_enumeration\";i:1;s:27:\"limit_login_attempts_amount\";s:1:\"5\";s:29:\"limit_login_attempts_duration\";s:2:\"15\";s:40:\"limit_login_attempts_locked_out_duration\";s:2:\"30\";s:28:\"enable_vulnerability_scanner\";i:1;s:27:\"notifications_email_address\";s:23:\"admin@onlineincshop.com\";s:24:\"send_notifications_email\";i:1;s:15:\"other_host_type\";s:9:\"namecheap\";s:19:\"review_notice_shown\";s:1:\"1\";}', 'yes'),
(39303, 'rsssl_current_version', '9.4.3', 'off'),
(39319, 'rsssl_6_notice_dismissed', '1', 'no'),
(41606, 'elementor_log', 'a:43:{s:32:\"54a63831f6b1838bba7b03b26cf2e418\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-07-05 08:54:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-05 08:54:05\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"0a35243c644d966874bb4408a18246b1\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-07-05 08:54:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-05 08:54:05\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"e5da188cef04a9190bd75f9123060cc6\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-07-05 08:54:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-05 08:54:05\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"84a270ac4beb7d3771fcf987c04d1d74\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-07-05 08:54:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.1\";s:2:\"to\";s:6:\"3.22.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-05 08:54:05\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.1\";s:2:\"to\";s:6:\"3.22.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"3e7510850b5060745b80a5d1d0ec5029\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-07-16 04:21:09\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-16 04:21:09\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"a35570482028ef9b67329fa4937fe955\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-07-16 04:21:09\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-16 04:21:09\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"8a442f7319ee5cadcc1763f4f43a6bf2\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-07-16 04:21:09\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-16 04:21:09\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"2eabee15fa44f4b1319e10350cf9bee6\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-07-16 04:21:09\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.22.3\";s:2:\"to\";s:6:\"3.23.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-16 04:21:09\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.22.3\";s:2:\"to\";s:6:\"3.23.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"b2df6987b496d32f58e77233010d737e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-07-16 04:21:09\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.22.3\";s:2:\"to\";s:6:\"3.23.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-16 04:21:09\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.22.3\";s:2:\"to\";s:6:\"3.23.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"c6018da74a1d57c2ad2325045db2fa84\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-07-26 11:17:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-26 11:17:19\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"48b3d2ceeb07cf18f5558154cdf114bf\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-07-26 11:17:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-26 11:17:19\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"63b3bc9e5bec148bc2e7ddd7a2a959e4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-07-26 11:17:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-26 11:17:19\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"542b28ed6ec9c16d9a5d8d94516bd491\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-07-26 11:17:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.23.1\";s:2:\"to\";s:6:\"3.23.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-26 11:17:19\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.23.1\";s:2:\"to\";s:6:\"3.23.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"d1cb174d7479c48151153622ee678a88\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-07-26 11:17:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.23.1\";s:2:\"to\";s:6:\"3.23.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-26 11:17:19\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.23.1\";s:2:\"to\";s:6:\"3.23.3\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"d1f863a277495f24441d0d7e31afe34a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-08-14 13:35:23\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-08-14 13:35:23\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"e5cafabebb553df5e22d2b532d61061d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-08-14 13:35:23\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-08-14 13:35:23\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"6f9c953bebd9825cae909dd7dc7bd4cc\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-08-14 13:35:23\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-08-14 13:35:23\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"57a0544e60b464f35203656c42ca9371\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-08-14 13:35:23\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.23.3\";s:2:\"to\";s:6:\"3.23.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-08-14 13:35:23\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.23.3\";s:2:\"to\";s:6:\"3.23.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"81f7fc68114d3993afcd02e499541af8\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-08-14 13:35:23\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.23.3\";s:2:\"to\";s:6:\"3.23.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-08-14 13:35:23\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.23.3\";s:2:\"to\";s:6:\"3.23.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"a74bb1f2e05ea48bcd0f515060618f9b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-08-14 13:35:24\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.23.3\";s:2:\"to\";s:6:\"3.23.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-08-14 13:35:24\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.23.3\";s:2:\"to\";s:6:\"3.23.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"f23c8647a9640fb2a013565fdc1bd7bd\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-12-24 11:18:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-12-24 11:18:03\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"bd0d58c7c860ef6501a6b4c0526bb206\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-12-24 11:18:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-12-24 11:18:03\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"45b6ffa28f585eb917ba8fb7e8152a03\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-12-24 11:18:04\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-12-24 11:18:04\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"3da5b34501881154dc8d37ecded1d905\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-12-24 11:18:04\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.23.4\";s:2:\"to\";s:6:\"3.26.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-12-24 11:18:04\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.23.4\";s:2:\"to\";s:6:\"3.26.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"9bd49da89167be74dd36ad6309888c8f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-01-14 05:41:01\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-01-14 05:41:01\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"6782f0b50fbb8be57ae30f8fd3b6b999\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-01-14 05:41:01\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-01-14 05:41:01\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"fd737b86e86ff17fa003964c35d78cfe\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-01-14 05:41:01\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-01-14 05:41:01\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"6051fadf1de691925a8fd5820dbbc419\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-01-14 05:41:01\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.26.3\";s:2:\"to\";s:6:\"3.26.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-01-14 05:41:01\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.26.3\";s:2:\"to\";s:6:\"3.26.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"6c72f87f4c262dd5d8a63362b1f72da0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-01-14 05:41:01\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.26.3\";s:2:\"to\";s:6:\"3.26.4\";}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2025-01-14 05:41:01\";i:1;s:19:\"2025-01-14 05:41:01\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.26.3\";s:2:\"to\";s:6:\"3.26.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"ff5bda55d96161cb251db2e0363dc8a4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-10 05:17:42\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-10 05:17:42\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"85720849e510245af0bae3f7af0f133c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-10 05:17:42\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.27.4\";s:2:\"to\";s:6:\"3.27.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-10 05:17:42\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.27.4\";s:2:\"to\";s:6:\"3.27.5\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"bca02fd27a26b8779a21efa46d90ca70\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-10 05:17:42\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-10 05:17:42\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"34a45b865ccf3c2b89d1070e83458b10\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-10 05:17:42\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-10 05:17:42\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"c0edaf24b114b1ad04333f3ed17852bf\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-10 05:17:42\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.27.4\";s:2:\"to\";s:6:\"3.27.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-10 05:17:42\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.27.4\";s:2:\"to\";s:6:\"3.27.5\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"3636471a7ef1f0b4db240431e464711c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-13 05:14:50\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-13 05:14:50\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"36ff0686c97f37ca09e514275a304d59\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-13 05:14:50\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-13 05:14:50\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"3b656115c5a6e5971f45a4490bf3cef5\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-13 05:14:50\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-13 05:14:50\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"1e081ef8202f1f550941365858ef69f4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-13 05:14:50\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.27.5\";s:2:\"to\";s:6:\"3.27.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-13 05:14:50\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.27.5\";s:2:\"to\";s:6:\"3.27.6\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"7bb7beea988f528c335b0c9e6da34c84\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-13 05:14:50\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.27.5\";s:2:\"to\";s:6:\"3.27.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-13 05:14:50\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.27.5\";s:2:\"to\";s:6:\"3.27.6\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"c24972ced0267574f9d6f3956a176aa8\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-13 05:14:51\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.27.5\";s:2:\"to\";s:6:\"3.27.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-13 05:14:51\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.27.5\";s:2:\"to\";s:6:\"3.27.6\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"e3756b3d139f57c6b504a5a330e9ac36\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:81:\"/home/femauito/onlineincshop.com/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;s:7:\"\0*\0date\";s:19:\"2025-08-20 06:30:27\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:141:\"file_put_contents(/home/femauito/onlineincshop.com/wp-content/uploads/elementor/css/post-279.css): failed to open stream: Disk quota exceeded\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-08-20 06:30:27\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:141:\"file_put_contents(/home/femauito/onlineincshop.com/wp-content/uploads/elementor/css/post-279.css): failed to open stream: Disk quota exceeded\";s:4:\"file\";s:81:\"/home/femauito/onlineincshop.com/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}}s:32:\"cbaa9c82d7dc01f5b6aa71f04069908a\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:81:\"/home/femauito/onlineincshop.com/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;s:7:\"\0*\0date\";s:19:\"2025-08-21 21:29:54\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:141:\"file_put_contents(/home/femauito/onlineincshop.com/wp-content/uploads/elementor/css/post-273.css): failed to open stream: Disk quota exceeded\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-08-21 21:29:54\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:141:\"file_put_contents(/home/femauito/onlineincshop.com/wp-content/uploads/elementor/css/post-273.css): failed to open stream: Disk quota exceeded\";s:4:\"file\";s:81:\"/home/femauito/onlineincshop.com/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}}s:32:\"6e8b25a47a8be155630e63bea2b70e6b\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:81:\"/home/femauito/onlineincshop.com/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;s:7:\"\0*\0date\";s:19:\"2025-08-22 18:14:21\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:141:\"file_put_contents(/home/femauito/onlineincshop.com/wp-content/uploads/elementor/css/post-285.css): failed to open stream: Disk quota exceeded\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-08-22 18:14:21\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:141:\"file_put_contents(/home/femauito/onlineincshop.com/wp-content/uploads/elementor/css/post-285.css): failed to open stream: Disk quota exceeded\";s:4:\"file\";s:81:\"/home/femauito/onlineincshop.com/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}}}', 'off'),
(39436, 'elementor_scheme_color', 'a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}', 'yes'),
(39437, 'elementor_scheme_typography', 'a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}', 'yes'),
(39438, 'elementor_scheme_color-picker', 'a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}', 'yes'),
(39372, 'elementor_version', '3.26.4', 'yes'),
(39373, 'elementor_install_history', 'a:10:{s:6:\"3.13.4\";i:1685353882;s:6:\"3.14.0\";i:1687241281;s:6:\"3.14.1\";i:1687845288;s:6:\"3.21.1\";i:1720169608;s:6:\"3.22.3\";i:1720169645;s:6:\"3.23.1\";i:1721103669;s:6:\"3.23.3\";i:1721992639;s:6:\"3.23.4\";i:1723642523;s:6:\"3.26.3\";i:1735039084;s:6:\"3.26.4\";i:1736833261;}', 'yes'),
(39374, 'elementor_events_db_version', '1.0.0', 'no'),
(39368, 'elementor_active_kit', '272', 'yes'),
(39369, 'elementor_font_display', 'swap', 'yes'),
(39382, '_elementor_installed_time', '1685353906', 'yes'),
(39383, 'elementor_remote_info_library', 'a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:9:\"templates\";a:4:{i:0;a:20:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:20472;s:5:\"title\";s:10:\"test ido f\";s:9:\"thumbnail\";s:153:\"https://library.stg.elementor.red/wp-content/uploads/2025/01/png-clipart-logo-harry-potter-literary-series-lord-voldemort-film-harry-potter-thumbnail.png\";s:12:\"tmpl_created\";i:1751356263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.stg.elementor.red/blocks/test-ido-f/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:1;a:20:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:19968;s:5:\"title\";s:12:\"Zeyad Test 1\";s:9:\"thumbnail\";s:83:\"https://library.stg.elementor.red/wp-content/uploads/2022/09/boxking_hero_img_2.jpg\";s:12:\"tmpl_created\";i:1670765723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.stg.elementor.red/blocks/zeyad-test-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:2;a:20:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:19494;s:5:\"title\";s:5:\"test2\";s:9:\"thumbnail\";s:83:\"https://library.stg.elementor.red/wp-content/uploads/2022/09/boxking_hero_img_4.jpg\";s:12:\"tmpl_created\";i:1672308146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.stg.elementor.red/blocks/test2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:3;a:20:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:9631;s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";s:9:\"thumbnail\";s:87:\"https://library.stg.elementor.red/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";i:1660034300;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.stg.elementor.red/popups/slide-in-sale-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}', 'off'),
(316021, 'wp_579810f3b0f358d5d1600a85c6fa769a', '1762754418', 'off'),
(343003, 'wp_7b59db6b60f9a06484b3169dcbadc8bb', '1763372483', 'off'),
(334454, 'wp_c85c4cd9afc2cf30b0c92465bdfad6d3', '1760692510', 'off'),
(323204, '_elementor_element_cache_unique_id', '788b6a196e051c96658e9129e50f174d', 'auto'),
(319015, 'wp_78214511ca13053ae324cf269390651b', '1753443861', 'off'),
(348345, 'auto_core_update_failed', 'a:6:{s:9:\"attempted\";s:3:\"6.9\";s:7:\"current\";s:5:\"6.8.3\";s:10:\"error_code\";s:26:\"copy_failed_copy_dir_retry\";s:10:\"error_data\";s:32:\"wp-includes/js/dist/views.min.js\";s:9:\"timestamp\";i:1764738958;s:5:\"retry\";b:0;}', 'off'),
(348382, '_transient_tisdk_has_donate_page', 'no', 'off'),
(348383, '_transient_timeout_tsk_attachment_count', '1765299737', 'off'),
(348357, '_site_transient_timeout_browser_89db729cfcdc129111f017b0e7ac324a', '1765817984', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(319980, 'elementor_pro_remote_info_api_data_3.30.0', 'a:2:{s:7:\"timeout\";i:1753732894;s:5:\"value\";s:244586:\"{\"stable_version\":\"3.30.1\",\"last_updated\":\"2025-07-22 13:41:54\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:228924:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.30.1 - 2025-07-22<\\/h4>\\n<ul>\\n<li>Security Fix: Improved content sanitization in multiple widgets<\\/li>\\n<li>Fix: UI issue in Hotspot widget when Optimized Markup experiment is enabled<\\/li>\\n<li>Fix: Taxonomy filter not working in the Editor when Optimized Markup experiment is enabled<\\/li>\\n<\\/ul>\\n<h4>3.30.0 - 2025-07-01<\\/h4>\\n<ul>\\n<li>New: Introduced Full Website Templates in the Cloud - export, manage, and reuse full site kits across all your websites from one place<\\/li>\\n<li>Tweak: Activated &quot;Optimized Markup&quot; feature on new sites<\\/li>\\n<li>Tweak: Activated &quot;Menu&quot; feature on new sites<\\/li>\\n<li>Tweak: Improved error handling for Theme Builder display conditions<\\/li>\\n<li>Tweak: Added styling controls to Post Excerpt widget<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> and <code>aria-label<\\/code> attributes Post Navigation widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Form widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Login widget<\\/li>\\n<li>Tweak: Arranged content as lists in Portfolio and Posts widgets<\\/li>\\n<li>Tweak: Added Box Shadow and Text Shadow controls in Countdown widget<\\/li>\\n<li>Tweak: Moved image resolution control to content tab in Price List widget<\\/li>\\n<li>Tweak: Renamed and reorganized style sections in Price List widget<\\/li>\\n<li>Tweak: Added conditional logic to controls in Price Table widget<\\/li>\\n<li>Tweak: Grouped layout controls under list section in Price List widget<\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.6<\\/li>\\n<li>Fix: Inline font icons support doesn\'t work in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24367\\\">#24367<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18343\\\">#18343<\\/a>)<\\/li>\\n<li>Fix: Page Title condition doesn\'t work on child pages in Widget Display Conditions<\\/li>\\n<li>Fix: Editor users with &quot;Access to edit content only&quot; are able to delete elements<\\/li>\\n<li>Fix: Links are not crawlable in Video Playlist widget<\\/li>\\n<li>Fix: Uses hardcoded admin fonts in Video Playlist widget<\\/li>\\n<li>Fix: Editor freezes when the Form widget is used with a high PHP upload size limit<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled in Slides widget<\\/li>\\n<li>Fix: Plugin dependency not enforced in Elementor Pro<\\/li>\\n<li>Fix: Console shows deprecation warning in Global Widgets<\\/li>\\n<\\/ul>\\n<h4>3.29.2 - 2025-06-04<\\/h4>\\n<ul>\\n<li>Tweak: Added selectors to Menu widget for compatibility with Optimized Markup experiment<\\/li>\\n<\\/ul>\\n<h4>3.29.1 - 2025-05-28<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Price Table widget<\\/li>\\n<\\/ul>\\n<h4>3.29.0 - 2025-05-19<\\/h4>\\n<ul>\\n<li>New: Introduced Cloud Templates - save, manage, and reuse your templates across all your sites from a single cloud library<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> attributes in Share Buttons widget<\\/li>\\n<li>Tweak: Improved accessibility by grouping content with <code>role=region<\\/code> in the Video Playlist widget<\\/li>\\n<li>Fix: Focus color is not applied correctly for accessibility in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24239\\\">#24239<\\/a>)<\\/li>\\n<li>Fix: Common scripts loaded late when using the Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.28.4 - 2025-05-05<\\/h4>\\n<ul>\\n<li>Fix: Empty results appeared on the frontend when using the Taxonomy Filter with the \'Avoid Duplicates\' option in Loop Grid widget<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled and the Optimized Markup experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.28.3 - 2025-04-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved sidebar navigation flow on the Elementor Home screen<\\/li>\\n<\\/ul>\\n<h4>3.28.2 - 2025-03-30<\\/h4>\\n<ul>\\n<li>Fix: Default Elementor animation shown for logged-out users when using an &quot;External URL&quot; source in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.28.1 - 2025-03-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline and Form widgets<\\/li>\\n<\\/ul>\\n<h4>3.28.0 - 2025-03-17<\\/h4>\\n<ul>\\n<li>Tweak: Ensured File Upload field styles are overridden by global styles in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11651\\\">#11651<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17223\\\">#17223<\\/a>)<\\/li>\\n<li>Tweak: Updated Scroll Snap description to clarify incompatibility with animations and motion effects<\\/li>\\n<li>Tweak: Prevented special characters from being encoded in the email subject field in Form widget<\\/li>\\n<li>Tweak: Loaded module styles within the module instead of registering them in <code>plugin.php<\\/code><\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.5<\\/li>\\n<li>Tweak: Improved keyboard accessibility for menus in Editor Top Bar<\\/li>\\n<li>Tweak: Made the edit button accessible in the Template widget<\\/li>\\n<li>Tweak: Optimized Form widget performance by caching field assets <code>using get_style_depends()<\\/code> and <code>get_script_depends()<\\/code> methods<\\/li>\\n<li>Tweak: Added Text Shadow control in Testimonial Carousel, Call to Action and Animated Headline widgets<\\/li>\\n<li>Fix: Button icon alignment breaks when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16077\\\">#16077<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16511\\\">#16511<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17692\\\">#17692<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17922\\\">#17922<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19253\\\">#19253<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19370\\\">#19370<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21236\\\">#21236<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21844\\\">#21844<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28080\\\">#28080<\\/a>)<\\/li>\\n<li>Fix: Dropdown caret color did not follow menu item color when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17500\\\">#17500<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18466\\\">#18466<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21664\\\">#21664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24929\\\">#24929<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28064\\\">#28064<\\/a>)<\\/li>\\n<li>Fix: Page doesn\'t scroll up when a coupon error notice appears in Checkout widget<\\/li>\\n<\\/ul>\\n<h4>3.27.7 - 2025-03-13<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.27.6 - 2025-03-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Template Condition<\\/li>\\n<\\/ul>\\n<h4>3.27.5 - 2025-03-03<\\/h4>\\n<ul>\\n<li>Fix: The <code>wp_trigger_error<\\/code> function causes the site to crash instead of triggering a warning when used with ACF text<\\/li>\\n<\\/ul>\\n<h4>3.27.4 - 2025-02-16<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Screenshots module<\\/li>\\n<li>Security Fix: Improved code security enforcement in Query control<\\/li>\\n<li>Fix: ACF <code>true_false<\\/code> field causing a fatal error when used as a dynamic tag with third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/30170\\\">#30170<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.27.3 - 2025-02-06<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Stripe Button widget<\\/li>\\n<\\/ul>\\n<h4>3.27.2 - 2025-02-03<\\/h4>\\n<ul>\\n<li>Fix: Value type configuration issue causing errors when using ACF<\\/li>\\n<li>Fix: Hide content on responsive breakpoint option is not working on WordPress Menu widget when Optimized Markup experiment is activated<\\/li>\\n<\\/ul>\\n<h4>3.27.1 - 2025-01-27<\\/h4>\\n<ul>\\n<li>Tweak: Increased the number of items allowed in Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<li>Security Fix: Improved code security enforcement in Global widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Admin settings<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Empty custom fields are missing in the Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<\\/ul>\\n<h4>3.27.0 - 2025-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Removed the <code>elementor-widget-container<\\/code> div from the Menu, Loop, Table of Contents, Form, and Hotspot widgets as part of the Optimized Markup experiment to improve HTML structure<\\/li>\\n<li>Tweak: Reduced DOM size by optimizing the submit button markup in Search widget<\\/li>\\n<li>Tweak: Moved style loading to the head instead of the footer to improve CLS<\\/li>\\n<li>Tweak: Enabled conditional loading of Swiper.js based on widget dependencies to reduce unnecessary assets and improve page load times<\\/li>\\n<li>Tweak: Standardized navigation elements like arrows and bullets across all carousel and slider widgets for improved accessibility<\\/li>\\n<li>Tweak: Improved accessibility when the submit button has only an icon and no text in Search widget<\\/li>\\n<li>Tweak: Removed <code>load_plugin_textdomain()<\\/code> function from Elementor Pro<\\/li>\\n<\\/ul>\\n<h4>3.26.3 - 2025-01-07<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Search widget<\\/li>\\n<li>Fix: Height issues cause slideshow thumbnails to display incorrectly in Media Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29663\\\">#29663<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.2 - 2024-12-22<\\/h4>\\n<ul>\\n<li>Fix: Menu items are not clickable in various scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29191\\\">#29191<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.1 - 2024-12-17<\\/h4>\\n<ul>\\n<li>Fix: Restore deprecated <code>Plugin::enqueue_styles()<\\/code> function to avoid errors with 3rd party plugins<\\/li>\\n<\\/ul>\\n<h4>3.26.0 - 2024-12-16<\\/h4>\\n<ul>\\n<li>New: Introducing dynamic content support for Off-canvas in Loop Grid widget templates - enabling seamless display of additional content dynamically (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29049\\\">#29049<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28935\\\">#28935<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7106\\\">#7106<\\/a>)<\\/li>\\n<li>New: AdBlock Detection trigger for Popups - display targeted popups for visitors using ad blockers<\\/li>\\n<li>New: Added Reload Page link action for Dynamic Tags<\\/li>\\n<li>Tweak: Added &quot;Space Between Dots&quot; control to Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2526\\\">#2526<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3277\\\">#3277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21697\\\">#21697<\\/a>)<\\/li>\\n<li>Tweak: Replaced hidden <code>elementor-screen-only<\\/code> div with <code>aria-label<\\/code> attributes<\\/li>\\n<li>Tweak: Removed <code>elementor-widget-container<\\/code> div from Elementor widgets as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Optimize popup styling by loading it only when necessary<\\/li>\\n<li>Tweak: Updated Gap between slides control to support only PX units in Carousel widget<\\/li>\\n<li>Tweak: Removed the dependency between the Tabs handler and the Menu handler<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> in Carousel widgets<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=carousel<\\/code> to carousel wrapper<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=slide<\\/code> to slide wrapper<\\/li>\\n<li>Tweak: Optimized carousel widgets markup as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Updated minimum required Safari version to 15.5<\\/li>\\n<li>Tweak: Facebook widgets are no longer supported on mobile due to Facebook functionality changes<\\/li>\\n<li>Fix: Motion Effects sticky feature is not working when Scroll Snap is enabled<\\/li>\\n<li>Fix: Custom Image Resolution option is not working in Gallery widget<\\/li>\\n<li>Fix: \'Reading Settings\' unexpectedly reduces the number of posts displayed when using the Archive with Pagination setting<\\/li>\\n<li>Fix: Step Form does not scroll to the top when the first field is not an input field in Form widget<\\/li>\\n<li>Fix: Display Condition feature is available without an active Elementor license in Floating Elements<\\/li>\\n<li>Fix: Background options of Flip Box in Loop Grid widget are not working when images are added using ACF Dynamic Tags<\\/li>\\n<li>Fix: Dropdown icon in the Select field of the Form widget is cut off when the Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Incompatibility between Form widget and WPML when using Nested Elements<\\/li>\\n<li>Fix: Performance issues when changing the title name in the Menu widget<\\/li>\\n<li>Fix: Warnings appear when Element Caching is set to Inactive in Carousel widgets<\\/li>\\n<li>Fix: Swiper styling missing from Lightbox inside Gallery widgets<\\/li>\\n<\\/ul>\\n<h4>3.25.5 - 2024-12-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Popup overlay shown for non-logged users even when disabled<\\/li>\\n<\\/ul>\\n<h4>3.25.4 - 2024-11-20<\\/h4>\\n<ul>\\n<li>Tweak: Improved Global Widget loading method to enhance performance<\\/li>\\n<\\/ul>\\n<h4>3.25.3 - 2024-11-13<\\/h4>\\n<ul>\\n<li>Fix: Nested Elements are activated even when the Container experiment is inactive<\\/li>\\n<\\/ul>\\n<h4>3.25.2 - 2024-11-03<\\/h4>\\n<ul>\\n<li>Fix: Styling issues affecting popup layout when using a Dynamic Tag to open the popup<\\/li>\\n<li>Fix: Image captions are not displaying for non-logged-in users in Media Carousel widget<\\/li>\\n<li>Fix: Custom Add to Cart widget with Quantity enabled causes critical error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29159\\\">#29159<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.25.1 - 2024-10-31<\\/h4>\\n<ul>\\n<li>Fix: Multiple Custom Add to Cart widgets on the same page are adding the same product<\\/li>\\n<\\/ul>\\n<h4>3.25.0 - 2024-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added pagination functionality to the Live Results in Search widget<\\/li>\\n<li>Tweak: Added Anchor Offset control to allow precise positioning when scrolling to anchor links on the page<\\/li>\\n<li>Tweak: Load motion effects styles only when they are in use<\\/li>\\n<li>Tweak: Load sticky styles only when they are in use<\\/li>\\n<li>Tweak: Load popup styles only when they are in use<\\/li>\\n<li>Tweak: Load theme builder styles only when they are in use<\\/li>\\n<li>Tweak: Load transition styles for Call to Action and Gallery widgets only when they are in use<\\/li>\\n<li>Tweak: Load styles for Form widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for WooCommerce widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Theme Elements widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Carousel widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Pricing widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Floating Elements separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Link in Bio widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load minified CSS in the Loop Builder\'s Call to Action button in the Editor<\\/li>\\n<li>Tweak: Removed &quot;Payments&quot; module styles<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Payapl widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Stripe widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Merged &quot;Form Submissions&quot; feature into the version and moved it to the Advanced tab<\\/li>\\n<li>Tweak: Merged &quot;Display Conditions&quot; into the version<\\/li>\\n<li>Fix: Missing translation string for the empty message in the Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27580\\\">#27580<\\/a>)<\\/li>\\n<li>Fix: Local Storage and Session Storage were being used even when popups were not in use (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7151\\\">#7151<\\/a>)<\\/li>\\n<li>Fix: Masonry layout is not working when pagination is set to &quot;Load More&quot; or &quot;Infinite Scroll&quot; in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23684\\\">#23684<\\/a>)<\\/li>\\n<li>Fix: Extra gap between widgets on the frontend when using Off-canvas widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27706\\\">#27706<\\/a>)<\\/li>\\n<li>Fix: Pagination and custom queries did not work when the Posts Widget was saved as a Global Widget or used via shortcode<\\/li>\\n<li>Fix: Lightbox videos are missing controls and displayed at the wrong size in Media Carousel widget<\\/li>\\n<li>Fix: Pagination options with Individual Pagination not working as expected in Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Justified or Masonry layouts for the Pro Gallery would not display images on the frontend when inserted via nested tabs<\\/li>\\n<li>Fix: Error issue in the Loop Grid widget when used in theme parts with the Taxonomy Filter<\\/li>\\n<li>Fix: Removed the focus ring after clicking to open the Off Canvas inside the Editor<\\/li>\\n<li>Fix: Background gradient colors from the dynamic color tag values are not rendering on the frontend<\\/li>\\n<li>Fix: Excessive database requests generated by the Loop Grid widget<\\/li>\\n<li>Fix: Colors from Dynamic Tags were not rendered on the frontend<\\/li>\\n<li>Fix: Display issue in the Menu widget caused by the \'Native Intersection Observer API<\\/li>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget<\\/li>\\n<li>Fix: Content Width control inside the Mega Menu is displaying an empty value<\\/li>\\n<\\/ul>\\n<h4>3.24.4 - 2024-10-09<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<\\/ul>\\n<h4>3.24.3 - 2024-10-01<\\/h4>\\n<ul>\\n<li>Fix: Floating Elements template not loading when Single Page template is set with All Singular condition<\\/li>\\n<li>Fix: Form field styles not loading properly in various scenarios<\\/li>\\n<\\/ul>\\n<h4>3.24.2 - 2024-09-18<\\/h4>\\n<ul>\\n<li>Fix: Icons not displaying when Inline SVG Icons experiment is active in Link In Bio widgets and Floating Elements<\\/li>\\n<\\/ul>\\n<h4>3.24.1 - 2024-09-12<\\/h4>\\n<ul>\\n<li>Fix: Widget styles not loading correctly on front causing alignment inconsistencies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28676\\\">#28676<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.24.0 - 2024-09-10<\\/h4>\\n<ul>\\n<li>New: Introducing support for Variable Fonts - allowing for more dynamic and flexible text styling (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6703\\\">#6703<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11333\\\">#11333<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19277\\\">#19277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25485\\\">#25485<\\/a>)<\\/li>\\n<li>Tweak: Added \'Structure\' indication for widgets with Display Conditions applied (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28027\\\">#28027<\\/a>)<\\/li>\\n<li>Tweak: Added a new option for setting the live search results width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28280\\\">#28280<\\/a>)<\\/li>\\n<li>Tweak: Improved Honeypot field functionality in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28480\\\">#28480<\\/a>)<\\/li>\\n<li>Tweak: Added options to \'Copy\', \'Paste\', and \'Clear\' Display Conditions in Context Menu<\\/li>\\n<li>Tweak: Improved performance of the Menu widget when using Dynamic Tags in the URL field<\\/li>\\n<li>Tweak: Improved performance when using Dynamic Tags in Nested Elements<\\/li>\\n<li>Tweak: Added the option for users to disable Akismet for specific Elementor forms<\\/li>\\n<li>Tweak: Adjusted URL structure when presenting the Search Archive page in Search widget<\\/li>\\n<li>Tweak: Added the \'Create Template\' button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the \'Loader\' animation while live results are loading in Search widget<\\/li>\\n<li>Tweak: Load share buttons compatibility styles only when they are in use<\\/li>\\n<li>Tweak: Load dialog styles only when they are in use<\\/li>\\n<li>Tweak: Load global widget styles only during Editor preview<\\/li>\\n<li>Tweak: Conditionally load widget styles only when the widgets are used<\\/li>\\n<li>Tweak: Load styles for CTA hover animations only when they are in use<\\/li>\\n<li>Tweak: Load notes styles only when the WordPress Toolbar is displayed<\\/li>\\n<li>Tweak: Split <code>animations.min.css<\\/code> into multiple CSS files and load them conditionally<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Stable status<\\/li>\\n<li>Tweak: Merged Taxonomy Filter feature into the version<\\/li>\\n<li>Tweak: Merged Search feature into the version<\\/li>\\n<li>Tweak: Added a note to \'Current Query\' explaining the impact of WordPress settings on pagination within Archives<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for the Off-Canvas widget<\\/li>\\n<li>Fix: Manual Selection option is not excluding sticky posts in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18689\\\">#18689<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23331\\\">#23331<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28179\\\">#28179<\\/a>)<\\/li>\\n<li>Fix: Template ID does not change according to the imported Loop Item (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21404\\\">#21404<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22202\\\">#22202<\\/a>)<\\/li>\\n<li>Fix: \'Editing Mode\' for the Off-canvas was not functioning correctly in certain scenarios<\\/li>\\n<li>Fix: Added definition to <code>clear_custom_image_sizes<\\/code> hook to prevent edge case issues<\\/li>\\n<li>Fix: Flickering issue with search result buttons when closing results using the keyboard escape key in Search widget<\\/li>\\n<li>Fix: Theme Style settings for buttons were overriding the text styling in Search widget<\\/li>\\n<li>Fix: Nesting menu inside another menu causes functionality issues in Menu widget<\\/li>\\n<li>Fix: Error when using array as custom fields value in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.23.3 - 2024-08-05<\\/h4>\\n<ul>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28194\\\">#28194<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.23.2 - 2024-07-29<\\/h4>\\n<ul>\\n<li>Fix: Horizontal scroll bar appearing on the page when using Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28087\\\">#28087<\\/a>)<\\/li>\\n<li>Fix: Dropdown area disappearing in certain scenarios in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.23.1 - 2024-07-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in link URL<\\/li>\\n<\\/ul>\\n<h4>3.23.0 - 2024-07-15<\\/h4>\\n<ul>\\n<li>New: Search Widget with Live Results - Display live search results as visitors type into the search box, enhancing user experience and engagement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27664\\\">#27664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24931\\\">#24931<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21459\\\">#21459<\\/a>)<\\/li>\\n<li>Tweak: Renamed <code>width<\\/code> to <code>Min width<\\/code> and added <code>Max width<\\/code> control to Hotspot tooltips (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18930\\\">#18930<\\/a>)<\\/li>\\n<li>Tweak: Applied a logical DOM order to the Mega Menu widget to improve accessibility<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for WordPress Menu widget<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for Menu widget<\\/li>\\n<li>Tweak: Added a bottom option to the Image Position control in Call to Action widget<\\/li>\\n<li>Fix: Missing version string in included CSS query string when Improved CSS Loading is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21879\\\">#21879<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23821\\\">#23821<\\/a>)<\\/li>\\n<li>Fix: Form submission icon message does not display correctly when Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Save and Close button position issues in the conditions screen in Theme Builder.<\\/li>\\n<li>Fix: Focus appears on the first element when using the mouse to open Off-Canvas <\\/li>\\n<li>Fix: Links to Elementor Settings are broken in various locations<\\/li>\\n<li>Fix: Conditions field not showing all relevant conditions in Theme Builder<\\/li>\\n<li>Fix: Off-Canvas flickering in sticky containers with exit animations triggered by sticky effects<\\/li>\\n<\\/ul>\\n<h4>3.22.1 - 2024-06-24<\\/h4>\\n<ul>\\n<li>Fix: Styling of Global widgets not loading when Element Caching experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27704\\\">#27704<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.22.0 - 2024-06-16<\\/h4>\\n<ul>\\n<li>New: Introducing Off-Canvas widget - create engaging and creative layers triggered by a link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6225\\\">#6225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21769\\\">#21769<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25770\\\">#25770<\\/a>)<\\/li>\\n<li>Tweak: Added option to remove \'User IP\' and \'User Agent\' from the form submissions metadata (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14285\\\">#14285<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>waypoints.js<\\/code> library with the native Intersection Observer API<\\/li>\\n<li>Tweak: Extended Alignment and Position capabilities in Form widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Flip Box widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Call to Action widget<\\/li>\\n<li>Tweak: Optimized Form widget to eliminate unnecessary markup when the button icon is empty<\\/li>\\n<li>Tweak: Optimized Posts widget to eliminate unnecessary markup when Load More button text is empty<\\/li>\\n<li>Tweak: Remove <code>placeholder<\\/code> arguments from URL controls<\\/li>\\n<li>Tweak: Implemented CSS logical properties to Icon Position in Form, Posts and Menu Cart widgets<\\/li>\\n<li>Tweak: Activated Display Conditions feature for existing sites<\\/li>\\n<li>Tweak: Activated Taxonomy Filter feature for existing sites<\\/li>\\n<li>Tweak: Added functionality to delay the running of the ready triggers on inner elements<\\/li>\\n<li>Fix: Icons are now part of the link in the Menu Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24298\\\">#24298<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25112\\\">#25112<\\/a>)<\\/li>\\n<li>Fix: <code>all: unset<\\/code> assigned to buttons cause focus issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24322\\\">#24322<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25448\\\">#25448<\\/a>)<\\/li>\\n<li>Fix: Menu cart SVG icon disappears on front when Optimized Control Loading experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27342\\\">#27342<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro auto-updates are not working on multisite networks (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12615\\\">#12615<\\/a>)<\\/li>\\n<li>Fix: PHP error appears in the editor when using Loop Grid in an archive template<\\/li>\\n<li>Fix: UI glitch on Icon Position control in Paypal and Stripe Buttons widgets<\\/li>\\n<li>Fix: Icon Position control RTL issue in Hotspot widget<\\/li>\\n<li>Fix: Manual Selection &quot;Include By&quot; Query doesn\'t work with product categories<\\/li>\\n<\\/ul>\\n<h4>3.21.3 - 2024-05-20<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Loop Grid widget<\\/li>\\n<li>Fix: License expired affects the Display Conditions functionality in the front end<\\/li>\\n<\\/ul>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn\'t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Enqueuing non-existing Loop Template CSS file in Loop Item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24959\\\">#24959<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>New: Introducing Display Conditions for Elements - allowing users to customize content visibility based on specified criteria (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4246\\\">#4246<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21152\\\">#21152<\\/a>)<\\/li>\\n<li>New: Implemented Akismet Integration for enhanced spam protection and security in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11401\\\">#11401<\\/a>)<\\/li>\\n<li>New: Introducing Permissions functionality to Element Manager - providing users with enhanced control over access and management capabilities<\\/li>\\n<li>Tweak: Added styling option for dropdown indicator in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21907\\\">#21907<\\/a>)<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Implemented CSS logical properties in WordPress Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Reviews widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Countdown widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Updated <code>jquery.smartmenus.js<\\/code> version from 1.1.1 to 1.2.0<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21489\\\">#21489<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22368\\\">#22368<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23085\\\">#23085<\\/a>)<\\/li>\\n<li>Fix: History panel deprecation notices in console log<\\/li>\\n<li>Fix: Second Pro rollback installed the latest version instead of the specifically selected older version<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation in Menu Widget<\\/li>\\n<li>Fix: UX issues when using in-place editing in Menu widget<\\/li>\\n<li>Fix: Pagination with page reload is not working when used with the Taxonomy filter and Loop Grid widget in Archive template<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle becomes inaccessible in various scenarios cases in Loop Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">#21316<\\/a>)<\\/li>\\n<li>Fix: Can\'t edit page when using \'Content Tabs\' and \'Section\' options in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-20<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-06<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">#19553<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes character is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629\\\">#18629<\\/a>)<\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475]\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.30.1\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.8.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NTM2ODk2OTMsImV4cCI6MTc1Mzc3NjA5M30.3d8OVeYKmKgPxYZHtOT9rVDNUkslkX7Rl-YAYgZBrUM\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NTM2ODk2OTMsImV4cCI6MTc1Mzc3NjA5M30.3d8OVeYKmKgPxYZHtOT9rVDNUkslkX7Rl-YAYgZBrUM\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.8.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImlhdCI6MTc1MzY4OTY5MywiZXhwIjoxNzUzNzc2MDkzfQ.cd-IO7qiqFEgto5k9ttb_XguMXTWlaGBSEFtQ37AVJI\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImlhdCI6MTc1MzY4OTY5MywiZXhwIjoxNzUzNzc2MDkzfQ.cd-IO7qiqFEgto5k9ttb_XguMXTWlaGBSEFtQ37AVJI\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(336102, 'robin_image_optimizer_install', '1761200923', 'auto'),
(336103, 'robin-image-optimizer_version', '1.9.0', 'auto'),
(344160, 'wp_66989e608a982de86667324df9f69969', '1763729788', 'off'),
(39326, 'rsssl_last_tested_http_method', '19', 'no'),
(39327, 'rsssl_http_methods_allowed', 'a:2:{s:11:\"not-allowed\";a:1:{i:2;s:7:\"CONNECT\";}s:7:\"allowed\";a:17:{i:0;s:3:\"GET\";i:1;s:4:\"POST\";i:2;s:3:\"PUT\";i:3;s:6:\"DELETE\";i:4;s:4:\"HEAD\";i:5;s:7:\"OPTIONS\";i:6;s:5:\"TRACE\";i:7;s:5:\"TRACK\";i:8;s:5:\"PATCH\";i:9;s:4:\"COPY\";i:10;s:4:\"LINK\";i:11;s:6:\"UNLINK\";i:12;s:5:\"PURGE\";i:13;s:4:\"LOCK\";i:14;s:6:\"UNLOCK\";i:15;s:8:\"PROPFIND\";i:16;s:4:\"VIEW\";}}', 'no'),
(39328, 'rsssl_le_installation_progress', 'a:3:{i:0;s:16:\"dns-verification\";i:1;s:13:\"system-status\";i:2;s:6:\"domain\";}', 'no'),
(39329, 'rsssl_onboarding_dismissed', '1', 'no'),
(9892, 'frm_inbox_cache', 'a:3:{s:7:\"timeout\";i:1757502346;s:5:\"value\";s:1479:\"{\"0\":{\"key\":\"videos\",\"subject\":\"Did you know?\",\"message\":\"There\'s a growing collection of great video tutorials ready for you! Have a request? Let us know! Don\'t forget to subscribe so you\'ll hear about new videos too.\",\"cta\":\"<a href=\\\"https:\\/\\/formidableforms.com\\/knowledgebase\\/latest-videos\\/?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=videos\\\" class=\\\"button-primary frm-button-primary\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">Learn More<\\/a> <a href=\\\"#\\\" class=\\\"button-secondary frm-button-secondary frm_inbox_dismiss\\\">Dismiss<\\/a>\",\"icon\":\"frm_support_icon\",\"starts\":\"\",\"type\":\"news\",\"who\":[\"all\"]},\"1\":{\"key\":\"free-welcome60-d1-v3\",\"subject\":\"Welcome to Formidable Forms!\",\"message\":\"Thank you for using Formidable Forms. To show our appreciation, we\'d love to give you a welcome offer of 60% Formidable Forms Pro! Get access to our powerful application builder, conditional logic, conversational forms and more!\",\"cta\":\"<a href=\\\"https:\\/\\/formidableforms.com\\/go\\/zj7r?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=free-welcome60-d1-v3\\\" class=\\\"button-primary frm-button-primary\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">Save 60%<\\/a> <a href=\\\"#\\\" class=\\\"button-secondary frm-button-secondary frm_inbox_dismiss\\\">Dismiss<\\/a>\",\"icon\":\"frm_price_tags_icon\",\"starts\":1756425600,\"expires\":1788220800,\"type\":\"promo\",\"who\":[\"free_first_30\"],\"slidein\":\"Try Pro for 60% off\"},\"response_code\":200}\";s:7:\"version\";s:4:\"6.23\";}', 'off'),
(9893, 'frm_inbox', 'a:14:{s:6:\"videos\";a:10:{s:7:\"message\";s:160:\"There\'s a growing collection of great video tutorials ready for you! Have a request? Let us know! Don\'t forget to subscribe so you\'ll hear about new videos too.\";s:7:\"subject\";s:13:\"Did you know?\";s:4:\"icon\";s:16:\"frm_support_icon\";s:3:\"cta\";s:334:\"<a href=\"https://formidableforms.com/knowledgebase/latest-videos/?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=videos\" class=\"button-primary frm-button-primary\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a> <a href=\"#\" class=\"button-secondary frm-button-secondary frm_inbox_dismiss\">Dismiss</a>\";s:7:\"expires\";b:0;s:3:\"who\";a:1:{i:0;s:3:\"all\";}s:4:\"type\";s:4:\"news\";s:3:\"key\";s:6:\"videos\";s:6:\"starts\";s:0:\"\";s:7:\"created\";i:1658736805;}s:13:\"free-first-30\";a:11:{s:7:\"message\";s:228:\"Thank you for using Formidable Forms. To show our appreciation, we\'d love to give you a welcome offer of 60% Formidable Forms Pro! Get access to our powerful application builder, conditional logic, conversational forms and more!\";s:7:\"subject\";s:28:\"Welcome Offer - 60% off Pro!\";s:4:\"icon\";s:19:\"frm_price_tags_icon\";s:3:\"cta\";s:329:\"<a href=\"https://formidableforms.com/PQN8ngf5zbx?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=free-first-30\" class=\"button-primary frm-button-primary\" target=\"_blank\" rel=\"noopener noreferrer\">Claim My Offer!</a> <a href=\"#\" class=\"button-secondary frm-button-secondary frm_inbox_dismiss\">Dismiss</a>\";s:7:\"expires\";i:1982793600;s:3:\"who\";a:1:{i:0;s:13:\"free_first_30\";}s:4:\"type\";s:5:\"promo\";s:3:\"key\";s:13:\"free-first-30\";s:6:\"starts\";i:1730851200;s:7:\"slidein\";s:20:\"Get 60% Off Pro Now!\";s:7:\"created\";i:1731147836;}s:5:\"usage\";a:9:{s:7:\"message\";s:547:\"Gathering usage data allows us to improve Formidable. Your forms will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"https://onlineincshop.com/wp-admin/admin.php?page=formidable-settings&#038;t=misc_settings\">Global Settings</a> and choose to stop sharing data. <a href=\"https://formidableforms.com/knowledgebase/global-settings-overview/#kb-usage-tracking\" target=\"_blank\" rel=\"noopener noreferrer\">Read more about what data we collect</a>.\";s:7:\"subject\";s:43:\"Help Formidable improve with usage tracking\";s:4:\"icon\";s:16:\"frm_tooltip_icon\";s:3:\"cta\";s:259:\"<a href=\"#\" class=\"frm-button-secondary frm_inbox_dismiss\">Dismiss</a> <a href=\"https://onlineincshop.com/wp-admin/admin.php?page=formidable-settings&#038;t=misc_settings\" class=\"button-primary frm-button-primary frm_inbox_dismiss\">Activate usage tracking</a>\";s:7:\"expires\";b:0;s:3:\"who\";s:3:\"all\";s:4:\"type\";s:8:\"feedback\";s:3:\"key\";s:5:\"usage\";s:7:\"created\";i:1735536293;}s:14:\"free_templates\";a:9:{s:7:\"message\";s:65:\"Add your email address to get a code for 20+ free form templates.\";s:7:\"subject\";s:27:\"Get 20+ Free Form Templates\";s:4:\"icon\";s:16:\"frm_tooltip_icon\";s:3:\"cta\";s:232:\"<a href=\"#\" class=\"frm-button-secondary frm_inbox_dismiss\">Dismiss</a> <a href=\"https://onlineincshop.com/wp-admin/admin.php?page=formidable-form-templates&#038;free-templates=1\" class=\"button-primary frm-button-primary\">Get Now</a>\";s:7:\"expires\";b:0;s:3:\"who\";s:3:\"all\";s:4:\"type\";s:8:\"feedback\";s:3:\"key\";s:14:\"free_templates\";s:7:\"created\";i:1735536293;}s:14:\"free-welcome60\";a:11:{s:7:\"message\";s:228:\"Thank you for using Formidable Forms. To show our appreciation, we\'d love to give you a welcome offer of 60% Formidable Forms Pro! Get access to our powerful application builder, conditional logic, conversational forms and more!\";s:7:\"subject\";s:30:\"Welcome Offer — 60% off Pro!\";s:4:\"icon\";s:19:\"frm_price_tags_icon\";s:3:\"cta\";s:330:\"<a href=\"https://formidableforms.com/PQN8ngf5zbx?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=free-welcome60\" class=\"button-primary frm-button-primary\" target=\"_blank\" rel=\"noopener noreferrer\">Claim My Offer!</a> <a href=\"#\" class=\"button-secondary frm-button-secondary frm_inbox_dismiss\">Dismiss</a>\";s:7:\"expires\";i:1859241600;s:3:\"who\";a:1:{i:0;s:13:\"free_first_30\";}s:4:\"type\";s:5:\"promo\";s:3:\"key\";s:14:\"free-welcome60\";s:6:\"starts\";i:1739145600;s:7:\"slidein\";s:20:\"Get 60% Off Pro Now!\";s:7:\"created\";i:1739224573;}s:17:\"free-welcome60-d1\";a:11:{s:7:\"message\";s:159:\"Thanks for installing Formidable Forms! As a new user, you get 60% off Pro for a limited time. This special offer ends soon — upgrade now before it’s gone.\";s:7:\"subject\";s:35:\"Exclusive 60% Off Pro for New Users\";s:4:\"icon\";s:19:\"frm_price_tags_icon\";s:3:\"cta\";s:329:\"<a href=\"https://formidableforms.com/go/zj7r?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=free-welcome60-d1\" class=\"button-primary frm-button-primary\" target=\"_blank\" rel=\"noopener noreferrer\">Claim My Offer!</a> <a href=\"#\" class=\"button-secondary frm-button-secondary frm_inbox_dismiss\">Dismiss</a>\";s:7:\"expires\";i:1896134400;s:3:\"who\";a:1:{i:0;s:12:\"free_first_1\";}s:4:\"type\";s:5:\"promo\";s:3:\"key\";s:17:\"free-welcome60-d1\";s:6:\"starts\";i:1739577600;s:7:\"slidein\";s:28:\"Welcome to Formidable Forms!\";s:7:\"created\";i:1739573193;}s:17:\"free-welcome60-d2\";a:11:{s:7:\"message\";s:163:\"Formidable Forms Pro gives you advanced features to save time and build better forms. As a new user, you can upgrade now with 60% off, but this offer won’t last.\";s:7:\"subject\";s:27:\"Build Forms Faster with Pro\";s:4:\"icon\";s:19:\"frm_price_tags_icon\";s:3:\"cta\";s:329:\"<a href=\"https://formidableforms.com/go/vylq?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=free-welcome60-d2\" class=\"button-primary frm-button-primary\" target=\"_blank\" rel=\"noopener noreferrer\">Claim My Offer!</a> <a href=\"#\" class=\"button-secondary frm-button-secondary frm_inbox_dismiss\">Dismiss</a>\";s:7:\"expires\";i:1896134400;s:3:\"who\";a:1:{i:0;s:14:\"free_first_2_3\";}s:4:\"type\";s:5:\"promo\";s:3:\"key\";s:17:\"free-welcome60-d2\";s:6:\"starts\";i:1739836800;s:7:\"slidein\";s:33:\"New Users Only: 60% Off Ends Soon\";s:7:\"created\";i:1739595066;}s:17:\"free-welcome60-d4\";a:11:{s:7:\"message\";s:168:\"More power, more features, more form conversions! Get payment integrations, automation, and priority support with 60% off Pro. Limited-time new user deal—grab it now!\";s:7:\"subject\";s:24:\"3 Reasons to Upgrade Now\";s:4:\"icon\";s:19:\"frm_price_tags_icon\";s:3:\"cta\";s:329:\"<a href=\"https://formidableforms.com/go/xjk2?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=free-welcome60-d4\" class=\"button-primary frm-button-primary\" target=\"_blank\" rel=\"noopener noreferrer\">Claim My Offer!</a> <a href=\"#\" class=\"button-secondary frm-button-secondary frm_inbox_dismiss\">Dismiss</a>\";s:7:\"expires\";i:1896134400;s:3:\"who\";a:1:{i:0;s:14:\"free_first_4_7\";}s:4:\"type\";s:5:\"promo\";s:3:\"key\";s:17:\"free-welcome60-d4\";s:6:\"starts\";i:1739836800;s:7:\"slidein\";s:23:\"Don\'t Miss 60% Off Pro!\";s:7:\"created\";i:1739822386;}s:17:\"free-welcome60-d8\";a:11:{s:7:\"message\";s:205:\"Only new users get this 60% off Pro deal, and it won’t be around for long. Upgrade now to unlock hundreds of professional form templates, calculators, surveys &amp; polls, premium support, and much more.\";s:7:\"subject\";s:33:\"Your Exclusive 60% Off Ends Soon!\";s:4:\"icon\";s:19:\"frm_price_tags_icon\";s:3:\"cta\";s:329:\"<a href=\"https://formidableforms.com/go/ixix?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=free-welcome60-d8\" class=\"button-primary frm-button-primary\" target=\"_blank\" rel=\"noopener noreferrer\">Claim My Offer!</a> <a href=\"#\" class=\"button-secondary frm-button-secondary frm_inbox_dismiss\">Dismiss</a>\";s:7:\"expires\";i:1896134400;s:3:\"who\";a:1:{i:0;s:15:\"free_first_8_11\";}s:4:\"type\";s:5:\"promo\";s:3:\"key\";s:17:\"free-welcome60-d8\";s:6:\"starts\";i:1739836800;s:7:\"slidein\";s:38:\"Don\'t Miss Out on Formidable Forms Pro\";s:7:\"created\";i:1740249674;}s:18:\"free-welcome60-d20\";a:11:{s:7:\"message\";s:161:\"Don\'t miss the last chance to claim 60% off Formidable Forms Pro. Upgrade now for advanced form features, automation, and premium support before it’s too late!\";s:7:\"subject\";s:37:\"Last Chance – 60% Off for New Users\";s:4:\"icon\";s:19:\"frm_price_tags_icon\";s:3:\"cta\";s:330:\"<a href=\"https://formidableforms.com/go/j4ks?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=free-welcome60-d20\" class=\"button-primary frm-button-primary\" target=\"_blank\" rel=\"noopener noreferrer\">Claim My Offer!</a> <a href=\"#\" class=\"button-secondary frm-button-secondary frm_inbox_dismiss\">Dismiss</a>\";s:7:\"expires\";i:1896134400;s:3:\"who\";a:1:{i:0;s:16:\"free_first_20_30\";}s:4:\"type\";s:5:\"promo\";s:3:\"key\";s:18:\"free-welcome60-d20\";s:6:\"starts\";i:1739836800;s:7:\"slidein\";s:36:\"Final Call for Formidable Forms Pro!\";s:7:\"created\";i:1740505046;}s:18:\"free-welcome60-d12\";a:10:{s:7:\"message\";s:153:\"High-converting forms = more leads, more sales, more success. Get 60% off Formidable Forms Pro and turn visitors into customers! Last chance to save big!\";s:7:\"subject\";s:36:\"Forms That Convert – Upgrade Today\";s:4:\"icon\";s:19:\"frm_price_tags_icon\";s:3:\"cta\";s:330:\"<a href=\"https://formidableforms.com/go/kp8y?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=free-welcome60-d12\" class=\"button-primary frm-button-primary\" target=\"_blank\" rel=\"noopener noreferrer\">Claim My Offer!</a> <a href=\"#\" class=\"button-secondary frm-button-secondary frm_inbox_dismiss\">Dismiss</a>\";s:7:\"expires\";i:1896134400;s:3:\"who\";a:1:{i:0;s:16:\"free_first_12_19\";}s:4:\"type\";s:5:\"promo\";s:3:\"key\";s:18:\"free-welcome60-d12\";s:6:\"starts\";i:1739836800;s:7:\"created\";i:1740688974;}s:16:\"email-graphs-pro\";a:10:{s:7:\"message\";s:307:\"Place graphs of your data on more than just websites! With our new \"image\" format option, you can now put charts and graphs inside emails and PDFs. And don\'t worry, you can still customize graph types, change colors, and more! Just choose \"image\" on the new \"format\" dropdown and let our plugin do the rest!\";s:7:\"subject\";s:27:\"&#91;New] Graphs in Emails!\";s:4:\"icon\";s:16:\"frm_tooltip_icon\";s:3:\"cta\";s:374:\"<a href=\"https://formidableforms.com/add-charts-and-graphs-in-emails-pdfs-with-formidable-forms/?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=email-graphs-pro\" class=\"button-primary frm-button-primary\" target=\"_blank\" rel=\"noopener noreferrer\">Read more</a> <a href=\"#\" class=\"button-secondary frm-button-secondary frm_inbox_dismiss\">Dismiss</a>\";s:7:\"expires\";i:1754870400;s:3:\"who\";a:2:{i:0;s:8:\"business\";i:1;s:5:\"elite\";}s:4:\"type\";s:4:\"news\";s:3:\"key\";s:16:\"email-graphs-pro\";s:6:\"starts\";i:1752451200;s:7:\"created\";i:1752572762;}s:12:\"email-graphs\";a:12:{s:7:\"message\";s:227:\"Place graphs of your data on more than just websites! With our new \"image\" format option, you can now put charts and graphs inside emails and PDFs. And don\'t worry, you can still customize graph types, change colors, and more!\r\";s:7:\"subject\";s:27:\"&#91;New] Graphs in Emails!\";s:4:\"icon\";s:16:\"frm_tooltip_icon\";s:3:\"cta\";s:370:\"<a href=\"https://formidableforms.com/add-charts-and-graphs-in-emails-pdfs-with-formidable-forms/?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=email-graphs\" class=\"button-primary frm-button-primary\" target=\"_blank\" rel=\"noopener noreferrer\">Read more</a> <a href=\"#\" class=\"button-secondary frm-button-secondary frm_inbox_dismiss\">Dismiss</a>\";s:7:\"expires\";i:1754870400;s:3:\"who\";a:4:{i:0;s:4:\"free\";i:1;s:5:\"basic\";i:2;s:8:\"personal\";i:3;s:7:\"expired\";}s:4:\"type\";s:4:\"news\";s:3:\"key\";s:12:\"email-graphs\";s:1:\"\r\";N;s:41:\"Upgrade to Business and try it out today!\";N;s:6:\"starts\";i:1752451200;s:7:\"created\";i:1752572762;}s:20:\"free-welcome60-d1-v3\";a:11:{s:7:\"message\";s:228:\"Thank you for using Formidable Forms. To show our appreciation, we\'d love to give you a welcome offer of 60% Formidable Forms Pro! Get access to our powerful application builder, conditional logic, conversational forms and more!\";s:7:\"subject\";s:28:\"Welcome to Formidable Forms!\";s:4:\"icon\";s:19:\"frm_price_tags_icon\";s:3:\"cta\";s:325:\"<a href=\"https://formidableforms.com/go/zj7r?utm_source=WordPress&utm_medium=inbox&utm_campaign=liteplugin&utm_content=free-welcome60-d1-v3\" class=\"button-primary frm-button-primary\" target=\"_blank\" rel=\"noopener noreferrer\">Save 60%</a> <a href=\"#\" class=\"button-secondary frm-button-secondary frm_inbox_dismiss\">Dismiss</a>\";s:7:\"expires\";i:1906502400;s:3:\"who\";a:1:{i:0;s:13:\"free_first_30\";}s:4:\"type\";s:5:\"promo\";s:3:\"key\";s:20:\"free-welcome60-d1-v3\";s:6:\"starts\";i:1752624000;s:7:\"slidein\";s:19:\"Try Pro for 60% off\";s:7:\"created\";i:1753443839;}}', 'off'),
(201663, 'rsssl_folder_name', 'really-simple-ssl/7b21d3bd332e789f46d953b03293e64e', 'auto'),
(9889, 'widget_frm_show_form', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(9890, 'frm_options', 'O:11:\"FrmSettings\":40:{s:11:\"option_name\";s:11:\"frm_options\";s:4:\"menu\";s:10:\"Formidable\";s:7:\"mu_menu\";s:1:\"0\";s:8:\"use_html\";s:1:\"1\";s:10:\"jquery_css\";i:0;s:12:\"accordion_js\";i:0;s:9:\"fade_form\";i:0;s:7:\"old_css\";b:0;s:9:\"admin_bar\";i:0;s:11:\"success_msg\";s:54:\"Your responses were successfully submitted. Thank you!\";s:9:\"blank_msg\";s:27:\"This field cannot be blank.\";s:10:\"unique_msg\";s:26:\"This value must be unique.\";s:11:\"invalid_msg\";s:66:\"There was a problem with your submission. Errors are marked below.\";s:10:\"failed_msg\";s:57:\"We\'re sorry. It looks like you\'ve already submitted that.\";s:12:\"submit_value\";s:6:\"Submit\";s:9:\"login_msg\";s:45:\"You do not have permission to view this form.\";s:16:\"admin_permission\";s:37:\"You do not have permission to do that\";s:8:\"email_to\";s:13:\"[admin_email]\";s:10:\"load_style\";s:3:\"all\";s:12:\"custom_style\";b:1;s:6:\"pubkey\";s:40:\"6LeULikhAAAAAINYuv83RI4hWwAC4405FLsfEjQs\";s:7:\"privkey\";s:40:\"6LeULikhAAAAAAeEVHF3h0c31vCr_NY4imbNAjqC\";s:7:\"re_lang\";s:0:\"\";s:7:\"re_type\";s:0:\"\";s:6:\"re_msg\";s:39:\"The reCAPTCHA was not entered correctly\";s:8:\"re_multi\";s:1:\"1\";s:6:\"no_ips\";i:0;s:12:\"current_form\";i:0;s:8:\"tracking\";i:0;s:12:\"re_threshold\";d:0.5;s:14:\"frm_view_forms\";a:1:{i:0;s:13:\"administrator\";}s:14:\"frm_edit_forms\";a:1:{i:0;s:13:\"administrator\";}s:16:\"frm_delete_forms\";a:1:{i:0;s:13:\"administrator\";}s:19:\"frm_change_settings\";a:1:{i:0;s:13:\"administrator\";}s:16:\"frm_view_entries\";a:1:{i:0;s:13:\"administrator\";}s:18:\"frm_delete_entries\";a:1:{i:0;s:13:\"administrator\";}s:18:\"frm_create_entries\";s:13:\"administrator\";s:16:\"frm_edit_entries\";s:13:\"administrator\";s:16:\"frm_view_reports\";s:13:\"administrator\";s:17:\"frm_edit_displays\";s:13:\"administrator\";}', 'yes'),
(9914, 'frm_applications_l', 'a:3:{s:7:\"timeout\";i:1658758416;s:5:\"value\";s:3916:\"{\"28067388\":{\"name\":\"Team Directory Template\",\"slug\":\"team-directory-template\",\"description\":\"Choose between two layouts, add your team in the form, and done.\",\"id\":28067388,\"released\":\"2021-07-01 19:44:54\",\"categories\":[\"Business+Views\",\"Directories\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/team-directory-template\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2021\\/07\\/team-directory-list-e1625523195128.png\",700,350,false],\"key\":\"team-directory\",\"forms\":\"1\",\"views\":\"4\",\"download_id\":\"28123668\",\"min_plan\":\"Business\"},\"28068553\":{\"name\":\"Restaurant Menu Template\",\"slug\":\"restaurant-menu-template\",\"description\":\"Instantly create an online restaurant menu in WordPress.\",\"id\":28068553,\"released\":\"2021-07-30 15:06:08\",\"categories\":[\"Business+Views\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/restaurant-menu-template\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/formidable\\/233\\/Restaurant-menu-main-course.png\",750,375,false],\"key\":\"restaurant-menu\",\"forms\":\"2\",\"views\":\"2\",\"download_id\":\"28123664\",\"min_plan\":\"Plus\"},\"28067848\":{\"name\":\"Business Hours Template\",\"slug\":\"business-hours-template\",\"description\":\"Set your business hours and show a message to let your visitors know if you are currently open or closed.\",\"id\":28067848,\"released\":\"2021-07-05 16:05:50\",\"categories\":[\"Personal+Views\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/business-hours-template\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/edd\\/2018\\/06\\/show-business-hours-e1625522740990.png\",584,292,false],\"key\":\"business-hours\",\"forms\":\"1\",\"views\":\"2\",\"download_id\":\"28123666\",\"min_plan\":\"Plus\"},\"28076695\":{\"name\":\"FAQ Template\",\"slug\":\"faq-template-wordpress\",\"description\":\"Save time by easily adding new questions and answers to your FAQ page.\",\"id\":28076695,\"released\":\"2021-09-02 16:03:02\",\"categories\":[\"Business\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/faq-template-wordpress\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/formidable\\/233\\/faqs.png\",750,375,false],\"key\":\"faq-template-wordpress\",\"forms\":\"1\",\"views\":\"2\",\"download_id\":\"28123662\",\"min_plan\":\"Plus\"},\"28080544\":{\"name\":\"Product Review and Purchase Template\",\"slug\":\"product-review-template\",\"description\":\"Boost customer satisfaction by gathering product feedback. Also allow product purchases.\",\"id\":28080544,\"released\":\"2021-09-20 14:03:33\",\"categories\":[\"Elite+Views\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/product-review-template\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/formidable\\/233\\/product-listing-with-reviews.png\",900,450,false],\"key\":\"product-review\",\"forms\":\"3\",\"views\":\"2\",\"download_id\":\"28124372\",\"min_plan\":\"Elite\"},\"28124324\":{\"name\":\"Real Estate Listing Template\",\"slug\":\"real-estate-listings-template\",\"description\":\"View real estate listings, search, and add new listings. Logged-in users can edit their listings too.\",\"id\":28124324,\"released\":\"2022-05-05 13:55:32\",\"categories\":[\"Business+Views\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/real-estate-listings-template\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/formidable\\/233\\/real-estate-listings-template.png\",1500,750,false],\"key\":\"real-estate-listings\",\"forms\":\"1\",\"views\":\"1\",\"download_id\":\"28124331\",\"min_plan\":\"Plus\"},\"28127949\":{\"name\":\"Link in Bio Instagram Page\",\"slug\":\"link-in-bio-instagram\",\"description\":\"Create a landing page for the \\\"Link in Bio\\\" from Instagram.\",\"id\":28127949,\"released\":\"2022-05-25 14:14:27\",\"categories\":[\"Business\",\"Business+Views\"],\"link\":\"https:\\/\\/formidableforms.com\\/view-templates\\/link-in-bio-instagram\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/formidable\\/233\\/link-in-bio-instagram-grid-1.png\",1500,750,false],\"key\":\"link-in-bio-instagram\",\"forms\":\"1\",\"views\":\"1\",\"download_id\":\"28127946\",\"min_plan\":\"Plus\"}}\";s:7:\"version\";s:5:\"5.4.2\";}', 'no'),
(9896, 'frm_welcome_redirect', '5.4.2', 'no'),
(9902, 'frm_db_version', '6.23-103', 'yes'),
(9903, 'frm_last_style_update', '819355', 'yes');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(9904, 'frmpro_css', '/* WARNING: Any changes made to this file will be lost when your Formidable settings are updated */\n.with_frm_style{--form-width:100%;--form-align:left;--direction:ltr;--fieldset:0px;--fieldset-color:#000000;--fieldset-padding:0 0 15px 0;--fieldset-bg-color:transparent;--title-size:40px;--title-color:#444444;--title-margin-top:10px;--title-margin-bottom:60px;--form-desc-size:14px;--form-desc-color:#666666;--form-desc-margin-top:10px;--form-desc-margin-bottom:25px;--form-desc-padding:0;--font-size:15px;--label-color:#3f4b5b;--weight:normal;--position:none;--align:left;--width:150px;--required-color:#B94A48;--required-weight:bold;--label-padding:0 0 3px 0;--description-font-size:12px;--description-color:#666666;--description-weight:normal;--description-style:normal;--description-align:left;--description-margin:0;--field-font-size:14px;--field-height:32px;--line-height:32px;--field-width:100%;--auto-width:100%;--field-pad:6px 10px;--field-margin:20px;--field-weight:normal;--text-color:#555555;--border-color:#BFC3C8;--field-border-width:1px;--field-border-style:solid;--bg-color:#ffffff;--bg-color-active:#ffffff;--border-color-active:#66afe9;--text-color-error:#444444;--bg-color-error:#ffffff;--border-color-error:#B94A48;--border-width-error:1px;--border-style-error:solid;--bg-color-disabled:#ffffff;--border-color-disabled:#E5E5E5;--text-color-disabled:#A1A1A1;--radio-align:block;--check-align:block;--check-font-size:13px;--check-label-color:#444444;--check-weight:normal;--section-font-size:18px;--section-color:#444444;--section-weight:bold;--section-pad:15px 0 3px 0;--section-mar-top:15px;--section-mar-bottom:30px;--section-bg-color:transparent;--section-border-color:#e8e8e8;--section-border-width:2px;--section-border-style:solid;--section-border-loc:-top;--collapse-pos:after;--repeat-icon-color:#ffffff;--submit-font-size:15px;--submit-width:auto;--submit-height:auto;--submit-bg-color:#579AF6;--submit-border-color:#579AF6;--submit-border-width:1px;--submit-text-color:#ffffff;--submit-weight:normal;--submit-border-radius:4px;--submit-margin:10px;--submit-padding:10px 20px;--submit-shadow-color:#eeeeee;--submit-hover-bg-color:#efefef;--submit-hover-color:#444444;--submit-hover-border-color:#cccccc;--submit-active-bg-color:#efefef;--submit-active-color:#444444;--submit-active-border-color:#cccccc;--border-radius:4px;--error-bg:#F2DEDE;--error-border:#EBCCD1;--error-text:#B94A48;--error-font-size:14px;--success-bg-color:#DFF0D8;--success-border-color:#D6E9C6;--success-text-color:#468847;--success-font-size:14px;--progress-bg-color:#eaeaea;--progress-color:#3f4b5b;--progress-active-bg-color:#579AF6;--progress-active-color:#ffffff;--progress-border-color:#E5E5E5;--progress-border-size:2px;--progress-size:30px;--base-font-size:15px;--box-shadow:0 1px 2px 0 rgba(18, 18, 23, 0.05);}.frm_hidden,.frm_add_form_row.frm_hidden,.frm_remove_form_row.frm_hidden,.with_frm_style .frm_button.frm_hidden{display:none;}.with_frm_style,.with_frm_style form,.with_frm_style .frm-show-form div.frm_description p{text-align: var(--form-align);}input:-webkit-autofill {-webkit-box-shadow: 0 0 0 30px white inset;}.with_frm_style .frm-show-form div.frm_description p{font-size: var(--form-desc-size);color: var(--form-desc-color);margin-top: var(--form-desc-margin-top);margin-bottom: var(--form-desc-margin-bottom);padding: var(--form-desc-padding);}.with_frm_style fieldset{min-width:0;display: block; }.with_frm_style fieldset fieldset{border:none;margin:0;padding:0;background-color:transparent;}.with_frm_style .frm_form_fields > fieldset{border-width: var(--fieldset);border-style:solid;border-color: var(--fieldset-color);margin:0;padding: var(--fieldset-padding);background-color: var(--fieldset-bg-color);}legend.frm_hidden{display:none !important;}.with_frm_style .frm_form_fields{opacity:1;transition: opacity 0.1s linear;}.with_frm_style .frm_doing_ajax{opacity:.5;}.frm_transparent{color:transparent;}.with_frm_style legend + h3,.with_frm_style h3.frm_form_title{font-size: var(--title-size);color: var(--title-color);margin-top: var(--title-margin-top);margin-bottom: var(--title-margin-bottom);}.with_frm_style .frm_form_field.frm_html_container,.with_frm_style .frm_form_field .frm_show_it{color: var(--form-desc-color);}.with_frm_style .frm_form_field.frm_html_container{font-size: var(--form-desc-size);}.with_frm_style .frm_form_field .frm_show_it{font-size: var(--field-font-size);font-weight: var(--field-weight);}.with_frm_style .frm_required {color: var(--required-color);font-weight: var(--required-weight);}.with_frm_style input[type=text],.with_frm_style input[type=password],.with_frm_style input[type=email],.with_frm_style input[type=number],.with_frm_style input[type=url],.with_frm_style input[type=tel],.with_frm_style input[type=search],.with_frm_style select,.with_frm_style textarea,.with_frm_style .frm-card-element.StripeElement {font-family:var(--font);font-size: var(--field-font-size);margin-bottom:0;}.with_frm_style textarea{vertical-align:top;height:auto;}.with_frm_style input[type=text],.with_frm_style input[type=password],.with_frm_style input[type=email],.with_frm_style input[type=number],.with_frm_style input[type=url],.with_frm_style input[type=tel],.with_frm_style input[type=phone],.with_frm_style input[type=search],.with_frm_style select,.with_frm_style textarea,.frm_form_fields_style,.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.with_frm_style .frm-card-element.StripeElement,.with_frm_style .frm_slimselect.ss-main {color: var(--text-color);background-color: var(--bg-color);border-color: var(--border-color);border-width: var(--field-border-width);border-style: var(--field-border-style);border-radius: var(--border-radius);width: var(--field-width);max-width: 100%;font-size: var(--field-font-size);padding: var(--field-pad);box-sizing: border-box;outline: none;font-weight: var(--field-weight);}.with_frm_style select option {color: var(--text-color);}.with_frm_style select option.frm-select-placeholder {color: var(--text-color-disabled);}.with_frm_style input[type=radio],.with_frm_style input[type=checkbox]{border-color: var(--border-color);box-shadow: var(--box-shadow);float: none;}.with_frm_style input[type=radio]:after,.with_frm_style input[type=checkbox]:after {display: none; }.with_frm_style input[type=radio]:not(:checked):focus,.with_frm_style input[type=checkbox]:not(:checked):focus {border-color: var(--border-color) !important;}.with_frm_style input[type=radio]:focus,.with_frm_style input[type=checkbox]:focus {box-shadow:0px 0px 0px 3px rgba(102,175,233, 0.4) !important;}.with_frm_style input[type=text],.with_frm_style input[type=password],.with_frm_style input[type=email],.with_frm_style input[type=number],.with_frm_style input[type=url],.with_frm_style input[type=tel],.with_frm_style input[type=file],.with_frm_style input[type=search],.with_frm_style select,.with_frm_style .frm-card-element.StripeElement{min-height: var(--field-height);line-height:1.3;}.with_frm_style select[multiple=multiple]{height:auto;}.input[type=file].frm_transparent:focus,.with_frm_style input[type=file]{background-color:transparent;border:none;outline:none;box-shadow:none;}.with_frm_style input[type=file]{color: var(--text-color);padding: 0px;font-size: var(--field-font-size);display: initial;}.with_frm_style input[type=file].frm_transparent{color:transparent;}.with_frm_style .wp-editor-wrap{width: var(--field-width);max-width:100%;}.with_frm_style .wp-editor-container textarea{border:none;box-shadow:none !important;}.with_frm_style .mceIframeContainer{background-color: var(--bg-color);}.with_frm_style select{width: var(--auto-width);max-width:100%;background-position-y: calc(50% + 3px);}.with_frm_style input[disabled],.with_frm_style select[disabled],.with_frm_style textarea[disabled],.with_frm_style input[readonly],.with_frm_style select[readonly],.with_frm_style textarea[readonly] {background-color: var(--bg-color-disabled);color: var(--text-color-disabled);border-color: var(--border-color-disabled);}.frm_preview_page:before{content:normal !important;}.frm_preview_page{padding:25px;}.with_frm_style .frm_primary_label{max-width:100%;font-size: var(--font-size);color: var(--label-color);font-weight: var(--weight);text-align: var(--align);padding: var(--label-padding);margin:0;width:auto;display:block;}.with_frm_style .frm_top_container .frm_primary_label,.with_frm_style .frm_hidden_container .frm_primary_label,.with_frm_style .frm_pos_top{display:block;float:none;width:auto;}.with_frm_style .frm_inline_container .frm_primary_label{margin-right:10px;}.with_frm_style .frm_right_container .frm_primary_label,.with_frm_style .frm_pos_right{display:inline;float:right;margin-left:10px;}.with_frm_style .frm_pos_center {text-align: center;}.with_frm_style .frm_none_container .frm_primary_label,.with_frm_style .frm_pos_none,.frm_pos_none,.frm_none_container .frm_primary_label{display:none;}.with_frm_style .frm_section_heading.frm_hide_section{margin-top:0 !important;}.with_frm_style .frm_hidden_container .frm_primary_label,.with_frm_style .frm_pos_hidden,.frm_hidden_container .frm_primary_label{visibility:hidden;white-space:nowrap;}.frm_visible{opacity:1;}.with_frm_style .frm_inside_container {position: relative;padding-top: 18px;padding-top: calc(0.5 * var(--field-height));}.with_frm_style .frm_inside_container > input,.with_frm_style .frm_inside_container > select,.with_frm_style .frm_inside_container > textarea {display: block;}.with_frm_style input::placeholder,.with_frm_style textarea::placeholder {font-size: var(--field-font-size);}.with_frm_style .frm_inside_container > input::-moz-placeholder,.with_frm_style .frm_inside_container > textarea::-moz-placeholder {opacity: 0 !important;transition: opacity 0.3s ease-in;}.with_frm_style .frm_inside_container > input:-ms-input-placeholder,.with_frm_style .frm_inside_container > textarea:-ms-input-placeholder {opacity: 0;transition: opacity 0.3s ease-in;}.with_frm_style .frm_inside_container > input::placeholder,.with_frm_style .frm_inside_container > textarea::placeholder {opacity: 0;transition: opacity 0.3s ease-in;}.with_frm_style .frm_inside_container > label {transition: all 0.3s ease-in;position: absolute;top: 19px;top: calc(1px + .5 * var(--field-height));left: 3px;width: 100%;line-height: 1.3;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;padding: 8px 12px;padding: var(--field-pad);font-size: 14px;font-size: var(--field-font-size);font-weight: normal;font-weight: var(--field-weight);pointer-events: none;}.with_frm_style.frm_style_lines-no-boxes .frm_inside_container > label {line-height: 1;}.with_frm_style .frm_inside_container.frm_label_float_top > label {top: 0;left: 0;padding: 0;font-size: 12px;font-size: calc(0.85 * var(--field-font-size));}.with_frm_style .frm_inside_container.frm_label_float_top > input::-moz-placeholder,.with_frm_style .frm_inside_container.frm_label_float_top > textarea::-moz-placeholder {opacity: 1 !important;transition: opacity 0.3s ease-in;}.with_frm_style .frm_inside_container.frm_label_float_top > input:-ms-input-placeholder,.with_frm_style .frm_inside_container.frm_label_float_top > textarea:-ms-input-placeholder {opacity: 1;transition: opacity 0.3s ease-in;}.with_frm_style .frm_inside_container.frm_label_float_top > input::placeholder,.with_frm_style .frm_inside_container.frm_label_float_top > textarea::placeholder {opacity: 1;transition: opacity 0.3s ease-in;}.with_frm_style .frm_description,.with_frm_style .frm_pro_max_limit_desc{clear:both;}.with_frm_style input[type=number][readonly]{-moz-appearance: textfield;}.with_frm_style select[multiple=\"multiple\"]{height:auto;line-height:normal;}.with_frm_style .frm_catlevel_2,.with_frm_style .frm_catlevel_3,.with_frm_style .frm_catlevel_4,.with_frm_style .frm_catlevel_5{margin-left:18px;}.with_frm_style .wp-editor-container{border:1px solid #e5e5e5;}.with_frm_style .quicktags-toolbar input{font-size:12px !important;}.with_frm_style .wp-editor-container textarea{border:none;}.with_frm_style .auto_width #loginform input,.with_frm_style .auto_width input,.with_frm_style input.auto_width,.with_frm_style select.auto_width,.with_frm_style textarea.auto_width{width:auto;}.with_frm_style .frm_repeat_buttons{white-space:nowrap;}.with_frm_style .frm_button{text-decoration:none !important;;border:1px solid #eee;display:inline-block;padding: var(--submit-padding);border-radius:4px;border-radius:var(--border-radius);font-size: var(--submit-font-size);font-weight: var(--submit-weight);color: var(--submit-text-color);background: var(--submit-bg-color);border-width: var(--submit-border-width);border-color: var(--submit-border-color);height: var(--submit-height);}.with_frm_style .frm_button.frm_inverse{color:var(--submit-bg-color);background:var(--submit-text-color);}.with_frm_style .frm_submit{clear:both;}.frm_inline_form .frm_form_field,.frm_inline_form .frm_submit{grid-column: span 1 / span 1;}.frm_inline_form .frm_submit{margin:0;}.frm_submit.frm_inline_submit input[type=submit],.frm_submit.frm_inline_submit button,.frm_inline_form .frm_submit input[type=submit],.frm_inline_form .frm_submit button{margin-top:0;}.with_frm_style.frm_center_submit .frm_submit{text-align:center;}.with_frm_style.frm_center_submit .frm_flex.frm_submit {justify-content: center;}.with_frm_style .frm_inline_success .frm_submit{display: flex;flex-direction: row;align-items: center;margin: 0;}.with_frm_style .frm_inline_success .frm_submit .frm_message{flex: 1;margin: 0;padding-left: 10px;}.with_frm_style .frm_inline_success.frm_alignright_success .frm_submit .frm_message{text-align: right;}.with_frm_style.frm_center_submit .frm_submit input[type=submit],.with_frm_style.frm_center_submit .frm_submit input[type=button],.with_frm_style.frm_center_submit .frm_submit button{margin-bottom:8px !important;}.with_frm_style .frm-edit-page-btn,.with_frm_style .frm_submit input[type=submit],.with_frm_style .frm_submit input[type=button],.with_frm_style .frm_submit button{-webkit-appearance: none;cursor: pointer;}.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{display: block;margin: 0 auto;}.with_frm_style .frm_loading_prev .frm_ajax_loading,.with_frm_style .frm_loading_form .frm_ajax_loading{visibility:visible !important;}.with_frm_style .frm_loading_prev .frm_prev_page,.with_frm_style .frm_loading_form .frm_button_submit {position: relative;color: transparent !important;text-shadow: none !important;}.with_frm_style .frm_loading_prev .frm_prev_page:hover,.with_frm_style .frm_loading_prev .frm_prev_page:active,.with_frm_style .frm_loading_prev .frm_prev_page:focus,.with_frm_style .frm_loading_form .frm_button_submit:hover,.with_frm_style .frm_loading_form .frm_button_submit:active,.with_frm_style .frm_loading_form .frm_button_submit:focus {cursor: not-allowed;color: transparent;outline: none !important;box-shadow: none;}.with_frm_style .frm_loading_prev .frm_prev_page::before,.with_frm_style .frm_loading_form .frm_button_submit:before {content: \'\';display: inline-block;position: absolute;background: transparent;border: 1px solid #fff;border-top-color: transparent;border-left-color: transparent;border-radius: 50%;box-sizing: border-box;top: 50%;left: 50%;margin-top: -6px;margin-left: -6px;width: 12px;height: 12px;animation: spin 2s linear infinite;}.with_frm_style .frm_submit.frm_flex {align-items: center;gap: 2%;}.with_frm_style .frm_submit.frm_flex button.frm_button_submit ~ .frm_prev_page {order: -1;}.frm_style_formidable-style.with_frm_style{}.frm_forms.frm_style_formidable-style.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style.with_frm_style p.description,.frm_style_formidable-style.with_frm_style div.description,.frm_style_formidable-style.with_frm_style div.frm_description,.frm_style_formidable-style.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style.with_frm_style .frm_error,.frm_style_formidable-style.with_frm_style .frm_pro_max_limit_desc{margin-top: 6px;padding:0;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container{grid-template-columns: 150px auto;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container{grid-template-columns: auto 150px;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_data_container,.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style.with_frm_style .frm_none_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style.with_frm_style input::placeholder,.frm_style_formidable-style.with_frm_style textarea::placeholder{color: #A1A1A1;}.frm_style_formidable-style.with_frm_style .frm_default,.frm_style_formidable-style.with_frm_style input.frm_default,.frm_style_formidable-style.with_frm_style textarea.frm_default,.frm_style_formidable-style.with_frm_style select.frm_default,.frm_style_formidable-style.with_frm_style .placeholder {color: #A1A1A1;}.frm_style_formidable-style.with_frm_style .form-field input:not([type=file]):not([type=range]):not([readonly]):focus,.frm_style_formidable-style.with_frm_style select:focus,.frm_style_formidable-style.with_frm_style .form-field textarea:focus,.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style.with_frm_style .frm_focus_field .frm-card-element.StripeElement {background-color:#ffffff;border-color:#66afe9;color: var(--text-color);box-shadow:0px 0px 5px 0px rgba(102,175,233, 0.6);}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style.with_frm_style input[type=submit],.frm_style_formidable-style.with_frm_style .frm_submit input[type=button],.frm_style_formidable-style.with_frm_style .frm_submit button,.frm_form_submit_style,.frm_style_formidable-style.with_frm_style .frm-edit-page-btn {width:auto;font-size:15px;height:auto;line-height:normal;text-align:center;background:#579AF6;border-width:1px;border-color: #579AF6;border-style:solid;color:#ffffff;cursor:pointer;font-weight:normal;border-radius:4px;text-shadow:none;padding:10px 20px;box-sizing:border-box;box-shadow:0 1px 1px #eeeeee;margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message{margin:0;}.frm_style_formidable-style.with_frm_style .frm-edit-page-btn:hover,.frm_style_formidable-style.with_frm_style input[type=submit]:hover,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style.with_frm_style .frm_submit button:hover{background: #efefef;border-color: #cccccc;color: #444444;}.frm_style_formidable-style.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style.with_frm_style .frm-edit-page-btn:focus,.frm_style_formidable-style.with_frm_style input[type=submit]:focus,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style.with_frm_style .frm_submit button:focus,.frm_style_formidable-style.with_frm_style input[type=submit]:active,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style.with_frm_style .frm_submit button:active{background: #efefef;border-color: #cccccc;color: #444444;outline: none;}.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page,.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page:hover,.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page:active,.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page:focus,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:hover,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:active,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:focus{color: transparent ;background: #579AF6;border-color: #579AF6;}.frm_style_formidable-style.with_frm_style .frm_loading_prev .frm_prev_page:before,.frm_style_formidable-style.with_frm_style .frm_loading_form .frm_button_submit:before {border-bottom-color: #ffffff;border-right-color: #ffffff;}.frm_style_formidable-style.with_frm_style.frm_inline_top .frm_submit::before,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit::before {content:\"before\";font-size:15px;color:#3f4b5b;font-weight:normal;margin:0;padding:0 0 3px 0;width:auto;display:block;visibility:hidden;}.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit input,.frm_style_formidable-style.with_frm_style.frm_inline_form .frm_submit button,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit input,.frm_style_formidable-style.with_frm_style .frm_submit.frm_inline_submit button {margin: 0 !important;}.frm_style_formidable-style.with_frm_style #frm_field_cptch_number_container{font-size:15px;color:#3f4b5b;font-weight:normal;clear:both;}.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=checkbox],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=radio],.frm_style_formidable-style.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field select:not(.ui-datepicker-month):not(.ui-datepicker-year),.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .frm-card-element.StripeElement,.frm_style_formidable-style.with_frm_style .frm_form_field :invalid {color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:var(--border-width-error) ;border-style:solid;}.frm_style_formidable-style.with_frm_style .frm_blank_field .sigWrapper{border-color:#B94A48 !important;}.frm_style_formidable-style.with_frm_style .frm_error,.frm_style_formidable-style.with_frm_style .frm_limit_error{font-weight:normal;color:#444444;}.frm_style_formidable-style.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color: #B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #BFC3C8 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #BFC3C8 50%, #BFC3C8 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total_big input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total_big textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total textarea{color: #555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_ajax_loading{visibility:hidden;width:auto;}.frm_form_submit_style{height:auto;}a.frm_save_draft{cursor:pointer;}.with_frm_style a.frm_save_draft,.with_frm_style a.frm_start_over{font-size: var(--submit-font-size);font-weight: var(--submit-weight);}.horizontal_radio .frm_radio{margin:0 5px 0 0;}.horizontal_radio .frm_checkbox{margin:0;margin-right:12px;}.vertical_radio .frm_checkbox,.vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.horizontal_radio .frm_checkbox,.horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;padding-left: 0;}.with_frm_style .frm_radio{display: var(--radio-align);}.with_frm_style .frm_checkbox{display: var(--check-align);}.with_frm_style .vertical_radio .frm_checkbox,.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;margin-bottom: 10px;}.with_frm_style .horizontal_radio .frm_checkbox,.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.with_frm_style .frm_checkbox label,.with_frm_style .frm_radio label {display: inline-block;vertical-align: middle;white-space:normal;}.with_frm_style .frm_checkbox label input[type=checkbox],.with_frm_style .frm_radio label input[type=radio] {margin-right: 4px;}.with_frm_style .frm_checkbox label:not(.frm-label-disabled),.with_frm_style .frm_radio label:not(.frm-label-disabled) {cursor: pointer;}.with_frm_style .vertical_radio .frm_checkbox label,.with_frm_style .vertical_radio .frm_radio label{display: block;width: 100%;}.with_frm_style .frm_radio label,.with_frm_style .frm_checkbox label {font-size: var(--check-font-size);color: var(--check-label-color);font-weight: var(--check-weight);line-height: 1.3;}.with_frm_style .frm_radio input[type=radio],.with_frm_style .frm_checkbox input[type=checkbox] {font-size: var(--check-font-size);position: static;}.frm_file_container .frm_file_link,.with_frm_style .frm_radio label .frm_file_container,.with_frm_style .frm_checkbox label .frm_file_container{display:inline-block;margin:5px;vertical-align:middle;}.with_frm_style .frm_radio input[type=radio]{border-radius:50%;}.with_frm_style .frm_checkbox input[type=checkbox] {border-radius: calc(var(--border-radius) / 2) !important;}.with_frm_style .frm_radio input[type=radio],.with_frm_style .frm_checkbox input[type=checkbox]{appearance: none;background-color: var(--bg-color);flex: none;display:inline-block !important;width: 16px !important;min-width: 16px !important;height: 16px !important;color: var(--border-color);border: 1px solid currentColor;border-color: var(--border-color);vertical-align: middle;position: initial; padding: 0;margin: 0;}.frm_forms.with_frm_style .frm_fields_container .frm_radio input[type=radio]:not([disabled]):checked,.frm_forms.with_frm_style .frm_fields_container .frm_checkbox input[type=checkbox]:not([disabled]):checked {border-color: var(--border-color-active) !important;}.frm_forms.with_frm_style .frm_fields_container .frm_checkbox input[type=checkbox]:not([disabled]):checked {background-color: var(--border-color-active) !important;}.with_frm_style .frm_radio input[type=radio][disabled]:checked,.with_frm_style .frm_checkbox input[type=checkbox][disabled]:checked {border-color: var(--border-color) !important; }.with_frm_style .frm_checkbox input[type=checkbox][disabled]:checked {background-color: var(--border-color) !important;}.with_frm_style .frm_radio input[type=radio]:checked:before,.with_frm_style .frm_checkbox input[type=checkbox]:checked:before {position: static !important; content: \'\';display: block;}.frm_forms.with_frm_style .frm_checkbox input[type=checkbox]:before {width: 100% !important;height: 100% !important;background-image: url(\"data:image/svg+xml,%3Csvg width=\'12\' height=\'9\' viewBox=\'0 0 12 9\' fill=\'none\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cpath d=\'M10.6667 1.5L4.25001 7.91667L1.33334 5\' stroke=\'white\' stroke-width=\'2\' stroke-linecap=\'round\' stroke-linejoin=\'round\'/%3E%3C/svg%3E%0A\") !important;background-size: 9px !important;background-repeat: no-repeat !important;background-position: center !important;margin: 0;}.with_frm_style .frm_radio input[type=radio]:before {width: 8px;height: 8px;border-radius: 50%;background-color: var(--border-color-active);margin: 3px;}.with_frm_style .frm_radio input[type=radio][disabled]:before {background-color: var(--border-color);}.with_frm_style :invalid,.with_frm_style :-moz-ui-invalid{box-shadow:none;}.with_frm_style .frm_error_style img{padding-right:10px;vertical-align:middle;border:none;}.with_frm_style .frm_trigger{cursor:pointer;}.with_frm_style .frm_error_style,.with_frm_style .frm_message,.frm_success_style{border-radius:4px;padding:15px;}.with_frm_style .frm_message p {color: var(--success-text-color);margin-bottom: 0;}.with_frm_style .frm_message > p:first-of-type {margin-top: 0;}.with_frm_style .frm_message,.frm_success_style {margin: 5px 0 15px;border: 1px solid var(--success-border-color);background-color: var(--success-bg-color);color: var(--success-text-color);border-radius: var(--border-radius);font-size: var(--success-font-size);}.with_frm_style .frm_plain_success .frm_message {background-color: transparent;padding:0;border:none;font-size:inherit;color:inherit;}.with_frm_style .frm_plain_success .frm_message p {color:inherit;}.frm_form_fields_style,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_form_submit_style{width:auto;}.with_frm_style .frm_trigger span{float:left;}.with_frm_style table.frm-grid,#content .with_frm_style table.frm-grid{border-collapse:collapse;border:none;}.frm-grid td,.frm-grid th{padding:5px;border-width:1px;border-style:solid;border-color: var(--border-color);border-top:none;border-left:none;border-right:none;}.frm-alt-table {width:100%;border-collapse:separate;margin-top:0.5em;font-size:15px;border-width:1px;}.with_frm_style .frm-alt-table{border-color: var(--border-color);}.frm-alt-table th {width:200px;}.frm-alt-table tr {background-color:transparent;}.frm-alt-table th,.frm-alt-table td {background-color:transparent;vertical-align:top;text-align:left;padding:20px;border-color:transparent;}.frm-alt-table tr:nth-child(even) {background-color:#ecf0f5;}table.form_results.with_frm_style{border-style: solid;border-width: var(--field-border-width);border-color: var(--border-color);}table.form_results.with_frm_style tr td{text-align:left;padding:7px 9px;color: var(--text-color);border-top-style: solid;border-top-width: var(--field-border-width);border-top-color: var(--border-color);}table.form_results.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#fff;background-color:var(--bg-color);}table.form_results.with_frm_style tr.frm_odd,.frm-grid .frm_odd {background-color: var(--bg-color);}.frm_color_block {background-color:#ecf0f5;padding: 40px;}.with_frm_style .frm-show-form .frm_color_block.frm_section_heading h3,.frm_color_block.frm_section_heading h3 {border-width: 0 !important;}.frm_collapse .ui-icon{display:inline-block;}.frm_toggle_container{border:1px solid transparent;}.frm_toggle_container ul{margin:5px 0;padding-left:0;list-style-type:none;}.frm_toggle_container .frm_month_heading{text-indent:15px;}.frm_toggle_container .frm_month_listing{margin-left:40px;}#frm_loading{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:99999;}#frm_loading h3{font-weight:500;padding-bottom:15px;color:#fff;font-size:24px;}#frm_loading_content{position:fixed;top:20%;left:33%;width:33%;text-align:center;padding-top:30px;font-weight:bold;z-index:9999999;}#frm_loading img{max-width:100%;}#frm_loading .progress{border-radius:4px;box-shadow:0 1px 2px rgba(0, 0, 0, 0.1) inset;height:20px;margin-bottom:20px;overflow:hidden;}#frm_loading .progress.active .progress-bar{animation:2s linear 0s normal none infinite progress-bar-stripes;}#frm_loading .progress-striped .progress-bar {background-image: linear-gradient(45deg, var(--border-color) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, var(--border-color) 50%, var(--border-color) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));background-size:40px 40px;}#frm_loading .progress-bar {background-color: var(--bg-color);box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15) inset;float: left;height: 100%;line-height: 20px;text-align: center;transition: width 0.6s ease 0s;width: 100%;}.frm_image_from_url{height:50px;}.frm-loading-img{background:url(https://onlineincshop.com/wp-content/plugins/formidable/images/ajax_loader.gif) no-repeat center center;padding:6px 12px;}select.frm_loading_lookup{background-image: url(https://onlineincshop.com/wp-content/plugins/formidable/images/ajax_loader.gif) !important;background-position: 10px;background-repeat: no-repeat;color: transparent !important;}.frm_screen_reader {border: 0;clip-path: inset(50%);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px;word-wrap: normal !important; }.frm_screen_reader.frm_hidden{display:initial;}.frm_clear_none{clear:none;}.frm_clear{clear:both;}.frm_form_field.frm_alignright{float:right !important;}.with_frm_style .frm_form_field{clear:both;}.frm_combo_inputs_container,.frm_grid_container,.frm_form_fields .frm_section_heading,.frm_form_fields .frm_fields_container{display:grid;grid-template-columns: repeat(12, 1fr);grid-auto-rows: max-content;grid-gap: 0 2%;}.frm_combo_inputs_container > *,.frm_grid_container > *,.frm_section_heading > *,.frm_fields_container .frm_form_field,.frm_fields_container > *{grid-column: span 12 / span 12;}.frm_inline,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_inline{width:auto;grid-column: span 2 / span 2;}.frm6,.frm_half,.frm_form_field.frm_three_fifths, .frm_form_field.frm6,.frm_submit.frm6,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_half,.frm_submit.frm_half{grid-column:span 6 / span 6;}.frm4,.frm_third,.frm_form_field.frm_two_fifths, .frm_form_field.frm4,.frm_submit.frm4,.frm_form_field.frm_left_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_right_third,.frm_form_field.frm_first_third,.frm_form_field.frm_last_third{grid-column:span 4 / span 4;}.frm8,.frm_two_thirds,.frm_form_field.frm8,.frm_submit.frm8,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds{grid-column: span 8/span 8;}.frm3,.frm_fourth,.frm_form_field.frm3,.frm_submit.frm3,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth{grid-column: span 3/span 3;}.frm9,.frm_three_fourths,.frm_form_field.frm_four_fifths, .frm_form_field.frm9,.frm_submit.frm9,.frm_form_field.frm_three_fourths{grid-column: span 9/span 9;}.frm_form_field.frm_left_fifth,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_last_fifth{grid-column: span 2/span 2;}.frm2,.frm_sixth,.frm_form_field.frm2,.frm_submit.frm2,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_last_sixth{grid-column: span 2/span 2;}.frm10,.frm_form_field.frm10,.frm_submit.frm10{grid-column: span 10/span 10;}.frm1,.frm_form_field.frm1,.frm_submit.frm1,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_first_seventh,.frm_form_field.frm_last_seventh.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_eighth,.frm_form_field.frm_last_eighth{grid-column: span 1/span 1;}.frm5,.frm_form_field.frm5,.frm_submit.frm5{grid-column: span 5/span 5;}.frm7,.frm_form_field.frm7,.frm_submit.frm7{grid-column: span 7/span 7;}.frm11,.frm_form_field.frm11,.frm_submit.frm11{grid-column: span 11/span 11;}.frm12,.frm_full,.frm_full .wp-editor-wrap,.frm_full > input:not([type=\'checkbox\']):not([type=\'radio\']):not([type=\'button\']),.frm_full select,.frm_full textarea{width:100% !important;grid-column: span 12/span 12;box-sizing: border-box;}.frm_full .wp-editor-wrap input{width:auto !important;}.frm_first,.frm_form_field.frm_left_half,.frm_form_field.frm_left_third,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_left_fifth,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_half,.frm_form_field.frm_first_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_first_fourth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_first_seventh,.frm_form_field.frm_first_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_first{grid-column-start:1;}.frm_last,.frm_form_field.frm_last,.frm_form_field.frm_alignright{grid-column-end:-1;justify-content: end;}.with_frm_style.frm_rtl .frm_form_fields .star-rating{float:right;}.with_frm_style.frm_rtl .frm_grid .frm_primary_label,.with_frm_style.frm_rtl .frm_grid_first .frm_primary_label,.with_frm_style.frm_rtl .frm_grid_odd .frm_primary_label,.with_frm_style.frm_rtl .frm_grid .frm_radio,.with_frm_style.frm_rtl .frm_grid_first .frm_radio,.with_frm_style.frm_rtl .frm_grid_odd .frm_radio,.with_frm_style.frm_rtl .frm_grid .frm_checkbox,.with_frm_style.frm_rtl .frm_grid_first .frm_checkbox,.with_frm_style.frm_rtl .frm_grid_odd .frm_checkbox{float:right !important;margin-right:0 !important;}.with_frm_style.frm_rtl .frm_grid_first .frm_radio label input,.with_frm_style.frm_rtl .frm_grid .frm_radio label input,.with_frm_style.frm_rtl .frm_grid_odd .frm_radio label input,.with_frm_style.frm_rtl .frm_grid_first .frm_checkbox label input,.with_frm_style.frm_rtl .frm_grid .frm_checkbox label input,.with_frm_style.frm_rtl .frm_grid_odd .frm_checkbox label input{float:left;}.with_frm_style.frm_rtl .frm_catlevel_2,.with_frm_style.frm_rtl .frm_catlevel_3,.with_frm_style.frm_rtl .frm_catlevel_4,.with_frm_style.frm_rtl .frm_catlevel_5{margin-right:18px;}.with_frm_style.frm_rtl div > .frm_time_select{margin-right:5px;}.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{display: grid;grid-template-columns: 25% auto;width:100%;grid-auto-rows: min-content;}.frm_form_field.frm_right_container{grid-template-columns: auto 25%;}.frm_form_field.frm_inline_container{grid-template-columns: repeat(2, minmax(auto, max-content) );}.frm_form_field.frm_inline_container .frm_primary_label,.frm_form_field.frm_right_container .frm_primary_label,.frm_form_field.frm_left_container .frm_primary_label{margin-right:10px;grid-row:span 2/span 2;padding-top:4px;}.frm_form_field.frm_left_container .frm_primary_label{grid-column:1;grid-row:span 2/span 2; }.frm_form_field.frm_right_container .frm_primary_label{grid-column:2;grid-row:1;margin-right:0;margin-left:10px;}.frm_form_field.frm_inline_container .frm_description,.frm_form_field.frm_left_container .frm_description{grid-column:2;}.frm_form_field.frm_right_container .frm_description{grid-column:1;}.frm_conf_field.frm_left_container{grid-template-columns: 67%;}.frm_conf_field.frm_left_container .frm_description{grid-column:1;}.frm-fade-in {animation-name: fadeIn;animation-duration: 1s;animation-fill-mode: both;}@keyframes spin {0% { transform: rotate(0deg); }100% { transform: rotate(360deg); }}@keyframes fadeIn {   0% {opacity: 0;}   100% {opacity: 1;}}@media only screen and (max-width: 750px) {.frm_grid_container.frm_no_grid_750 > div{grid-column: span 12/span 12;}}@media only screen and (max-width: 600px) {.frm_section_heading > .frm_form_field,.frm_fields_container > .frm_submit,.frm_grid_container > .frm_form_field,.frm_fields_container > .frm_form_field{grid-column: 1 / span 12 !important;}.frm_grid_container.frm_no_grid_600,.frm_form_field.frm_inline_container,.frm_form_field.frm_right_container,.frm_form_field.frm_left_container{display:block;}}.frm_conf_field.frm_left_container .frm_primary_label{display:none;}.wp-editor-wrap *,.wp-editor-wrap *:after,.wp-editor-wrap *:before{box-sizing:content-box;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_first,.with_frm_style .frm_grid_odd{clear:both;margin-bottom:0 !important;padding:5px;border-width:1px;border-style:solid;border-color: var(--border-color);border-left:none;border-right:none;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_odd{border-top:none;}.frm_grid .frm_error,.frm_grid_first .frm_error,.frm_grid_odd .frm_error,.frm_grid .frm_limit_error,.frm_grid_first .frm_limit_error,.frm_grid_odd .frm_limit_error{display:none;}.frm_grid:after,.frm_grid_first:after,.frm_grid_odd:after{visibility:hidden;display:block;font-size:0;content:\" \";clear:both;height:0;}.frm_grid_first{margin-top:20px;}.frm_grid_first,.frm_grid_odd {background-color: var(--bg-color);}.frm_grid {background-color: var(--bg-color-active);}.with_frm_style .frm_grid.frm_blank_field,.with_frm_style .frm_grid_first.frm_blank_field,.with_frm_style .frm_grid_odd.frm_blank_field{background-color:var(--error-bg);border-color: var(--error-border);}.frm_grid .frm_primary_label,.frm_grid_first .frm_primary_label,.frm_grid_odd .frm_primary_label,.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{float:left !important;display:block;margin-top:0;margin-left:0 !important;}.frm_grid_first .frm_radio label,.frm_grid .frm_radio label,.frm_grid_odd .frm_radio label,.frm_grid_first .frm_checkbox label,.frm_grid .frm_checkbox label,.frm_grid_odd .frm_checkbox label{color:transparent;text-indent: -9999px;white-space:nowrap;text-align:left;}.frm_grid_first .frm_radio label input,.frm_grid .frm_radio label input,.frm_grid_odd .frm_radio label input,.frm_grid_first .frm_checkbox label input,.frm_grid .frm_checkbox label input,.frm_grid_odd .frm_checkbox label input{visibility:visible;margin:2px 0 0;float:right;}.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{display:inline;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox,.frm_grid_2 .frm_primary_label{width:48% !important;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox{margin-right:4%;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox,.frm_grid_3 .frm_primary_label{width:30% !important;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox{margin-right:3%;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{width:20% !important;}.frm_grid_4 .frm_primary_label{width:28% !important;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{margin-right:4%;}.frm_grid_5 .frm_primary_label,.frm_grid_7 .frm_primary_label{width:24% !important;}.frm_grid_5 .frm_radio,.frm_grid_5 .frm_checkbox{width:17% !important;margin-right:2%;}.frm_grid_6 .frm_primary_label{width:25% !important;}.frm_grid_6 .frm_radio,.frm_grid_6 .frm_checkbox{width:14% !important;margin-right:1%;}.frm_grid_7 .frm_primary_label{width:22% !important;}.frm_grid_7 .frm_radio,.frm_grid_7 .frm_checkbox{width:12% !important;margin-right:1%;}.frm_grid_8 .frm_primary_label{width:23% !important;}.frm_grid_8 .frm_radio,.frm_grid_8 .frm_checkbox{width:10% !important;margin-right:1%;}.frm_grid_9 .frm_primary_label{width:20% !important;}.frm_grid_9 .frm_radio,.frm_grid_9 .frm_checkbox{width:9% !important;margin-right:1%;}.frm_grid_10 .frm_primary_label{width:19% !important;}.frm_grid_10 .frm_radio,.frm_grid_10 .frm_checkbox{width:8% !important;margin-right:1%;}.frm_form_field.frm_inline_container .frm_opt_container,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_left_container .frm_opt_container{padding-top:4px;}.with_frm_style .frm_left_container > select.auto_width,.with_frm_style .frm_right_container > select.auto_width {width: max-content;}.with_frm_style .frm_right_container > .frm_primary_label,.with_frm_style .frm_right_container > select.auto_width {margin-left: auto;}.with_frm_style .frm_inline_container.frm_grid_first .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_odd .frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_first .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid_odd .frm_opt_container{margin-right:0;}.frm_form_field.frm_two_col .frm_opt_container,.frm_form_field.frm_three_col .frm_opt_container,.frm_form_field.frm_four_col .frm_opt_container{display: grid;grid-template-columns: repeat(2, 1fr);grid-auto-rows: max-content;grid-gap: 0 2.5%;}.frm_form_field.frm_three_col .frm_opt_container{grid-template-columns: repeat(3, 1fr);}.frm_form_field.frm_four_col .frm_opt_container{grid-template-columns: repeat(4, 1fr);}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox,.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{grid-column-end: span 1;}.frm_form_field .frm_checkbox,.frm_form_field .frm_radio {margin-top: 0;margin-bottom: 0;}.frm_form_field.frm_scroll_box .frm_opt_container{height:100px;overflow:auto;}.frm_html_container.frm_scroll_box,.frm_form_field.frm_html_scroll_box {height: 100px;overflow: auto;background-color: var(--bg-color);border-color: var(--border-color);border-width: var(--field-border-width);border-style: var(--field-border-style);border-radius: var(--border-radius);width: var(--field-width);max-width: 100%;font-size: var(--field-font-size);padding: var(--field-pad);box-sizing: border-box;outline: none;font-weight: normal;box-shadow: var(--box-shadow);}.frm_form_field.frm_total_big input,.frm_form_field.frm_total_big textarea,.frm_form_field.frm_total input,.frm_form_field.frm_total textarea{opacity:1;background-color:transparent !important;border:none !important;font-weight:bold;width:auto !important;height:auto !important;box-shadow:none !important;display:inline;-moz-appearance:textfield;padding:0;}.frm_form_field.frm_total_big input::-webkit-outer-spin-button,.frm_form_field.frm_total_big input::-webkit-inner-spin-button,.frm_form_field.frm_total input::-webkit-outer-spin-button,.frm_form_field.frm_total input::-webkit-inner-spin-button {-webkit-appearance: none;}.frm_form_field.frm_total_big input:focus,.frm_form_field.frm_total_big textarea:focus,.frm_form_field.frm_total input:focus,.frm_form_field.frm_total textarea:focus{background-color:transparent;border:none;box-shadow:none;}.frm_form_field.frm_label_justify .frm_primary_label{text-align:justify !important;}.frm_form_field.frm_capitalize input,.frm_form_field.frm_capitalize select,.frm_form_field.frm_capitalize .frm_opt_container label{text-transform:capitalize;}.frm_clearfix:after{content:\".\";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.frm_clearfix{display:block;}.with_frm_style .frm_combo_inputs_container > .frm_form_subfield-first,.with_frm_style .frm_combo_inputs_container > .frm_form_subfield-middle,.with_frm_style .frm_combo_inputs_container > .frm_form_subfield-last {margin-bottom: 0 !important;}@media only screen and (max-width: 900px) {.frm_form_field .frm_repeat_grid .frm_form_field.frm_sixth .frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh .frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth .frm_primary_label{display: block !important;}}@media only screen and (max-width: 600px) {.frm_form_field.frm_four_col .frm_opt_container{grid-template-columns: repeat(2, 1fr);}.with_frm_style .frm_repeat_inline,.with_frm_style .frm_repeat_grid{margin: 20px 0;}}@media only screen and (max-width: 500px) {.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width: auto;margin-right: 0;float: none;display:block;}.frm_form_field input[type=file] {max-width:220px;}.with_frm_style .frm-g-recaptcha > div > div,.with_frm_style .g-recaptcha > div > div{width:inherit !important;display:block;overflow:hidden;max-width:302px;border-right:1px solid #d3d3d3;border-radius:4px;box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);}.with_frm_style .g-recaptcha iframe,.with_frm_style .frm-g-recaptcha iframe{width:100%;}}.frm-card-element .sq-card-wrapper .sq-card-message {margin-bottom: 0;}.frm-card-errors:empty {margin: 0;}', 'off'),
(41267, 'rsssl_previous_version', '9.4.2', 'off'),
(16651, 'updraftplus_tour_cancelled_on', 'intro', 'yes');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(16677, 'updraft_last_backup', 'a:6:{s:26:\"nonincremental_backup_time\";i:1665989716;s:11:\"backup_time\";i:1665989716;s:12:\"backup_array\";a:11:{s:7:\"plugins\";a:1:{i:0;s:72:\"backup_2022-10-17-0655_Online_Shop_in_Dubai_UAE_be6215308b18-plugins.zip\";}s:12:\"plugins-size\";i:32062680;s:6:\"themes\";a:1:{i:0;s:71:\"backup_2022-10-17-0655_Online_Shop_in_Dubai_UAE_be6215308b18-themes.zip\";}s:11:\"themes-size\";i:10939676;s:7:\"uploads\";a:1:{i:0;s:72:\"backup_2022-10-17-0655_Online_Shop_in_Dubai_UAE_be6215308b18-uploads.zip\";}s:12:\"uploads-size\";i:41928274;s:6:\"others\";a:1:{i:0;s:71:\"backup_2022-10-17-0655_Online_Shop_in_Dubai_UAE_be6215308b18-others.zip\";}s:11:\"others-size\";i:5459;s:2:\"db\";s:66:\"backup_2022-10-17-0655_Online_Shop_in_Dubai_UAE_be6215308b18-db.gz\";s:7:\"db-size\";i:626488;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"58819559359b84b2bc84bb6cbbbaf1dcce514fb4\";s:7:\"themes0\";s:40:\"fb5ac129faf6b5b7931d5def8b6a96d0e8db32e8\";s:8:\"uploads0\";s:40:\"d3df5a71af174da9772838af3b74f428dd1124a9\";s:7:\"others0\";s:40:\"721675f2a5ce61b4c8d53a4a5ff82e320f2b4db9\";s:3:\"db0\";s:40:\"4893e6320d303ab107f9ba6ab3c1cbd390cf66a8\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"5c9e14baa7c0b7725e12d301a1040e313a9405eb2a66c2fd5e422575473f502b\";s:7:\"themes0\";s:64:\"0fb9710ecd63dedfec894dbb73263a6c17a0c650ef31b53018ae28a2167e6d1a\";s:8:\"uploads0\";s:64:\"81698e1680ac87bee893c0d0269d8c5969daf0a8e99fd56d3134698451e748de\";s:7:\"others0\";s:64:\"4870cee3ac9fb9ab016bb38adbcef1cdf60fd7e470b039d29588182a68251ca0\";s:3:\"db0\";s:64:\"b1764246fc17dff3e9a45f7be98ee82e157f03d101bd1eb8e3e95630fbef40fe\";}}}s:7:\"success\";i:1;s:6:\"errors\";a:0:{}s:12:\"backup_nonce\";s:12:\"be6215308b18\";}', 'yes'),
(16614, 'wbcr_io_image_optimization_server', 'server_2', 'yes'),
(16615, 'wbcr_io_backup_origin_images', '1', 'yes'),
(16616, 'wbcr_io_save_exif_data', '1', 'yes'),
(16617, 'wbcr_io_db_version', '2', 'yes'),
(16618, 'wbcr_io_plugin_activated', '1665989493', 'yes'),
(16619, 'wbcr_io_plugin_version', '1.9.0', 'yes'),
(16686, 'perfmatters_options', 'a:15:{s:16:\"disable_rest_api\";s:0:\"\";s:30:\"disable_google_maps_exclusions\";s:0:\"\";s:17:\"disable_heartbeat\";s:0:\"\";s:19:\"heartbeat_frequency\";s:0:\"\";s:20:\"limit_post_revisions\";s:0:\"\";s:17:\"autosave_interval\";s:0:\"\";s:9:\"login_url\";s:0:\"\";s:18:\"login_url_behavior\";s:0:\"\";s:17:\"login_url_message\";s:0:\"\";s:6:\"assets\";a:13:{s:8:\"defer_js\";s:1:\"1\";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:13:\"delay_timeout\";s:0:\"\";s:25:\"rucss_stylesheet_behavior\";s:0:\"\";s:26:\"rucss_excluded_stylesheets\";s:0:\"\";s:24:\"rucss_excluded_selectors\";s:0:\"\";s:11:\"header_code\";s:0:\"\";s:9:\"body_code\";s:0:\"\";s:11:\"footer_code\";s:0:\"\";}s:7:\"preload\";a:4:{s:7:\"preload\";a:0:{}s:15:\"critical_images\";s:0:\"\";s:10:\"preconnect\";a:0:{}s:12:\"dns_prefetch\";s:0:\"\";}s:8:\"lazyload\";a:3:{s:22:\"exclude_leading_images\";s:0:\"\";s:23:\"lazy_loading_exclusions\";s:0:\"\";s:9:\"threshold\";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:5:{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:\"\";}}', 'yes'),
(16687, 'perfmatters_tools', 'a:0:{}', 'yes'),
(16688, 'perfmatters_version', '1.8.6', 'no'),
(252204, 'wbcr_io_server_2_quota_limit', '1000', 'auto'),
(336113, 'factory_plugin_versions', 'a:0:{}', 'auto'),
(16633, 'wbcr_io_original_size', '8553542', 'yes'),
(16634, 'wbcr_io_optimized_size', '4901882', 'yes'),
(16635, 'wbcr_io_webp_optimized_size', '0', 'yes');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(35192, 'loginizer_login_attempt_stats', 'a:3139:{i:1681027200;a:1:{i:0;i:3;}i:1681030800;a:1:{i:0;i:1;}i:1681034400;a:1:{i:0;i:1;}i:1681041600;a:1:{i:0;i:1;}i:1681045200;a:1:{i:0;i:2;}i:1681048800;a:1:{i:0;i:3;}i:1681059600;a:1:{i:0;i:2;}i:1681088400;a:1:{i:0;i:1;}i:1681102800;a:1:{i:0;i:1;}i:1681106400;a:1:{i:0;i:7;}i:1681110000;a:1:{i:0;i:5;}i:1681113600;a:1:{i:0;i:5;}i:1681117200;a:1:{i:0;i:9;}i:1681120800;a:1:{i:0;i:5;}i:1681124400;a:1:{i:0;i:1;}i:1681128000;a:1:{i:0;i:1;}i:1681131600;a:1:{i:0;i:3;}i:1681138800;a:1:{i:0;i:1;}i:1681192800;a:1:{i:0;i:2;}i:1681196400;a:1:{i:0;i:1;}i:1681203600;a:1:{i:0;i:2;}i:1681214400;a:1:{i:0;i:2;}i:1681221600;a:1:{i:0;i:1;}i:1681225200;a:1:{i:0;i:2;}i:1681239600;a:1:{i:0;i:2;}i:1681243200;a:1:{i:0;i:2;}i:1681254000;a:1:{i:0;i:1;}i:1681261200;a:1:{i:1;i:1;}i:1681264800;a:1:{i:0;i:2;}i:1681268400;a:1:{i:0;i:2;}i:1681272000;a:2:{i:1;i:1;i:0;i:3;}i:1681279200;a:1:{i:0;i:2;}i:1681282800;a:2:{i:0;i:3;i:1;i:1;}i:1681286400;a:1:{i:0;i:1;}i:1681290000;a:1:{i:0;i:3;}i:1681297200;a:1:{i:0;i:1;}i:1681300800;a:1:{i:0;i:2;}i:1681304400;a:1:{i:0;i:1;}i:1681308000;a:1:{i:0;i:1;}i:1681311600;a:2:{i:1;i:1;i:0;i:3;}i:1681318800;a:1:{i:0;i:1;}i:1681322400;a:1:{i:0;i:1;}i:1681326000;a:1:{i:0;i:2;}i:1681329600;a:2:{i:1;i:1;i:0;i:2;}i:1681333200;a:1:{i:0;i:1;}i:1681336800;a:2:{i:1;i:1;i:0;i:3;}i:1681347600;a:1:{i:0;i:6;}i:1681354800;a:1:{i:0;i:1;}i:1681362000;a:1:{i:0;i:4;}i:1681369200;a:1:{i:0;i:1;}i:1681376400;a:1:{i:0;i:1;}i:1681390800;a:1:{i:1;i:1;}i:1681394400;a:1:{i:0;i:1;}i:1681398000;a:1:{i:0;i:3;}i:1681405200;a:1:{i:0;i:2;}i:1681408800;a:1:{i:0;i:1;}i:1681412400;a:1:{i:0;i:1;}i:1681416000;a:2:{i:0;i:2;i:1;i:1;}i:1681419600;a:1:{i:0;i:1;}i:1681423200;a:1:{i:1;i:1;}i:1681502400;a:1:{i:1;i:1;}i:1681506000;a:1:{i:0;i:3;}i:1681534800;a:1:{i:1;i:1;}i:1681542000;a:1:{i:1;i:1;}i:1681617600;a:1:{i:1;i:1;}i:1681660800;a:1:{i:0;i:3;}i:1681664400;a:1:{i:1;i:1;}i:1681682400;a:1:{i:1;i:1;}i:1681761600;a:1:{i:0;i:4;}i:1681765200;a:1:{i:0;i:5;}i:1681768800;a:1:{i:0;i:5;}i:1681772400;a:1:{i:0;i:6;}i:1681776000;a:1:{i:0;i:5;}i:1681779600;a:1:{i:0;i:6;}i:1681783200;a:1:{i:0;i:5;}i:1681786800;a:1:{i:0;i:5;}i:1681790400;a:1:{i:0;i:4;}i:1681794000;a:1:{i:0;i:3;}i:1681797600;a:1:{i:0;i:7;}i:1681801200;a:1:{i:0;i:5;}i:1681804800;a:1:{i:0;i:3;}i:1681808400;a:1:{i:0;i:4;}i:1681812000;a:1:{i:0;i:2;}i:1681822800;a:1:{i:1;i:1;}i:1681905600;a:1:{i:1;i:1;}i:1681912800;a:1:{i:1;i:1;}i:1681938000;a:1:{i:1;i:1;}i:1681977600;a:1:{i:1;i:1;}i:1681984800;a:1:{i:1;i:1;}i:1682010000;a:1:{i:1;i:1;}i:1682024400;a:1:{i:1;i:1;}i:1682031600;a:1:{i:0;i:6;}i:1682042400;a:1:{i:1;i:1;}i:1682143200;a:2:{i:1;i:1;i:0;i:6;}i:1682146800;a:1:{i:0;i:10;}i:1682150400;a:1:{i:0;i:11;}i:1682154000;a:1:{i:0;i:9;}i:1682157600;a:1:{i:0;i:11;}i:1682161200;a:1:{i:0;i:11;}i:1682164800;a:1:{i:0;i:13;}i:1682168400;a:2:{i:0;i:9;i:1;i:1;}i:1682172000;a:1:{i:0;i:8;}i:1682175600;a:1:{i:0;i:7;}i:1682179200;a:1:{i:0;i:9;}i:1682182800;a:1:{i:0;i:11;}i:1682204400;a:1:{i:1;i:1;}i:1682330400;a:2:{i:1;i:1;i:0;i:3;}i:1682341200;a:1:{i:1;i:1;}i:1682366400;a:2:{i:1;i:1;i:0;i:1;}i:1682398800;a:1:{i:0;i:1;}i:1682517600;a:1:{i:1;i:1;}i:1682542800;a:1:{i:0;i:3;}i:1682546400;a:1:{i:0;i:1;}i:1682550000;a:1:{i:0;i:1;}i:1682557200;a:1:{i:0;i:2;}i:1682560800;a:1:{i:0;i:1;}i:1682564400;a:1:{i:0;i:4;}i:1682571600;a:1:{i:0;i:2;}i:1682618400;a:1:{i:0;i:8;}i:1682622000;a:1:{i:0;i:9;}i:1682625600;a:1:{i:0;i:7;}i:1682629200;a:1:{i:0;i:9;}i:1682632800;a:1:{i:0;i:8;}i:1682636400;a:1:{i:0;i:4;}i:1682640000;a:1:{i:0;i:2;}i:1682643600;a:1:{i:0;i:12;}i:1682647200;a:1:{i:0;i:6;}i:1682650800;a:1:{i:0;i:8;}i:1682654400;a:1:{i:0;i:6;}i:1682676000;a:1:{i:1;i:1;}i:1682704800;a:1:{i:0;i:2;}i:1682708400;a:1:{i:0;i:1;}i:1682712000;a:1:{i:0;i:1;}i:1682726400;a:1:{i:0;i:4;}i:1682730000;a:1:{i:0;i:1;}i:1682733600;a:1:{i:0;i:2;}i:1682737200;a:1:{i:0;i:2;}i:1682744400;a:1:{i:0;i:3;}i:1682748000;a:1:{i:0;i:2;}i:1682920800;a:1:{i:0;i:3;}i:1683014400;a:1:{i:0;i:4;}i:1683018000;a:1:{i:0;i:8;}i:1683586800;a:1:{i:0;i:4;}i:1683590400;a:1:{i:0;i:2;}i:1683594000;a:1:{i:0;i:3;}i:1683597600;a:1:{i:0;i:3;}i:1683601200;a:1:{i:0;i:4;}i:1683604800;a:1:{i:0;i:3;}i:1683608400;a:1:{i:0;i:5;}i:1683612000;a:1:{i:0;i:7;}i:1683615600;a:1:{i:0;i:7;}i:1683619200;a:1:{i:0;i:4;}i:1683622800;a:1:{i:0;i:6;}i:1683626400;a:1:{i:0;i:4;}i:1683630000;a:1:{i:0;i:5;}i:1683633600;a:1:{i:0;i:1;}i:1683648000;a:1:{i:0;i:2;}i:1683651600;a:1:{i:0;i:1;}i:1683655200;a:1:{i:0;i:1;}i:1683658800;a:1:{i:0;i:1;}i:1683662400;a:1:{i:0;i:1;}i:1683666000;a:1:{i:0;i:1;}i:1683669600;a:1:{i:0;i:1;}i:1683676800;a:1:{i:0;i:1;}i:1683680400;a:1:{i:0;i:1;}i:1683687600;a:1:{i:0;i:1;}i:1683691200;a:1:{i:0;i:1;}i:1683694800;a:1:{i:0;i:1;}i:1683709200;a:1:{i:0;i:1;}i:1683712800;a:1:{i:0;i:1;}i:1683716400;a:1:{i:0;i:1;}i:1683723600;a:1:{i:0;i:1;}i:1683752400;a:1:{i:0;i:1;}i:1683766800;a:1:{i:0;i:1;}i:1683774000;a:1:{i:0;i:1;}i:1683777600;a:1:{i:0;i:1;}i:1683784800;a:1:{i:0;i:1;}i:1683792000;a:1:{i:0;i:1;}i:1683874800;a:1:{i:0;i:3;}i:1683943200;a:1:{i:0;i:3;}i:1683968400;a:1:{i:0;i:3;}i:1684191600;a:1:{i:0;i:6;}i:1684605600;a:1:{i:0;i:3;}i:1684609200;a:1:{i:0;i:3;}i:1684612800;a:1:{i:0;i:3;}i:1684620000;a:1:{i:0;i:3;}i:1684623600;a:1:{i:0;i:3;}i:1684630800;a:1:{i:0;i:3;}i:1684634400;a:1:{i:0;i:3;}i:1684638000;a:1:{i:0;i:3;}i:1684641600;a:1:{i:0;i:3;}i:1684645200;a:1:{i:0;i:3;}i:1684821600;a:1:{i:0;i:3;}i:1685178000;a:1:{i:0;i:1;}i:1685181600;a:1:{i:0;i:4;}i:1685185200;a:1:{i:0;i:5;}i:1685188800;a:1:{i:0;i:6;}i:1685192400;a:1:{i:0;i:8;}i:1685196000;a:1:{i:0;i:11;}i:1685199600;a:1:{i:0;i:8;}i:1685203200;a:1:{i:0;i:6;}i:1685206800;a:1:{i:0;i:6;}i:1685210400;a:1:{i:0;i:1;}i:1685242800;a:1:{i:0;i:1;}i:1685246400;a:1:{i:0;i:1;}i:1685253600;a:1:{i:0;i:19;}i:1685257200;a:1:{i:0;i:9;}i:1685260800;a:1:{i:0;i:7;}i:1685264400;a:1:{i:0;i:15;}i:1685268000;a:1:{i:0;i:13;}i:1685271600;a:1:{i:0;i:9;}i:1685275200;a:1:{i:0;i:10;}i:1685278800;a:1:{i:0;i:10;}i:1685282400;a:1:{i:0;i:3;}i:1685286000;a:1:{i:0;i:4;}i:1685289600;a:1:{i:0;i:11;}i:1685293200;a:1:{i:0;i:11;}i:1685296800;a:1:{i:0;i:4;}i:1685300400;a:1:{i:0;i:1;}i:1685304000;a:1:{i:0;i:1;}i:1685307600;a:1:{i:0;i:1;}i:1685311200;a:1:{i:0;i:1;}i:1685314800;a:1:{i:0;i:1;}i:1685322000;a:1:{i:0;i:1;}i:1685325600;a:1:{i:0;i:1;}i:1685332800;a:1:{i:0;i:1;}i:1685340000;a:1:{i:0;i:6;}i:1685343600;a:1:{i:0;i:3;}i:1685347200;a:1:{i:0;i:6;}i:1685350800;a:2:{i:0;i:6;i:1;i:1;}i:1685354400;a:1:{i:0;i:7;}i:1685358000;a:1:{i:0;i:8;}i:1685361600;a:1:{i:0;i:5;}i:1685365200;a:1:{i:0;i:7;}i:1685368800;a:1:{i:0;i:6;}i:1685372400;a:1:{i:0;i:9;}i:1685376000;a:1:{i:0;i:8;}i:1685379600;a:1:{i:0;i:5;}i:1685383200;a:1:{i:0;i:5;}i:1685386800;a:1:{i:0;i:16;}i:1685390400;a:1:{i:0;i:9;}i:1685394000;a:1:{i:0;i:8;}i:1685397600;a:1:{i:0;i:8;}i:1685401200;a:1:{i:0;i:4;}i:1685404800;a:1:{i:0;i:5;}i:1685408400;a:1:{i:0;i:8;}i:1685412000;a:1:{i:0;i:4;}i:1685415600;a:1:{i:0;i:4;}i:1685419200;a:1:{i:0;i:3;}i:1685422800;a:1:{i:0;i:6;}i:1685426400;a:1:{i:0;i:9;}i:1685430000;a:1:{i:0;i:16;}i:1685433600;a:1:{i:0;i:15;}i:1685437200;a:1:{i:0;i:12;}i:1685440800;a:1:{i:0;i:12;}i:1685444400;a:1:{i:0;i:5;}i:1685448000;a:1:{i:0;i:11;}i:1685451600;a:1:{i:0;i:9;}i:1685455200;a:1:{i:0;i:12;}i:1685458800;a:1:{i:0;i:7;}i:1685462400;a:1:{i:0;i:5;}i:1685466000;a:1:{i:0;i:5;}i:1685469600;a:1:{i:0;i:4;}i:1685473200;a:1:{i:0;i:6;}i:1685476800;a:1:{i:0;i:6;}i:1685480400;a:1:{i:0;i:9;}i:1685484000;a:1:{i:0;i:2;}i:1685487600;a:1:{i:0;i:3;}i:1685491200;a:1:{i:0;i:4;}i:1685494800;a:1:{i:0;i:6;}i:1685498400;a:1:{i:0;i:5;}i:1685502000;a:1:{i:0;i:8;}i:1685505600;a:1:{i:0;i:5;}i:1685509200;a:1:{i:0;i:3;}i:1685512800;a:1:{i:0;i:2;}i:1685516400;a:1:{i:0;i:2;}i:1685520000;a:1:{i:0;i:4;}i:1685523600;a:1:{i:0;i:5;}i:1685527200;a:1:{i:0;i:4;}i:1685530800;a:1:{i:0;i:1;}i:1685534400;a:1:{i:0;i:6;}i:1685541600;a:1:{i:0;i:3;}i:1685548800;a:1:{i:0;i:3;}i:1685563200;a:1:{i:0;i:3;}i:1685570400;a:1:{i:0;i:3;}i:1685577600;a:1:{i:0;i:3;}i:1685595600;a:1:{i:0;i:3;}i:1685617200;a:1:{i:1;i:1;}i:1685638800;a:1:{i:0;i:1;}i:1685653200;a:1:{i:0;i:3;}i:1685678400;a:1:{i:0;i:3;}i:1685862000;a:1:{i:0;i:3;}i:1685883600;a:1:{i:0;i:3;}i:1685890800;a:1:{i:0;i:2;}i:1685898000;a:1:{i:0;i:3;}i:1685908800;a:1:{i:0;i:1;}i:1685916000;a:1:{i:0;i:4;}i:1685991600;a:1:{i:0;i:1;}i:1685998800;a:1:{i:0;i:2;}i:1686006000;a:1:{i:0;i:2;}i:1686024000;a:1:{i:0;i:1;}i:1686034800;a:1:{i:0;i:4;}i:1686042000;a:1:{i:0;i:1;}i:1686049200;a:1:{i:0;i:2;}i:1686060000;a:1:{i:0;i:1;}i:1686067200;a:1:{i:0;i:1;}i:1686078000;a:1:{i:0;i:2;}i:1686088800;a:1:{i:0;i:2;}i:1686099600;a:1:{i:0;i:4;}i:1686110400;a:1:{i:0;i:3;}i:1686121200;a:1:{i:0;i:3;}i:1686128400;a:1:{i:0;i:2;}i:1686135600;a:1:{i:0;i:4;}i:1686146400;a:1:{i:0;i:6;}i:1686153600;a:1:{i:0;i:2;}i:1686207600;a:1:{i:0;i:1;}i:1686214800;a:1:{i:0;i:2;}i:1686222000;a:1:{i:0;i:1;}i:1686225600;a:1:{i:0;i:3;}i:1686229200;a:1:{i:0;i:3;}i:1686232800;a:1:{i:0;i:3;}i:1686240000;a:1:{i:0;i:7;}i:1686243600;a:1:{i:0;i:3;}i:1686290400;a:1:{i:0;i:3;}i:1686297600;a:1:{i:0;i:3;}i:1686304800;a:1:{i:0;i:5;}i:1686312000;a:1:{i:0;i:3;}i:1686315600;a:1:{i:0;i:3;}i:1686322800;a:1:{i:0;i:2;}i:1686333600;a:1:{i:0;i:1;}i:1686384000;a:1:{i:0;i:5;}i:1686394800;a:1:{i:0;i:2;}i:1686405600;a:1:{i:0;i:5;}i:1686434400;a:1:{i:0;i:2;}i:1686445200;a:1:{i:0;i:1;}i:1686459600;a:1:{i:0;i:1;}i:1686466800;a:1:{i:0;i:3;}i:1686470400;a:1:{i:0;i:2;}i:1686477600;a:1:{i:0;i:2;}i:1686484800;a:1:{i:0;i:2;}i:1686492000;a:1:{i:0;i:2;}i:1686517200;a:1:{i:0;i:1;}i:1686528000;a:1:{i:0;i:1;}i:1686538800;a:1:{i:0;i:2;}i:1686553200;a:1:{i:0;i:2;}i:1686560400;a:1:{i:0;i:3;}i:1686578400;a:1:{i:0;i:2;}i:1686589200;a:1:{i:0;i:1;}i:1686600000;a:1:{i:0;i:2;}i:1686610800;a:1:{i:0;i:3;}i:1686621600;a:1:{i:0;i:2;}i:1686682800;a:1:{i:0;i:6;}i:1686693600;a:1:{i:0;i:1;}i:1686704400;a:1:{i:0;i:3;}i:1686711600;a:1:{i:0;i:2;}i:1686747600;a:1:{i:0;i:1;}i:1686751200;a:1:{i:0;i:1;}i:1686765600;a:1:{i:0;i:2;}i:1686783600;a:1:{i:0;i:4;}i:1686801600;a:1:{i:0;i:3;}i:1686808800;a:1:{i:0;i:2;}i:1686816000;a:1:{i:0;i:1;}i:1686837600;a:1:{i:0;i:1;}i:1686844800;a:1:{i:0;i:1;}i:1686859200;a:1:{i:0;i:7;}i:1686866400;a:1:{i:0;i:1;}i:1686873600;a:1:{i:0;i:1;}i:1686884400;a:1:{i:0;i:3;}i:1686895200;a:1:{i:0;i:1;}i:1687057200;a:1:{i:1;i:1;}i:1687107600;a:1:{i:1;i:1;}i:1687111200;a:1:{i:0;i:2;}i:1687240800;a:1:{i:0;i:1;}i:1687255200;a:1:{i:0;i:1;}i:1687262400;a:1:{i:0;i:1;}i:1687266000;a:1:{i:0;i:1;}i:1687273200;a:1:{i:0;i:1;}i:1687280400;a:1:{i:0;i:1;}i:1687284000;a:1:{i:0;i:6;}i:1687327200;a:1:{i:0;i:1;}i:1687334400;a:1:{i:0;i:1;}i:1687341600;a:1:{i:0;i:1;}i:1687348800;a:1:{i:0;i:1;}i:1687352400;a:1:{i:0;i:1;}i:1687356000;a:1:{i:0;i:1;}i:1687363200;a:1:{i:0;i:1;}i:1687366800;a:1:{i:0;i:1;}i:1687413600;a:1:{i:0;i:1;}i:1687420800;a:1:{i:0;i:1;}i:1687424400;a:1:{i:0;i:1;}i:1687431600;a:1:{i:0;i:1;}i:1687435200;a:1:{i:0;i:1;}i:1687438800;a:1:{i:0;i:2;}i:1687446000;a:1:{i:0;i:2;}i:1687464000;a:1:{i:0;i:2;}i:1687471200;a:1:{i:0;i:1;}i:1687478400;a:1:{i:0;i:1;}i:1687482000;a:1:{i:0;i:1;}i:1687489200;a:1:{i:0;i:1;}i:1687492800;a:1:{i:0;i:2;}i:1687500000;a:1:{i:0;i:2;}i:1687503600;a:1:{i:0;i:1;}i:1687510800;a:1:{i:0;i:1;}i:1687514400;a:1:{i:0;i:1;}i:1687525200;a:1:{i:0;i:2;}i:1687528800;a:1:{i:0;i:2;}i:1687536000;a:1:{i:0;i:2;}i:1687539600;a:1:{i:0;i:1;}i:1687644000;a:1:{i:1;i:1;}i:1687701600;a:1:{i:1;i:1;}i:1687730400;a:1:{i:1;i:1;}i:1687795200;a:1:{i:1;i:1;}i:1687856400;a:1:{i:1;i:1;}i:1687975200;a:1:{i:0;i:1;}i:1687978800;a:1:{i:0;i:1;}i:1688007600;a:1:{i:0;i:1;}i:1688018400;a:1:{i:0;i:1;}i:1688036400;a:1:{i:0;i:1;}i:1688043600;a:1:{i:0;i:1;}i:1688050800;a:1:{i:0;i:1;}i:1688054400;a:1:{i:0;i:2;}i:1688072400;a:1:{i:1;i:1;}i:1688076000;a:1:{i:0;i:1;}i:1688083200;a:1:{i:0;i:1;}i:1688086800;a:1:{i:0;i:1;}i:1688097600;a:1:{i:0;i:1;}i:1688108400;a:1:{i:0;i:1;}i:1688122800;a:1:{i:0;i:1;}i:1688137200;a:1:{i:0;i:1;}i:1688144400;a:1:{i:0;i:1;}i:1688155200;a:1:{i:0;i:1;}i:1688158800;a:1:{i:1;i:1;}i:1688162400;a:1:{i:0;i:1;}i:1688169600;a:1:{i:0;i:2;}i:1688176800;a:1:{i:0;i:1;}i:1688184000;a:1:{i:0;i:1;}i:1688187600;a:1:{i:0;i:1;}i:1688194800;a:1:{i:0;i:1;}i:1688202000;a:1:{i:0;i:1;}i:1688209200;a:1:{i:0;i:1;}i:1688216400;a:1:{i:0;i:1;}i:1688223600;a:1:{i:0;i:1;}i:1688234400;a:1:{i:1;i:1;}i:1688288400;a:1:{i:0;i:1;}i:1688299200;a:1:{i:0;i:1;}i:1688306400;a:1:{i:0;i:1;}i:1688310000;a:1:{i:1;i:1;}i:1688317200;a:1:{i:0;i:1;}i:1688331600;a:1:{i:1;i:1;}i:1688353200;a:1:{i:1;i:1;}i:1688364000;a:1:{i:0;i:1;}i:1688367600;a:1:{i:0;i:1;}i:1688374800;a:1:{i:0;i:1;}i:1688378400;a:2:{i:0;i:2;i:1;i:1;}i:1688382000;a:1:{i:0;i:1;}i:1688385600;a:2:{i:1;i:1;i:0;i:2;}i:1688389200;a:1:{i:0;i:1;}i:1688396400;a:1:{i:0;i:1;}i:1688407200;a:1:{i:0;i:1;}i:1688414400;a:1:{i:0;i:1;}i:1688421600;a:1:{i:0;i:1;}i:1688428800;a:1:{i:0;i:1;}i:1688432400;a:1:{i:1;i:1;}i:1688436000;a:1:{i:0;i:1;}i:1688450400;a:1:{i:0;i:1;}i:1688457600;a:1:{i:0;i:1;}i:1688475600;a:1:{i:0;i:1;}i:1688490000;a:1:{i:0;i:1;}i:1688497200;a:1:{i:0;i:1;}i:1688508000;a:1:{i:0;i:1;}i:1688511600;a:1:{i:0;i:1;}i:1688522400;a:1:{i:0;i:2;}i:1688533200;a:1:{i:1;i:1;}i:1688544000;a:1:{i:0;i:1;}i:1688551200;a:1:{i:0;i:1;}i:1688558400;a:1:{i:0;i:3;}i:1688569200;a:1:{i:0;i:1;}i:1688576400;a:1:{i:0;i:1;}i:1688583600;a:1:{i:0;i:1;}i:1688598000;a:1:{i:0;i:1;}i:1688612400;a:1:{i:0;i:1;}i:1688619600;a:1:{i:0;i:1;}i:1688626800;a:1:{i:0;i:1;}i:1688641200;a:1:{i:0;i:1;}i:1688655600;a:1:{i:0;i:1;}i:1688670000;a:1:{i:0;i:1;}i:1688677200;a:1:{i:0;i:1;}i:1688680800;a:1:{i:0;i:1;}i:1688684400;a:1:{i:0;i:1;}i:1688698800;a:1:{i:0;i:1;}i:1688731200;a:1:{i:0;i:1;}i:1688752800;a:1:{i:0;i:1;}i:1688770800;a:1:{i:0;i:1;}i:1688774400;a:1:{i:1;i:1;}i:1688778000;a:1:{i:0;i:1;}i:1688781600;a:1:{i:0;i:2;}i:1688788800;a:1:{i:0;i:1;}i:1688796000;a:1:{i:0;i:1;}i:1688810400;a:1:{i:1;i:1;}i:1688821200;a:2:{i:1;i:1;i:0;i:1;}i:1688828400;a:1:{i:1;i:1;}i:1688832000;a:1:{i:0;i:1;}i:1688839200;a:1:{i:0;i:1;}i:1688846400;a:1:{i:0;i:1;}i:1688853600;a:1:{i:0;i:1;}i:1688857200;a:1:{i:0;i:6;}i:1688864400;a:1:{i:0;i:1;}i:1688871600;a:1:{i:0;i:1;}i:1688875200;a:1:{i:1;i:1;}i:1688925600;a:1:{i:0;i:1;}i:1688936400;a:1:{i:0;i:1;}i:1688943600;a:1:{i:0;i:1;}i:1688954400;a:1:{i:0;i:1;}i:1688961600;a:1:{i:0;i:1;}i:1688965200;a:1:{i:1;i:1;}i:1688972400;a:1:{i:0;i:1;}i:1688976000;a:1:{i:0;i:3;}i:1688979600;a:1:{i:0;i:1;}i:1688990400;a:1:{i:0;i:1;}i:1689019200;a:1:{i:0;i:1;}i:1689026400;a:1:{i:0;i:1;}i:1689055200;a:1:{i:0;i:1;}i:1689066000;a:1:{i:0;i:2;}i:1689109200;a:1:{i:1;i:1;}i:1689163200;a:1:{i:0;i:1;}i:1689170400;a:1:{i:0;i:1;}i:1689184800;a:1:{i:0;i:1;}i:1689192000;a:1:{i:0;i:1;}i:1689199200;a:1:{i:0;i:1;}i:1689202800;a:1:{i:0;i:1;}i:1689217200;a:1:{i:0;i:1;}i:1689224400;a:1:{i:0;i:1;}i:1689228000;a:1:{i:0;i:1;}i:1689238800;a:1:{i:0;i:1;}i:1689246000;a:1:{i:0;i:2;}i:1689253200;a:1:{i:0;i:1;}i:1689256800;a:1:{i:0;i:1;}i:1689264000;a:1:{i:0;i:1;}i:1689325200;a:1:{i:0;i:1;}i:1689332400;a:1:{i:0;i:2;}i:1689336000;a:1:{i:0;i:1;}i:1689346800;a:1:{i:0;i:1;}i:1689350400;a:1:{i:0;i:1;}i:1689354000;a:1:{i:0;i:1;}i:1689404400;a:1:{i:0;i:1;}i:1689411600;a:1:{i:0;i:1;}i:1689418800;a:1:{i:0;i:5;}i:1689422400;a:1:{i:0;i:1;}i:1689426000;a:1:{i:0;i:1;}i:1689429600;a:1:{i:0;i:1;}i:1689436800;a:1:{i:0;i:1;}i:1689440400;a:1:{i:0;i:1;}i:1689472800;a:1:{i:1;i:1;}i:1689487200;a:1:{i:1;i:1;}i:1689490800;a:1:{i:0;i:1;}i:1689494400;a:1:{i:0;i:1;}i:1689501600;a:1:{i:0;i:1;}i:1689505200;a:1:{i:0;i:1;}i:1689508800;a:1:{i:0;i:1;}i:1689516000;a:1:{i:0;i:1;}i:1689519600;a:1:{i:0;i:1;}i:1689526800;a:1:{i:0;i:1;}i:1689530400;a:1:{i:0;i:4;}i:1689537600;a:1:{i:0;i:1;}i:1689544800;a:1:{i:0;i:1;}i:1689548400;a:1:{i:0;i:1;}i:1689559200;a:1:{i:0;i:1;}i:1689562800;a:1:{i:0;i:1;}i:1689580800;a:1:{i:0;i:5;}i:1689584400;a:1:{i:0;i:8;}i:1689588000;a:1:{i:0;i:3;}i:1689591600;a:1:{i:0;i:8;}i:1689595200;a:1:{i:0;i:10;}i:1689616800;a:1:{i:0;i:1;}i:1689620400;a:1:{i:0;i:6;}i:1689624000;a:1:{i:0;i:8;}i:1689627600;a:1:{i:0;i:2;}i:1689634800;a:1:{i:0;i:2;}i:1689642000;a:1:{i:0;i:1;}i:1689645600;a:1:{i:0;i:2;}i:1689649200;a:1:{i:0;i:4;}i:1689652800;a:2:{i:1;i:1;i:0;i:4;}i:1689656400;a:1:{i:0;i:5;}i:1689660000;a:1:{i:0;i:1;}i:1689663600;a:1:{i:0;i:3;}i:1689667200;a:1:{i:0;i:5;}i:1689670800;a:1:{i:0;i:8;}i:1689674400;a:1:{i:0;i:3;}i:1689678000;a:1:{i:0;i:1;}i:1689681600;a:1:{i:0;i:1;}i:1689685200;a:1:{i:0;i:2;}i:1689688800;a:1:{i:0;i:1;}i:1689703200;a:1:{i:0;i:3;}i:1689706800;a:1:{i:0;i:6;}i:1689710400;a:1:{i:0;i:8;}i:1689714000;a:2:{i:0;i:5;i:1;i:1;}i:1689717600;a:1:{i:0;i:4;}i:1689721200;a:1:{i:0;i:4;}i:1689724800;a:1:{i:0;i:6;}i:1689728400;a:1:{i:0;i:7;}i:1689732000;a:1:{i:0;i:6;}i:1689735600;a:1:{i:0;i:6;}i:1689739200;a:1:{i:0;i:7;}i:1689742800;a:1:{i:0;i:10;}i:1689746400;a:1:{i:0;i:6;}i:1689750000;a:1:{i:0;i:3;}i:1689753600;a:1:{i:0;i:7;}i:1689757200;a:1:{i:0;i:6;}i:1689760800;a:1:{i:0;i:6;}i:1689764400;a:1:{i:0;i:10;}i:1689768000;a:1:{i:0;i:1;}i:1689771600;a:1:{i:0;i:4;}i:1689775200;a:1:{i:0;i:5;}i:1689778800;a:1:{i:0;i:6;}i:1689782400;a:1:{i:0;i:7;}i:1689786000;a:1:{i:0;i:7;}i:1689789600;a:1:{i:0;i:7;}i:1689796800;a:1:{i:0;i:6;}i:1689800400;a:1:{i:0;i:7;}i:1689804000;a:1:{i:0;i:5;}i:1689807600;a:1:{i:0;i:6;}i:1689811200;a:2:{i:0;i:11;i:1;i:1;}i:1689814800;a:1:{i:0;i:8;}i:1689818400;a:1:{i:0;i:7;}i:1689822000;a:1:{i:0;i:15;}i:1689825600;a:1:{i:0;i:14;}i:1689829200;a:1:{i:0;i:8;}i:1689832800;a:1:{i:0;i:8;}i:1689836400;a:1:{i:0;i:9;}i:1689840000;a:1:{i:0;i:9;}i:1689843600;a:1:{i:0;i:8;}i:1689847200;a:1:{i:0;i:3;}i:1689850800;a:1:{i:0;i:7;}i:1689854400;a:1:{i:0;i:4;}i:1689858000;a:1:{i:0;i:6;}i:1689861600;a:1:{i:0;i:5;}i:1689865200;a:1:{i:0;i:7;}i:1689868800;a:1:{i:0;i:5;}i:1689872400;a:1:{i:0;i:4;}i:1689876000;a:1:{i:0;i:3;}i:1689879600;a:1:{i:0;i:6;}i:1689883200;a:1:{i:0;i:4;}i:1689886800;a:1:{i:0;i:2;}i:1689890400;a:1:{i:0;i:6;}i:1689894000;a:1:{i:0;i:4;}i:1689897600;a:1:{i:0;i:8;}i:1689901200;a:1:{i:0;i:13;}i:1689904800;a:1:{i:0;i:4;}i:1689908400;a:1:{i:0;i:2;}i:1689912000;a:1:{i:0;i:10;}i:1689915600;a:1:{i:0;i:4;}i:1689919200;a:1:{i:0;i:8;}i:1689922800;a:1:{i:0;i:6;}i:1689926400;a:1:{i:0;i:6;}i:1689930000;a:1:{i:0;i:9;}i:1689933600;a:1:{i:0;i:3;}i:1689937200;a:1:{i:0;i:6;}i:1689944400;a:1:{i:0;i:6;}i:1689948000;a:1:{i:1;i:1;}i:1689955200;a:1:{i:0;i:6;}i:1689958800;a:1:{i:0;i:7;}i:1689962400;a:1:{i:0;i:6;}i:1689966000;a:1:{i:0;i:6;}i:1689969600;a:1:{i:0;i:5;}i:1689973200;a:1:{i:0;i:4;}i:1689976800;a:1:{i:0;i:8;}i:1689980400;a:1:{i:0;i:3;}i:1689984000;a:1:{i:0;i:2;}i:1689987600;a:1:{i:0;i:1;}i:1689991200;a:1:{i:0;i:4;}i:1689994800;a:1:{i:0;i:6;}i:1689998400;a:1:{i:0;i:6;}i:1690002000;a:1:{i:0;i:5;}i:1690005600;a:2:{i:1;i:1;i:0;i:2;}i:1690009200;a:1:{i:0;i:5;}i:1690012800;a:2:{i:0;i:10;i:1;i:1;}i:1690016400;a:1:{i:0;i:4;}i:1690020000;a:1:{i:0;i:7;}i:1690023600;a:1:{i:0;i:8;}i:1690027200;a:1:{i:0;i:6;}i:1690030800;a:1:{i:0;i:1;}i:1690034400;a:2:{i:1;i:1;i:0;i:4;}i:1690038000;a:1:{i:0;i:5;}i:1690041600;a:1:{i:0;i:7;}i:1690045200;a:1:{i:0;i:4;}i:1690048800;a:1:{i:0;i:5;}i:1690052400;a:1:{i:0;i:5;}i:1690056000;a:1:{i:0;i:3;}i:1690059600;a:1:{i:0;i:9;}i:1690066800;a:1:{i:0;i:8;}i:1690070400;a:1:{i:0;i:6;}i:1690074000;a:1:{i:0;i:4;}i:1690077600;a:1:{i:0;i:4;}i:1690081200;a:1:{i:0;i:7;}i:1690084800;a:1:{i:0;i:6;}i:1690088400;a:1:{i:0;i:6;}i:1690092000;a:1:{i:0;i:7;}i:1690095600;a:2:{i:0;i:2;i:1;i:1;}i:1690099200;a:1:{i:0;i:5;}i:1690102800;a:1:{i:0;i:2;}i:1690106400;a:1:{i:0;i:7;}i:1690110000;a:1:{i:0;i:5;}i:1690113600;a:2:{i:0;i:9;i:1;i:1;}i:1690117200;a:1:{i:0;i:4;}i:1690120800;a:1:{i:0;i:7;}i:1690124400;a:1:{i:0;i:2;}i:1690128000;a:1:{i:0;i:2;}i:1690131600;a:1:{i:0;i:4;}i:1690135200;a:1:{i:0;i:1;}i:1690138800;a:1:{i:0;i:9;}i:1690142400;a:1:{i:0;i:2;}i:1690146000;a:1:{i:0;i:2;}i:1690149600;a:1:{i:0;i:1;}i:1690153200;a:1:{i:0;i:6;}i:1690164000;a:1:{i:0;i:2;}i:1690167600;a:1:{i:0;i:3;}i:1690171200;a:1:{i:1;i:1;}i:1690189200;a:1:{i:0;i:3;}i:1690192800;a:1:{i:0;i:2;}i:1690196400;a:1:{i:0;i:7;}i:1690200000;a:1:{i:0;i:5;}i:1690203600;a:1:{i:0;i:1;}i:1690236000;a:1:{i:0;i:7;}i:1690239600;a:1:{i:0;i:2;}i:1690261200;a:1:{i:0;i:1;}i:1690272000;a:1:{i:0;i:3;}i:1690279200;a:1:{i:1;i:1;}i:1690326000;a:1:{i:1;i:1;}i:1690459200;a:1:{i:0;i:3;}i:1690488000;a:1:{i:0;i:6;}i:1690491600;a:1:{i:0;i:8;}i:1690495200;a:1:{i:0;i:7;}i:1690498800;a:1:{i:0;i:9;}i:1690502400;a:1:{i:0;i:4;}i:1690506000;a:1:{i:0;i:7;}i:1690509600;a:1:{i:0;i:8;}i:1690513200;a:1:{i:0;i:3;}i:1690520400;a:1:{i:0;i:3;}i:1690524000;a:1:{i:0;i:9;}i:1690527600;a:1:{i:0;i:6;}i:1690531200;a:1:{i:0;i:4;}i:1690534800;a:1:{i:0;i:8;}i:1691233200;a:1:{i:0;i:2;}i:1691236800;a:1:{i:0;i:5;}i:1691240400;a:1:{i:0;i:3;}i:1691244000;a:1:{i:0;i:4;}i:1691247600;a:1:{i:0;i:4;}i:1691251200;a:1:{i:0;i:5;}i:1691254800;a:1:{i:0;i:5;}i:1691258400;a:1:{i:0;i:4;}i:1691262000;a:1:{i:0;i:4;}i:1691265600;a:1:{i:0;i:4;}i:1691269200;a:1:{i:0;i:4;}i:1691272800;a:1:{i:0;i:5;}i:1691276400;a:1:{i:0;i:4;}i:1691280000;a:1:{i:0;i:7;}i:1691283600;a:1:{i:0;i:4;}i:1691287200;a:1:{i:0;i:10;}i:1691290800;a:1:{i:0;i:12;}i:1691294400;a:1:{i:0;i:16;}i:1691298000;a:1:{i:0;i:14;}i:1691301600;a:1:{i:0;i:14;}i:1691305200;a:1:{i:0;i:16;}i:1691308800;a:1:{i:0;i:10;}i:1691312400;a:1:{i:0;i:10;}i:1691316000;a:1:{i:0;i:12;}i:1691319600;a:1:{i:0;i:7;}i:1691323200;a:1:{i:0;i:3;}i:1691326800;a:1:{i:0;i:1;}i:1691330400;a:1:{i:0;i:7;}i:1691334000;a:1:{i:0;i:3;}i:1691337600;a:1:{i:0;i:5;}i:1691341200;a:1:{i:0;i:5;}i:1691344800;a:1:{i:0;i:4;}i:1691348400;a:1:{i:0;i:4;}i:1691352000;a:1:{i:0;i:3;}i:1691355600;a:1:{i:0;i:2;}i:1691359200;a:1:{i:0;i:3;}i:1691362800;a:1:{i:0;i:5;}i:1691366400;a:1:{i:0;i:3;}i:1691370000;a:1:{i:0;i:4;}i:1691373600;a:1:{i:0;i:5;}i:1691377200;a:1:{i:0;i:5;}i:1691380800;a:1:{i:0;i:6;}i:1691384400;a:1:{i:0;i:4;}i:1691388000;a:1:{i:0;i:5;}i:1691391600;a:1:{i:0;i:3;}i:1691395200;a:1:{i:0;i:5;}i:1691398800;a:1:{i:0;i:3;}i:1691402400;a:1:{i:0;i:2;}i:1691406000;a:1:{i:0;i:4;}i:1691409600;a:1:{i:0;i:3;}i:1691413200;a:1:{i:0;i:3;}i:1691416800;a:1:{i:0;i:2;}i:1691470800;a:1:{i:0;i:3;}i:1691474400;a:1:{i:0;i:1;}i:1691478000;a:1:{i:0;i:1;}i:1691481600;a:1:{i:0;i:1;}i:1691485200;a:1:{i:0;i:1;}i:1691496000;a:1:{i:0;i:2;}i:1691506800;a:1:{i:0;i:2;}i:1691514000;a:1:{i:0;i:2;}i:1691524800;a:1:{i:0;i:1;}i:1691528400;a:1:{i:0;i:3;}i:1691575200;a:1:{i:0;i:2;}i:1691582400;a:1:{i:0;i:2;}i:1691589600;a:1:{i:0;i:1;}i:1691654400;a:1:{i:0;i:3;}i:1691658000;a:1:{i:0;i:1;}i:1691668800;a:1:{i:0;i:1;}i:1691676000;a:1:{i:0;i:1;}i:1691679600;a:1:{i:0;i:1;}i:1691683200;a:1:{i:0;i:1;}i:1691701200;a:1:{i:0;i:2;}i:1691708400;a:1:{i:0;i:1;}i:1691712000;a:1:{i:0;i:1;}i:1691863200;a:1:{i:0;i:3;}i:1691996400;a:1:{i:0;i:1;}i:1692018000;a:1:{i:0;i:1;}i:1692039600;a:1:{i:0;i:6;}i:1692136800;a:1:{i:0;i:1;}i:1692208800;a:1:{i:0;i:3;}i:1692212400;a:1:{i:0;i:3;}i:1692248400;a:1:{i:0;i:1;}i:1692266400;a:1:{i:0;i:18;}i:1692313200;a:1:{i:0;i:1;}i:1692324000;a:1:{i:0;i:1;}i:1692345600;a:1:{i:0;i:1;}i:1692349200;a:1:{i:0;i:1;}i:1692356400;a:1:{i:0;i:1;}i:1692363600;a:1:{i:0;i:1;}i:1692381600;a:1:{i:0;i:1;}i:1692388800;a:1:{i:0;i:1;}i:1692396000;a:1:{i:0;i:37;}i:1692403200;a:1:{i:0;i:1;}i:1692406800;a:1:{i:0;i:3;}i:1692410400;a:1:{i:0;i:1;}i:1692421200;a:1:{i:0;i:4;}i:1692428400;a:1:{i:0;i:1;}i:1692435600;a:1:{i:0;i:1;}i:1692442800;a:1:{i:0;i:1;}i:1692450000;a:1:{i:0;i:1;}i:1692453600;a:1:{i:0;i:3;}i:1692457200;a:1:{i:0;i:1;}i:1692464400;a:1:{i:0;i:1;}i:1692471600;a:1:{i:0;i:3;}i:1692475200;a:1:{i:0;i:1;}i:1692482400;a:1:{i:0;i:6;}i:1692489600;a:1:{i:0;i:1;}i:1692500400;a:1:{i:0;i:2;}i:1692507600;a:1:{i:0;i:1;}i:1692511200;a:1:{i:0;i:1;}i:1692518400;a:1:{i:0;i:2;}i:1692522000;a:1:{i:0;i:1;}i:1692536400;a:1:{i:0;i:3;}i:1692543600;a:1:{i:0;i:1;}i:1692547200;a:1:{i:0;i:1;}i:1692550800;a:1:{i:0;i:1;}i:1692554400;a:1:{i:0;i:3;}i:1692558000;a:1:{i:0;i:3;}i:1692601200;a:1:{i:0;i:1;}i:1692604800;a:1:{i:0;i:1;}i:1692612000;a:1:{i:0;i:1;}i:1692619200;a:1:{i:0;i:3;}i:1692622800;a:1:{i:0;i:1;}i:1692626400;a:1:{i:0;i:1;}i:1692630000;a:1:{i:0;i:1;}i:1692633600;a:1:{i:0;i:1;}i:1692637200;a:1:{i:0;i:1;}i:1692640800;a:1:{i:0;i:1;}i:1692648000;a:1:{i:0;i:1;}i:1692658800;a:1:{i:0;i:1;}i:1692662400;a:1:{i:0;i:1;}i:1692666000;a:1:{i:0;i:1;}i:1692669600;a:1:{i:0;i:1;}i:1692673200;a:1:{i:0;i:1;}i:1692676800;a:1:{i:0;i:1;}i:1692680400;a:1:{i:0;i:1;}i:1692684000;a:1:{i:0;i:1;}i:1692687600;a:1:{i:0;i:1;}i:1692691200;a:1:{i:0;i:1;}i:1692702000;a:1:{i:0;i:1;}i:1692705600;a:1:{i:0;i:1;}i:1692709200;a:1:{i:0;i:1;}i:1692712800;a:1:{i:0;i:1;}i:1692716400;a:1:{i:0;i:1;}i:1692720000;a:1:{i:0;i:1;}i:1692727200;a:1:{i:0;i:4;}i:1692730800;a:1:{i:0;i:1;}i:1692734400;a:1:{i:0;i:1;}i:1692738000;a:1:{i:0;i:1;}i:1692741600;a:1:{i:0;i:1;}i:1692745200;a:1:{i:0;i:1;}i:1692748800;a:1:{i:0;i:1;}i:1692752400;a:1:{i:0;i:1;}i:1692756000;a:1:{i:0;i:1;}i:1692759600;a:1:{i:0;i:1;}i:1692763200;a:1:{i:0;i:2;}i:1692766800;a:1:{i:0;i:1;}i:1692774000;a:1:{i:0;i:1;}i:1692777600;a:1:{i:0;i:1;}i:1692781200;a:1:{i:0;i:1;}i:1692784800;a:1:{i:0;i:1;}i:1692788400;a:1:{i:0;i:1;}i:1692792000;a:1:{i:0;i:1;}i:1692795600;a:1:{i:0;i:1;}i:1692799200;a:1:{i:0;i:1;}i:1692802800;a:1:{i:0;i:1;}i:1692806400;a:1:{i:0;i:1;}i:1692813600;a:1:{i:0;i:1;}i:1692817200;a:1:{i:0;i:1;}i:1692828000;a:1:{i:0;i:1;}i:1692831600;a:1:{i:0;i:1;}i:1692900000;a:1:{i:0;i:1;}i:1692907200;a:1:{i:0;i:6;}i:1693101600;a:1:{i:0;i:3;}i:1693227600;a:1:{i:0;i:1;}i:1693234800;a:1:{i:0;i:1;}i:1693321200;a:1:{i:0;i:3;}i:1693324800;a:1:{i:1;i:2;}i:1693378800;a:1:{i:1;i:2;}i:1693483200;a:1:{i:0;i:1;}i:1693544400;a:1:{i:0;i:1;}i:1693764000;a:1:{i:0;i:1;}i:1693875600;a:1:{i:0;i:1;}i:1693882800;a:1:{i:0;i:1;}i:1693886400;a:1:{i:0;i:1;}i:1693929600;a:1:{i:1;i:4;}i:1693947600;a:1:{i:0;i:1;}i:1693954800;a:1:{i:0;i:1;}i:1693958400;a:1:{i:0;i:3;}i:1694055600;a:1:{i:0;i:1;}i:1694059200;a:1:{i:0;i:1;}i:1694599200;a:1:{i:0;i:1;}i:1694613600;a:1:{i:0;i:1;}i:1694660400;a:1:{i:0;i:1;}i:1694671200;a:1:{i:0;i:1;}i:1694682000;a:1:{i:0;i:1;}i:1694685600;a:1:{i:0;i:1;}i:1694696400;a:1:{i:0;i:1;}i:1694707200;a:1:{i:0;i:1;}i:1694898000;a:1:{i:0;i:3;}i:1694934000;a:1:{i:0;i:1;}i:1694966400;a:1:{i:0;i:1;}i:1694998800;a:1:{i:0;i:1;}i:1695002400;a:1:{i:0;i:2;}i:1695006000;a:1:{i:0;i:1;}i:1695009600;a:1:{i:0;i:1;}i:1695013200;a:1:{i:0;i:1;}i:1695016800;a:1:{i:0;i:3;}i:1695020400;a:1:{i:0;i:3;}i:1695024000;a:1:{i:0;i:4;}i:1695027600;a:1:{i:0;i:5;}i:1695031200;a:1:{i:0;i:6;}i:1695034800;a:1:{i:0;i:4;}i:1695038400;a:1:{i:0;i:5;}i:1695042000;a:1:{i:0;i:4;}i:1695045600;a:1:{i:0;i:4;}i:1695052800;a:1:{i:0;i:1;}i:1695056400;a:1:{i:0;i:1;}i:1695060000;a:1:{i:0;i:1;}i:1695063600;a:1:{i:0;i:1;}i:1695070800;a:1:{i:0;i:1;}i:1695074400;a:1:{i:0;i:1;}i:1695088800;a:1:{i:0;i:1;}i:1695092400;a:1:{i:0;i:2;}i:1695099600;a:1:{i:0;i:1;}i:1695106800;a:1:{i:0;i:1;}i:1695124800;a:1:{i:0;i:1;}i:1695139200;a:1:{i:0;i:1;}i:1695178800;a:1:{i:0;i:1;}i:1695182400;a:1:{i:0;i:1;}i:1695189600;a:1:{i:0;i:1;}i:1695196800;a:1:{i:0;i:1;}i:1695211200;a:1:{i:0;i:1;}i:1695214800;a:1:{i:0;i:1;}i:1695222000;a:1:{i:0;i:1;}i:1695236400;a:1:{i:0;i:1;}i:1695254400;a:1:{i:0;i:1;}i:1695261600;a:1:{i:0;i:1;}i:1695294000;a:1:{i:0;i:1;}i:1695308400;a:1:{i:0;i:2;}i:1695351600;a:1:{i:0;i:2;}i:1695362400;a:1:{i:0;i:1;}i:1695380400;a:1:{i:0;i:1;}i:1695416400;a:1:{i:0;i:1;}i:1695423600;a:1:{i:0;i:1;}i:1695448800;a:1:{i:0;i:1;}i:1696510800;a:1:{i:0;i:1;}i:1696640400;a:1:{i:0;i:3;}i:1696917600;a:1:{i:0;i:5;}i:1697065200;a:1:{i:0;i:1;}i:1697076000;a:1:{i:0;i:2;}i:1697079600;a:1:{i:0;i:1;}i:1697083200;a:1:{i:0;i:5;}i:1697086800;a:1:{i:0;i:2;}i:1697090400;a:1:{i:0;i:1;}i:1697094000;a:1:{i:0;i:2;}i:1697097600;a:1:{i:0;i:1;}i:1697101200;a:1:{i:0;i:2;}i:1697108400;a:1:{i:0;i:2;}i:1697112000;a:1:{i:0;i:1;}i:1697115600;a:1:{i:0;i:1;}i:1697119200;a:1:{i:0;i:4;}i:1697122800;a:1:{i:0;i:1;}i:1697130000;a:1:{i:0;i:1;}i:1697133600;a:1:{i:0;i:1;}i:1697140800;a:1:{i:0;i:1;}i:1697144400;a:1:{i:0;i:1;}i:1697151600;a:1:{i:0;i:1;}i:1697158800;a:1:{i:0;i:1;}i:1697162400;a:1:{i:0;i:2;}i:1697166000;a:1:{i:0;i:3;}i:1697169600;a:1:{i:0;i:1;}i:1697176800;a:1:{i:0;i:1;}i:1697180400;a:1:{i:0;i:3;}i:1697184000;a:1:{i:0;i:1;}i:1697191200;a:1:{i:0;i:2;}i:1697194800;a:1:{i:0;i:1;}i:1697209200;a:1:{i:0;i:1;}i:1697212800;a:1:{i:0;i:1;}i:1697252400;a:1:{i:0;i:1;}i:1697256000;a:1:{i:0;i:2;}i:1697274000;a:1:{i:0;i:1;}i:1697284800;a:1:{i:0;i:1;}i:1697292000;a:1:{i:0;i:1;}i:1697313600;a:1:{i:0;i:2;}i:1697346000;a:1:{i:0;i:1;}i:1697360400;a:1:{i:1;i:1;}i:1697421600;a:1:{i:0;i:1;}i:1697428800;a:1:{i:0;i:1;}i:1697544000;a:1:{i:0;i:1;}i:1697778000;a:1:{i:0;i:1;}i:1697810400;a:1:{i:0;i:2;}i:1697814000;a:1:{i:0;i:1;}i:1697821200;a:1:{i:0;i:3;}i:1697824800;a:1:{i:0;i:2;}i:1697835600;a:1:{i:0;i:2;}i:1697846400;a:1:{i:0;i:3;}i:1697850000;a:1:{i:0;i:2;}i:1697878800;a:1:{i:0;i:1;}i:1697889600;a:1:{i:0;i:1;}i:1697922000;a:1:{i:0;i:2;}i:1697925600;a:1:{i:0;i:1;}i:1697932800;a:1:{i:0;i:2;}i:1697936400;a:1:{i:0;i:2;}i:1697940000;a:1:{i:0;i:1;}i:1697947200;a:1:{i:0;i:2;}i:1697954400;a:1:{i:0;i:1;}i:1698015600;a:1:{i:0;i:1;}i:1698019200;a:1:{i:0;i:2;}i:1698048000;a:1:{i:0;i:2;}i:1698116400;a:1:{i:0;i:1;}i:1698134400;a:1:{i:0;i:1;}i:1698163200;a:1:{i:0;i:2;}i:1698292800;a:1:{i:0;i:1;}i:1698386400;a:1:{i:0;i:6;}i:1698390000;a:1:{i:0;i:7;}i:1698393600;a:1:{i:0;i:7;}i:1698397200;a:1:{i:0;i:7;}i:1698400800;a:1:{i:0;i:6;}i:1698404400;a:1:{i:0;i:4;}i:1698408000;a:1:{i:0;i:6;}i:1698411600;a:1:{i:0;i:4;}i:1698415200;a:1:{i:0;i:3;}i:1698418800;a:1:{i:0;i:3;}i:1698454800;a:1:{i:0;i:2;}i:1698926400;a:1:{i:0;i:1;}i:1699027200;a:1:{i:0;i:1;}i:1699066800;a:1:{i:0;i:1;}i:1699383600;a:1:{i:0;i:1;}i:1699387200;a:1:{i:0;i:1;}i:1699394400;a:1:{i:0;i:1;}i:1699398000;a:1:{i:0;i:2;}i:1699401600;a:1:{i:0;i:1;}i:1699408800;a:1:{i:0;i:1;}i:1699412400;a:1:{i:0;i:1;}i:1699416000;a:1:{i:0;i:1;}i:1699423200;a:1:{i:0;i:2;}i:1699430400;a:1:{i:0;i:1;}i:1699437600;a:1:{i:0;i:1;}i:1699441200;a:1:{i:0;i:1;}i:1699506000;a:1:{i:1;i:1;}i:1699956000;a:1:{i:0;i:3;}i:1700215200;a:1:{i:0;i:3;}i:1700492400;a:1:{i:0;i:1;}i:1700640000;a:1:{i:0;i:1;}i:1700820000;a:1:{i:0;i:1;}i:1700841600;a:1:{i:0;i:1;}i:1701003600;a:1:{i:0;i:1;}i:1701039600;a:1:{i:0;i:1;}i:1701043200;a:1:{i:0;i:5;}i:1701046800;a:1:{i:0;i:5;}i:1701050400;a:1:{i:0;i:3;}i:1701054000;a:1:{i:0;i:6;}i:1701057600;a:1:{i:0;i:7;}i:1701061200;a:1:{i:0;i:6;}i:1701064800;a:1:{i:0;i:7;}i:1701068400;a:1:{i:0;i:8;}i:1701072000;a:1:{i:0;i:5;}i:1701075600;a:2:{i:0;i:5;i:1;i:2;}i:1701079200;a:1:{i:0;i:5;}i:1701082800;a:1:{i:0;i:5;}i:1701086400;a:1:{i:0;i:2;}i:1701097200;a:1:{i:0;i:4;}i:1701100800;a:1:{i:0;i:3;}i:1701104400;a:1:{i:0;i:3;}i:1701108000;a:1:{i:0;i:2;}i:1701111600;a:1:{i:0;i:5;}i:1701115200;a:1:{i:0;i:3;}i:1701118800;a:1:{i:0;i:1;}i:1701122400;a:1:{i:0;i:3;}i:1701126000;a:1:{i:0;i:3;}i:1701129600;a:1:{i:0;i:4;}i:1701133200;a:1:{i:0;i:4;}i:1701136800;a:1:{i:0;i:1;}i:1701147600;a:1:{i:0;i:1;}i:1701151200;a:1:{i:0;i:2;}i:1701154800;a:1:{i:0;i:3;}i:1701158400;a:1:{i:0;i:3;}i:1701162000;a:1:{i:0;i:2;}i:1701165600;a:1:{i:0;i:3;}i:1701169200;a:1:{i:0;i:1;}i:1701172800;a:1:{i:0;i:3;}i:1701428400;a:1:{i:1;i:1;}i:1701442800;a:1:{i:0;i:1;}i:1701471600;a:1:{i:0;i:1;}i:1701651600;a:1:{i:0;i:3;}i:1701903600;a:1:{i:0;i:1;}i:1702126800;a:2:{i:0;i:2;i:1;i:1;}i:1702148400;a:1:{i:0;i:1;}i:1702180800;a:1:{i:0;i:1;}i:1702195200;a:1:{i:0;i:2;}i:1702224000;a:1:{i:0;i:4;}i:1702342800;a:1:{i:0;i:1;}i:1702432800;a:1:{i:0;i:1;}i:1702436400;a:1:{i:0;i:2;}i:1702440000;a:1:{i:0;i:10;}i:1702443600;a:1:{i:0;i:9;}i:1702447200;a:1:{i:0;i:8;}i:1702450800;a:1:{i:0;i:7;}i:1702454400;a:1:{i:0;i:5;}i:1702458000;a:1:{i:0;i:5;}i:1702461600;a:1:{i:0;i:5;}i:1702465200;a:1:{i:0;i:6;}i:1702468800;a:1:{i:0;i:5;}i:1702472400;a:1:{i:0;i:5;}i:1702476000;a:1:{i:0;i:2;}i:1702479600;a:1:{i:0;i:3;}i:1702483200;a:1:{i:0;i:2;}i:1702486800;a:1:{i:0;i:3;}i:1702490400;a:1:{i:0;i:1;}i:1702494000;a:1:{i:0;i:2;}i:1702497600;a:1:{i:0;i:3;}i:1702501200;a:1:{i:0;i:3;}i:1702504800;a:1:{i:0;i:3;}i:1702508400;a:1:{i:0;i:2;}i:1702512000;a:1:{i:0;i:2;}i:1702515600;a:1:{i:0;i:3;}i:1702519200;a:1:{i:0;i:2;}i:1702522800;a:1:{i:0;i:3;}i:1702526400;a:1:{i:0;i:2;}i:1702530000;a:1:{i:0;i:3;}i:1702533600;a:1:{i:0;i:2;}i:1702537200;a:1:{i:0;i:3;}i:1702540800;a:1:{i:0;i:2;}i:1702544400;a:1:{i:0;i:3;}i:1702548000;a:1:{i:0;i:2;}i:1702551600;a:1:{i:0;i:2;}i:1702555200;a:1:{i:0;i:2;}i:1702558800;a:1:{i:0;i:3;}i:1702562400;a:1:{i:0;i:1;}i:1702566000;a:1:{i:0;i:1;}i:1702641600;a:1:{i:1;i:1;}i:1703077200;a:1:{i:0;i:4;}i:1703091600;a:1:{i:0;i:4;}i:1703120400;a:1:{i:0;i:1;}i:1703127600;a:1:{i:0;i:1;}i:1703131200;a:1:{i:0;i:1;}i:1703174400;a:1:{i:0;i:3;}i:1703199600;a:1:{i:0;i:4;}i:1703246400;a:2:{i:0;i:2;i:1;i:1;}i:1703293200;a:1:{i:0;i:2;}i:1703365200;a:1:{i:0;i:4;}i:1703394000;a:1:{i:0;i:2;}i:1703448000;a:1:{i:0;i:1;}i:1703484000;a:1:{i:0;i:5;}i:1703491200;a:1:{i:0;i:1;}i:1703502000;a:1:{i:0;i:4;}i:1703512800;a:1:{i:0;i:4;}i:1703527200;a:1:{i:0;i:4;}i:1703538000;a:1:{i:0;i:3;}i:1703552400;a:1:{i:0;i:8;}i:1703581200;a:1:{i:0;i:4;}i:1703592000;a:1:{i:0;i:4;}i:1703610000;a:1:{i:0;i:2;}i:1703620800;a:1:{i:0;i:2;}i:1703768400;a:1:{i:0;i:1;}i:1703786400;a:1:{i:0;i:1;}i:1703836800;a:1:{i:0;i:3;}i:1703847600;a:1:{i:1;i:1;}i:1703851200;a:1:{i:0;i:1;}i:1703862000;a:1:{i:0;i:1;}i:1703869200;a:1:{i:0;i:3;}i:1703898000;a:1:{i:0;i:1;}i:1703912400;a:1:{i:0;i:1;}i:1703923200;a:1:{i:0;i:1;}i:1703948400;a:1:{i:0;i:2;}i:1703959200;a:1:{i:0;i:1;}i:1704020400;a:1:{i:0;i:2;}i:1704049200;a:1:{i:0;i:1;}i:1704060000;a:1:{i:0;i:1;}i:1704074400;a:1:{i:0;i:1;}i:1704078000;a:1:{i:0;i:1;}i:1704081600;a:1:{i:0;i:1;}i:1704099600;a:1:{i:0;i:2;}i:1704186000;a:1:{i:0;i:1;}i:1704211200;a:1:{i:0;i:2;}i:1704218400;a:1:{i:0;i:1;}i:1704243600;a:1:{i:0;i:1;}i:1704535200;a:1:{i:1;i:1;}i:1705528800;a:1:{i:0;i:1;}i:1705572000;a:1:{i:0;i:1;}i:1705586400;a:1:{i:0;i:1;}i:1705590000;a:1:{i:0;i:1;}i:1705597200;a:1:{i:0;i:1;}i:1705604400;a:1:{i:0;i:1;}i:1705608000;a:1:{i:0;i:1;}i:1705611600;a:1:{i:0;i:1;}i:1705629600;a:1:{i:0;i:2;}i:1705636800;a:1:{i:0;i:3;}i:1705654800;a:1:{i:0;i:2;}i:1705658400;a:1:{i:0;i:2;}i:1705676400;a:1:{i:0;i:1;}i:1705680000;a:1:{i:0;i:2;}i:1705687200;a:1:{i:0;i:1;}i:1705698000;a:1:{i:0;i:1;}i:1705701600;a:1:{i:0;i:1;}i:1705712400;a:1:{i:0;i:1;}i:1705744800;a:2:{i:0;i:2;i:1;i:1;}i:1705748400;a:1:{i:0;i:2;}i:1705762800;a:1:{i:0;i:2;}i:1705766400;a:1:{i:0;i:3;}i:1705780800;a:1:{i:0;i:2;}i:1705788000;a:1:{i:0;i:1;}i:1705791600;a:1:{i:0;i:1;}i:1705795200;a:1:{i:0;i:2;}i:1705806000;a:1:{i:0;i:1;}i:1705816800;a:1:{i:0;i:1;}i:1705831200;a:1:{i:0;i:2;}i:1705845600;a:1:{i:0;i:2;}i:1705852800;a:1:{i:0;i:1;}i:1705856400;a:1:{i:0;i:1;}i:1705860000;a:1:{i:0;i:1;}i:1705910400;a:1:{i:0;i:2;}i:1705914000;a:1:{i:0;i:1;}i:1705921200;a:1:{i:0;i:1;}i:1705924800;a:1:{i:0;i:1;}i:1706317200;a:1:{i:0;i:1;}i:1706324400;a:1:{i:0;i:2;}i:1706328000;a:1:{i:0;i:2;}i:1706331600;a:1:{i:0;i:2;}i:1706335200;a:1:{i:0;i:2;}i:1706338800;a:1:{i:0;i:1;}i:1706342400;a:1:{i:0;i:2;}i:1706346000;a:1:{i:0;i:2;}i:1706349600;a:2:{i:0;i:2;i:1;i:1;}i:1706353200;a:1:{i:0;i:1;}i:1706356800;a:1:{i:0;i:2;}i:1706360400;a:1:{i:0;i:2;}i:1706364000;a:1:{i:0;i:2;}i:1706367600;a:1:{i:0;i:1;}i:1706371200;a:1:{i:0;i:2;}i:1706374800;a:1:{i:0;i:2;}i:1706378400;a:1:{i:0;i:1;}i:1706382000;a:1:{i:0;i:2;}i:1706385600;a:1:{i:0;i:1;}i:1706389200;a:1:{i:0;i:2;}i:1706392800;a:1:{i:0;i:2;}i:1706396400;a:1:{i:0;i:2;}i:1706400000;a:1:{i:0;i:2;}i:1706403600;a:1:{i:0;i:1;}i:1706407200;a:1:{i:0;i:2;}i:1706410800;a:1:{i:0;i:1;}i:1706414400;a:1:{i:0;i:1;}i:1706418000;a:1:{i:0;i:2;}i:1706421600;a:1:{i:0;i:2;}i:1706425200;a:1:{i:0;i:1;}i:1706428800;a:1:{i:0;i:2;}i:1706436000;a:1:{i:0;i:2;}i:1706439600;a:1:{i:0;i:2;}i:1706443200;a:1:{i:0;i:1;}i:1706446800;a:1:{i:0;i:1;}i:1706454000;a:1:{i:0;i:1;}i:1706457600;a:1:{i:0;i:1;}i:1706461200;a:1:{i:0;i:1;}i:1706464800;a:1:{i:0;i:1;}i:1706468400;a:1:{i:0;i:1;}i:1706472000;a:1:{i:0;i:2;}i:1706475600;a:1:{i:0;i:1;}i:1706479200;a:1:{i:0;i:2;}i:1706482800;a:1:{i:0;i:1;}i:1706486400;a:1:{i:0;i:1;}i:1706490000;a:1:{i:0;i:1;}i:1706493600;a:1:{i:0;i:2;}i:1706497200;a:1:{i:0;i:1;}i:1706500800;a:1:{i:0;i:2;}i:1706504400;a:1:{i:0;i:2;}i:1706508000;a:1:{i:0;i:2;}i:1706511600;a:1:{i:0;i:1;}i:1706515200;a:1:{i:0;i:2;}i:1706518800;a:1:{i:0;i:1;}i:1706522400;a:1:{i:0;i:2;}i:1706529600;a:1:{i:0;i:2;}i:1706533200;a:1:{i:0;i:1;}i:1706536800;a:1:{i:0;i:2;}i:1706544000;a:1:{i:0;i:2;}i:1706576400;a:1:{i:0;i:1;}i:1706634000;a:1:{i:0;i:1;}i:1706641200;a:1:{i:0;i:1;}i:1706644800;a:1:{i:0;i:1;}i:1706659200;a:1:{i:0;i:1;}i:1706680800;a:1:{i:0;i:1;}i:1706724000;a:1:{i:0;i:1;}i:1706738400;a:1:{i:0;i:1;}i:1706760000;a:1:{i:0;i:1;}i:1706781600;a:1:{i:0;i:1;}i:1706788800;a:1:{i:0;i:1;}i:1706832000;a:1:{i:0;i:1;}i:1706954400;a:1:{i:1;i:1;}i:1707688800;a:1:{i:0;i:1;}i:1707696000;a:1:{i:0;i:1;}i:1707724800;a:1:{i:0;i:1;}i:1707746400;a:1:{i:0;i:1;}i:1707750000;a:1:{i:0;i:1;}i:1707771600;a:1:{i:0;i:1;}i:1707782400;a:1:{i:0;i:1;}i:1707811200;a:1:{i:0;i:1;}i:1707843600;a:1:{i:0;i:2;}i:1707847200;a:1:{i:0;i:1;}i:1707872400;a:1:{i:0;i:1;}i:1707886800;a:1:{i:0;i:1;}i:1707912000;a:1:{i:1;i:1;}i:1707922800;a:1:{i:0;i:2;}i:1708027200;a:1:{i:0;i:1;}i:1708059600;a:1:{i:0;i:1;}i:1708074000;a:1:{i:0;i:1;}i:1708077600;a:1:{i:0;i:1;}i:1708315200;a:1:{i:0;i:1;}i:1708329600;a:2:{i:0;i:2;i:1;i:1;}i:1708333200;a:1:{i:0;i:2;}i:1709557200;a:1:{i:0;i:1;}i:1709622000;a:1:{i:0;i:1;}i:1709668800;a:1:{i:0;i:1;}i:1709701200;a:1:{i:0;i:1;}i:1709798400;a:1:{i:0;i:3;}i:1709888400;a:2:{i:0;i:4;i:1;i:1;}i:1709985600;a:1:{i:0;i:1;}i:1710003600;a:1:{i:0;i:1;}i:1710061200;a:1:{i:0;i:1;}i:1710068400;a:1:{i:0;i:1;}i:1710097200;a:1:{i:0;i:2;}i:1710118800;a:1:{i:0;i:2;}i:1710151200;a:1:{i:0;i:1;}i:1710162000;a:1:{i:0;i:1;}i:1710183600;a:1:{i:0;i:1;}i:1710234000;a:1:{i:0;i:1;}i:1710244800;a:1:{i:0;i:3;}i:1710259200;a:1:{i:0;i:1;}i:1710428400;a:1:{i:0;i:3;}i:1710496800;a:1:{i:0;i:1;}i:1710637200;a:1:{i:0;i:1;}i:1710651600;a:1:{i:0;i:1;}i:1711105200;a:1:{i:0;i:1;}i:1711126800;a:1:{i:0;i:1;}i:1711155600;a:1:{i:0;i:1;}i:1711191600;a:1:{i:0;i:1;}i:1711267200;a:1:{i:0;i:1;}i:1711285200;a:1:{i:0;i:1;}i:1711292400;a:1:{i:0;i:1;}i:1711299600;a:1:{i:0;i:1;}i:1711346400;a:1:{i:0;i:1;}i:1711353600;a:1:{i:0;i:2;}i:1711454400;a:1:{i:0;i:1;}i:1711494000;a:1:{i:0;i:1;}i:1711620000;a:1:{i:0;i:1;}i:1711674000;a:1:{i:0;i:1;}i:1711692000;a:1:{i:0;i:1;}i:1711746000;a:1:{i:0;i:1;}i:1711767600;a:1:{i:0;i:1;}i:1711807200;a:1:{i:0;i:1;}i:1711821600;a:1:{i:0;i:1;}i:1711846800;a:1:{i:0;i:1;}i:1711868400;a:1:{i:0;i:1;}i:1711872000;a:1:{i:0;i:1;}i:1711908000;a:1:{i:0;i:1;}i:1711911600;a:1:{i:0;i:1;}i:1711972800;a:1:{i:0;i:1;}i:1711994400;a:1:{i:0;i:1;}i:1712001600;a:1:{i:0;i:1;}i:1712646000;a:1:{i:0;i:2;}i:1712685600;a:1:{i:0;i:1;}i:1712732400;a:1:{i:0;i:1;}i:1712750400;a:1:{i:0;i:1;}i:1713002400;a:1:{i:0;i:2;}i:1713013200;a:1:{i:0;i:2;}i:1713016800;a:1:{i:0;i:14;}i:1713164400;a:1:{i:0;i:1;}i:1713168000;a:1:{i:0;i:1;}i:1713182400;a:1:{i:0;i:1;}i:1713196800;a:1:{i:0;i:2;}i:1713211200;a:1:{i:0;i:2;}i:1713225600;a:1:{i:0;i:2;}i:1713268800;a:1:{i:0;i:1;}i:1713272400;a:1:{i:0;i:1;}i:1713319200;a:1:{i:0;i:1;}i:1713358800;a:1:{i:0;i:1;}i:1713384000;a:1:{i:0;i:2;}i:1713430800;a:1:{i:0;i:1;}i:1713452400;a:1:{i:0;i:2;}i:1713488400;a:1:{i:0;i:1;}i:1713510000;a:1:{i:0;i:1;}i:1713517200;a:1:{i:0;i:2;}i:1713528000;a:1:{i:0;i:1;}i:1713542400;a:1:{i:0;i:1;}i:1713560400;a:1:{i:0;i:2;}i:1713578400;a:1:{i:0;i:2;}i:1713596400;a:1:{i:0;i:1;}i:1713600000;a:1:{i:0;i:1;}i:1713610800;a:1:{i:0;i:1;}i:1713618000;a:1:{i:1;i:1;}i:1713661200;a:1:{i:0;i:1;}i:1713690000;a:1:{i:0;i:3;}i:1713783600;a:1:{i:1;i:1;}i:1714082400;a:1:{i:1;i:1;}i:1714089600;a:1:{i:1;i:1;}i:1714122000;a:1:{i:1;i:1;}i:1714399200;a:1:{i:1;i:1;}i:1714402800;a:1:{i:1;i:1;}i:1714410000;a:1:{i:1;i:1;}i:1714456800;a:1:{i:0;i:3;}i:1714471200;a:1:{i:1;i:2;}i:1714485600;a:1:{i:1;i:1;}i:1714561200;a:1:{i:1;i:2;}i:1714572000;a:1:{i:1;i:1;}i:1714716000;a:1:{i:0;i:1;}i:1715097600;a:1:{i:1;i:1;}i:1715108400;a:1:{i:1;i:1;}i:1715112000;a:1:{i:1;i:1;}i:1715191200;a:1:{i:0;i:1;}i:1715292000;a:1:{i:0;i:1;}i:1715324400;a:2:{i:1;i:1;i:0;i:2;}i:1715335200;a:1:{i:0;i:3;}i:1715342400;a:1:{i:0;i:1;}i:1715371200;a:1:{i:0;i:1;}i:1715382000;a:1:{i:0;i:1;}i:1720209600;a:1:{i:0;i:2;}i:1720213200;a:1:{i:0;i:49;}i:1720234800;a:1:{i:0;i:1;}i:1720342800;a:1:{i:0;i:1;}i:1720346400;a:1:{i:0;i:1;}i:1720353600;a:1:{i:0;i:1;}i:1720357200;a:1:{i:1;i:1;}i:1720375200;a:1:{i:0;i:1;}i:1720389600;a:1:{i:0;i:1;}i:1720447200;a:1:{i:0;i:6;}i:1720454400;a:1:{i:0;i:3;}i:1720472400;a:1:{i:0;i:1;}i:1720483200;a:1:{i:0;i:1;}i:1720504800;a:1:{i:0;i:1;}i:1720508400;a:1:{i:0;i:1;}i:1720548000;a:1:{i:0;i:1;}i:1720594800;a:1:{i:0;i:1;}i:1720612800;a:1:{i:0;i:28;}i:1720616400;a:1:{i:0;i:28;}i:1720641600;a:1:{i:0;i:5;}i:1720663200;a:1:{i:0;i:8;}i:1720760400;a:1:{i:0;i:1;}i:1720767600;a:1:{i:0;i:1;}i:1720962000;a:1:{i:1;i:1;}i:1721102400;a:1:{i:1;i:2;}i:1721242800;a:1:{i:0;i:1;}i:1721451600;a:1:{i:0;i:4;}i:1721455200;a:1:{i:0;i:5;}i:1721458800;a:1:{i:0;i:3;}i:1721462400;a:1:{i:0;i:5;}i:1721466000;a:1:{i:0;i:3;}i:1721469600;a:1:{i:0;i:2;}i:1721473200;a:1:{i:0;i:3;}i:1721476800;a:1:{i:0;i:3;}i:1721480400;a:1:{i:0;i:4;}i:1721484000;a:1:{i:0;i:6;}i:1721487600;a:1:{i:0;i:4;}i:1721491200;a:1:{i:0;i:4;}i:1721494800;a:1:{i:0;i:7;}i:1721498400;a:1:{i:0;i:8;}i:1721502000;a:1:{i:0;i:5;}i:1721505600;a:1:{i:0;i:3;}i:1721509200;a:1:{i:0;i:3;}i:1721512800;a:1:{i:0;i:4;}i:1721516400;a:1:{i:0;i:3;}i:1721520000;a:1:{i:0;i:4;}i:1721523600;a:1:{i:0;i:11;}i:1721527200;a:1:{i:0;i:9;}i:1721530800;a:1:{i:0;i:8;}i:1721534400;a:1:{i:0;i:7;}i:1721538000;a:1:{i:0;i:9;}i:1721541600;a:1:{i:0;i:9;}i:1721545200;a:1:{i:0;i:9;}i:1721548800;a:1:{i:0;i:10;}i:1721552400;a:1:{i:0;i:9;}i:1721556000;a:1:{i:0;i:10;}i:1721559600;a:1:{i:0;i:8;}i:1721563200;a:1:{i:0;i:4;}i:1721566800;a:1:{i:0;i:7;}i:1721574000;a:1:{i:0;i:5;}i:1721577600;a:1:{i:0;i:4;}i:1721581200;a:1:{i:0;i:4;}i:1721584800;a:1:{i:0;i:6;}i:1721588400;a:1:{i:0;i:4;}i:1721592000;a:1:{i:0;i:5;}i:1721595600;a:1:{i:0;i:6;}i:1721599200;a:1:{i:0;i:5;}i:1721602800;a:1:{i:0;i:6;}i:1721606400;a:1:{i:0;i:5;}i:1721610000;a:1:{i:0;i:4;}i:1721649600;a:1:{i:0;i:3;}i:1721653200;a:1:{i:0;i:4;}i:1721656800;a:1:{i:0;i:5;}i:1721660400;a:1:{i:0;i:6;}i:1721664000;a:1:{i:0;i:2;}i:1721667600;a:1:{i:0;i:1;}i:1721689200;a:1:{i:0;i:1;}i:1721696400;a:1:{i:0;i:1;}i:1721725200;a:1:{i:0;i:1;}i:1721786400;a:1:{i:0;i:1;}i:1721793600;a:1:{i:0;i:1;}i:1721808000;a:1:{i:0;i:1;}i:1721818800;a:1:{i:0;i:1;}i:1721991600;a:1:{i:1;i:1;}i:1722016800;a:1:{i:0;i:19;}i:1722020400;a:1:{i:0;i:17;}i:1722056400;a:1:{i:0;i:10;}i:1722060000;a:1:{i:0;i:11;}i:1722063600;a:1:{i:0;i:12;}i:1722074400;a:1:{i:0;i:12;}i:1722078000;a:1:{i:0;i:23;}i:1722081600;a:1:{i:0;i:2;}i:1722106800;a:1:{i:0;i:8;}i:1722110400;a:1:{i:0;i:16;}i:1722114000;a:1:{i:0;i:7;}i:1722254400;a:1:{i:0;i:1;}i:1722286800;a:1:{i:0;i:1;}i:1722477600;a:1:{i:0;i:1;}i:1722556800;a:1:{i:0;i:3;}i:1722560400;a:1:{i:0;i:3;}i:1722589200;a:1:{i:0;i:1;}i:1722668400;a:1:{i:0;i:3;}i:1722679200;a:1:{i:0;i:1;}i:1722711600;a:1:{i:0;i:3;}i:1722736800;a:1:{i:0;i:3;}i:1722754800;a:1:{i:0;i:3;}i:1722758400;a:1:{i:0;i:1;}i:1722769200;a:1:{i:0;i:1;}i:1722780000;a:1:{i:0;i:1;}i:1722801600;a:1:{i:0;i:1;}i:1722812400;a:1:{i:0;i:1;}i:1722844800;a:1:{i:0;i:1;}i:1722884400;a:1:{i:0;i:1;}i:1722891600;a:1:{i:0;i:1;}i:1722895200;a:1:{i:0;i:1;}i:1722934800;a:1:{i:0;i:1;}i:1723021200;a:1:{i:0;i:1;}i:1723046400;a:1:{i:1;i:1;}i:1723053600;a:1:{i:0;i:1;}i:1723064400;a:1:{i:0;i:1;}i:1723114800;a:1:{i:0;i:1;}i:1723136400;a:1:{i:0;i:1;}i:1723179600;a:1:{i:0;i:1;}i:1723183200;a:1:{i:0;i:1;}i:1723273200;a:1:{i:0;i:1;}i:1723287600;a:1:{i:0;i:1;}i:1723327200;a:1:{i:0;i:1;}i:1723352400;a:1:{i:0;i:1;}i:1723449600;a:1:{i:0;i:1;}i:1723528800;a:1:{i:0;i:1;}i:1723557600;a:1:{i:0;i:2;}i:1723636800;a:1:{i:0;i:1;}i:1723705200;a:1:{i:0;i:1;}i:1723708800;a:1:{i:0;i:3;}i:1723712400;a:1:{i:0;i:1;}i:1723716000;a:1:{i:0;i:3;}i:1723870800;a:1:{i:0;i:2;}i:1723932000;a:1:{i:0;i:1;}i:1723964400;a:1:{i:0;i:2;}i:1723996800;a:1:{i:0;i:1;}i:1724050800;a:1:{i:0;i:1;}i:1724072400;a:1:{i:0;i:1;}i:1724101200;a:1:{i:0;i:1;}i:1724133600;a:1:{i:0;i:1;}i:1724140800;a:1:{i:0;i:1;}i:1724158800;a:1:{i:0;i:1;}i:1724162400;a:1:{i:0;i:1;}i:1724180400;a:1:{i:0;i:1;}i:1724191200;a:1:{i:0;i:1;}i:1724194800;a:1:{i:0;i:1;}i:1724202000;a:1:{i:0;i:1;}i:1724212800;a:1:{i:0;i:2;}i:1724223600;a:1:{i:0;i:1;}i:1724227200;a:1:{i:0;i:1;}i:1724238000;a:1:{i:0;i:1;}i:1724245200;a:1:{i:0;i:2;}i:1724256000;a:1:{i:0;i:1;}i:1724259600;a:1:{i:0;i:1;}i:1724263200;a:1:{i:0;i:1;}i:1724266800;a:1:{i:0;i:2;}i:1724270400;a:1:{i:0;i:1;}i:1724274000;a:1:{i:0;i:1;}i:1724504400;a:1:{i:0;i:1;}i:1724623200;a:1:{i:0;i:1;}i:1724745600;a:1:{i:0;i:1;}i:1724785200;a:1:{i:0;i:3;}i:1724932800;a:1:{i:0;i:3;}i:1724940000;a:1:{i:0;i:3;}i:1725004800;a:1:{i:0;i:1;}i:1725098400;a:1:{i:0;i:1;}i:1725217200;a:1:{i:0;i:2;}i:1725235200;a:1:{i:0;i:1;}i:1725350400;a:1:{i:0;i:3;}i:1725361200;a:1:{i:0;i:1;}i:1725368400;a:1:{i:0;i:3;}i:1725393600;a:1:{i:0;i:1;}i:1725397200;a:1:{i:0;i:2;}i:1725404400;a:1:{i:0;i:3;}i:1725447600;a:1:{i:0;i:1;}i:1725458400;a:1:{i:0;i:1;}i:1725480000;a:1:{i:0;i:1;}i:1725498000;a:1:{i:0;i:1;}i:1725516000;a:1:{i:0;i:1;}i:1725559200;a:1:{i:0;i:1;}i:1725566400;a:1:{i:0;i:1;}i:1725570000;a:1:{i:0;i:1;}i:1725580800;a:1:{i:0;i:1;}i:1725602400;a:1:{i:0;i:1;}i:1725624000;a:1:{i:0;i:1;}i:1725642000;a:1:{i:0;i:2;}i:1725681600;a:1:{i:0;i:1;}i:1725699600;a:1:{i:0;i:1;}i:1725706800;a:1:{i:0;i:1;}i:1725710400;a:1:{i:0;i:1;}i:1725721200;a:1:{i:0;i:1;}i:1725732000;a:1:{i:0;i:1;}i:1725786000;a:1:{i:0;i:1;}i:1725807600;a:1:{i:0;i:1;}i:1725818400;a:1:{i:0;i:1;}i:1725825600;a:1:{i:0;i:1;}i:1725940800;a:1:{i:0;i:1;}i:1726005600;a:1:{i:0;i:1;}i:1726236000;a:1:{i:0;i:1;}i:1726257600;a:1:{i:0;i:1;}i:1726308000;a:1:{i:0;i:1;}i:1727186400;a:1:{i:0;i:1;}i:1727262000;a:1:{i:0;i:1;}i:1727280000;a:1:{i:0;i:3;}i:1727283600;a:1:{i:0;i:2;}i:1727294400;a:1:{i:1;i:1;}i:1727355600;a:1:{i:0;i:1;}i:1727362800;a:1:{i:0;i:2;}i:1727395200;a:1:{i:0;i:1;}i:1727409600;a:1:{i:0;i:1;}i:1727420400;a:1:{i:0;i:1;}i:1727424000;a:1:{i:0;i:1;}i:1727452800;a:1:{i:0;i:1;}i:1727463600;a:1:{i:0;i:1;}i:1727499600;a:1:{i:0;i:1;}i:1727528400;a:1:{i:0;i:1;}i:1727557200;a:1:{i:0;i:1;}i:1727564400;a:1:{i:0;i:1;}i:1727571600;a:1:{i:0;i:1;}i:1727575200;a:1:{i:0;i:3;}i:1727578800;a:1:{i:0;i:2;}i:1727589600;a:1:{i:0;i:3;}i:1727593200;a:1:{i:0;i:2;}i:1727596800;a:1:{i:0;i:1;}i:1727600400;a:1:{i:0;i:2;}i:1727604000;a:1:{i:0;i:1;}i:1727607600;a:1:{i:0;i:1;}i:1727611200;a:1:{i:0;i:2;}i:1727614800;a:1:{i:0;i:1;}i:1727622000;a:1:{i:0;i:1;}i:1727625600;a:1:{i:0;i:1;}i:1727632800;a:1:{i:0;i:2;}i:1727636400;a:1:{i:0;i:1;}i:1727640000;a:1:{i:0;i:3;}i:1727650800;a:1:{i:0;i:2;}i:1727654400;a:1:{i:0;i:2;}i:1727658000;a:1:{i:0;i:2;}i:1727661600;a:1:{i:0;i:1;}i:1727668800;a:1:{i:0;i:1;}i:1727683200;a:1:{i:0;i:2;}i:1727694000;a:1:{i:0;i:1;}i:1727697600;a:1:{i:0;i:1;}i:1727704800;a:1:{i:0;i:1;}i:1727708400;a:1:{i:0;i:2;}i:1727712000;a:1:{i:0;i:1;}i:1727715600;a:1:{i:0;i:1;}i:1727719200;a:1:{i:0;i:1;}i:1727722800;a:1:{i:0;i:1;}i:1727733600;a:1:{i:0;i:2;}i:1727787600;a:1:{i:0;i:1;}i:1727856000;a:1:{i:0;i:1;}i:1727956800;a:1:{i:0;i:1;}i:1727982000;a:1:{i:0;i:1;}i:1728082800;a:1:{i:0;i:1;}i:1728162000;a:1:{i:0;i:1;}i:1728234000;a:1:{i:1;i:1;}i:1728302400;a:1:{i:0;i:1;}i:1728378000;a:1:{i:0;i:1;}i:1728432000;a:1:{i:0;i:1;}i:1728446400;a:1:{i:0;i:1;}i:1728489600;a:1:{i:0;i:1;}i:1728514800;a:1:{i:0;i:1;}i:1728608400;a:1:{i:0;i:3;}i:1728612000;a:1:{i:0;i:2;}i:1728615600;a:1:{i:0;i:2;}i:1728619200;a:1:{i:0;i:3;}i:1728622800;a:1:{i:0;i:4;}i:1728626400;a:1:{i:0;i:4;}i:1728630000;a:1:{i:0;i:5;}i:1728633600;a:1:{i:0;i:5;}i:1728637200;a:1:{i:0;i:4;}i:1728640800;a:1:{i:0;i:3;}i:1728644400;a:1:{i:0;i:2;}i:1728648000;a:1:{i:0;i:2;}i:1728651600;a:1:{i:0;i:1;}i:1728655200;a:1:{i:0;i:2;}i:1728658800;a:1:{i:0;i:3;}i:1728666000;a:1:{i:0;i:1;}i:1728669600;a:1:{i:0;i:3;}i:1728673200;a:1:{i:0;i:3;}i:1728676800;a:1:{i:0;i:2;}i:1728680400;a:1:{i:0;i:1;}i:1728684000;a:1:{i:0;i:2;}i:1728687600;a:1:{i:0;i:3;}i:1728691200;a:1:{i:0;i:1;}i:1728694800;a:1:{i:0;i:3;}i:1728698400;a:1:{i:0;i:2;}i:1728705600;a:1:{i:0;i:2;}i:1728709200;a:1:{i:0;i:3;}i:1728712800;a:1:{i:0;i:3;}i:1728716400;a:1:{i:0;i:2;}i:1728720000;a:1:{i:0;i:2;}i:1728723600;a:1:{i:0;i:1;}i:1728727200;a:1:{i:0;i:2;}i:1728730800;a:1:{i:0;i:1;}i:1728734400;a:1:{i:0;i:1;}i:1728766800;a:1:{i:0;i:1;}i:1728813600;a:1:{i:0;i:1;}i:1728860400;a:1:{i:0;i:1;}i:1728871200;a:1:{i:0;i:1;}i:1728932400;a:1:{i:0;i:1;}i:1728979200;a:1:{i:0;i:50;}i:1728982800;a:1:{i:0;i:36;}i:1729022400;a:1:{i:0;i:1;}i:1729036800;a:1:{i:0;i:1;}i:1729080000;a:1:{i:0;i:1;}i:1729126800;a:1:{i:0;i:1;}i:1729134000;a:1:{i:0;i:1;}i:1729141200;a:1:{i:0;i:31;}i:1729144800;a:1:{i:0;i:66;}i:1729148400;a:1:{i:0;i:11;}i:1729202400;a:1:{i:0;i:3;}i:1729224000;a:1:{i:0;i:1;}i:1729278000;a:1:{i:0;i:1;}i:1729350000;a:1:{i:0;i:1;}i:1729404000;a:1:{i:0;i:1;}i:1729411200;a:1:{i:0;i:1;}i:1729422000;a:1:{i:0;i:1;}i:1729432800;a:1:{i:0;i:1;}i:1729436400;a:1:{i:0;i:1;}i:1729443600;a:1:{i:0;i:1;}i:1729454400;a:1:{i:0;i:1;}i:1729490400;a:1:{i:0;i:1;}i:1729515600;a:1:{i:0;i:1;}i:1729544400;a:1:{i:0;i:1;}i:1729573200;a:1:{i:0;i:1;}i:1730793600;a:1:{i:0;i:1;}i:1730973600;a:1:{i:0;i:1;}i:1731013200;a:1:{i:0;i:1;}i:1731049200;a:1:{i:0;i:1;}i:1731063600;a:1:{i:0;i:1;}i:1731099600;a:1:{i:0;i:1;}i:1731114000;a:1:{i:0;i:1;}i:1731128400;a:1:{i:0;i:1;}i:1731150000;a:1:{i:0;i:1;}i:1731171600;a:1:{i:0;i:1;}i:1731229200;a:1:{i:0;i:1;}i:1731254400;a:1:{i:0;i:1;}i:1731268800;a:1:{i:0;i:1;}i:1731286800;a:1:{i:0;i:4;}i:1731290400;a:1:{i:0;i:2;}i:1731294000;a:1:{i:0;i:1;}i:1731312000;a:1:{i:0;i:1;}i:1731420000;a:1:{i:0;i:1;}i:1731441600;a:1:{i:0;i:1;}i:1731463200;a:1:{i:0;i:1;}i:1731531600;a:1:{i:0;i:1;}i:1731546000;a:1:{i:0;i:2;}i:1731556800;a:1:{i:0;i:1;}i:1731582000;a:1:{i:0;i:3;}i:1731596400;a:1:{i:0;i:1;}i:1731650400;a:1:{i:0;i:1;}i:1731664800;a:1:{i:0;i:1;}i:1731708000;a:1:{i:0;i:1;}i:1731722400;a:1:{i:0;i:1;}i:1731736800;a:1:{i:0;i:1;}i:1735045200;a:1:{i:0;i:1;}i:1735099200;a:1:{i:0;i:1;}i:1735102800;a:1:{i:0;i:1;}i:1735106400;a:1:{i:1;i:1;}i:1735135200;a:1:{i:0;i:1;}i:1735142400;a:1:{i:0;i:1;}i:1735156800;a:1:{i:0;i:1;}i:1735182000;a:1:{i:0;i:3;}i:1735185600;a:1:{i:0;i:1;}i:1735207200;a:1:{i:0;i:1;}i:1735221600;a:1:{i:0;i:1;}i:1735239600;a:1:{i:0;i:2;}i:1735311600;a:1:{i:0;i:1;}i:1735430400;a:1:{i:0;i:1;}i:1735610400;a:1:{i:0;i:1;}i:1735646400;a:1:{i:0;i:1;}i:1735678800;a:1:{i:0;i:3;}i:1735714800;a:1:{i:0;i:1;}i:1735725600;a:1:{i:0;i:1;}i:1735736400;a:1:{i:0;i:1;}i:1736172000;a:1:{i:0;i:3;}i:1737190800;a:1:{i:0;i:2;}i:1737576000;a:1:{i:0;i:1;}i:1737586800;a:1:{i:0;i:1;}i:1737604800;a:1:{i:0;i:1;}i:1737633600;a:1:{i:0;i:1;}i:1737640800;a:1:{i:0;i:1;}i:1737705600;a:1:{i:0;i:1;}i:1737712800;a:1:{i:0;i:1;}i:1737727200;a:1:{i:0;i:1;}i:1737748800;a:1:{i:0;i:1;}i:1737774000;a:1:{i:0;i:4;}i:1737777600;a:1:{i:0;i:6;}i:1737781200;a:1:{i:0;i:3;}i:1737784800;a:1:{i:0;i:2;}i:1737788400;a:1:{i:0;i:7;}i:1737810000;a:1:{i:0;i:1;}i:1737820800;a:1:{i:0;i:1;}i:1737824400;a:1:{i:0;i:1;}i:1737828000;a:1:{i:0;i:1;}i:1737831600;a:1:{i:0;i:1;}i:1737835200;a:1:{i:0;i:1;}i:1737838800;a:1:{i:0;i:1;}i:1737846000;a:1:{i:0;i:1;}i:1737853200;a:1:{i:0;i:1;}i:1737874800;a:1:{i:0;i:1;}i:1737907200;a:1:{i:0;i:1;}i:1737918000;a:1:{i:0;i:1;}i:1737928800;a:1:{i:0;i:1;}i:1737932400;a:1:{i:0;i:1;}i:1738144800;a:1:{i:1;i:1;}i:1738314000;a:1:{i:0;i:3;}i:1738375200;a:1:{i:0;i:1;}i:1738432800;a:1:{i:0;i:1;}i:1738630800;a:1:{i:0;i:6;}i:1738634400;a:1:{i:0;i:3;}i:1738987200;a:1:{i:0;i:1;}i:1738990800;a:1:{i:0;i:2;}i:1738994400;a:1:{i:0;i:5;}i:1738998000;a:1:{i:0;i:5;}i:1739001600;a:1:{i:0;i:4;}i:1739005200;a:1:{i:0;i:6;}i:1739008800;a:1:{i:0;i:7;}i:1739012400;a:1:{i:0;i:7;}i:1739016000;a:1:{i:0;i:6;}i:1739019600;a:1:{i:0;i:6;}i:1739023200;a:1:{i:0;i:3;}i:1739026800;a:1:{i:0;i:7;}i:1739030400;a:1:{i:0;i:6;}i:1739091600;a:1:{i:0;i:1;}i:1739095200;a:1:{i:0;i:1;}i:1739217600;a:1:{i:0;i:2;}i:1739239200;a:1:{i:0;i:1;}i:1739271600;a:1:{i:0;i:7;}i:1739275200;a:1:{i:0;i:8;}i:1739278800;a:1:{i:0;i:4;}i:1739282400;a:1:{i:0;i:6;}i:1739286000;a:1:{i:0;i:7;}i:1739289600;a:1:{i:0;i:9;}i:1739293200;a:1:{i:0;i:7;}i:1739296800;a:1:{i:0;i:7;}i:1739300400;a:1:{i:0;i:2;}i:1739332800;a:1:{i:0;i:2;}i:1739336400;a:1:{i:0;i:4;}i:1739340000;a:1:{i:0;i:4;}i:1739343600;a:1:{i:0;i:6;}i:1739347200;a:1:{i:0;i:6;}i:1739350800;a:1:{i:0;i:6;}i:1739354400;a:1:{i:0;i:7;}i:1739358000;a:1:{i:0;i:7;}i:1739361600;a:1:{i:0;i:1;}i:1739534400;a:1:{i:1;i:1;}i:1739667600;a:1:{i:0;i:3;}i:1739671200;a:1:{i:0;i:6;}i:1739779200;a:1:{i:0;i:1;}i:1739869200;a:1:{i:0;i:1;}i:1739872800;a:1:{i:0;i:1;}i:1740006000;a:1:{i:0;i:6;}i:1740009600;a:1:{i:0;i:3;}i:1740013200;a:1:{i:0;i:3;}i:1740049200;a:1:{i:0;i:1;}i:1740531600;a:1:{i:0;i:1;}i:1740538800;a:1:{i:0;i:1;}i:1740560400;a:1:{i:0;i:1;}i:1740582000;a:1:{i:0;i:2;}i:1740585600;a:1:{i:0;i:1;}i:1740592800;a:1:{i:0;i:2;}i:1740610800;a:1:{i:0;i:1;}i:1740625200;a:1:{i:0;i:1;}i:1740632400;a:1:{i:0;i:1;}i:1740643200;a:1:{i:0;i:1;}i:1740672000;a:1:{i:0;i:1;}i:1740690000;a:1:{i:0;i:1;}i:1740697200;a:1:{i:0;i:1;}i:1740700800;a:1:{i:0;i:1;}i:1740769200;a:1:{i:0;i:1;}i:1740891600;a:1:{i:0;i:15;}i:1740895200;a:1:{i:0;i:6;}i:1740992400;a:1:{i:0;i:1;}i:1740999600;a:1:{i:0;i:1;}i:1741010400;a:1:{i:0;i:1;}i:1741028400;a:1:{i:0;i:1;}i:1741035600;a:1:{i:0;i:1;}i:1741039200;a:1:{i:0;i:1;}i:1741046400;a:1:{i:0;i:1;}i:1741053600;a:1:{i:0;i:1;}i:1741064400;a:1:{i:0;i:1;}i:1741068000;a:1:{i:0;i:1;}i:1741075200;a:1:{i:0;i:1;}i:1741082400;a:1:{i:0;i:1;}i:1741093200;a:1:{i:0;i:1;}i:1741111200;a:1:{i:0;i:1;}i:1741165200;a:1:{i:0;i:1;}i:1741230000;a:1:{i:0;i:1;}i:1741244400;a:1:{i:0;i:1;}i:1741248000;a:1:{i:0;i:1;}i:1741258800;a:1:{i:0;i:1;}i:1741269600;a:1:{i:0;i:1;}i:1741276800;a:1:{i:0;i:1;}i:1741284000;a:1:{i:0;i:1;}i:1741334400;a:1:{i:0;i:1;}i:1741345200;a:1:{i:0;i:1;}i:1741352400;a:1:{i:0;i:1;}i:1741370400;a:1:{i:0;i:1;}i:1741442400;a:1:{i:0;i:1;}i:1741446000;a:1:{i:0;i:1;}i:1741464000;a:1:{i:0;i:2;}i:1741521600;a:1:{i:0;i:1;}i:1741525200;a:1:{i:0;i:1;}i:1741683600;a:1:{i:0;i:9;}i:1741755600;a:1:{i:0;i:1;}i:1741759200;a:1:{i:0;i:1;}i:1741802400;a:1:{i:0;i:2;}i:1742119200;a:1:{i:0;i:1;}i:1742133600;a:1:{i:0;i:1;}i:1742148000;a:1:{i:0;i:1;}i:1742151600;a:1:{i:0;i:3;}i:1742155200;a:1:{i:0;i:6;}i:1742166000;a:1:{i:0;i:1;}i:1742259600;a:1:{i:0;i:2;}i:1742464800;a:1:{i:0;i:4;}i:1742468400;a:1:{i:0;i:1;}i:1742472000;a:1:{i:0;i:2;}i:1742490000;a:1:{i:0;i:1;}i:1742504400;a:1:{i:0;i:1;}i:1742522400;a:1:{i:0;i:1;}i:1742536800;a:1:{i:0;i:1;}i:1742540400;a:1:{i:0;i:1;}i:1742544000;a:1:{i:0;i:1;}i:1742554800;a:1:{i:0;i:2;}i:1742572800;a:1:{i:0;i:1;}i:1742587200;a:1:{i:0;i:1;}i:1742605200;a:1:{i:0;i:1;}i:1742623200;a:1:{i:0;i:1;}i:1742670000;a:1:{i:0;i:1;}i:1742673600;a:1:{i:0;i:1;}i:1742680800;a:1:{i:0;i:1;}i:1742688000;a:1:{i:0;i:1;}i:1742706000;a:1:{i:0;i:1;}i:1742770800;a:1:{i:0;i:9;}i:1743012000;a:1:{i:0;i:2;}i:1743015600;a:1:{i:0;i:1;}i:1743019200;a:1:{i:0;i:1;}i:1743030000;a:1:{i:0;i:3;}i:1743033600;a:1:{i:0;i:1;}i:1743037200;a:1:{i:0;i:1;}i:1743040800;a:1:{i:0;i:1;}i:1743048000;a:1:{i:0;i:2;}i:1743055200;a:1:{i:0;i:1;}i:1743058800;a:1:{i:0;i:2;}i:1743062400;a:1:{i:0;i:2;}i:1743066000;a:1:{i:0;i:2;}i:1743069600;a:1:{i:0;i:1;}i:1743080400;a:1:{i:0;i:2;}i:1743084000;a:1:{i:0;i:1;}i:1743091200;a:1:{i:0;i:2;}i:1743094800;a:1:{i:0;i:1;}i:1743098400;a:1:{i:0;i:1;}i:1743105600;a:1:{i:0;i:1;}i:1743123600;a:1:{i:0;i:2;}i:1743127200;a:1:{i:0;i:2;}i:1743130800;a:1:{i:0;i:2;}i:1743134400;a:1:{i:0;i:1;}i:1743138000;a:1:{i:0;i:1;}i:1743141600;a:1:{i:0;i:2;}i:1743145200;a:1:{i:0;i:1;}i:1743148800;a:1:{i:0;i:1;}i:1743152400;a:1:{i:0;i:1;}i:1743159600;a:1:{i:0;i:1;}i:1743163200;a:1:{i:0;i:1;}i:1743166800;a:1:{i:0;i:4;}i:1743231600;a:1:{i:0;i:3;}i:1743235200;a:1:{i:0;i:2;}i:1743238800;a:1:{i:0;i:4;}i:1743242400;a:1:{i:0;i:1;}i:1743274800;a:1:{i:0;i:3;}i:1743278400;a:1:{i:0;i:2;}i:1743282000;a:1:{i:0;i:2;}i:1743285600;a:1:{i:0;i:2;}i:1743289200;a:1:{i:0;i:5;}i:1743292800;a:1:{i:0;i:2;}i:1743296400;a:1:{i:0;i:2;}i:1743300000;a:1:{i:0;i:1;}i:1743307200;a:1:{i:0;i:1;}i:1743310800;a:1:{i:0;i:2;}i:1743318000;a:1:{i:0;i:2;}i:1743321600;a:1:{i:0;i:5;}i:1743339600;a:1:{i:0;i:1;}i:1743343200;a:1:{i:0;i:1;}i:1743346800;a:1:{i:0;i:3;}i:1743350400;a:1:{i:0;i:2;}i:1743523200;a:1:{i:0;i:1;}i:1743526800;a:1:{i:0;i:1;}i:1743537600;a:1:{i:0;i:1;}i:1743544800;a:1:{i:0;i:2;}i:1743548400;a:1:{i:0;i:1;}i:1743552000;a:1:{i:0;i:1;}i:1743555600;a:1:{i:0;i:1;}i:1743562800;a:1:{i:0;i:2;}i:1743566400;a:1:{i:0;i:1;}i:1743570000;a:1:{i:0;i:3;}i:1743580800;a:1:{i:0;i:1;}i:1743591600;a:1:{i:0;i:1;}i:1743595200;a:1:{i:0;i:1;}i:1743667200;a:1:{i:0;i:3;}i:1743922800;a:1:{i:0;i:2;}i:1743937200;a:1:{i:0;i:1;}i:1743944400;a:1:{i:0;i:5;}i:1743948000;a:1:{i:0;i:3;}i:1744218000;a:1:{i:0;i:1;}i:1744257600;a:1:{i:0;i:5;}i:1744261200;a:1:{i:0;i:3;}i:1744264800;a:1:{i:0;i:1;}i:1744268400;a:1:{i:0;i:1;}i:1744275600;a:1:{i:0;i:2;}i:1744286400;a:1:{i:0;i:1;}i:1744293600;a:1:{i:0;i:3;}i:1744304400;a:1:{i:0;i:3;}i:1744308000;a:1:{i:0;i:2;}i:1744311600;a:1:{i:0;i:2;}i:1744315200;a:1:{i:0;i:1;}i:1744318800;a:1:{i:0;i:4;}i:1744322400;a:1:{i:0;i:3;}i:1744326000;a:1:{i:0;i:1;}i:1744329600;a:1:{i:0;i:2;}i:1744333200;a:1:{i:0;i:1;}i:1744336800;a:1:{i:0;i:1;}i:1744340400;a:1:{i:0;i:1;}i:1744344000;a:1:{i:0;i:2;}i:1744347600;a:1:{i:0;i:1;}i:1744351200;a:1:{i:0;i:1;}i:1744362000;a:1:{i:0;i:2;}i:1744365600;a:1:{i:0;i:2;}i:1744369200;a:1:{i:0;i:2;}i:1744372800;a:1:{i:0;i:3;}i:1744376400;a:1:{i:0;i:1;}i:1744380000;a:1:{i:0;i:2;}i:1744383600;a:1:{i:0;i:1;}i:1744387200;a:1:{i:0;i:3;}i:1744390800;a:1:{i:0;i:2;}i:1744394400;a:1:{i:0;i:1;}i:1744401600;a:1:{i:0;i:2;}i:1744405200;a:1:{i:0;i:1;}i:1744408800;a:1:{i:0;i:1;}i:1744412400;a:1:{i:0;i:2;}i:1744419600;a:1:{i:0;i:2;}i:1744423200;a:1:{i:0;i:2;}i:1744426800;a:1:{i:0;i:3;}i:1744434000;a:1:{i:0;i:3;}i:1744437600;a:1:{i:0;i:1;}i:1744441200;a:1:{i:0;i:2;}i:1744470000;a:1:{i:0;i:1;}i:1744473600;a:1:{i:0;i:1;}i:1744477200;a:1:{i:0;i:4;}i:1744480800;a:1:{i:0;i:2;}i:1744484400;a:1:{i:0;i:1;}i:1744488000;a:1:{i:0;i:1;}i:1744491600;a:1:{i:0;i:1;}i:1744495200;a:1:{i:0;i:1;}i:1744498800;a:1:{i:0;i:1;}i:1744502400;a:1:{i:0;i:1;}i:1744506000;a:1:{i:0;i:1;}i:1744509600;a:1:{i:0;i:1;}i:1744513200;a:1:{i:0;i:1;}i:1744516800;a:1:{i:0;i:1;}i:1744520400;a:1:{i:0;i:1;}i:1744527600;a:1:{i:0;i:1;}i:1744531200;a:1:{i:0;i:1;}i:1744610400;a:1:{i:0;i:2;}i:1744614000;a:1:{i:0;i:5;}i:1744617600;a:1:{i:0;i:2;}i:1744621200;a:1:{i:0;i:5;}i:1744624800;a:1:{i:0;i:2;}i:1744635600;a:1:{i:0;i:1;}i:1744732800;a:1:{i:0;i:1;}i:1744743600;a:1:{i:0;i:3;}i:1744837200;a:1:{i:0;i:3;}i:1745002800;a:1:{i:0;i:1;}i:1745010000;a:1:{i:0;i:1;}i:1745013600;a:1:{i:0;i:2;}i:1745020800;a:1:{i:0;i:2;}i:1745060400;a:1:{i:0;i:1;}i:1745064000;a:1:{i:0;i:1;}i:1745089200;a:1:{i:0;i:1;}i:1745096400;a:1:{i:0;i:1;}i:1745110800;a:1:{i:0;i:3;}i:1745118000;a:1:{i:0;i:1;}i:1745121600;a:1:{i:0;i:2;}i:1745132400;a:1:{i:0;i:1;}i:1745146800;a:1:{i:0;i:7;}i:1745150400;a:1:{i:0;i:1;}i:1745344800;a:1:{i:0;i:2;}i:1745550000;a:1:{i:0;i:3;}i:1745985600;a:1:{i:0;i:3;}i:1746205200;a:1:{i:0;i:4;}i:1746280800;a:1:{i:0;i:5;}i:1746284400;a:1:{i:0;i:3;}i:1746288000;a:1:{i:0;i:8;}i:1746651600;a:1:{i:0;i:1;}i:1746655200;a:1:{i:0;i:1;}i:1746666000;a:1:{i:0;i:1;}i:1746669600;a:1:{i:0;i:1;}i:1746792000;a:1:{i:0;i:1;}i:1746795600;a:1:{i:0;i:1;}i:1746799200;a:1:{i:0;i:1;}i:1746810000;a:1:{i:0;i:1;}i:1746824400;a:1:{i:0;i:3;}i:1746828000;a:1:{i:0;i:1;}i:1746878400;a:1:{i:0;i:3;}i:1746918000;a:1:{i:0;i:1;}i:1746972000;a:1:{i:1;i:1;}i:1747022400;a:1:{i:0;i:1;}i:1747026000;a:1:{i:0;i:1;}i:1747029600;a:1:{i:0;i:2;}i:1747033200;a:1:{i:0;i:14;}i:1747036800;a:1:{i:0;i:4;}i:1747054800;a:1:{i:0;i:1;}i:1747062000;a:1:{i:0;i:1;}i:1747065600;a:1:{i:0;i:1;}i:1747123200;a:1:{i:0;i:11;}i:1747126800;a:1:{i:0;i:6;}i:1747130400;a:1:{i:0;i:1;}i:1747134000;a:1:{i:0;i:1;}i:1747137600;a:1:{i:0;i:1;}i:1747141200;a:1:{i:0;i:1;}i:1747155600;a:1:{i:0;i:1;}i:1747645200;a:1:{i:0;i:2;}i:1747648800;a:1:{i:0;i:1;}i:1747652400;a:1:{i:0;i:2;}i:1747656000;a:1:{i:0;i:3;}i:1747659600;a:1:{i:0;i:1;}i:1747663200;a:1:{i:0;i:2;}i:1747666800;a:1:{i:0;i:1;}i:1747670400;a:1:{i:0;i:4;}i:1747674000;a:1:{i:0;i:1;}i:1747677600;a:1:{i:0;i:2;}i:1747681200;a:1:{i:0;i:1;}i:1747684800;a:1:{i:0;i:2;}i:1747692000;a:1:{i:0;i:4;}i:1747695600;a:1:{i:0;i:6;}i:1747699200;a:1:{i:0;i:3;}i:1747702800;a:1:{i:0;i:4;}i:1747706400;a:1:{i:0;i:3;}i:1747710000;a:1:{i:0;i:5;}i:1747713600;a:1:{i:0;i:6;}i:1747717200;a:1:{i:0;i:3;}i:1747720800;a:1:{i:0;i:6;}i:1747724400;a:1:{i:0;i:2;}i:1747728000;a:1:{i:0;i:4;}i:1747731600;a:1:{i:0;i:3;}i:1747735200;a:1:{i:0;i:2;}i:1747738800;a:1:{i:0;i:1;}i:1747742400;a:1:{i:0;i:2;}i:1747746000;a:1:{i:0;i:5;}i:1747789200;a:1:{i:0;i:5;}i:1747792800;a:1:{i:0;i:6;}i:1747893600;a:1:{i:0;i:2;}i:1747922400;a:1:{i:0;i:8;}i:1748246400;a:1:{i:1;i:1;}i:1748397600;a:1:{i:0;i:3;}i:1748509200;a:1:{i:0;i:3;}i:1748523600;a:1:{i:0;i:1;}i:1748556000;a:1:{i:0;i:8;}i:1748606400;a:1:{i:0;i:2;}i:1748624400;a:1:{i:0;i:2;}i:1748628000;a:1:{i:0;i:1;}i:1748631600;a:1:{i:0;i:8;}i:1748635200;a:1:{i:0;i:2;}i:1748642400;a:1:{i:0;i:2;}i:1748678400;a:1:{i:0;i:2;}i:1748746800;a:1:{i:0;i:2;}i:1748826000;a:1:{i:0;i:5;}i:1748829600;a:1:{i:0;i:3;}i:1748973600;a:1:{i:0;i:2;}i:1749009600;a:1:{i:0;i:1;}i:1749016800;a:1:{i:0;i:2;}i:1749034800;a:1:{i:0;i:2;}i:1749042000;a:1:{i:0;i:8;}i:1749074400;a:1:{i:0;i:5;}i:1749078000;a:1:{i:0;i:14;}i:1749081600;a:1:{i:0;i:1;}i:1749146400;a:1:{i:0;i:2;}i:1749225600;a:1:{i:0;i:1;}i:1749304800;a:1:{i:0;i:3;}i:1749308400;a:1:{i:0;i:6;}i:1749430800;a:1:{i:0;i:1;}i:1749474000;a:1:{i:0;i:3;}i:1749495600;a:1:{i:0;i:4;}i:1749700800;a:1:{i:0;i:6;}i:1749704400;a:1:{i:0;i:1;}i:1749740400;a:1:{i:0;i:1;}i:1749776400;a:1:{i:0;i:1;}i:1749790800;a:1:{i:0;i:1;}i:1749805200;a:1:{i:0;i:1;}i:1749826800;a:1:{i:0;i:2;}i:1749837600;a:1:{i:0;i:1;}i:1749956400;a:1:{i:0;i:1;}i:1750035600;a:1:{i:0;i:1;}i:1750147200;a:1:{i:0;i:2;}i:1750150800;a:1:{i:0;i:6;}i:1750194000;a:1:{i:0;i:1;}i:1750208400;a:1:{i:0;i:1;}i:1750212000;a:1:{i:0;i:5;}i:1750215600;a:1:{i:0;i:3;}i:1750244400;a:1:{i:0;i:1;}i:1750312800;a:1:{i:0;i:1;}i:1750320000;a:1:{i:0;i:1;}i:1750323600;a:1:{i:0;i:1;}i:1750352400;a:1:{i:0;i:1;}i:1750402800;a:1:{i:0;i:1;}i:1750464000;a:1:{i:0;i:2;}i:1750482000;a:1:{i:0;i:1;}i:1750503600;a:1:{i:0;i:1;}i:1750507200;a:1:{i:0;i:1;}i:1750521600;a:1:{i:0;i:1;}i:1750528800;a:1:{i:0;i:1;}i:1750575600;a:1:{i:0;i:2;}i:1750590000;a:1:{i:0;i:8;}i:1750816800;a:1:{i:0;i:3;}i:1750978800;a:1:{i:0;i:1;}i:1751065200;a:1:{i:0;i:3;}i:1751130000;a:1:{i:0;i:1;}i:1751133600;a:1:{i:0;i:7;}i:1751220000;a:1:{i:0;i:3;}i:1751266800;a:1:{i:0;i:3;}i:1751270400;a:1:{i:0;i:6;}i:1751328000;a:1:{i:0;i:1;}i:1751436000;a:1:{i:0;i:4;}i:1751756400;a:1:{i:0;i:2;}i:1751760000;a:1:{i:0;i:1;}i:1751839200;a:1:{i:0;i:2;}i:1751918400;a:1:{i:0;i:2;}i:1751954400;a:1:{i:0;i:1;}i:1751997600;a:1:{i:0;i:1;}i:1752084000;a:1:{i:0;i:3;}i:1752170400;a:1:{i:0;i:6;}i:1752174000;a:1:{i:0;i:2;}i:1752177600;a:1:{i:0;i:6;}i:1752181200;a:1:{i:0;i:7;}i:1752184800;a:1:{i:0;i:6;}i:1752188400;a:1:{i:0;i:6;}i:1752206400;a:1:{i:0;i:1;}i:1752231600;a:1:{i:0;i:4;}i:1752238800;a:1:{i:0;i:5;}i:1752246000;a:1:{i:0;i:6;}i:1752253200;a:1:{i:0;i:7;}i:1752256800;a:1:{i:0;i:2;}i:1752260400;a:1:{i:0;i:18;}i:1752271200;a:1:{i:0;i:5;}i:1752282000;a:1:{i:0;i:6;}i:1752285600;a:1:{i:0;i:9;}i:1752292800;a:1:{i:0;i:8;}i:1752303600;a:1:{i:0;i:8;}i:1752318000;a:1:{i:0;i:12;}i:1752328800;a:1:{i:0;i:5;}i:1752339600;a:1:{i:0;i:6;}i:1752350400;a:1:{i:0;i:11;}i:1752364800;a:1:{i:0;i:12;}i:1752375600;a:1:{i:0;i:8;}i:1752415200;a:1:{i:0;i:8;}i:1752426000;a:1:{i:0;i:6;}i:1752440400;a:1:{i:0;i:9;}i:1752451200;a:1:{i:0;i:13;}i:1752462000;a:1:{i:0;i:7;}i:1752476400;a:1:{i:0;i:8;}i:1752490800;a:1:{i:0;i:8;}i:1752505200;a:1:{i:0;i:9;}i:1752512400;a:1:{i:0;i:1;}i:1752559200;a:1:{i:0;i:9;}i:1752573600;a:1:{i:0;i:8;}i:1752591600;a:1:{i:0;i:13;}i:1752602400;a:1:{i:0;i:1;}i:1752649200;a:1:{i:0;i:10;}i:1752667200;a:1:{i:0;i:12;}i:1752685200;a:1:{i:0;i:13;}i:1752742800;a:1:{i:0;i:11;}i:1752760800;a:1:{i:0;i:10;}i:1752775200;a:1:{i:0;i:6;}i:1752789600;a:1:{i:0;i:13;}i:1752804000;a:1:{i:0;i:7;}i:1752807600;a:1:{i:0;i:4;}i:1752811200;a:1:{i:0;i:23;}i:1752822000;a:1:{i:0;i:10;}i:1752858000;a:1:{i:0;i:6;}i:1752861600;a:1:{i:0;i:3;}i:1752976800;a:1:{i:0;i:2;}i:1753056000;a:1:{i:0;i:5;}i:1753059600;a:1:{i:0;i:3;}i:1753232400;a:1:{i:0;i:1;}i:1753239600;a:1:{i:0;i:1;}i:1753318800;a:1:{i:0;i:6;}i:1753322400;a:1:{i:0;i:3;}i:1753405200;a:1:{i:0;i:3;}i:1753408800;a:1:{i:0;i:6;}i:1753441200;a:1:{i:1;i:3;}i:1753452000;a:1:{i:0;i:9;}i:1753743600;a:1:{i:0;i:2;}i:1753808400;a:1:{i:0;i:2;}i:1753812000;a:1:{i:0;i:8;}i:1753815600;a:1:{i:0;i:6;}i:1753869600;a:1:{i:0;i:3;}i:1753873200;a:1:{i:0;i:5;}i:1753912800;a:1:{i:0;i:2;}i:1754168400;a:1:{i:0;i:1;}i:1754276400;a:1:{i:0;i:1;}i:1754283600;a:1:{i:0;i:2;}i:1754287200;a:1:{i:0;i:3;}i:1754388000;a:1:{i:0;i:8;}i:1754391600;a:1:{i:0;i:3;}i:1754402400;a:1:{i:0;i:8;}i:1754420400;a:1:{i:0;i:3;}i:1754456400;a:1:{i:0;i:1;}i:1754492400;a:1:{i:0;i:1;}i:1754730000;a:1:{i:0;i:1;}i:1754737200;a:1:{i:0;i:1;}i:1754816400;a:1:{i:0;i:1;}i:1754838000;a:1:{i:0;i:6;}i:1754841600;a:1:{i:0;i:3;}i:1754845200;a:1:{i:0;i:3;}i:1754848800;a:1:{i:0;i:3;}i:1754931600;a:1:{i:0;i:2;}i:1754946000;a:1:{i:0;i:1;}i:1754949600;a:1:{i:0;i:8;}i:1754967600;a:1:{i:0;i:7;}i:1755162000;a:1:{i:1;i:4;}i:1755403200;a:1:{i:0;i:1;}i:1755414000;a:1:{i:0;i:1;}i:1755424800;a:1:{i:0;i:1;}i:1755475200;a:1:{i:0;i:1;}i:1755478800;a:1:{i:0;i:1;}i:1755493200;a:1:{i:0;i:1;}i:1755525600;a:1:{i:0;i:1;}i:1755558000;a:1:{i:0;i:1;}i:1755630000;a:1:{i:0;i:1;}i:1755694800;a:1:{i:0;i:1;}i:1755709200;a:1:{i:0;i:1;}i:1755723600;a:1:{i:0;i:1;}i:1755763200;a:1:{i:0;i:1;}i:1755918000;a:1:{i:0;i:1;}i:1755939600;a:1:{i:0;i:1;}i:1755957600;a:1:{i:0;i:1;}i:1755975600;a:1:{i:0;i:1;}i:1755982800;a:1:{i:0;i:4;}i:1756018800;a:1:{i:0;i:2;}i:1756022400;a:1:{i:0;i:2;}i:1756044000;a:1:{i:0;i:1;}i:1756087200;a:1:{i:0;i:2;}i:1756090800;a:1:{i:0;i:2;}i:1756206000;a:1:{i:1;i:1;}i:1756209600;a:1:{i:0;i:1;}i:1756216800;a:1:{i:0;i:1;}i:1756256400;a:1:{i:0;i:1;}i:1756292400;a:1:{i:0;i:1;}i:1756324800;a:1:{i:0;i:1;}i:1756393200;a:1:{i:0;i:2;}i:1756432800;a:1:{i:0;i:1;}i:1756443600;a:1:{i:0;i:1;}i:1756497600;a:1:{i:0;i:2;}i:1756620000;a:1:{i:0;i:1;}i:1756663200;a:1:{i:0;i:1;}i:1756724400;a:1:{i:0;i:1;}i:1756749600;a:1:{i:0;i:1;}i:1756810800;a:1:{i:1;i:1;}i:1756897200;a:1:{i:0;i:1;}i:1756918800;a:1:{i:0;i:1;}i:1756972800;a:1:{i:0;i:1;}i:1757480400;a:1:{i:1;i:1;}i:1757509200;a:1:{i:0;i:1;}i:1757566800;a:1:{i:0;i:1;}i:1757606400;a:1:{i:0;i:1;}i:1757620800;a:1:{i:0;i:4;}i:1757628000;a:1:{i:0;i:1;}i:1757642400;a:1:{i:0;i:1;}i:1757649600;a:1:{i:0;i:1;}i:1757667600;a:1:{i:0;i:1;}i:1757689200;a:1:{i:0;i:3;}i:1757692800;a:1:{i:0;i:1;}i:1757696400;a:1:{i:0;i:1;}i:1757700000;a:1:{i:0;i:3;}i:1757725200;a:1:{i:0;i:1;}i:1757736000;a:1:{i:0;i:1;}i:1757746800;a:1:{i:0;i:1;}i:1757757600;a:1:{i:0;i:1;}i:1757772000;a:1:{i:0;i:1;}i:1757826000;a:1:{i:0;i:1;}i:1757923200;a:1:{i:0;i:1;}i:1757980800;a:1:{i:0;i:1;}i:1758009600;a:1:{i:0;i:2;}i:1758045600;a:1:{i:0;i:1;}i:1758049200;a:1:{i:0;i:2;}i:1758052800;a:1:{i:0;i:1;}i:1758056400;a:1:{i:0;i:1;}i:1758060000;a:1:{i:0;i:1;}i:1758063600;a:1:{i:0;i:2;}i:1758067200;a:1:{i:0;i:1;}i:1758070800;a:1:{i:0;i:1;}i:1758074400;a:1:{i:0;i:1;}i:1758078000;a:1:{i:0;i:2;}i:1758081600;a:1:{i:0;i:1;}i:1758085200;a:1:{i:0;i:1;}i:1758322800;a:1:{i:0;i:2;}i:1758348000;a:1:{i:0;i:3;}i:1758470400;a:1:{i:0;i:2;}i:1758474000;a:1:{i:0;i:1;}i:1758477600;a:1:{i:0;i:1;}i:1758481200;a:1:{i:0;i:2;}i:1758488400;a:1:{i:0;i:1;}i:1758502800;a:1:{i:0;i:1;}i:1758506400;a:1:{i:0;i:1;}i:1758517200;a:1:{i:0;i:1;}i:1758520800;a:1:{i:0;i:1;}i:1758535200;a:1:{i:0;i:1;}i:1758560400;a:1:{i:0;i:1;}i:1758697200;a:1:{i:0;i:1;}i:1758783600;a:1:{i:0;i:1;}i:1758787200;a:1:{i:0;i:1;}i:1758798000;a:1:{i:0;i:4;}i:1758801600;a:1:{i:0;i:2;}i:1758808800;a:1:{i:0;i:1;}i:1758823200;a:1:{i:0;i:1;}i:1758834000;a:1:{i:0;i:1;}i:1758848400;a:1:{i:0;i:1;}i:1758873600;a:1:{i:0;i:2;}i:1758877200;a:1:{i:0;i:2;}i:1758888000;a:1:{i:0;i:2;}i:1758895200;a:1:{i:0;i:2;}i:1758898800;a:1:{i:0;i:1;}i:1758902400;a:1:{i:0;i:1;}i:1758906000;a:1:{i:0;i:2;}i:1758913200;a:1:{i:0;i:1;}i:1758967200;a:1:{i:0;i:38;}i:1758970800;a:1:{i:0;i:40;}i:1758974400;a:1:{i:0;i:54;}i:1758978000;a:1:{i:0;i:44;}i:1758981600;a:1:{i:0;i:1;}i:1759014000;a:1:{i:0;i:2;}i:1759021200;a:1:{i:0;i:1;}i:1759042800;a:1:{i:0;i:2;}i:1759050000;a:1:{i:0;i:1;}i:1759064400;a:1:{i:0;i:2;}i:1759075200;a:1:{i:0;i:1;}i:1759082400;a:1:{i:0;i:1;}i:1759086000;a:1:{i:0;i:1;}i:1759093200;a:1:{i:0;i:1;}i:1759107600;a:1:{i:0;i:1;}i:1759147200;a:1:{i:0;i:1;}i:1759158000;a:1:{i:0;i:1;}i:1759165200;a:1:{i:0;i:1;}i:1759190400;a:1:{i:0;i:1;}i:1759212000;a:1:{i:0;i:1;}i:1759330800;a:1:{i:0;i:1;}i:1759417200;a:1:{i:0;i:1;}i:1759507200;a:1:{i:0;i:2;}i:1759568400;a:1:{i:0;i:2;}i:1759845600;a:1:{i:0;i:3;}i:1759906800;a:1:{i:0;i:1;}i:1760119200;a:1:{i:0;i:3;}i:1760180400;a:1:{i:0;i:3;}i:1760184000;a:1:{i:0;i:1;}i:1760194800;a:1:{i:0;i:1;}i:1760205600;a:1:{i:0;i:1;}i:1760209200;a:1:{i:0;i:3;}i:1760216400;a:1:{i:0;i:2;}i:1760230800;a:1:{i:0;i:1;}i:1760234400;a:1:{i:0;i:1;}i:1760238000;a:1:{i:0;i:1;}i:1760241600;a:1:{i:0;i:2;}i:1760248800;a:1:{i:0;i:1;}i:1760259600;a:1:{i:0;i:1;}i:1760263200;a:1:{i:0;i:1;}i:1760274000;a:1:{i:0;i:1;}i:1760284800;a:1:{i:0;i:1;}i:1760288400;a:1:{i:0;i:4;}i:1760292000;a:1:{i:0;i:2;}i:1760299200;a:1:{i:0;i:1;}i:1760302800;a:1:{i:0;i:2;}i:1760306400;a:1:{i:0;i:5;}i:1760313600;a:1:{i:0;i:4;}i:1760317200;a:1:{i:0;i:1;}i:1760320800;a:1:{i:0;i:2;}i:1760324400;a:1:{i:0;i:2;}i:1760328000;a:1:{i:0;i:2;}i:1760331600;a:1:{i:0;i:3;}i:1760335200;a:1:{i:0;i:4;}i:1760338800;a:1:{i:0;i:2;}i:1760342400;a:1:{i:0;i:1;}i:1760346000;a:1:{i:0;i:4;}i:1760353200;a:1:{i:0;i:3;}i:1760360400;a:1:{i:0;i:1;}i:1760371200;a:1:{i:0;i:1;}i:1760374800;a:1:{i:0;i:2;}i:1760392800;a:1:{i:0;i:1;}i:1760396400;a:1:{i:0;i:1;}i:1760403600;a:1:{i:0;i:2;}i:1760407200;a:1:{i:0;i:1;}i:1760410800;a:1:{i:0;i:1;}i:1760418000;a:1:{i:0;i:1;}i:1760421600;a:1:{i:0;i:1;}i:1760428800;a:1:{i:0;i:1;}i:1760432400;a:1:{i:0;i:1;}i:1760439600;a:1:{i:0;i:1;}i:1760443200;a:1:{i:0;i:1;}i:1760446800;a:1:{i:0;i:1;}i:1760450400;a:1:{i:0;i:1;}i:1760457600;a:1:{i:0;i:4;}i:1760464800;a:1:{i:0;i:1;}i:1760475600;a:1:{i:0;i:3;}i:1760486400;a:1:{i:0;i:2;}i:1760490000;a:1:{i:0;i:1;}i:1760493600;a:1:{i:0;i:1;}i:1760497200;a:1:{i:0;i:2;}i:1760504400;a:1:{i:0;i:2;}i:1760508000;a:1:{i:0;i:1;}i:1760511600;a:1:{i:0;i:2;}i:1760526000;a:1:{i:0;i:1;}i:1760529600;a:1:{i:0;i:3;}i:1760533200;a:1:{i:0;i:1;}i:1760536800;a:1:{i:0;i:1;}i:1760540400;a:1:{i:0;i:3;}i:1760544000;a:1:{i:0;i:1;}i:1760547600;a:1:{i:0;i:3;}i:1760551200;a:1:{i:0;i:1;}i:1760554800;a:1:{i:0;i:1;}i:1760558400;a:1:{i:0;i:1;}i:1760562000;a:1:{i:0;i:6;}i:1760565600;a:1:{i:0;i:2;}i:1760569200;a:1:{i:0;i:1;}i:1760572800;a:1:{i:0;i:3;}i:1760580000;a:1:{i:0;i:3;}i:1760583600;a:1:{i:0;i:3;}i:1760590800;a:1:{i:0;i:1;}i:1760594400;a:1:{i:0;i:6;}i:1760598000;a:1:{i:0;i:4;}i:1760601600;a:1:{i:0;i:4;}i:1760612400;a:1:{i:0;i:7;}i:1760616000;a:1:{i:0;i:1;}i:1760619600;a:1:{i:0;i:3;}i:1760623200;a:1:{i:0;i:2;}i:1760626800;a:1:{i:0;i:2;}i:1760630400;a:1:{i:0;i:2;}i:1760634000;a:1:{i:0;i:1;}i:1760637600;a:1:{i:0;i:3;}i:1760641200;a:1:{i:0;i:2;}i:1760644800;a:1:{i:0;i:2;}i:1760648400;a:1:{i:0;i:3;}i:1760652000;a:1:{i:0;i:3;}i:1760655600;a:1:{i:0;i:1;}i:1760659200;a:1:{i:0;i:4;}i:1760662800;a:1:{i:0;i:2;}i:1760666400;a:1:{i:0;i:1;}i:1760670000;a:1:{i:0;i:3;}i:1760673600;a:1:{i:0;i:1;}i:1760677200;a:1:{i:0;i:2;}i:1760688000;a:1:{i:0;i:1;}i:1760691600;a:2:{i:1;i:1;i:0;i:1;}i:1760695200;a:1:{i:0;i:1;}i:1760698800;a:1:{i:0;i:1;}i:1760702400;a:1:{i:0;i:5;}i:1760706000;a:1:{i:0;i:2;}i:1760709600;a:1:{i:0;i:3;}i:1760716800;a:1:{i:0;i:2;}i:1760720400;a:1:{i:0;i:3;}i:1760724000;a:1:{i:0;i:2;}i:1760731200;a:1:{i:0;i:2;}i:1760734800;a:1:{i:0;i:3;}i:1760738400;a:1:{i:0;i:4;}i:1760742000;a:1:{i:0;i:2;}i:1760745600;a:1:{i:0;i:1;}i:1760749200;a:1:{i:0;i:1;}i:1760752800;a:1:{i:0;i:1;}i:1760756400;a:1:{i:0;i:1;}i:1760760000;a:1:{i:0;i:2;}i:1760767200;a:1:{i:0;i:3;}i:1760770800;a:1:{i:0;i:1;}i:1760774400;a:1:{i:0;i:3;}i:1760778000;a:1:{i:0;i:1;}i:1760781600;a:1:{i:0;i:1;}i:1760785200;a:1:{i:0;i:1;}i:1760788800;a:1:{i:0;i:3;}i:1760792400;a:1:{i:0;i:1;}i:1760796000;a:1:{i:0;i:1;}i:1760799600;a:1:{i:0;i:1;}i:1760803200;a:1:{i:0;i:2;}i:1760806800;a:1:{i:0;i:3;}i:1760810400;a:1:{i:0;i:1;}i:1760814000;a:1:{i:0;i:1;}i:1760817600;a:1:{i:0;i:1;}i:1760835600;a:1:{i:0;i:1;}i:1760842800;a:1:{i:0;i:1;}i:1760857200;a:1:{i:0;i:2;}i:1760860800;a:1:{i:0;i:1;}i:1760864400;a:1:{i:0;i:2;}i:1760868000;a:1:{i:0;i:3;}i:1760871600;a:1:{i:0;i:1;}i:1760878800;a:1:{i:0;i:3;}i:1760882400;a:1:{i:0;i:3;}i:1760886000;a:1:{i:0;i:1;}i:1760889600;a:1:{i:0;i:1;}i:1760893200;a:1:{i:0;i:5;}i:1760896800;a:1:{i:0;i:3;}i:1760900400;a:1:{i:0;i:4;}i:1760904000;a:1:{i:0;i:2;}i:1760918400;a:1:{i:0;i:1;}i:1760922000;a:1:{i:0;i:1;}i:1760936400;a:1:{i:0;i:2;}i:1760943600;a:1:{i:0;i:1;}i:1760947200;a:1:{i:0;i:1;}i:1760950800;a:1:{i:0;i:1;}i:1760954400;a:1:{i:0;i:1;}i:1760958000;a:1:{i:0;i:8;}i:1760961600;a:1:{i:0;i:23;}i:1760965200;a:1:{i:0;i:27;}i:1760968800;a:1:{i:0;i:21;}i:1760972400;a:1:{i:0;i:22;}i:1760976000;a:1:{i:0;i:15;}i:1760979600;a:1:{i:0;i:28;}i:1760983200;a:1:{i:0;i:27;}i:1760986800;a:1:{i:0;i:26;}i:1760990400;a:1:{i:0;i:21;}i:1760994000;a:1:{i:0;i:29;}i:1760997600;a:1:{i:0;i:17;}i:1761001200;a:1:{i:0;i:17;}i:1761004800;a:1:{i:0;i:27;}i:1761008400;a:1:{i:0;i:28;}i:1761012000;a:1:{i:0;i:31;}i:1761015600;a:1:{i:0;i:26;}i:1761019200;a:1:{i:0;i:15;}i:1761022800;a:1:{i:0;i:27;}i:1761026400;a:1:{i:0;i:20;}i:1761030000;a:1:{i:0;i:7;}i:1761033600;a:1:{i:0;i:1;}i:1761037200;a:1:{i:0;i:1;}i:1761040800;a:1:{i:0;i:2;}i:1761044400;a:1:{i:0;i:1;}i:1761048000;a:1:{i:0;i:4;}i:1761051600;a:1:{i:0;i:1;}i:1761055200;a:1:{i:0;i:3;}i:1761058800;a:1:{i:0;i:2;}i:1761062400;a:1:{i:0;i:1;}i:1761066000;a:1:{i:0;i:5;}i:1761069600;a:1:{i:0;i:1;}i:1761073200;a:1:{i:0;i:3;}i:1761076800;a:1:{i:0;i:2;}i:1761084000;a:1:{i:0;i:2;}i:1761087600;a:1:{i:0;i:1;}i:1761091200;a:1:{i:0;i:4;}i:1761094800;a:1:{i:0;i:2;}i:1761098400;a:1:{i:0;i:2;}i:1761102000;a:1:{i:0;i:1;}i:1761105600;a:1:{i:0;i:2;}i:1761109200;a:1:{i:0;i:4;}i:1761112800;a:1:{i:0;i:3;}i:1761116400;a:1:{i:0;i:3;}i:1761120000;a:1:{i:0;i:2;}i:1761123600;a:1:{i:0;i:3;}i:1761127200;a:1:{i:0;i:4;}i:1761130800;a:1:{i:0;i:4;}i:1761134400;a:1:{i:0;i:3;}i:1761138000;a:1:{i:0;i:2;}i:1761141600;a:1:{i:0;i:1;}i:1761145200;a:1:{i:0;i:3;}i:1761148800;a:2:{i:0;i:2;i:1;i:1;}i:1761152400;a:1:{i:0;i:1;}i:1761159600;a:1:{i:0;i:1;}i:1761163200;a:1:{i:0;i:2;}i:1761170400;a:2:{i:0;i:3;i:1;i:1;}i:1761174000;a:1:{i:0;i:1;}i:1761177600;a:1:{i:0;i:4;}i:1761181200;a:1:{i:0;i:4;}i:1761184800;a:1:{i:0;i:2;}i:1761188400;a:1:{i:0;i:1;}i:1761192000;a:1:{i:0;i:1;}i:1761195600;a:1:{i:0;i:1;}i:1761199200;a:1:{i:0;i:1;}i:1761202800;a:1:{i:0;i:4;}i:1761206400;a:1:{i:0;i:1;}i:1761210000;a:1:{i:0;i:2;}i:1761213600;a:1:{i:0;i:1;}i:1761217200;a:1:{i:0;i:1;}i:1761220800;a:1:{i:0;i:3;}i:1761224400;a:1:{i:0;i:1;}i:1761228000;a:1:{i:0;i:1;}i:1761235200;a:1:{i:0;i:1;}i:1761238800;a:1:{i:0;i:2;}i:1761242400;a:1:{i:0;i:1;}i:1761249600;a:1:{i:0;i:2;}i:1761256800;a:1:{i:0;i:2;}i:1761260400;a:1:{i:0;i:1;}i:1761264000;a:1:{i:0;i:1;}i:1761271200;a:1:{i:0;i:1;}i:1761274800;a:1:{i:0;i:1;}i:1761278400;a:1:{i:0;i:5;}i:1761282000;a:1:{i:0;i:1;}i:1761289200;a:1:{i:0;i:1;}i:1761292800;a:1:{i:0;i:1;}i:1761300000;a:1:{i:0;i:1;}i:1761314400;a:1:{i:0;i:2;}i:1761336000;a:1:{i:0;i:1;}i:1761343200;a:1:{i:0;i:2;}i:1761346800;a:1:{i:0;i:3;}i:1761357600;a:1:{i:0;i:1;}i:1761368400;a:1:{i:0;i:2;}i:1761375600;a:1:{i:0;i:4;}i:1761379200;a:1:{i:0;i:1;}i:1761386400;a:1:{i:0;i:1;}i:1761397200;a:1:{i:0;i:1;}i:1761400800;a:1:{i:0;i:1;}i:1761404400;a:1:{i:0;i:1;}i:1761418800;a:1:{i:0;i:1;}i:1761422400;a:1:{i:0;i:2;}i:1761426000;a:1:{i:0;i:1;}i:1761433200;a:1:{i:0;i:1;}i:1761444000;a:1:{i:0;i:1;}i:1761447600;a:1:{i:0;i:1;}i:1761469200;a:1:{i:0;i:1;}i:1761476400;a:1:{i:0;i:2;}i:1761480000;a:1:{i:0;i:1;}i:1761483600;a:1:{i:0;i:1;}i:1761494400;a:1:{i:0;i:1;}i:1761498000;a:1:{i:0;i:3;}i:1761501600;a:1:{i:0;i:1;}i:1761505200;a:1:{i:0;i:1;}i:1761508800;a:1:{i:0;i:3;}i:1761512400;a:1:{i:0;i:2;}i:1761516000;a:1:{i:0;i:3;}i:1761526800;a:1:{i:0;i:1;}i:1761530400;a:1:{i:0;i:2;}i:1761534000;a:1:{i:0;i:1;}i:1761537600;a:1:{i:0;i:3;}i:1761544800;a:1:{i:0;i:1;}i:1761555600;a:1:{i:0;i:1;}i:1761562800;a:1:{i:0;i:1;}i:1761566400;a:1:{i:0;i:2;}i:1761573600;a:1:{i:0;i:1;}i:1761588000;a:1:{i:0;i:3;}i:1761591600;a:1:{i:0;i:3;}i:1761595200;a:1:{i:0;i:1;}i:1761598800;a:1:{i:0;i:1;}i:1761602400;a:1:{i:0;i:1;}i:1761624000;a:1:{i:0;i:1;}i:1761631200;a:1:{i:0;i:3;}i:1761634800;a:1:{i:0;i:1;}i:1761638400;a:1:{i:0;i:4;}i:1761642000;a:1:{i:0;i:1;}i:1761645600;a:1:{i:0;i:3;}i:1761649200;a:1:{i:0;i:1;}i:1761652800;a:1:{i:0;i:1;}i:1761663600;a:1:{i:0;i:1;}i:1761670800;a:1:{i:0;i:1;}i:1761678000;a:1:{i:0;i:2;}i:1761685200;a:1:{i:0;i:1;}i:1761692400;a:1:{i:0;i:3;}i:1761706800;a:1:{i:0;i:3;}i:1761714000;a:1:{i:0;i:2;}i:1761717600;a:1:{i:0;i:1;}i:1761721200;a:1:{i:0;i:1;}i:1761724800;a:1:{i:0;i:1;}i:1761728400;a:1:{i:0;i:1;}i:1761732000;a:1:{i:0;i:3;}i:1761742800;a:1:{i:0;i:1;}i:1761746400;a:1:{i:0;i:2;}i:1761750000;a:1:{i:0;i:2;}i:1761753600;a:1:{i:0;i:1;}i:1761764400;a:1:{i:0;i:2;}i:1761768000;a:1:{i:0;i:1;}i:1761771600;a:1:{i:0;i:1;}i:1761775200;a:1:{i:0;i:2;}i:1761778800;a:1:{i:0;i:1;}i:1761782400;a:1:{i:0;i:1;}i:1761789600;a:1:{i:0;i:1;}i:1761804000;a:1:{i:0;i:2;}i:1761807600;a:1:{i:0;i:1;}i:1761811200;a:1:{i:0;i:2;}i:1761814800;a:1:{i:0;i:3;}i:1761818400;a:1:{i:0;i:3;}i:1761822000;a:1:{i:0;i:2;}i:1761894000;a:1:{i:0;i:1;}i:1761901200;a:1:{i:0;i:3;}i:1761904800;a:1:{i:0;i:6;}i:1761908400;a:1:{i:0;i:4;}i:1761912000;a:1:{i:0;i:1;}i:1761922800;a:1:{i:0;i:1;}i:1761926400;a:1:{i:0;i:1;}i:1761930000;a:1:{i:0;i:4;}i:1761933600;a:1:{i:0;i:6;}i:1761937200;a:1:{i:0;i:1;}i:1761940800;a:1:{i:0;i:2;}i:1761944400;a:1:{i:0;i:1;}i:1761951600;a:1:{i:0;i:3;}i:1761955200;a:1:{i:0;i:4;}i:1761958800;a:1:{i:0;i:1;}i:1761962400;a:1:{i:0;i:1;}i:1761969600;a:1:{i:0;i:1;}i:1761973200;a:1:{i:0;i:1;}i:1761980400;a:1:{i:0;i:4;}i:1761984000;a:1:{i:0;i:1;}i:1761987600;a:1:{i:0;i:5;}i:1761991200;a:1:{i:0;i:1;}i:1761994800;a:1:{i:0;i:3;}i:1761998400;a:1:{i:0;i:1;}i:1762002000;a:1:{i:0;i:2;}i:1762005600;a:1:{i:0;i:5;}i:1762009200;a:1:{i:0;i:7;}i:1762012800;a:1:{i:0;i:1;}i:1762016400;a:1:{i:0;i:1;}i:1762020000;a:1:{i:0;i:1;}i:1762023600;a:1:{i:0;i:2;}i:1762027200;a:1:{i:0;i:2;}i:1762030800;a:1:{i:0;i:1;}i:1762034400;a:1:{i:0;i:1;}i:1762038000;a:1:{i:0;i:1;}i:1762041600;a:1:{i:0;i:3;}i:1762045200;a:1:{i:0;i:3;}i:1762048800;a:1:{i:0;i:1;}i:1762052400;a:1:{i:0;i:1;}i:1762056000;a:1:{i:0;i:1;}i:1762059600;a:1:{i:0;i:2;}i:1762063200;a:1:{i:0;i:2;}i:1762066800;a:1:{i:0;i:4;}i:1762070400;a:1:{i:0;i:1;}i:1762074000;a:1:{i:0;i:3;}i:1762081200;a:1:{i:0;i:2;}i:1762084800;a:1:{i:0;i:4;}i:1762088400;a:1:{i:0;i:1;}i:1762092000;a:1:{i:0;i:4;}i:1762095600;a:1:{i:0;i:7;}i:1762099200;a:1:{i:0;i:6;}i:1762102800;a:1:{i:0;i:1;}i:1762117200;a:1:{i:0;i:1;}i:1762146000;a:1:{i:0;i:1;}i:1762160400;a:1:{i:0;i:3;}i:1762164000;a:1:{i:0;i:2;}i:1762167600;a:1:{i:0;i:2;}i:1762171200;a:1:{i:0;i:2;}i:1762174800;a:1:{i:0;i:4;}i:1762178400;a:1:{i:0;i:2;}i:1762182000;a:1:{i:0;i:1;}i:1762185600;a:1:{i:0;i:3;}i:1762189200;a:1:{i:0;i:4;}i:1762192800;a:1:{i:0;i:4;}i:1762196400;a:1:{i:0;i:2;}i:1762200000;a:1:{i:0;i:4;}i:1762210800;a:1:{i:0;i:1;}i:1762214400;a:1:{i:0;i:3;}i:1762218000;a:1:{i:0;i:3;}i:1762221600;a:1:{i:0;i:3;}i:1762225200;a:1:{i:0;i:1;}i:1762228800;a:1:{i:0;i:1;}i:1762232400;a:1:{i:0;i:2;}i:1762236000;a:1:{i:0;i:4;}i:1762239600;a:1:{i:0;i:2;}i:1762243200;a:1:{i:0;i:1;}i:1762246800;a:1:{i:0;i:1;}i:1762250400;a:1:{i:0;i:2;}i:1762254000;a:1:{i:0;i:1;}i:1762257600;a:1:{i:0;i:2;}i:1762261200;a:1:{i:0;i:3;}i:1762264800;a:1:{i:0;i:2;}i:1762272000;a:1:{i:0;i:2;}i:1762275600;a:1:{i:0;i:1;}i:1762279200;a:1:{i:0;i:4;}i:1762282800;a:1:{i:0;i:4;}i:1762286400;a:1:{i:0;i:3;}i:1762290000;a:1:{i:0;i:1;}i:1762293600;a:1:{i:0;i:4;}i:1762297200;a:1:{i:0;i:3;}i:1762300800;a:1:{i:0;i:2;}i:1762304400;a:1:{i:0;i:2;}i:1762308000;a:1:{i:0;i:4;}i:1762311600;a:1:{i:0;i:4;}i:1762315200;a:1:{i:0;i:3;}i:1762318800;a:1:{i:0;i:5;}i:1762387200;a:1:{i:0;i:1;}i:1762405200;a:1:{i:0;i:2;}i:1762423200;a:1:{i:0;i:2;}i:1762455600;a:1:{i:0;i:1;}i:1762462800;a:1:{i:0;i:1;}i:1762466400;a:1:{i:0;i:2;}i:1762470000;a:1:{i:0;i:1;}i:1762480800;a:1:{i:0;i:1;}i:1762484400;a:1:{i:0;i:2;}i:1762491600;a:1:{i:0;i:1;}i:1762502400;a:1:{i:0;i:1;}i:1762542000;a:1:{i:0;i:2;}i:1762545600;a:1:{i:0;i:1;}i:1762549200;a:1:{i:0;i:2;}i:1762556400;a:1:{i:0;i:1;}i:1762560000;a:1:{i:0;i:1;}i:1762563600;a:1:{i:0;i:2;}i:1762567200;a:1:{i:0;i:1;}i:1762570800;a:1:{i:0;i:1;}i:1762581600;a:1:{i:0;i:1;}i:1762606800;a:1:{i:0;i:1;}i:1762617600;a:1:{i:0;i:1;}i:1762624800;a:1:{i:0;i:2;}i:1762632000;a:1:{i:0;i:2;}i:1762639200;a:1:{i:0;i:4;}i:1762642800;a:1:{i:0;i:2;}i:1762646400;a:1:{i:0;i:1;}i:1762653600;a:1:{i:0;i:1;}i:1762660800;a:1:{i:0;i:1;}i:1762664400;a:1:{i:0;i:1;}i:1762668000;a:1:{i:0;i:1;}i:1762689600;a:1:{i:0;i:1;}i:1762693200;a:1:{i:0;i:1;}i:1762700400;a:1:{i:0;i:1;}i:1762707600;a:1:{i:0;i:1;}i:1762711200;a:1:{i:0;i:1;}i:1762718400;a:1:{i:0;i:1;}i:1762725600;a:1:{i:0;i:1;}i:1762732800;a:1:{i:0;i:2;}i:1762736400;a:1:{i:0;i:1;}i:1762740000;a:1:{i:0;i:1;}i:1762743600;a:1:{i:0;i:1;}i:1762747200;a:1:{i:0;i:1;}i:1762750800;a:1:{i:0;i:1;}i:1762754400;a:1:{i:0;i:2;}i:1762758000;a:1:{i:0;i:2;}i:1762776000;a:1:{i:0;i:2;}i:1762779600;a:1:{i:0;i:1;}i:1762797600;a:1:{i:0;i:1;}i:1762822800;a:1:{i:0;i:1;}i:1762830000;a:1:{i:0;i:1;}i:1762833600;a:1:{i:0;i:2;}i:1762837200;a:1:{i:0;i:2;}i:1762840800;a:1:{i:1;i:1;}i:1762862400;a:1:{i:0;i:1;}i:1762891200;a:1:{i:0;i:1;}i:1762894800;a:1:{i:1;i:1;}i:1762898400;a:1:{i:0;i:1;}i:1762909200;a:1:{i:0;i:1;}i:1762916400;a:1:{i:0;i:1;}i:1762927200;a:1:{i:0;i:1;}i:1762977600;a:1:{i:0;i:1;}i:1762984800;a:1:{i:0;i:1;}i:1762992000;a:1:{i:0;i:1;}i:1762999200;a:1:{i:0;i:1;}i:1763002800;a:1:{i:0;i:1;}i:1763006400;a:1:{i:0;i:1;}i:1763010000;a:1:{i:0;i:1;}i:1763038800;a:1:{i:0;i:1;}i:1763046000;a:1:{i:0;i:1;}i:1763064000;a:2:{i:0;i:2;i:1;i:1;}i:1763067600;a:1:{i:0;i:1;}i:1763071200;a:1:{i:0;i:1;}i:1763100000;a:1:{i:0;i:1;}i:1763103600;a:1:{i:0;i:1;}i:1763107200;a:1:{i:0;i:1;}i:1763118000;a:1:{i:0;i:3;}i:1763132400;a:1:{i:0;i:1;}i:1763136000;a:1:{i:0;i:1;}i:1763146800;a:1:{i:0;i:1;}i:1763182800;a:1:{i:0;i:1;}i:1763186400;a:1:{i:0;i:2;}i:1763193600;a:1:{i:0;i:1;}i:1763197200;a:1:{i:0;i:1;}i:1763200800;a:1:{i:0;i:2;}i:1763204400;a:1:{i:0;i:1;}i:1763211600;a:1:{i:0;i:3;}i:1763233200;a:1:{i:0;i:1;}i:1763236800;a:1:{i:0;i:1;}i:1763240400;a:1:{i:0;i:1;}i:1763251200;a:1:{i:0;i:1;}i:1763258400;a:1:{i:0;i:1;}i:1763262000;a:1:{i:0;i:1;}i:1763370000;a:2:{i:1;i:1;i:0;i:1;}i:1763384400;a:1:{i:0;i:1;}i:1763388000;a:1:{i:0;i:1;}i:1763391600;a:1:{i:0;i:2;}i:1763409600;a:1:{i:0;i:3;}i:1763413200;a:1:{i:0;i:1;}i:1763424000;a:1:{i:1;i:1;}i:1763434800;a:1:{i:0;i:1;}i:1763460000;a:1:{i:0;i:1;}i:1763463600;a:1:{i:0;i:1;}i:1763478000;a:1:{i:0;i:1;}i:1763485200;a:1:{i:0;i:1;}i:1763488800;a:1:{i:0;i:3;}i:1763492400;a:1:{i:0;i:1;}i:1763524800;a:1:{i:0;i:1;}i:1763535600;a:1:{i:0;i:1;}i:1763542800;a:1:{i:0;i:1;}i:1763550000;a:1:{i:0;i:1;}i:1763564400;a:1:{i:0;i:1;}i:1763575200;a:2:{i:0;i:1;i:1;i:1;}i:1763647200;a:1:{i:0;i:2;}i:1763650800;a:1:{i:0;i:1;}i:1763658000;a:1:{i:0;i:1;}i:1763661600;a:1:{i:0;i:1;}i:1763668800;a:1:{i:0;i:1;}i:1763672400;a:1:{i:0;i:1;}i:1763679600;a:1:{i:0;i:1;}i:1763697600;a:1:{i:0;i:2;}i:1763701200;a:1:{i:0;i:1;}i:1763704800;a:1:{i:0;i:3;}i:1763708400;a:1:{i:0;i:1;}i:1763715600;a:1:{i:1;i:1;}i:1763722800;a:1:{i:0;i:1;}i:1763726400;a:1:{i:1;i:1;}i:1763733600;a:1:{i:0;i:1;}i:1763737200;a:1:{i:0;i:1;}i:1763740800;a:1:{i:0;i:1;}i:1763744400;a:1:{i:0;i:1;}i:1763751600;a:1:{i:0;i:1;}i:1763758800;a:1:{i:0;i:1;}i:1763762400;a:1:{i:0;i:1;}i:1763773200;a:1:{i:0;i:1;}i:1763787600;a:1:{i:0;i:1;}i:1763816400;a:1:{i:0;i:2;}i:1763820000;a:1:{i:0;i:1;}i:1763827200;a:1:{i:0;i:1;}i:1763830800;a:1:{i:0;i:1;}i:1763834400;a:1:{i:0;i:1;}i:1763845200;a:1:{i:0;i:1;}i:1763848800;a:1:{i:0;i:1;}i:1763856000;a:1:{i:0;i:1;}i:1763859600;a:1:{i:0;i:1;}i:1763863200;a:1:{i:0;i:2;}i:1763866800;a:1:{i:0;i:1;}i:1763870400;a:1:{i:0;i:2;}i:1763874000;a:1:{i:0;i:1;}i:1763877600;a:1:{i:0;i:1;}i:1763881200;a:1:{i:0;i:1;}i:1763884800;a:1:{i:0;i:3;}i:1763892000;a:1:{i:0;i:2;}i:1763895600;a:1:{i:0;i:1;}i:1763902800;a:1:{i:0;i:1;}i:1763906400;a:1:{i:0;i:1;}i:1763910000;a:1:{i:0;i:1;}i:1763917200;a:1:{i:0;i:2;}i:1763920800;a:1:{i:0;i:1;}i:1763924400;a:1:{i:0;i:1;}i:1763942400;a:1:{i:0;i:2;}i:1763974800;a:1:{i:0;i:1;}i:1763985600;a:1:{i:0;i:5;}i:1763989200;a:1:{i:0;i:2;}i:1763992800;a:1:{i:0;i:3;}i:1763996400;a:1:{i:0;i:3;}i:1764000000;a:1:{i:0;i:3;}i:1764003600;a:1:{i:0;i:2;}i:1764007200;a:1:{i:0;i:7;}i:1764010800;a:1:{i:0;i:6;}i:1764014400;a:1:{i:0;i:7;}i:1764018000;a:1:{i:0;i:6;}i:1764021600;a:1:{i:0;i:6;}i:1764025200;a:1:{i:0;i:7;}i:1764028800;a:1:{i:0;i:6;}i:1764032400;a:1:{i:0;i:6;}i:1764036000;a:1:{i:0;i:6;}i:1764039600;a:1:{i:0;i:6;}i:1764043200;a:1:{i:0;i:7;}i:1764046800;a:2:{i:0;i:7;i:1;i:1;}i:1764086400;a:1:{i:0;i:1;}i:1764133200;a:1:{i:0;i:1;}i:1764144000;a:1:{i:0;i:1;}i:1764158400;a:1:{i:0;i:1;}i:1764176400;a:1:{i:0;i:1;}i:1764241200;a:1:{i:0;i:1;}i:1764259200;a:1:{i:0;i:1;}i:1764280800;a:1:{i:0;i:1;}i:1764295200;a:1:{i:0;i:1;}i:1764316800;a:1:{i:1;i:1;}i:1764342000;a:1:{i:0;i:1;}i:1764370800;a:1:{i:0;i:1;}i:1764378000;a:1:{i:0;i:1;}i:1764417600;a:1:{i:0;i:1;}i:1764446400;a:1:{i:0;i:1;}i:1764471600;a:1:{i:0;i:1;}i:1764493200;a:1:{i:1;i:1;}i:1764576000;a:1:{i:0;i:1;}i:1764579600;a:1:{i:1;i:1;}i:1764583200;a:1:{i:0;i:1;}i:1764594000;a:1:{i:0;i:1;}i:1764615600;a:1:{i:0;i:3;}i:1764619200;a:1:{i:0;i:1;}i:1764633600;a:1:{i:0;i:1;}i:1764637200;a:1:{i:0;i:1;}i:1764640800;a:1:{i:0;i:1;}i:1764658800;a:1:{i:0;i:1;}i:1764669600;a:1:{i:0;i:1;}i:1764698400;a:1:{i:0;i:1;}i:1764705600;a:1:{i:0;i:1;}i:1764723600;a:1:{i:0;i:1;}}', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(16648, 'updraftplus_version', '1.24.4', 'yes');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(16689, 'edd_sl_73499b5e164c73711a5f2eb6801dfa83', 'a:2:{s:7:\"timeout\";i:1720170178;s:5:\"value\";s:177724:\"{\"new_version\":\"2.3.1\",\"stable_version\":\"2.3.1\",\"name\":\"perfmatters\",\"slug\":\"perfmatters\",\"url\":\"https:\\/\\/perfmatters.io\\/downloads\\/perfmatters\\/?changelog=1\",\"last_updated\":\"2024-06-28 16:25:12\",\"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.3.1 - 06.27.2024<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/minify-javascript-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Minify JS<\\/a> and <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/minify-css-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Minify CSS<\\/a> features along with options to exclude specific files from minification and clear generated minified files when necessary.<\\/li>\\n<li>UI Updates: What was previously the Assets tab has now been replaced by three more specific tabs, JavaScript, CSS, and Code. The main Script Manager toggle has been moved to Tools. Additional subheaders have also been added throughout to help with organization.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_minify_js\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_minify_js<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_minify_js_exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_minify_js_exclusions<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_minify_css\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_minify_css<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_minify_css_exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_minify_css_exclusions<\\/a> filter.<\\/li>\\n<li>Added a REST API exception for Independent Analytics.<\\/li>\\n<li>Added additional request parameter for Divi to excluded page builders array.<\\/li>\\n<li>Added built-in critical image exclusion for WPML flag images.<\\/li>\\n<li>Added Delay JS quick exclusion for Grow for WordPress.<\\/li>\\n<li>Updated used CSS function to generate a separate file for each post type archive instead of a single shared stylesheet.<\\/li>\\n<li>Fixed an issue that was causing an incorrect root directory to be returned for some environments.<\\/li>\\n<li>Fixed an issue with preload and lazyload parent exclusion filters that was preventing them from excluding images correctly in some cases.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.3.0 - 05.23.2024<\\/p>\\n<ul>\\n<li>Added a new function to verify the preferred content type from the HTTP header when determining if JSON is being requested. This should improve compatibility with certain hosting providers.<\\/li>\\n<li>Added an additional check when removing unused CSS to avoid parsing print-only stylesheets.<\\/li>\\n<li>Updated Delay JS quick exclusion for Termageddon + UserCentrics for better compatibility.<\\/li>\\n<li>Removed option to disable wlwmanifest link output as that function was deprecated in WordPress 6.3.<\\/li>\\n<li>Fixed an issue that was preventing lazy loaded images from displaying when defer inline scripts was enabled.<\\/li>\\n<li>Fixed an issue where responsive styles for YouTube preview thumbnails were not printing on certain themes using responsive embeds.<\\/li>\\n<li>Fixed an issue with DOMDocument where HTML entities coming from inline styles would display as their encoded values.<\\/li>\\n<li>Fixed a missing tooltip on the scan database option.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.2.9 - 05.16.2024<\\/p>\\n<ul>\\n<li>Fixed an issue that could cause a conflict with other JS deferral solutions when running at the same time.<\\/li>\\n<\\/ul>\\n<p>2.2.8 - 05.16.2024<\\/p>\\n<ul>\\n<li>Added new Defer JavaScript option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/defer-javascript-wordpress\\/#include-inline-scripts\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Include Inline Scripts<\\/a>.<\\/li>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/separate-core-block-styles-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Separate Block Styles<\\/a>.<\\/li>\\n<li>Added additional built-in CSS selector exclusions for Splide.<\\/li>\\n<li>Updated Delay JS quick exclusion for Kadence Blocks with additional scripts.<\\/li>\\n<li>Updated our staging site license key exception list with additional formats.<\\/li>\\n<li>Updated deferral exclusion check to work with entire tag instead of just src URL.<\\/li>\\n<li>Moved to printing reponsive embed styles for YouTube preview thumbnails in all cases for better compatibility.<\\/li>\\n<li>Fixed an issue where the CDN rewrite was not picking up URLs with a relative protocol.<\\/li>\\n<li>Fixed an issue where an existing data-wp-strategy attribute would prevent a script from being able to be deferred.<\\/li>\\n<li>Fixed an issue where the Script Manager was not giving the right feedback on save when a new line character was showing up in the AJAX response.<\\/li>\\n<li>Fixed an issue on the network settings page where incorrect tab content would show up after saving.<\\/li>\\n<li>Fixed an issue where the license tab was showing up at the subsite level if the plugin was not network activated in a multisite environment.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.2.7 - 04.19.2024<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_used_css_below\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_used_css_below<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_defer_js_exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_defer_js_exclusions<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js_fastclick\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js_fastclick<\\/a> filter.<\\/li>\\n<li>Added additional DOMDocument flag to parent exclusion filters for better compatibility.<\\/li>\\n<li>Added GiveWP request parameter to excluded page builders array.<\\/li>\\n<li>Updated Delay JS quick exclusion for WooCommerce Single Product Gallery with additional scripts to help with zoom and lightbox functionality.<\\/li>\\n<li>Updated Delay JS quick exclusion for Cookie Notice with additional scripts.<\\/li>\\n<li>Moved Script Manager CSS to stylesheet printed inline instead of from a PHP file.<\\/li>\\n<\\/ul>\\n<p>2.2.6 - 03.18.2024<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_defer_jquery\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_defer_jquery<\\/a> filter.<\\/li>\\n<li>Added Delay JS quick exclusion for Monumetric Ads.<\\/li>\\n<li>Updated content URL reference to use content_url function instead of constant when generating root directory path.<\\/li>\\n<li>Updated local stylesheet URL replace function to be case insensitive.<\\/li>\\n<li>Updated new parent exclusion filters to use DOMDocument instead of regex to allow support for targeting images inside nested containers.<\\/li>\\n<li>Fixed an issue where certain scripts were not being deferred properly when delay JavaScript option was also enabled.<\\/li>\\n<li>Fixed an issue where abnormal image URLs would sometimes generate a warning when trying to parse for image dimensions.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.2.5 - 02.29.2024<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_critical_image_parent_exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_critical_image_parent_exclusions<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_leading_image_parent_exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_leading_image_parent_exclusions<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/fetch-priority\\/#disable-core\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Disable Core Fetch<\\/a> option to disable the fetch priority attribute added by WordPress core.<\\/li>\\n<li>Added built-in WooCommerce CSS selector exclusion for better compatibility on single product posts.<\\/li>\\n<li>Added Breakdance request parameters to excluded page builders array.<\\/li>\\n<li>Added a REST API exception for WP Recipe Maker.<\\/li>\\n<li>Added Delay JS quick exclusions for Kadence Blocks and Kadence Blocks Pro.<\\/li>\\n<li>Added CSS Background Image support for the footer element.<\\/li>\\n<li>Fixed an issue where dynamic preload version numbers would sometimes get added to the wrong resource.<\\/li>\\n<li>Fixed an issue with certain multilingual setups where the base URL for generated files was incorrect.<\\/li>\\n<li>Updated background processing library to the latest version (1.3.0).<\\/li>\\n<li>Updated CSS parsing library to the latest version (8.5.1).<\\/li>\\n<li>Minor style updates to plugin UI.<\\/li>\\n<\\/ul>\\n<p>2.2.4 - 02.05.2024<\\/p>\\n<ul>\\n<li>Added built-in Image Dimensions exclusion for blank placeholder SVGs.<\\/li>\\n<li>Added excluded page builders function check to MU plugin file.<\\/li>\\n<li>Changed method of retrieving root directory in certain classes for better compatibility with more file structures.<\\/li>\\n<li>Fixed PHP warnings coming from local analytics function.<\\/li>\\n<\\/ul>\\n<p>2.2.3 - 01.08.2024<\\/p>\\n<ul>\\n<li>Fixed an issue where Mediavine and Modula Slider quick exclusions were not working properly.<\\/li>\\n<\\/ul>\\n<p>2.2.2 - 01.07.2024<\\/p>\\n<ul>\\n<li>Fixed PHP warnings coming from certain local analytics setups.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.2.1 - 01.04.2024<\\/p>\\n<ul>\\n<li>Removed deprecated Universal Analytics options which are no longer available and renamed remaining script type labels. If you still haven\'t updated to Google Analytics 4, make sure to create a new profile and input your new measurement ID.<\\/li>\\n<li>Added new tools option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/disable-logged-in-users\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Disable Optimizations for Logged In Users<\\/a>.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_leading_image_exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_leading_image_exclusions<\\/a> filter.<\\/li>\\n<li>Added support for targeting figure elements to CSS Background Images.<\\/li>\\n<li>Added REST route exception for Litespeed.<\\/li>\\n<li>Added and updated Delay JS quick exclusions for Gravity Forms, Mediavine Trellis, Modula Slider, SHE Media Infuse, Thrive Leads, and WP Recipe Maker.<\\/li>\\n<li>Added built-in Delay JS exclusion for Divi link options script.<\\/li>\\n<li>Added generic customizer request parameter to excluded page builders array.<\\/li>\\n<li>Made some adjustments to classes dealing with cache directory files to support non-traditional folder structures such as Bedrock.<\\/li>\\n<li>Fixed a PHP warning related to cache URL declaration that would sometimes display for certain types of requests.<\\/li>\\n<li>Fixed an issue where picture elements were not getting excluded from lazy loading when fetchpriority high was set on a child image.<\\/li>\\n<li>Removed unnecessary script type attribute from our Delay JS inline script.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<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.5.5\",\"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.3.1 - 06.27.2024<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/minify-javascript-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Minify JS<\\/a> and <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/minify-css-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Minify CSS<\\/a> features along with options to exclude specific files from minification and clear generated minified files when necessary.<\\/li>\\n<li>UI Updates: What was previously the Assets tab has now been replaced by three more specific tabs, JavaScript, CSS, and Code. The main Script Manager toggle has been moved to Tools. Additional subheaders have also been added throughout to help with organization.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_minify_js\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_minify_js<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_minify_js_exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_minify_js_exclusions<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_minify_css\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_minify_css<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_minify_css_exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_minify_css_exclusions<\\/a> filter.<\\/li>\\n<li>Added a REST API exception for Independent Analytics.<\\/li>\\n<li>Added additional request parameter for Divi to excluded page builders array.<\\/li>\\n<li>Added built-in critical image exclusion for WPML flag images.<\\/li>\\n<li>Added Delay JS quick exclusion for Grow for WordPress.<\\/li>\\n<li>Updated used CSS function to generate a separate file for each post type archive instead of a single shared stylesheet.<\\/li>\\n<li>Fixed an issue that was causing an incorrect root directory to be returned for some environments.<\\/li>\\n<li>Fixed an issue with preload and lazyload parent exclusion filters that was preventing them from excluding images correctly in some cases.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.3.0 - 05.23.2024<\\/p>\\n<ul>\\n<li>Added a new function to verify the preferred content type from the HTTP header when determining if JSON is being requested. This should improve compatibility with certain hosting providers.<\\/li>\\n<li>Added an additional check when removing unused CSS to avoid parsing print-only stylesheets.<\\/li>\\n<li>Updated Delay JS quick exclusion for Termageddon + UserCentrics for better compatibility.<\\/li>\\n<li>Removed option to disable wlwmanifest link output as that function was deprecated in WordPress 6.3.<\\/li>\\n<li>Fixed an issue that was preventing lazy loaded images from displaying when defer inline scripts was enabled.<\\/li>\\n<li>Fixed an issue where responsive styles for YouTube preview thumbnails were not printing on certain themes using responsive embeds.<\\/li>\\n<li>Fixed an issue with DOMDocument where HTML entities coming from inline styles would display as their encoded values.<\\/li>\\n<li>Fixed a missing tooltip on the scan database option.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.2.9 - 05.16.2024<\\/p>\\n<ul>\\n<li>Fixed an issue that could cause a conflict with other JS deferral solutions when running at the same time.<\\/li>\\n<\\/ul>\\n<p>2.2.8 - 05.16.2024<\\/p>\\n<ul>\\n<li>Added new Defer JavaScript option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/defer-javascript-wordpress\\/#include-inline-scripts\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Include Inline Scripts<\\/a>.<\\/li>\\n<li>Added new option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/separate-core-block-styles-wordpress\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Separate Block Styles<\\/a>.<\\/li>\\n<li>Added additional built-in CSS selector exclusions for Splide.<\\/li>\\n<li>Updated Delay JS quick exclusion for Kadence Blocks with additional scripts.<\\/li>\\n<li>Updated our staging site license key exception list with additional formats.<\\/li>\\n<li>Updated deferral exclusion check to work with entire tag instead of just src URL.<\\/li>\\n<li>Moved to printing reponsive embed styles for YouTube preview thumbnails in all cases for better compatibility.<\\/li>\\n<li>Fixed an issue where the CDN rewrite was not picking up URLs with a relative protocol.<\\/li>\\n<li>Fixed an issue where an existing data-wp-strategy attribute would prevent a script from being able to be deferred.<\\/li>\\n<li>Fixed an issue where the Script Manager was not giving the right feedback on save when a new line character was showing up in the AJAX response.<\\/li>\\n<li>Fixed an issue on the network settings page where incorrect tab content would show up after saving.<\\/li>\\n<li>Fixed an issue where the license tab was showing up at the subsite level if the plugin was not network activated in a multisite environment.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.2.7 - 04.19.2024<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_used_css_below\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_used_css_below<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_defer_js_exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_defer_js_exclusions<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_delay_js_fastclick\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_delay_js_fastclick<\\/a> filter.<\\/li>\\n<li>Added additional DOMDocument flag to parent exclusion filters for better compatibility.<\\/li>\\n<li>Added GiveWP request parameter to excluded page builders array.<\\/li>\\n<li>Updated Delay JS quick exclusion for WooCommerce Single Product Gallery with additional scripts to help with zoom and lightbox functionality.<\\/li>\\n<li>Updated Delay JS quick exclusion for Cookie Notice with additional scripts.<\\/li>\\n<li>Moved Script Manager CSS to stylesheet printed inline instead of from a PHP file.<\\/li>\\n<\\/ul>\\n<p>2.2.6 - 03.18.2024<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_defer_jquery\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_defer_jquery<\\/a> filter.<\\/li>\\n<li>Added Delay JS quick exclusion for Monumetric Ads.<\\/li>\\n<li>Updated content URL reference to use content_url function instead of constant when generating root directory path.<\\/li>\\n<li>Updated local stylesheet URL replace function to be case insensitive.<\\/li>\\n<li>Updated new parent exclusion filters to use DOMDocument instead of regex to allow support for targeting images inside nested containers.<\\/li>\\n<li>Fixed an issue where certain scripts were not being deferred properly when delay JavaScript option was also enabled.<\\/li>\\n<li>Fixed an issue where abnormal image URLs would sometimes generate a warning when trying to parse for image dimensions.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.2.5 - 02.29.2024<\\/p>\\n<ul>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_critical_image_parent_exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_critical_image_parent_exclusions<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_leading_image_parent_exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_leading_image_parent_exclusions<\\/a> filter.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/fetch-priority\\/#disable-core\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Disable Core Fetch<\\/a> option to disable the fetch priority attribute added by WordPress core.<\\/li>\\n<li>Added built-in WooCommerce CSS selector exclusion for better compatibility on single product posts.<\\/li>\\n<li>Added Breakdance request parameters to excluded page builders array.<\\/li>\\n<li>Added a REST API exception for WP Recipe Maker.<\\/li>\\n<li>Added Delay JS quick exclusions for Kadence Blocks and Kadence Blocks Pro.<\\/li>\\n<li>Added CSS Background Image support for the footer element.<\\/li>\\n<li>Fixed an issue where dynamic preload version numbers would sometimes get added to the wrong resource.<\\/li>\\n<li>Fixed an issue with certain multilingual setups where the base URL for generated files was incorrect.<\\/li>\\n<li>Updated background processing library to the latest version (1.3.0).<\\/li>\\n<li>Updated CSS parsing library to the latest version (8.5.1).<\\/li>\\n<li>Minor style updates to plugin UI.<\\/li>\\n<\\/ul>\\n<p>2.2.4 - 02.05.2024<\\/p>\\n<ul>\\n<li>Added built-in Image Dimensions exclusion for blank placeholder SVGs.<\\/li>\\n<li>Added excluded page builders function check to MU plugin file.<\\/li>\\n<li>Changed method of retrieving root directory in certain classes for better compatibility with more file structures.<\\/li>\\n<li>Fixed PHP warnings coming from local analytics function.<\\/li>\\n<\\/ul>\\n<p>2.2.3 - 01.08.2024<\\/p>\\n<ul>\\n<li>Fixed an issue where Mediavine and Modula Slider quick exclusions were not working properly.<\\/li>\\n<\\/ul>\\n<p>2.2.2 - 01.07.2024<\\/p>\\n<ul>\\n<li>Fixed PHP warnings coming from certain local analytics setups.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<p>2.2.1 - 01.04.2024<\\/p>\\n<ul>\\n<li>Removed deprecated Universal Analytics options which are no longer available and renamed remaining script type labels. If you still haven\'t updated to Google Analytics 4, make sure to create a new profile and input your new measurement ID.<\\/li>\\n<li>Added new tools option to <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/disable-logged-in-users\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Disable Optimizations for Logged In Users<\\/a>.<\\/li>\\n<li>Added new <a href=\\\"https:\\/\\/perfmatters.io\\/docs\\/filters\\/#perfmatters_leading_image_exclusions\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">perfmatters_leading_image_exclusions<\\/a> filter.<\\/li>\\n<li>Added support for targeting figure elements to CSS Background Images.<\\/li>\\n<li>Added REST route exception for Litespeed.<\\/li>\\n<li>Added and updated Delay JS quick exclusions for Gravity Forms, Mediavine Trellis, Modula Slider, SHE Media Infuse, Thrive Leads, and WP Recipe Maker.<\\/li>\\n<li>Added built-in Delay JS exclusion for Divi link options script.<\\/li>\\n<li>Added generic customizer request parameter to excluded page builders array.<\\/li>\\n<li>Made some adjustments to classes dealing with cache directory files to support non-traditional folder structures such as Bedrock.<\\/li>\\n<li>Fixed a PHP warning related to cache URL declaration that would sometimes display for certain types of requests.<\\/li>\\n<li>Fixed an issue where picture elements were not getting excluded from lazy loading when fetchpriority high was set on a child image.<\\/li>\\n<li>Removed unnecessary script type attribute from our Delay JS inline script.<\\/li>\\n<li>Translation updates.<\\/li>\\n<\\/ul>\\n<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');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(16676, 'updraft_backup_history', 'a:1:{i:1665989716;a:19:{s:7:\"plugins\";a:1:{i:0;s:72:\"backup_2022-10-17-0655_Online_Shop_in_Dubai_UAE_be6215308b18-plugins.zip\";}s:12:\"plugins-size\";i:32062680;s:6:\"themes\";a:1:{i:0;s:71:\"backup_2022-10-17-0655_Online_Shop_in_Dubai_UAE_be6215308b18-themes.zip\";}s:11:\"themes-size\";i:10939676;s:7:\"uploads\";a:1:{i:0;s:72:\"backup_2022-10-17-0655_Online_Shop_in_Dubai_UAE_be6215308b18-uploads.zip\";}s:12:\"uploads-size\";i:41928274;s:6:\"others\";a:1:{i:0;s:71:\"backup_2022-10-17-0655_Online_Shop_in_Dubai_UAE_be6215308b18-others.zip\";}s:11:\"others-size\";i:5459;s:2:\"db\";s:66:\"backup_2022-10-17-0655_Online_Shop_in_Dubai_UAE_be6215308b18-db.gz\";s:7:\"db-size\";i:626488;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"58819559359b84b2bc84bb6cbbbaf1dcce514fb4\";s:7:\"themes0\";s:40:\"fb5ac129faf6b5b7931d5def8b6a96d0e8db32e8\";s:8:\"uploads0\";s:40:\"d3df5a71af174da9772838af3b74f428dd1124a9\";s:7:\"others0\";s:40:\"721675f2a5ce61b4c8d53a4a5ff82e320f2b4db9\";s:3:\"db0\";s:40:\"4893e6320d303ab107f9ba6ab3c1cbd390cf66a8\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"5c9e14baa7c0b7725e12d301a1040e313a9405eb2a66c2fd5e422575473f502b\";s:7:\"themes0\";s:64:\"0fb9710ecd63dedfec894dbb73263a6c17a0c650ef31b53018ae28a2167e6d1a\";s:8:\"uploads0\";s:64:\"81698e1680ac87bee893c0d0269d8c5969daf0a8e99fd56d3134698451e748de\";s:7:\"others0\";s:64:\"4870cee3ac9fb9ab016bb38adbcef1cdf60fd7e470b039d29588182a68251ca0\";s:3:\"db0\";s:64:\"b1764246fc17dff3e9a45f7be98ee82e157f03d101bd1eb8e3e95630fbef40fe\";}}s:5:\"nonce\";s:12:\"be6215308b18\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1665989716;s:6:\"themes\";i:1665989732;s:7:\"uploads\";i:1665989734;s:6:\"others\";i:1665989737;}s:18:\"created_by_version\";s:7:\"1.22.23\";s:21:\"last_saved_by_version\";s:7:\"1.22.23\";s:12:\"is_multisite\";b:0;}}', 'no'),
(16654, 'updraft_updraftvault', 'a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-0f63e602250df9a0b3d8231d18483069\";a:3:{s:5:\"token\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"quota\";i:-1;}}}', 'yes'),
(16655, 'updraft_dropbox', 'a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-5a000a33304a944883ee007dbe46faee\";a:4:{s:6:\"appkey\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:0:\"\";}}}', 'yes'),
(16656, 'updraft_s3', 'a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-f9ea207f904fb544037dc7a877c5f3fe\";a:5:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:3:\"rrs\";s:0:\"\";s:22:\"server_side_encryption\";s:0:\"\";}}}', 'yes'),
(16657, 'updraft_cloudfiles', 'a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-18d28455bdca9022f1baafe1f31160eb\";a:5:{s:4:\"user\";s:0:\"\";s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:6:\"region\";N;}}}', 'yes'),
(16658, 'updraft_googledrive', 'a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-18d24aabd591e534481d450204e818b2\";a:3:{s:8:\"clientid\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:5:\"token\";s:0:\"\";}}}', 'yes'),
(16659, 'updraft_onedrive', 'a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-b8ee3bdeaf83db8910d87a911699f302\";a:0:{}}}', 'yes'),
(16660, 'updraft_ftp', 'a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-2780403e804676ec85435722b0629333\";a:5:{s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"path\";s:0:\"\";s:7:\"passive\";i:1;}}}', 'yes'),
(16661, 'updraft_azure', 'a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-4758432add492f4beb8b23c7323905be\";a:0:{}}}', 'yes'),
(16662, 'updraft_sftp', 'a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-2a541d196b59d5f72ac2ed18197bbff6\";a:0:{}}}', 'yes'),
(16663, 'updraft_googlecloud', 'a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-6912e55249515009a901f6115b29062e\";a:0:{}}}', 'yes'),
(16664, 'updraft_backblaze', 'a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-305eac3f2d8181e6107b33a824304cb5\";a:0:{}}}', 'yes'),
(16665, 'updraft_webdav', 'a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-1aaee3ac7ad198ce5bbb1153df6b4b3f\";a:0:{}}}', 'yes'),
(16666, 'updraft_s3generic', 'a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-5bb38c86e23b3e4a1e5d7e50903415c5\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:0:\"\";}}}', 'yes'),
(16667, 'updraft_openstack', 'a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-768c0aa68defd0244366e19b30340ba0\";a:6:{s:4:\"user\";s:0:\"\";s:7:\"authurl\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:4:\"path\";s:0:\"\";s:6:\"region\";s:0:\"\";}}}', 'yes'),
(16668, 'updraft_dreamobjects', 'a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-dc21b8a2e03b12b07ad29989f98c9d61\";a:3:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}', 'yes'),
(16670, 'updraft_lastmessage', 'Deleting old log file: log.be6215308b18.txt (Nov 26 07:10:17)', 'yes'),
(16671, 'updraftplus_unlocked_fd', '1', 'no'),
(16672, 'updraftplus_last_lock_time_fd', '2022-10-17 06:55:16', 'no'),
(16673, 'updraftplus_semaphore_fd', '0', 'no'),
(16674, 'updraft_last_scheduled_fd', '1665989716', 'yes'),
(16669, 'updraftplus-addons_siteid', '2cddbdcb6a922fd4050ef94905bc7658', 'no'),
(9909, 'frm_connect_token', '63c344b9075b2f36085f9c499eb4b3433d7a0ac8d1c16028c93c21554a46119296a856fa38e7d3b32784764fe44213b8a711b6febb7555091ef097da5c0c921a', 'yes');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(9910, 'frm_addons_l', 'a:3:{s:7:\"timeout\";i:1757097486;s:5:\"value\";s:117927:\"{\"93790\":{\"title\":\"Formidable Pro\",\"name\":\"Formidable Pro\",\"display_name\":\"Formidable Pro\",\"slug\":\"formidable-pro\",\"version\":\"6.23.2\",\"new_version\":\"6.23.2\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-pro-6.23.2.zip\"],\"excerpt\":\"\",\"id\":93790,\"released\":\"2010-02-01 16:27:26\",\"categories\":[\"Basic\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro\\/\",\"changelog\":\"<h4>v6.23.2 - August 20, 2025<\\/h4>\\n<ul>\\n<li>Fix: Calculations based on slider fields inside of repeaters would not work properly.<\\/li>\\n<li>Fix: When tabbing into a field with a custom format mask in Google Chrome, the input cursor would start at the end of the input, preventing changes.<\\/li>\\n<li>Fix: When currency field values were displayed for fields using the global currency settings, the currency settings used were incorrect.<\\/li>\\n<\\/ul>\\n<h4>v6.23.1 - August 13, 2025<\\/h4>\\n<ul>\\n<li>Fix: A JavaScript error would trigger in some cases when adding a new repeater row, causing issues that prevent multiple repeater rows from being added.<\\/li>\\n<\\/ul>\\n<h4>v6.23 - August 12, 2025<\\/h4>\\n<ul>\\n<li>New: When a Slider field is added to a form, a new option to add a Range Slider has been added. The Range Slider includes a handle for the minimum range and a second handle for the maximum range.<\\/li>\\n<li>New: The JavaScript library for handling input masking has been replaced. The deprecated jQuery masked input library is no longer used, and imask is now used instead.<\\/li>\\n<li>New: The frm_choice_field_option_label filter is now applied to option labels when using image options as well.<\\/li>\\n<li>Fix: Alignment settings were not working properly for radio buttons and checkboxes displayed as buttons.<\\/li>\\n<li>Fix: Conditionally shown currency formatted fields would incorrectly appear as undefined in some cases.<\\/li>\\n<li>Fix: Conditional confirmation actions would not work as expected when draft saving was enabled and the form included repeaters.<\\/li>\\n<li>Fix: An issue where users were unable to update a field with both an input mask and a max length setting has been fixed.<\\/li>\\n<li>Fix: Radio buttons and checkboxes displayed as images will now display a border on all sides when using underline border styling.<\\/li>\\n<li>Fix: Other options on radio button and checkbox fields would cause horizontal scrolling issues.<\\/li>\\n<li>Fix: Conditional logic for checkbox fields based on starts with and ends with conditions would result in JavaScript errors.<\\/li>\\n<li>Fix: The format setting would incorrectly appear for Quantity fields. This has now been removed.<\\/li>\\n<li>Fix: In some cases, hidden fields would not appear on the admin edit entry page for a form with multiple pages.<\\/li>\\n<li>Fix: Password fields would incorrectly show rounded corners on the input element when using before or after input settings and the show password toggle settings at the same time.<\\/li>\\n<li>Fix: Star field shortcodes using the html=1 option would trigger a fatal error when the star rating field is included in a repeater.<\\/li>\\n<li>Fix: Additional thumbnail images created for protected PDF files would not get deleted when the main file was deleted.<\\/li>\\n<li>Fix: A slider field background would not match the handle when a slider field value was reset after being conditionally hidden.<\\/li>\\n<li>Fix: Time fields would not display the previous saved draft value when inside of a repeater.<\\/li>\\n<li>Captcha field validation has been updated to help prevent unnecessary errors in forms with captcha fields on multiple pages.<\\/li>\\n<li>The reports page will now default to showing data only for submitted entries.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-pro\\/formidable-pro.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-772x250.png\"},\"search_terms\":\"\",\"is_new\":false},\"163248\":{\"title\":\"Signature\",\"name\":\"Signature\",\"display_name\":\"Digital Signatures\",\"slug\":\"signature\",\"version\":\"3.0.5\",\"new_version\":\"3.0.5\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-signature\\/formidable-signature-3.0.5.zip\"],\"excerpt\":\"Add an electronic signature to your WordPress form. The visitor may write their signature with a trackpad\\/mouse or type it.\",\"id\":163248,\"released\":\"2013-03-04 00:00:00\",\"categories\":[\"Business\",\"Form Functionality\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-signature\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/signature\\/\",\"changelog\":\"<h4>v3.0.5 - August 19, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<li>Fix: A Use of \\\"parent\\\" in callables deprecated message would get logged when loading translations for signature fields.<\\/li>\\n<li>Fix: In some cases old cached signature images would appear after being updated.<\\/li>\\n<li>Old polyfill code for supporting Internet Explorer has been removed.<\\/li>\\n<\\/ul>\\n<h4>v3.0.4 - March 28, 2024<\\/h4>\\n<ul>\\n<li>New: The way CSS is added has been updated for better compatibility with the Snuffleupagus security module.<\\/li>\\n<li>Fix: Scripts were not properly initializing when editing a form with a signature field in-place using the &#091;editlink] shortcode.<\\/li>\\n<li>Fix: Form validation would trigger on signature draw events, causing error messages to appear on other fields early.<\\/li>\\n<li>Fix: An Uncaught Error: Call to undefined method FrmProFieldDefault::get_signature_image_dimension fatal error has been fixed.<\\/li>\\n<li>Front end signature field icons have been updated to no longer use font icons.<\\/li>\\n<\\/ul>\\n<h4>v3.0.3 - June 15, 2023<\\/h4>\\n<ul>\\n<li>New: Added support for a new show=url shortcode option for signature fields.<\\/li>\\n<li>Fix: Icons were not aligning properly for some button size style settings.<\\/li>\\n<li>Fix: Signature fields would overflow when some field size style settings were applied.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-signature\\/signature.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"163255\":{\"title\":\"Math Captcha\",\"name\":\"Math Captcha\",\"display_name\":\"Math Captcha\",\"slug\":\"math-captcha\",\"version\":\"1.15\",\"new_version\":\"1.15\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-math-captcha\\/formidable-math-captcha-1.15.zip\"],\"excerpt\":\"\",\"id\":163255,\"released\":\"2015-10-12 14:00:35\",\"categories\":[],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/math-captcha\\/\",\"changelog\":\"\",\"plugin\":\"math-captcha\\/math-captcha.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"163257\":{\"title\":\"PayPal Standard\",\"name\":\"PayPal Standard\",\"display_name\":\"PayPal Standard\",\"slug\":\"paypal-standard\",\"version\":\"3.09\",\"new_version\":\"3.09\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-paypal\\/formidable-paypal-3.09.zip\"],\"excerpt\":\"Collect instant payments and recurring payments to automate your online business. Calculate a total and send customers on to PayPal.\",\"id\":163257,\"released\":\"2012-09-04 00:00:00\",\"categories\":[\"Business\",\"Ecommerce\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-paypal\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard\\/\",\"changelog\":\"<h4>v3.10 - December 31, 2024<\\/h4>\\n<ul>\\n<li>Fix: An Undefined array key \\\"expire_date\\\" PHP Warning has been fixed.<\\/li>\\n<li>Fix: An Uncaught TypeError: strtotime PHP Fatal error has been fixed.<\\/li>\\n<\\/ul>\\n<h4>v3.09 - July 30, 2019<\\/h4>\\n<ul>\\n<li>New: Account for tax when comparing amounts with the IPN<\\/li>\\n<li>Update form action icon and color<\\/li>\\n<li>Replace call to deprecated function with FrmFieldsHelper::get_user_display_name<\\/li>\\n<li>Requires Formidable v3.0+<\\/li>\\n<\\/ul>\\n<h4>v3.08 - November 18, 2017<\\/h4>\\n<ul>\\n<li>Allow field shortcodes in more payments settings so values can be set from the form: PayPal email, trial amount, repeat period, trial length. This also allows payments to go to other members on your site.<\\/li>\\n<li>Allow regular WordPress shortcodes and Formidable dynamic values (ie [email]) in addition to basic field shortcodes<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-paypal\\/formidable-paypal.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"paypal\",\"is_new\":false},\"168072\":{\"title\":\"Formidable API\",\"name\":\"Formidable API\",\"display_name\":\"Formidable API\",\"slug\":\"formidable-api\",\"version\":\"1.18\",\"new_version\":\"1.18\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-api\\/formidable-api-1.18.zip\"],\"excerpt\":\"Add a full forms API for forms, form fields, views, and entries. Then send submissions to other sites with REST APIs.\",\"id\":168072,\"released\":\"2016-06-08 00:00:00\",\"categories\":[\"Automation\",\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-api\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-api\\/\",\"changelog\":\"<h4>v1.18 - December 11, 2024<\\/h4>\\n<ul>\\n<li>New: Testing API connections has been improved. Previously messages like OK would appear in red even though the connection was valid.<\\/li>\\n<li>Fix: Icons to add or remove data rows in API actions were missing after a recent v6.16.3 Formidable Forms update.<\\/li>\\n<li>Fix: The hook used to load translations has been updated to improve compatibility with WordPress 6.7+.<\\/li>\\n<li>Fix: Files would not properly save when creating entries using the rest API when file protection was enabled.<\\/li>\\n<\\/ul>\\n<h4>v1.17 - October 15, 2024<\\/h4>\\n<ul>\\n<li>New: API keys can now be refreshed. This will disallow all uses of your previous API key, allowing you to pick another in case your API key may have been compromised.<\\/li>\\n<li>Fix: Using API actions to send GET requests could result in a fatal error.<\\/li>\\n<li>Fix: Trying to use an &#091;frm-api] shortcode without Formidable Forms active would result in a fatal error.<\\/li>\\n<li>Fix: Trying to update an entry with a required name field in a repeater would result in an unexpected 409 error.<\\/li>\\n<li><span class=\\\"blob-code-inner blob-code-marker js-code-nav-pass \\\" data-code-marker=\\\"+\\\"><span class=\\\"pl-s\\\">The entry object is now passed as a parameter when the frm_before_destroy_entry hook is triggered to match parameters in other locations where the hook is triggered.<br \\/>\\n<\\/span><\\/span><\\/li>\\n<\\/ul>\\n<h4>v1.16 - August 21, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<li>New: A new frm_api_allow_create_entry filter has been added to override errors permission errors when creating an entry using the REST API.<\\/li>\\n<li>New: The frm_api_request_args filter is now applied when testing a connection to make testing a connection more consistent with real requests that get sent.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-api\\/formidable-api.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"168456\":{\"title\":\"Upload Importer\",\"name\":\"Upload Importer\",\"display_name\":\"Upload Importer\",\"slug\":\"upload-importer\",\"version\":\"1.0.01\",\"new_version\":\"1.0.01\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-upload-importer\\/formidable-upload-importer-1.0.01.zip\"],\"excerpt\":\"\",\"id\":168456,\"released\":\"2015-10-16 17:05:47\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/upload-importer\\/\",\"changelog\":\"<h4>v1.0.01<\\/h4>\\n<ul>\\n<li>Get updates from FormidablePro.com<\\/li>\\n<\\/ul>\\n<h4>v1.0<\\/h4>\\n<ul>\\n<li>Allow importing of multiple file uploads<\\/li>\\n<li>Replace deprecated mime_content_type with fileinfo<\\/li>\\n<li>Update auto-updating<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"upload-importer\\/upload-importer.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"168460\":{\"title\":\"Twilio\",\"name\":\"Twilio\",\"display_name\":\"Twilio WordPress SMS\",\"slug\":\"twilio\",\"version\":\"1.09\",\"new_version\":\"1.09\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-twilio\\/formidable-twilio-1.09.zip\"],\"excerpt\":\"Allow users to text their votes for polls created by Formidable Forms, or send SMS notifications when entries are submitted or updated.\",\"id\":168460,\"released\":\"2014-03-10 00:00:00\",\"categories\":[\"Business\",\"Email &amp; SMS Marketing\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/twilio-add-on\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/twilio\\/\",\"changelog\":\"<h4>v1.10 - August 26, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<li>New: Twilio requests are now logged using the logging add-on when the plugin is available.<\\/li>\\n<li>New: Twilio actions now include the option to trigger on import.<\\/li>\\n<\\/ul>\\n<h4>v1.09 - November 2, 2020<\\/h4>\\n<ul>\\n<li>New: Include sending numbers from the linked Twilio account in a dropdown. This makes it much easier to send messages successfully.<\\/li>\\n<li>New: Process the [default-message] when sending in an SMS message.<\\/li>\\n<li>Add more guidance to connect to the Twilio API and show messages in the form action when connecting fails.<\\/li>\\n<li>Fix: Some responses were not getting saved correctly into radio and checkbox fields.<\\/li>\\n<li>Clean up and update the code including removing support for Formidable &lt;2.0.<\\/li>\\n<\\/ul>\\n<h4>v1.08 - January 16, 2017<\\/h4>\\n<ul>\\n<li>Improved: Removed deprecated instructions and screenshot.<\\/li>\\n<li>Improved: Removed deprecated valign attribute from table HTML.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-twilio\\/formidable-twilio.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"168463\":{\"title\":\"Bootstrap\",\"name\":\"Bootstrap\",\"display_name\":\"Bootstrap\",\"slug\":\"bootstrap\",\"version\":\"2.0.1\",\"new_version\":\"2.0.1\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-bootstrap\\/formidable-bootstrap-2.0.1.zip\"],\"excerpt\":\"Instantly add Bootstrap styling to all your Formidable forms.\",\"id\":168463,\"released\":\"2014-08-05 00:00:00\",\"categories\":[\"Creator\",\"Form Design &amp; Display\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-bootstrap\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap\\/\",\"changelog\":\"<h4>v2.0.1 - August 13, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<\\/ul>\\n<h4>v2.0 - November 30, 2023<\\/h4>\\n<ul>\\n<li>New: This add on now uses Bootstrap 5 (instead of Bootstrap 3). If moving to Bootstrap 5 is causing issues, the option to change back to Bootstrap 3 is available as a dropdown option in Global Settings.<\\/li>\\n<li>New: Admin page labels for Bootstrap settings have been updated for better accessibility.<\\/li>\\n<li>Fix: Radio button options displayed as buttons had too much left padding when using Bootstrap 3.<\\/li>\\n<li>Fix: Too many migration queries were being made when there was no Bootstrap data to migrate.<\\/li>\\n<li>Fix: The ellipses used in pagination containers was appearing as text outside of the pagination when using the Bootstrap add on.<\\/li>\\n<\\/ul>\\n<h4>vv1.03 - January 18, 2021<\\/h4>\\n<ul>\\n<li>This update requires action. After updating, click the link to migrate the old settings.<strong> If you save a form with Bootstrap field options before running this migration, you risk losing those settings.<\\/strong><\\/li>\\n<li>New: Moved Prepend and Append Bootstrap field options to Before Input and After Input.<\\/li>\\n<li>New: Errors are now shown by default and can no longer be turned off<\\/li>\\n<li>New: Improved plugin security<\\/li>\\n<li>New: Added bootstrap CSS file directly into plugin for GDPR compliance<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-bootstrap\\/formidable-bootstrap.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"168468\":{\"title\":\"AWeber\",\"name\":\"AWeber\",\"display_name\":\"AWeber\",\"slug\":\"aweber\",\"version\":\"2.05\",\"new_version\":\"2.05\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-aweber\\/formidable-aweber-2.05.zip\"],\"excerpt\":\"AWeber is a powerful email marketing service. Subscribe contacts to an AWeber mailing list when they submit your WordPress contact forms.\",\"id\":168468,\"released\":\"2013-11-26 00:00:00\",\"categories\":[\"Creator\",\"Email &amp; SMS Marketing\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-aweber\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/aweber\\/\",\"changelog\":\"<h4>v2.05 - August 20, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<li>Fix: Undefined array key \\\"ad_tracking\\\" and Undefined array key \\\"tags\\\" PHP warnings have been fixed when adding a new AWeber action.<\\/li>\\n<li>The deprecated <span class=\\\"blob-code-inner blob-code-marker js-code-nav-pass js-skip-tagsearch\\\" data-code-marker=\\\"-\\\"><span class=\\\"pl-en x x-first\\\">utf8_encode<\\/span><\\/span> PHP function is no longer referenced.<\\/li>\\n<\\/ul>\\n<h4>v2.04 - June 11, 2024<\\/h4>\\n<ul>\\n<li>New: Field dropdowns have been updated to enable support for repeater actions.<\\/li>\\n<li>Fix: Name fields will now properly concatenate the first and last name when sending data to AWeber.<\\/li>\\n<li>Fix: An Uncaught TypeError: preg_match(): Argument 2 must be of type string fatal error has been fixed when trying to remove accents from array data.<\\/li>\\n<\\/ul>\\n<h4>v2.03 - March 3, 2022<\\/h4>\\n<ul>\\n<li>New: Subscription errors and successful subscriptions will now be logged if the Formidable Logs add on is available.<\\/li>\\n<li>Fix: Accents will now be removed from characters when subscribing to avoid issues with special accented characters breaking in names in AWeber.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-aweber\\/formidable-aweber.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"169998\":{\"title\":\"WP Multilingual\",\"name\":\"WP Multilingual\",\"display_name\":\"WP Multilingual\",\"slug\":\"wp-multilingual\",\"version\":\"1.13\",\"new_version\":\"1.13\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-wpml\\/formidable-wpml-1.13.zip\"],\"excerpt\":\"Translate your forms into multiple languages using the Formidable-integrated WPML plugin.\",\"id\":169998,\"released\":\"2013-04-29 00:00:00\",\"categories\":[\"Business\",\"Multilingual\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-multi-language\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/wp-multilingual\\/\",\"changelog\":\"<h4>v1.13 - December 9, 2024<\\/h4>\\n<ul>\\n<li>New: Translation settings are now broken into multiple pages when the number of strings to translate exceeds the page size. Translation settings now also include a search input.<\\/li>\\n<li>New: Lookup field options can now be translated.<\\/li>\\n<li>New: Old removed options are now removed from translation settings when a form is updated.<\\/li>\\n<li>Fix: A foreach() argument must be of type array|object, null given PHP warning triggered when duplicating fields has been fixed.<\\/li>\\n<li>Fix: A database error would occur when viewing translation settings for a form with no fields.<\\/li>\\n<li>Fix: A translation issue with product field default values that would cause total field validation to fail for single products inside of conditional sections has been fixed.<\\/li>\\n<li>Fix: Fatal errors would occur when Polylang was active.<\\/li>\\n<li>Fix: An attempt to read property \\\"id\\\" on null PHP warning has been fixed.<\\/li>\\n<li>Fix: Error messages were not properly translating in some cases.<\\/li>\\n<\\/ul>\\n<h4>v1.12 - August 8, 2022<\\/h4>\\n<ul>\\n<li>New: Translations are now copied when a field or form is duplicated.<\\/li>\\n<li>New: Confirmation field validation messages can now be translated.<\\/li>\\n<li>Fix: Placeholders for Lookup dropdowns were not translating.<\\/li>\\n<li>Fix: Updated translations were not properly updating.<\\/li>\\n<\\/ul>\\n<h4>v1.11 - March 25, 2022<\\/h4>\\n<ul>\\n<li>Fix: Likert column headings were not translating properly.<\\/li>\\n<li>Fix: Incorrect and occasionally duplicate field translation options were appearing on translation pages.<\\/li>\\n<li>Fix: Formidable was appearing as an option in the WPML item dropdown, and has been removed.<\\/li>\\n<\\/ul>\\n<h4>v1.04 - October 25th, 2016<\\/h4>\\n<ul>\\n<li>Allow translation of Add\\/Remove buttons<\\/li>\\n<li>Replace some deprecated WPML function calls and constants<\\/li>\\n<li>Make sure wpml strings are updated when form is updated<\\/li>\\n<li>Do not translate default value for all field types<\\/li>\\n<li>Make sure incorrect field message is translated with ajax submit<\\/li>\\n<\\/ul>\\n<h4>v1.03.03 - March 28, 2016<\\/h4>\\n<ul>\\n<li>Send the language in the ajax url differently to prevent 404s during ajax calls. This should help with duplicate submissions.<\\/li>\\n<li>Prevent a license key from being saved for another plugin<\\/li>\\n<\\/ul>\\n<h4>v1.03.02<\\/h4>\\n<ul>\\n<li>Get updates from FormidablePro.com<\\/li>\\n<li>Make it compatible with the free version of Formidable<\\/li>\\n<li>Fix errors when Formidable or WPML are deactivated<\\/li>\\n<li>Include the current language during ajax calls<\\/li>\\n<li>Force an English start language for strings for v2.2.6 of the WPML strings plugin<\\/li>\\n<li>Fix the issue with the default language in WPML being set different than the string language<\\/li>\\n<li>If values in the form settings page changed, update them when going to the translation settings<\\/li>\\n<li>Make sure the \\\"previous\\\" label is translatable when drafts are not enabled<\\/li>\\n<li>Don\'t show strings for inactive languages<\\/li>\\n<li>Translate fields in repeating sections<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-wpml\\/formidable-wpml.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"170641\":{\"title\":\"Locations\",\"name\":\"Locations\",\"display_name\":\"Locations\",\"slug\":\"locations\",\"version\":\"2.03\",\"new_version\":\"2.03\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-locations\\/formidable-locations-2.03.zip\"],\"excerpt\":\"Populate fields with Countries, States\\/Provinces, U.S. Counties, and U.S. Cities. This data can then be used in dependent Data from Entries fields.\",\"id\":170641,\"released\":\"2014-06-21 00:00:00\",\"categories\":[\"Creator\",\"Data Collection\",\"Form Functionality\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-locations\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/locations\\/\",\"changelog\":\"<h4>v2.03 - April 20, 2023<\\/h4>\\n<ul>\\n<li>Fix: Importing cities would stop at \\\"8 remaining\\\" and never stop making requests to import additional cities.<\\/li>\\n<li>Fix: Form ids are are no longer retrieved using a deprecated function.<\\/li>\\n<li>Fix: Some city values were importing incorrectly, displaying \\\"1920\\\" as the state.<\\/li>\\n<\\/ul>\\n<h4>v2.02 - September 11, 2017<\\/h4>\\n<ul>\\n<li>Fix: Remove invalid city data.<\\/li>\\n<\\/ul>\\n<h4>v2.01 - May 10, 2016<\\/h4>\\n<ul>\\n<li>Switch to using Lookup fields<\\/li>\\n<li>Add a link to reset the locations data<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-locations\\/us_locations.php\",\"icons\":{\"1x\":\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2013\\/04\\/locations.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"170645\":{\"title\":\"Zapier\",\"name\":\"Zapier\",\"display_name\":\"Zapier\",\"slug\":\"zapier\",\"version\":\"2.04\",\"new_version\":\"2.04\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-zapier\\/formidable-zapier-2.04.zip\"],\"excerpt\":\"Connect with hundreds of applications through Zapier. Automatically insert a Google spreadsheet row, tweet, or upload to Dropbox.\",\"id\":170645,\"released\":\"2014-06-04 00:00:00\",\"categories\":[\"Automation\",\"Business\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-zapier\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/zapier\\/\",\"changelog\":\"<h4>v2.04 - August 19, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<\\/ul>\\n<h4>v2.03 - March 11, 2024<\\/h4>\\n<ul>\\n<li>Fix: When polling for entries, the first entry would always get returned. Now the newest entry is returned as expected.<\\/li>\\n<\\/ul>\\n<h4>v2.02 - March 21, 2023<\\/h4>\\n<ul>\\n<li>New: Referrer checks for protected files are now allowed for Zapier requests so a protected file can be uploaded to Google Drive using a Zapier action. Protected files also need to be available to everyone or Zapier still will not have access.<\\/li>\\n<li>New: Added translation support.<\\/li>\\n<li>Fix: The \\/form API endpoint was calling a deprecated function.<\\/li>\\n<li>Fix: Prevent a fatal error when Formidable lite is inactive.<\\/li>\\n<li>Fix: The link to edit a zap would lead to a 404 page.<\\/li>\\n<li>Additional validation has been added to prevent notices for an incomplete API URL.<\\/li>\\n<li>The message to migrate will no longer be shown when no legacy Zapier posts exist.<\\/li>\\n<li>A warning will now be displayed on any temporary Zapier actions that get created for testing before publishing a zap.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-zapier\\/formidable-zapier.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"170649\":{\"title\":\"User Tracking\",\"name\":\"User Tracking\",\"display_name\":\"User Flow\",\"slug\":\"user-tracking\",\"version\":\"2.0.3\",\"new_version\":\"2.0.3\",\"location\":[\"s3.amazonaws.com\\/fp.strategy11.com\\/releases\\/formidable-user-tracking\\/formidable-user-tracking-2.0.3.zip\"],\"excerpt\":\"Track the pages a user visits and the time spent on each page prior to submitting a form.\",\"id\":170649,\"released\":\"2015-10-19 00:00:00\",\"categories\":[\"Creator\",\"Strategy11\",\"Utilities\"],\"docs\":\"\\/knowledgebase\\/formidable-user-tracking\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/user-tracking\\/\",\"changelog\":\"<h4>v2.0.3 - December 2, 2024<\\/h4>\\n<ul>\\n<li>Fix: Duplicate entry checks would usually fail with this add-on active because of the way that user journey data is stored. When performing duplicate checks with this add-on active, entry descriptions is no longer included in the query to allow for duplicate entry checks to work.<\\/li>\\n<li>Support for translations have been improved, including translated dates when viewing user flow data.<\\/li>\\n<\\/ul>\\n<h4>v2.0.2 - July 25, 2024<\\/h4>\\n<ul>\\n<li>New: This add-on is now translated in German, Spanish, French, Italian, and Brazilian Portuguese.<\\/li>\\n<li>Fix: Additional checks have been added to fix issues with user sessions starting during REST API requests. This includes an error that would appear on the Site Health page.<\\/li>\\n<li>Fix: More checks have been added to avoid starting sessions when running CLI commands.<\\/li>\\n<\\/ul>\\n<h4>v2.0.1 - June 6, 2024<\\/h4>\\n<ul>\\n<li>New: User flow summaries can now be collapsed and opened by date.<\\/li>\\n<li>New: Forms with no title will now display as (no title) in the user flow summary.<\\/li>\\n<li>Fix: Session start logic has been moved to help avoid a headers already sent PHP warning on admin pages.<\\/li>\\n<li>Fix: A bug has been fixed that would cause incorrect user flow duration values.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-user-tracking\\/formidable-user-tracking.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"170655\":{\"title\":\"Mailchimp\",\"name\":\"Mailchimp\",\"display_name\":\"Mailchimp\",\"slug\":\"mailchimp\",\"version\":\"2.10\",\"new_version\":\"2.10\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-mailchimp\\/formidable-mailchimp-2.10.zip\"],\"excerpt\":\"Get on the path to more leads in minutes. Add and update leads in a Mailchimp mailing list when a form is submitted.\",\"id\":170655,\"released\":\"2013-10-17 00:00:00\",\"categories\":[\"Creator\",\"Email &amp; SMS Marketing\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-mailchimp\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/mailchimp\\/\",\"changelog\":\"<h4>v2.10 - June 18, 2025<\\/h4>\\n<ul>\\n<li>New: Mailchimp actions can now be delayed using form action automation.<\\/li>\\n<li>Fix: When a subscriber re-subscribes and double opt-in was enabled, the subscriber status would not update to subscribed.<\\/li>\\n<\\/ul>\\n<h4>v2.09 - November 5, 2024<\\/h4>\\n<ul>\\n<li>New: Mailchimp field data is now stored and re-used in the database to optimize Mailchimp actions. Previously two requests were required when subscribing, causing performance issues.<\\/li>\\n<li>New: When a Name field is mapped to a Mailchimp action, the (First) and (Last) descriptions are now included in the dropdown option label to make it more clear how the values are mapped.<\\/li>\\n<\\/ul>\\n<h4>v2.08 - September 3, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese. This does not include dynamic fields loaded from Mailchimp\'s API.<\\/li>\\n<li>New: The field limit retrieved from the Mailchimp API has been increased from 30 to 100.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-mailchimp\\/formidable-mailchimp.php\",\"icons\":{\"1x\":\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2013\\/04\\/mailchimp.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"172715\":{\"title\":\"PayPal Basic\",\"name\":\"PayPal Basic\",\"display_name\":\"PayPal Basic\",\"slug\":\"paypal-standard-single-payments\",\"version\":\"3.08\",\"new_version\":\"3.08\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-paypal\\/formidable-paypal-3.08.zip\"],\"excerpt\":\"\",\"id\":172715,\"released\":\"2015-10-21 12:20:35\",\"categories\":[\"Ecommerce\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/paypal-standard-single-payments\\/\",\"changelog\":\"<h4>v3.02 - September 14, 2018<\\/h4>\\n<ul>\\n<li>Merge the older grandfathered PayPal addon with the updated version.<\\/li>\\n<\\/ul>\\n<h4>v2.04.07 - January 25, 2015<\\/h4>\\n<ul>\\n<li>Allow amounts with . for thousands and , for decimal. If a . is used in the decimal place for the amount when the currency uses a , make it work anyway<\\/li>\\n<li>Redirect to PayPal correctly without Pro<\\/li>\\n<li>Make sure email setting is trimmed before comparing<\\/li>\\n<li>Add download ID to make sure correct license is used<\\/li>\\n<\\/ul>\\n<h4>v2.04.06 - November 17, 2015<\\/h4>\\n<ul>\\n<li>Prevent errors when updating Formidable<\\/li>\\n<\\/ul>\\n<h4>v2.04.05<\\/h4>\\n<ul>\\n<li>Format decimals with . to allow float to work correctly<\\/li>\\n<li>Get updates from FormidablePro.com<\\/li>\\n<\\/ul>\\n<h4>v2.04.04<\\/h4>\\n<ul>\\n<li>Allow the amount to be included in the \\\"other\\\" option<\\/li>\\n<li>Modify the user-agent in the IPN verification to prevent errors from PayPal<\\/li>\\n<\\/ul>\\n<h4>v2.04.03<\\/h4>\\n<ul>\\n<li>Save the IPN parameters with the payment in the format that allows for multiple IPN notifications<\\/li>\\n<li>Fix sending users to Paypal when 2.x is installed, but the old settings haven\'t been moved to a form action<\\/li>\\n<li>Increased security related to XSS add_query_arg vulnerability<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"paypal-standard-single-payments\\/paypal-standard-single-payments.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"173984\":{\"title\":\"User Registration\",\"name\":\"User Registration\",\"display_name\":\"User Registration\",\"slug\":\"user-registration\",\"version\":\"3.0.1\",\"new_version\":\"3.0.1\",\"location\":[\"s3.amazonaws.com\\/fp.strategy11.com\\/releases\\/formidable-registration\\/formidable-registration-3.0.1.zip\"],\"excerpt\":\"Give new users access to your site quickly and painlessly. Plus edit profiles and login from the front end.\",\"id\":173984,\"released\":\"2011-12-21 00:00:00\",\"categories\":[\"Business\",\"Data Collection\",\"Form Functionality\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/user-registration\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/user-registration\\/\",\"changelog\":\"<h4>v3.0.1 - January 27, 2025<\\/h4>\\n<ul>\\n<li>New: Login forms will now use the label position setting used in the applied Formidable style added using the class shortcode option.<\\/li>\\n<li>New: An appropriate error message will now be shown the reset password email fails to send because of an email deliverability issue.<\\/li>\\n<li>New: Some changes have been made to support the SiteGround Security Optimizer plugin\'s custom login URL functionality. A new frmreg_supports_alternative_login_url filter has been added to enable an alternative URL for cases when wp-login is blocked by another plugin.<\\/li>\\n<li>Fix: Fields used in registration actions would fail required validation checks when inside of a conditionally hidden section.<\\/li>\\n<li>Fix: A fatal error would occur when unexpected array redirect data was submitted to the login form.<\\/li>\\n<li>Fix: The hook used to load translations has been updated to improve compatibility with WordPress 6.7+.<\\/li>\\n<li>The setting to automatically log in users who submit this form was been removed from repeated registration actions.<\\/li>\\n<\\/ul>\\n<h4>v3.0 - October 8, 2024<\\/h4>\\n<ul>\\n<li>New: Registration actions now include the option to run a registration action for each entry of a repeater. This allows you to create multiple users with a single form.<\\/li>\\n<li>New: When a Name field is mapped to a User Registration action, the (First) and (Last) descriptions are now included in the dropdown option label to make it more clear how the values are mapped.<\\/li>\\n<li>New: Missing for attributes have been added to user meta inputs to help improve accessibility.<\\/li>\\n<li>Fix: In some cases, multiple activation success messages would appear. A check has been added to limit the number of related success messages to one.<\\/li>\\n<li>Additional validation has been added when saving registration page settings to help prevent issues where shortcodes are later removed from previously valid login pages.<\\/li>\\n<li>Some references to old deprecated Pro functions have been updated.<\\/li>\\n<\\/ul>\\n<h4>v2.13 - April 4, 2024<\\/h4>\\n<ul>\\n<li>New: User moderation redirects now support a new option to Redirect to a URL.<\\/li>\\n<li>New: Links and forms have been updated to use the site URL for logging in instead of the network site URL.<\\/li>\\n<li>New: The &#091;frm-login] shortcode now support several new options including register_link, label_register, class_register for adding registration links to login forms.<\\/li>\\n<li>New: The logout_redirect option used in &#091;frm-login] shortcodes now supports numeric page ID values.<\\/li>\\n<li>New: &#091;frm-reset-password] shortcodes now support new password_strength=\\\"1\\\" and password_visibility_toggle=\\\"1\\\" options.<\\/li>\\n<li>Fix: Errors messages will now show on page load when using the slide=1 option with a &#091;frm-login] shortcode.<\\/li>\\n<li>Several old deprecated functions have been removed.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-registration\\/formidable-registration.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"registration, user registration, register\",\"is_new\":false},\"174006\":{\"title\":\"WooCommerce\",\"name\":\"WooCommerce\",\"display_name\":\"WooCommerce\",\"slug\":\"woocommerce\",\"version\":\"1.14\",\"new_version\":\"1.14\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-woocommerce\\/formidable-woocommerce-1.14.zip\"],\"excerpt\":\"Are your WooCommerce product forms too basic? Add custom fields to a product form and collect more data when it is added to the cart.\",\"id\":174006,\"released\":\"2016-01-19 00:00:00\",\"categories\":[\"Ecommerce\",\"Elite\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-woocommerce\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/woocommerce\\/\",\"changelog\":\"\",\"plugin\":\"formidable-woocommerce\\/formidable-woocommerce.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"180495\":{\"title\":\"Highrise\",\"name\":\"Highrise\",\"display_name\":\"Highrise\",\"slug\":\"highrise\",\"version\":\"1.06\",\"new_version\":\"1.06\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-highrise\\/formidable-highrise-1.06.zip\"],\"excerpt\":\"Capture leads in your WordPress contact forms, and save them in your Highrise CRM account too.\",\"id\":180495,\"released\":\"2013-12-12 00:00:00\",\"categories\":[\"Creator\",\"CRM\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-highrise\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/highrise\\/\",\"changelog\":\"<h4>v1.06 - February 29, 2016<\\/h4>\\n<ul>\\n<li>Send the custom fields correctly to Highrise<\\/li>\\n<\\/ul>\\n<h4>v1.05 - February 23, 2016<\\/h4>\\n<ul>\\n<li>Fix email field settings in the Highrise action<\\/li>\\n<li>Make sure the license key is a Highrise license<\\/li>\\n<\\/ul>\\n<h4>v1.04 - February 9, 2016<\\/h4>\\n<ul>\\n<li>Added options to separate out address fields. City, State, Zip, and Country can now be mapped separately.<\\/li>\\n<li>Fixed PHP7 warnings<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-highrise\\/formidable-highrise.php\",\"icons\":{\"1x\":\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2012\\/01\\/highrise.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"185013\":{\"title\":\"Bootstrap Modal\",\"name\":\"Bootstrap Modal\",\"display_name\":\"Bootstrap Modal\",\"slug\":\"bootstrap-modal\",\"version\":\"3.0.3\",\"new_version\":\"3.0.3\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-modal\\/formidable-modal-3.0.3.zip\"],\"excerpt\":\"Open forms, views, other shortcodes, or sections of content in a Bootstrap popup.\",\"id\":185013,\"released\":\"2015-08-26 00:00:00\",\"categories\":[\"Creator\",\"Form Design &amp; Display\",\"Form Functionality\",\"Strategy11\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/bootstrap-modal\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/bootstrap-modal\\/\",\"changelog\":\"<h4>v3.0.3 - April 30, 2025<\\/h4>\\n<ul>\\n<li>New: An info message shows in the modal if a form is used there without AJAX submission enabled.<\\/li>\\n<li>Fix: JS error when Formidable Forms isn\'t activated.<\\/li>\\n<li>Fix: A duplicated background color setting is removed.<\\/li>\\n<\\/ul>\\n<h4>v3.0.2 - December 11, 2023<\\/h4>\\n<ul>\\n<li>New: The modal block button will now have a default \\\"Click here\\\" text instead of an empty input to make quick testing easier.<\\/li>\\n<li>New: The modal close button will now longer appear in the block preview as it was getting in the way and served no purpose.<\\/li>\\n<li>New: The modal block has been updated to work better with white label settings.<\\/li>\\n<li>Fix: The autocomplete popup from the Formidable Geolocation add on would not appear inside of a Bootstrap modal because of a z-index issue.<\\/li>\\n<\\/ul>\\n<h4>v3.0.1 - June 26, 2023<\\/h4>\\n<ul>\\n<li>Fix: Modals were hidden when the Formidable Bootstrap add on was also active.<\\/li>\\n<li>Fix: Modals made with the [[frmmodal-content]] shortcode were missing a backdrop.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-modal\\/formidable-modal.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"modal, popup\",\"is_new\":false},\"209561\":{\"title\":\"Polylang\",\"name\":\"Polylang\",\"display_name\":\"Polylang\",\"slug\":\"polylang\",\"version\":\"1.14\",\"new_version\":\"1.14\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-polylang\\/formidable-polylang-1.14.zip\"],\"excerpt\":\"Create bilingual or multilingual forms with help from Polylang.\",\"id\":209561,\"released\":\"2016-01-22 00:00:00\",\"categories\":[\"Business\",\"Multilingual\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/formidable-polylang\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/polylang\\/\",\"changelog\":\"<h4>v1.14 - June 2, 2025<\\/h4>\\n<ul>\\n<li>Fix: Saving Polylang translations would trigger a fatal error when using the newest version of Polylang.<\\/li>\\n<li>Fix: Checkbox fields would fail option validation when the checkbox options were translated and the checkbox field was on a page other than the last page.<\\/li>\\n<\\/ul>\\n<h4>v1.13 - October 29, 2024<\\/h4>\\n<ul>\\n<li>New: The text for previous buttons used in multiple page forms is now translatable.<\\/li>\\n<li>New: The text for the start and continue buttons used in conversational forms are now translatable.<\\/li>\\n<\\/ul>\\n<h4>v1.12 - August 19, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<li>Fix: A trim(): Passing null to parameter deprecated message when viewing a form has been fixed.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-polylang\\/frm-poly.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"310430\":{\"title\":\"Stripe\",\"name\":\"Stripe\",\"display_name\":\"Stripe\",\"slug\":\"stripe\",\"version\":\"3.1.8\",\"new_version\":\"3.1.8\",\"location\":[\"fp.strategy11.com\\/releases\\/formidable-stripe\\/formidable-stripe-3.1.8.zip\"],\"excerpt\":\"Any Formidable forms on your site can accept credit card payments without users ever leaving your site.\",\"id\":310430,\"released\":\"2016-04-26 00:00:00\",\"categories\":[\"Business\",\"Ecommerce\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/stripe\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/stripe\\/\",\"changelog\":\"<h4>v3.1.8 - June 11, 2025<\\/h4>\\n<ul>\\n<li>Fix: A fatal error would occur when using both Authorize.Net v2.0.4 and this Stripe add-on.<\\/li>\\n<li>Fix: Stripe scripts would incorrectly load in cases where the Stripe gateway was not selected.<\\/li>\\n<li>Fix: The Stripe link toggle would appear in cases where the Stripe gateway was not selected.<\\/li>\\n<\\/ul>\\n<h4>v3.1.7 - May 6, 2025<\\/h4>\\n<ul>\\n<li>New: Stripe payment fields will now apply border radius styles to match styling better.<\\/li>\\n<li>New: Stripe payment field label styling has been updated to better reflect label padding style settings.<\\/li>\\n<li>New: Stripe payment fields will now use the input weight style setting to look more consistent with other fields.<\\/li>\\n<li>New: Stripe payment fields now support the font family style setting.<\\/li>\\n<li>New: A new layout setting has been added to Stripe settings that adds support for the accordion layout.<\\/li>\\n<li>New: A new frm_stripe_appearance_rules filter has been added to make it possible to match a Stripe link field to a theme.<\\/li>\\n<li>Fix: The PayPal gateway option wouldn\'t appear on the edit payment page.<\\/li>\\n<li>Fix: A dynamic trial period based on a shortcode would fallback to a 1 day trial when it should be 0.<\\/li>\\n<li>Fix: An in-progress form entry created using the Form Abandonment add-on would not properly submit when using a Stripe action.<\\/li>\\n<\\/ul>\\n<h4>v3.1.6 - January 27, 2025<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese, and Brazilian Portuguese.<\\/li>\\n<li>New: The required email field used for Stripe Link payments will now display a required asterisk like other required fields.<\\/li>\\n<li>New: When a Name field is mapped to a Stripe payment action, the (First) and (Last) descriptions are now included in the dropdown option label to make it more clear how the values are mapped.<\\/li>\\n<li>New: Screen reader text has been updated to the payments admin page to improve accessibility.<\\/li>\\n<li>Fix: Conditional confirmation actions would not work as expected when using Stripe Link.<\\/li>\\n<li>Fix: Several additional checks have been added to help prevent issues with duplicate email notifications getting sent when a Stripe Link payment has been completed in some cases.<\\/li>\\n<li>Fix: Stripe payments would fail to initialize when using shortcode amount values for many currency types including Mexican Pesos.<\\/li>\\n<li>Fix: Additional checks have been added to prevent an Undefined array key \\u201ccapture\\u201d PHP warning.<\\/li>\\n<li>Fix: A conversational form with Stripe disabled would not submit normally.<\\/li>\\n<li>Fix: The hook used to load translations has been updated to improve compatibility with WordPress 6.7+.<\\/li>\\n<li>Fix: The test mode column wasn\'t getting set up properly for Stripe Link payments.<\\/li>\\n<li>A reference to an old function, frmFrontForm.savingDraft, that no longer exists has been removed.<\\/li>\\n<li>Checks have been added to avoid trying to extend the time limit when the set_time_limit function does not exist to improve compatibility.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-stripe\\/formidable-stripe.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"326042\":{\"title\":\"Form Action Automation\",\"name\":\"Form Action Automation\",\"display_name\":\"Form Action Automation\",\"slug\":\"autoresponder\",\"version\":\"2.09\",\"new_version\":\"2.09\",\"location\":[\"fp.strategy11.com\\/releases\\/autoresponder\\/formidable-autoresponder-2.09.zip\"],\"excerpt\":\"Schedule email notifications, SMS messages, and API actions.\",\"id\":326042,\"released\":\"2016-09-21 00:00:00\",\"categories\":[\"Automation\",\"Elite\",\"Marketing\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/schedule-autoresponder\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/autoresponder\\/\",\"changelog\":\"<h4>v2.09 - June 18, 2025<\\/h4>\\n<ul>\\n<li>New: Added support for automating more types of form actions.<\\/li>\\n<\\/ul>\\n<h4>v2.08 - August 13, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<\\/ul>\\n<h4>v2.07 - April 29, 2024<\\/h4>\\n<ul>\\n<li>New: The frm_autoresponder_time filter is now always applied. Previously this filter was only used when date or time fields were defined as the send date setting.<\\/li>\\n<li>New: Strings used in this plugin can now be translated.<\\/li>\\n<li>Fix: A bug has been fixed that would strip &#091;] shortcode characters after duplicating a form action with dashes in the value like a date format.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-autoresponder\\/formidable-autoresponder.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"automate, automation\",\"is_new\":false},\"337527\":{\"title\":\"Authorize.net AIM\",\"name\":\"Authorize.net AIM\",\"display_name\":\"Authorize.net AIM\",\"slug\":\"authorize-net-aim\",\"version\":\"2.04\",\"new_version\":\"2.04\",\"location\":[\"fp.strategy11.com\\/releases\\/authorize-net\\/formidable-authorize-net-2.04.zip\"],\"excerpt\":\"Accept one-time payments directly on your site, using Authorize.net AIM.\",\"id\":337527,\"released\":\"2016-04-29 00:00:00\",\"categories\":[\"Ecommerce\",\"Elite\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/authorize-net-aim\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/authorize-net-aim\\/\",\"changelog\":\"<h4>v2.04 - June 5, 2025<\\/h4>\\n<ul>\\n<li>New: A new &#091;frm-payment] shortcode has been added. This can be used to display quick details about a payment for a given entry ID. For example, &#091;frm-payment entry=&#091;id] show=amount] can be used in a view to get the payment amount.<\\/li>\\n<li>New: Screen reader text has been updated to the payments admin page to improve accessibility.<\\/li>\\n<li>Fix: Repeated fields would disappear after reloading a form as the result of a failed payment.<\\/li>\\n<li>Fix: Shipping information would not appear on load unless shipping was already enabled.<\\/li>\\n<li>Fix: An autoload issue would result in fatal errors on some sites.<\\/li>\\n<li>Fix: A Creation of dynamic property FrmAuthNetApi::$endpoint is deprecated PHP deprecation message that happens in PHP 8.2+ has been fixed.<\\/li>\\n<li>Fix: The PayPal gateway option wouldn\'t appear on the edit payment page.<\\/li>\\n<li>When a Name field is mapped to a payment action, the (First) and (Last) descriptions are now included in the dropdown option label to make it more clear how the values are mapped.<\\/li>\\n<\\/ul>\\n<h4>v2.03 - April 24, 2024<\\/h4>\\n<ul>\\n<li>Fix: A FrmTransActionsController not found fatal error related to autoloading occuring on some server configurations has been fixed.<\\/li>\\n<\\/ul>\\n<h4>v2.02 - March 7, 2022<\\/h4>\\n<ul>\\n<li>New: Name fields will now automatically map the proper first and last name values when sending to Authorize.net.<\\/li>\\n<li>New: Set the default currency to the one selected in global settings.<\\/li>\\n<li>New: Added additional currencies from Pro.<\\/li>\\n<li>Fix: Payments would not work if the amount specified was formatted as currency.<\\/li>\\n<li>Fix: Prevent a fatal error that happens in PHP8 when filling payment information.<\\/li>\\n<li>Fix: Expire dates were not properly calculating.<\\/li>\\n<li>Fix: Some echecks were not getting approved.<\\/li>\\n<li>Fix: Updated incorrect text domains.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-authorize-net\\/formidable-authorize-net.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"Authorize.net\",\"is_new\":false},\"11927748\":{\"title\":\"Logs\",\"name\":\"Logs\",\"display_name\":\"Logs\",\"slug\":\"logs\",\"version\":\"1.0.4\",\"new_version\":\"1.0.4\",\"location\":[\"fp.strategy11.com\\/releases\\/logs\\/formidable-logs-1.0.4.zip\"],\"excerpt\":\"See your API requests along with their responses from add-ons including Zapier, Formidable API Webhooks, Salesforce and more.\",\"id\":11927748,\"released\":\"2016-12-19 00:00:00\",\"categories\":[\"Basic\",\"Strategy11\",\"Utilities\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/logging\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/logs\\/\",\"changelog\":\"\",\"plugin\":\"formidable-logs\\/formidable-logs.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"19366992\":{\"title\":\"Formidable Pro Elite Package\",\"name\":\"Formidable Pro Elite Package\",\"display_name\":\"Formidable Pro Elite Package\",\"slug\":\"formidable-pro-enterprise-package\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":19366992,\"released\":\"2017-09-01 12:09:38\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro-enterprise-package\\/\",\"changelog\":\"\",\"plugin\":\"formidable-pro-enterprise-package\\/formidable-pro-enterprise-package.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"19366995\":{\"title\":\"Formidable Pro Business Package\",\"name\":\"Formidable Pro Business Package\",\"display_name\":\"Formidable Pro Business Package\",\"slug\":\"formidable-pro-small-business-package\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":19366995,\"released\":\"2017-09-01 12:09:09\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro-small-business-package\\/\",\"changelog\":\"\",\"plugin\":\"formidable-pro-small-business-package\\/formidable-pro-small-business-package.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"19367001\":{\"title\":\"Formidable Pro Creator Package\",\"name\":\"Formidable Pro Creator Package\",\"display_name\":\"Formidable Pro Creator Package\",\"slug\":\"formidable-pro-professional-package\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":19367001,\"released\":\"2017-09-01 12:10:24\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro-professional-package\\/\",\"changelog\":\"\",\"plugin\":\"formidable-pro-professional-package\\/formidable-pro-professional-package.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"19367654\":{\"title\":\"Formidable Pro Single Site\",\"name\":\"Formidable Pro Single Site\",\"display_name\":\"Formidable Pro Single Site\",\"slug\":\"formidable-pro-single-site\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":19367654,\"released\":\"2017-09-01 13:36:16\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-pro-single-site\\/\",\"changelog\":\"\",\"plugin\":\"formidable-pro-single-site\\/formidable-pro-single-site.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20247260\":{\"title\":\"Datepicker Options\",\"name\":\"Datepicker Options\",\"display_name\":\"Datepicker Options\",\"slug\":\"datepicker-options\",\"version\":\"2.1\",\"new_version\":\"2.1\",\"location\":[\"fp.strategy11.com\\/releases\\/dates\\/formidable-dates-2.1.zip\"],\"excerpt\":\"Add more options to date fields in your forms for so only the dates you choose can be chosen.\",\"id\":20247260,\"released\":\"2018-07-30 00:00:00\",\"categories\":[\"Business\",\"Form Functionality\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/datepicker-options\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/datepicker-options\\/\",\"changelog\":\"<h4>v2.1 - February 24, 2025<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<li>Fix: Inline date fields would not initialize properly in new forms that appears after a form is completed when submitting with AJAX.<\\/li>\\n<li>Fix: The hook used to load translations has been updated to improve compatibility with WordPress 6.7+.<\\/li>\\n<\\/ul>\\n<h4>v2.0.4 - March 28, 2024<\\/h4>\\n<ul>\\n<li>New: Blocked dates are no longer counted in &#091;date_calc] shortcode calculations by default when using the format=\\\"days\\\" option. In order to count blocked out dates, you must now include a new count_blackout_dates=\\\"1\\\" option.<\\/li>\\n<li>New: The strings used in this add-on can now be translated.<\\/li>\\n<li>Fix: Date calculations would trigger an error pop up on the edit entry admin page.<\\/li>\\n<li>Fix: Some date field validation checks would fail when sending a date value in Y-m-d format instead of the global date format setting.<\\/li>\\n<li>Fix: When validating if a date value is greater than or less than today, the value for today was based on the UTC timezone instead of the server timezone.<\\/li>\\n<\\/ul>\\n<h4>v2.0.3 - November 6, 2023<\\/h4>\\n<ul>\\n<li>Fix: Some inline datepickers were breaking because of a <span class=\\\"message-body-wrapper\\\"><span class=\\\"message-flex-body\\\"><span class=\\\"message-body devtools-monospace\\\"><span class=\\\"objectBox-stackTrace reps-custom-format\\\" data-link-actor-id=\\\"server0.conn0.windowGlobal450971566097\\/obj74\\\"><span class=\\\"objectBox objectBox-string\\\">settings is undefined<\\/span><\\/span><\\/span><\\/span><\\/span> JavaScript error.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-dates\\/formidable-dates.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"datepicker\",\"is_new\":false},\"20266559\":{\"title\":\"Salesforce\",\"name\":\"Salesforce\",\"display_name\":\"Salesforce\",\"slug\":\"salesforce\",\"version\":\"2.05\",\"new_version\":\"2.05\",\"location\":[\"fp.strategy11.com\\/releases\\/salesforce\\/formidable-salesforce-2.05.zip\"],\"excerpt\":\"Add new contacts and leads into your Salesforce CRM directly from the WordPress forms on your site.\",\"id\":20266559,\"released\":\"2018-05-31 00:00:00\",\"categories\":[\"CRM\",\"Elite\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/salesforce-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/salesforce\\/\",\"changelog\":\"<h4>v2.06 - November 1, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<li>New: Users are no longer required to replace the %3D%3D text copied from the end of their Authentication code when authenticating, making it easier to get set-up.<\\/li>\\n<\\/ul>\\n<h4>v2.05 - June 11, 2024<\\/h4>\\n<ul>\\n<li>New: Field dropdowns have been updated to enable support for repeater actions.<\\/li>\\n<li>Fix: Authentication errors would not visibly appear, making it difficult to troubleshoot authentication issues.<\\/li>\\n<li>Fix: A Trying to access array offset on value of type bool PHP Warning has been fixed.<\\/li>\\n<li>Fix: An Implicit conversion from float to int loses precision PHP Deprecated message has been fixed.<\\/li>\\n<li>Fix: An Automatic conversion of false to array is deprecated PHP Deprecated message has been fixed.<\\/li>\\n<\\/ul>\\n<h4>v2.04 - December 10, 2019<\\/h4>\\n<ul>\\n<li>New: Show Salesforce Authentication errors on the global settings page<\\/li>\\n<li>Add icon in global settings<\\/li>\\n<li>Use font icon instead of image in form action<\\/li>\\n<li>Remove debug mode in favor of logging<\\/li>\\n<li>Tweak: Clear the settings cache with a link instead of ajax for more reliable cache clearing<\\/li>\\n<li>Fix: Updating data in Salesforce wasn\'t working correctly<\\/li>\\n<li>Fix: There was an error when Formidable was disabled<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-salesforce\\/formidable-salesforce.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20781560\":{\"title\":\"MailPoet Newsletters\",\"name\":\"MailPoet Newsletters\",\"display_name\":\"MailPoet Newsletters\",\"slug\":\"mailpoet-newsletters\",\"version\":\"1.04\",\"new_version\":\"1.04\",\"location\":[\"fp.strategy11.com\\/releases\\/mailpoet\\/formidable-mailpoet-1.04.zip\"],\"excerpt\":\"Send WordPress newsletters from your own site with MailPoet. And use Formidable to for your newsletter signup forms.\",\"id\":20781560,\"released\":\"2018-06-05 00:00:00\",\"categories\":[\"Creator\",\"Email &amp; SMS Marketing\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/mailpoet-newsletter-signup-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/mailpoet-newsletters\\/\",\"changelog\":\"<h4>v1.04 - August 20, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<\\/ul>\\n<h4>v1.03 - June 11, 2024<\\/h4>\\n<ul>\\n<li>New: Field dropdowns have been updated to enable support for repeater actions.<\\/li>\\n<\\/ul>\\n<h4>v1.02 - July 12, 2022<\\/h4>\\n<ul>\\n<li>New: Added support for logging MailPoet subscriptions when the Logs add on is active.<\\/li>\\n<li>New: Name fields will now automatically map the proper first and last name values when sending to MailPoet.<\\/li>\\n<li>Fix: Users could not subscribe to multiple lists when the active language was not in English because the error check was specific to language.<\\/li>\\n<li>Fix: Prevent a warning when sending data with MailPoet action.<\\/li>\\n<li>Fix: Nothing would get sent when a user id field was set to something other than a name or email option.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-mailpoet\\/formidable-mailpoet.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20790298\":{\"title\":\"Active Campaign\",\"name\":\"Active Campaign\",\"display_name\":\"ActiveCampaign\",\"slug\":\"activecampaign-wordpress-plugin\",\"version\":\"1.11\",\"new_version\":\"1.11\",\"location\":[\"fp.strategy11.com\\/releases\\/activecampaign\\/formidable-activecampaign-1.11.zip\"],\"excerpt\":\"Add contacts to any ActiveCampaign list from your WordPress forms.\",\"id\":20790298,\"released\":\"2018-07-05 00:00:00\",\"categories\":[\"Elite\",\"Email &amp; SMS Marketing\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/activecampaign-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/activecampaign-wordpress-plugin\\/\",\"changelog\":\"<h4>v1.11 - August 12, 2025<\\/h4>\\n<ul>\\n<li>Update translation strings.<\\/li>\\n<li>New: Show (First) and (Last) along with field name when mapping name fields.<\\/li>\\n<li>New: Add Formidable Form Action Automation support.<\\/li>\\n<li>Fix: Function _load_textdomain_just_in_time was called incorrectly.<\\/li>\\n<\\/ul>\\n<h4>v1.10 - June 11, 2024<\\/h4>\\n<ul>\\n<li>New: Field dropdowns have been updated to enable support for repeater actions.<\\/li>\\n<\\/ul>\\n<h4>v1.09 - March 25, 2024<\\/h4>\\n<ul>\\n<li>New: The strings used in this add-on can now be translated.<\\/li>\\n<li>Fix: An Uncaught Error: Class \\\"FrmFormAction\\\" not found fatal error has been fixed that happens on WPEngine hosted servers using PHP 8.2.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-activecampaign\\/formidable-activecampaign.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"ActiveCampaign\",\"is_new\":false},\"20811871\":{\"title\":\"HubSpot\",\"name\":\"HubSpot\",\"display_name\":\"HubSpot\",\"slug\":\"hubspot-wordpress\",\"version\":\"2.0.2\",\"new_version\":\"2.0.2\",\"location\":[\"fp.strategy11.com\\/releases\\/hubspot\\/formidable-hubspot-2.0.2.zip\"],\"excerpt\":\"HubSpot is a complete CRM platform with tools for increased leads, accelerated sales, or streamlined customer service.\",\"id\":20811871,\"released\":\"2018-09-04 00:00:00\",\"categories\":[\"CRM\",\"Elite\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/hubspot-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/hubspot-wordpress\\/\",\"changelog\":\"<h4>v2.0.2 - September 23, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<li>New: When a Name field is mapped to a HubSpot action, the (First) and (Last) descriptions are now included in the dropdown option label to make it more clear how the values are mapped.<\\/li>\\n<\\/ul>\\n<h4>v2.0.1 - June 11, 2024<\\/h4>\\n<ul>\\n<li>New: Field dropdowns have been updated to enable support for repeater actions.<\\/li>\\n<li>New: The request sent to get lists from Hubspot will now only query for static lists, allowing each request to get more lists without hitting page limits.<\\/li>\\n<li>New: If there are more than 250 static contact lists, multiple requests will be made to get the full list of static Hubspot contact lists.<\\/li>\\n<li>Fix: European private app access tokens would fail to validate.<\\/li>\\n<\\/ul>\\n<h4>v2.0 - March 27, 2023<\\/h4>\\n<ul class=\\\"p-rich_text_list p-rich_text_list__bullet\\\" data-stringify-type=\\\"unordered-list\\\" data-indent=\\\"0\\\" data-border=\\\"0\\\">\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">New: Added a new OAuth2 authentication method.<\\/li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">New: While using the new OAuth2 authentication, contacts will now get deleted with a webhook after they are removed from HubSpot for GDPR compliance.<\\/li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">New: Added translation support.<\\/li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">New: Improved error handling when inputting an invalid Private App Access token.<\\/li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Fix: List data would display as an error after successfully authenticating HubSpot and after successfully clearing the cache.<\\/li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Fix: HubSpot access tokens would fail to save while the Geolocation add on was also active.<\\/li>\\n<li data-stringify-indent=\\\"0\\\" data-stringify-border=\\\"0\\\">Deprecated HubSpot API Keys are no longer supported.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-hubspot\\/formidable-hubspot.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20813244\":{\"title\":\"GetResponse\",\"name\":\"GetResponse\",\"display_name\":\"GetResponse\",\"slug\":\"getresponse-wordpress-plugin\",\"version\":\"1.07\",\"new_version\":\"1.07\",\"location\":[\"fp.strategy11.com\\/releases\\/getresponse\\/formidable-getresponse-1.07.zip\"],\"excerpt\":\"Collect leads in WordPress forms and automatically add them in GetResponse. Then trigger automatic emails and other GetResponse marketing automations.\",\"id\":20813244,\"released\":\"2018-09-06 00:00:00\",\"categories\":[\"Business\",\"Email &amp; SMS Marketing\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/getresponse-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/getresponse-wordpress-plugin\\/\",\"changelog\":\"<h4>v1.07 - August 12, 2025<\\/h4>\\n<ul>\\n<li>New: Show (First) and (Last) along with field name when mapping name fields.<\\/li>\\n<li>Fix: Function _load_textdomain_just_in_time was called incorrectly.<\\/li>\\n<\\/ul>\\n<h4>v1.06 - June 11, 2024<\\/h4>\\n<ul>\\n<li>New: Field dropdowns have been updated to enable support for repeater actions.<\\/li>\\n<li>New: Strings used in this plugin can now be translated.<\\/li>\\n<\\/ul>\\n<h4>v1.05 - June 21, 2021<\\/h4>\\n<ul>\\n<li>New: Name fields will now automatically map the proper first and last name values when sending to GetResponse.<\\/li>\\n<li>Fix: Nothing would get sent when a user id field was set to something other than a name or email option.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-getresponse\\/formidable-getresponse.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20815759\":{\"title\":\"Quiz Maker\",\"name\":\"Quiz Maker\",\"display_name\":\"Quiz Maker\",\"slug\":\"quiz-maker\",\"version\":\"3.1.6\",\"new_version\":\"3.1.6\",\"location\":[\"fp.strategy11.com\\/releases\\/quiz\\/formidable-quizzes-3.1.6.zip\"],\"excerpt\":\"Turn your forms into automated quizzes. Add questions and submit the quiz key. Then all the grading is done for you.\",\"id\":20815759,\"released\":\"2018-09-13 00:00:00\",\"categories\":[\"Business\",\"Data Collection\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/quiz-maker-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/quiz-maker\\/\",\"changelog\":\"<h4>v3.1.6 - January 30, 2025<\\/h4>\\n<p>Fix: Manual scoring doesn\'t work on the entry page.<\\/p>\\n<h4>v3.1.5 - January 20, 2025<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese, and Brazilian Portuguese.<\\/li>\\n<li>New: Scored quizzes now support less than and greater than options.<\\/li>\\n<li>New: Outcome quizzes now support displaying the score in percentage and fraction.<\\/li>\\n<li>Fix: Scrolling issue when setting up scored quizzes.<\\/li>\\n<li>Fix: Form submit button is in the wrong place if Randomize questions is enabled.<\\/li>\\n<li>Optimized scripts loading in the backend.<\\/li>\\n<\\/ul>\\n<h4>v3.1.4 - June 3, 2024<\\/h4>\\n<ul>\\n<li>Fix: A styling has has been applied to the + and - buttons for adding and removing quiz grade options in global settings.<\\/li>\\n<li>Fix: Forms with CAPTCHA fields would fail validation when submitting on forms using the format=\\\"quiz_correct_answers\\\" option for &#091;default-message] shortcodes used in email actions.<\\/li>\\n<li>Fix: Multiple scores would appear when using the scored quiz options to show the score after submitting a form multiple times when submitting with AJAX.<\\/li>\\n<li>Fix: An incorrect error message would appear when trying to add quiz outcomes and scored quiz actions to the same form.<\\/li>\\n<li>Confirmation action messages with scripts would always get stripped when included in a quiz score message. This is now only stripped based on site rules for handling unfiltered HTML.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-quizzes\\/formidable-quizzes.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"quiz, quizzes\",\"is_new\":false},\"20826884\":{\"title\":\"Constant Contact\",\"name\":\"Constant Contact\",\"display_name\":\"Constant Contact\",\"slug\":\"constant-contact\",\"version\":\"1.07\",\"new_version\":\"1.07\",\"location\":[\"fp.strategy11.com\\/releases\\/constant-contact\\/formidable-constantcontact-1.07.zip\"],\"excerpt\":\"Setup WordPress forms to create leads automatically in Constant Contact. Just select a list and match up form fields.\",\"id\":20826884,\"released\":\"2018-10-15 00:00:00\",\"categories\":[\"Business\",\"Email &amp; SMS Marketing\"],\"docs\":\"\\/knowledgebase\\/constant-contact-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/constant-contact\\/\",\"changelog\":\"<h4>v1.08 - October 1, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<\\/ul>\\n<h4>v1.07 - June 11, 2024<\\/h4>\\n<ul>\\n<li>New: Field dropdowns have been updated to enable support for repeater actions.<\\/li>\\n<\\/ul>\\n<h4>v1.06 - March 25, 2024<\\/h4>\\n<ul>\\n<li>New: The strings used in this add-on can now be translated.<\\/li>\\n<li>Fix: An Uncaught Error: Class \\\"FrmFormAction\\\" not found fatal error has been fixed that happens on WPEngine hosted servers using PHP 8.2.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-constantcontact\\/formidable-constantcontact.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20834175\":{\"title\":\"Formidable Payments\",\"name\":\"Formidable Payments\",\"display_name\":\"Formidable Payments\",\"slug\":\"formidable-payments\",\"version\":\"1.14\",\"new_version\":\"1.14\",\"location\":[\"fp.strategy11.com\\/releases\\/payments\\/formidable-payments-1.14.zip\"],\"excerpt\":\"\",\"id\":20834175,\"released\":\"2018-11-06 12:08:25\",\"categories\":[],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-payments\\/\",\"changelog\":\"\",\"plugin\":\"formidable-payments\\/formidable-payments.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20891694\":{\"title\":\"Campaign Monitor\",\"name\":\"Campaign Monitor\",\"display_name\":\"Campaign Monitor\",\"slug\":\"campaign-monitor\",\"version\":\"1.06\",\"new_version\":\"1.06\",\"location\":[\"fp.strategy11.com\\/releases\\/campaign-monitor\\/formidable-campaignmonitor-1.06.zip\"],\"excerpt\":\"Save time by automatically sending leads from WordPress forms to Campaign Monitor.\",\"id\":20891694,\"released\":\"2019-06-17 00:00:00\",\"categories\":[\"Business\",\"Email &amp; SMS Marketing\"],\"docs\":\"\\/knowledgebase\\/campaign-monitor-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/campaign-monitor\\/\",\"changelog\":\"<h4>v1.06 - September 9, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<\\/ul>\\n<h4>v1.05 - June 11, 2024<\\/h4>\\n<ul>\\n<li>New: Field dropdowns have been updated to enable support for repeater actions.<\\/li>\\n<li>New: Strings used in this plugin can now be translated.<\\/li>\\n<\\/ul>\\n<h4>v1.04 - June 23, 2021<\\/h4>\\n<ul>\\n<li>New: Name fields will now automatically map the proper first and last name values when sending to Campaign Monitor.<\\/li>\\n<li>Fix: Nothing would get sent when a user id field was set to something other than a name or email option.<\\/li>\\n<li>Fix: Prevent a fatal error that happens in PHP8 after trying to save Campaign Monitor API keys.<\\/li>\\n<li>Fix: Prevent a fatal error that happens in PHP8 after trying to load the fields for a specific contact list.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-campaignmonitor\\/formidable-campaignmonitor.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20896934\":{\"title\":\"Formidable Pro Plus\",\"name\":\"Formidable Pro Plus\",\"display_name\":\"Formidable Pro Plus\",\"slug\":\"formidable-basic\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":20896934,\"released\":\"2019-07-22 09:03:39\",\"categories\":[\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-basic\\/\",\"changelog\":\"\",\"plugin\":\"formidable-basic\\/formidable-basic.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"20897348\":{\"title\":\"Export View to CSV\",\"name\":\"Export View to CSV\",\"display_name\":\"Export View to CSV\",\"slug\":\"export-view\",\"version\":\"1.10\",\"new_version\":\"1.10\",\"location\":[\"fp.strategy11.com\\/releases\\/export-view\\/formidable-export-view-1.10.zip\"],\"excerpt\":\"Easily create custom CSV files and allow users to export their data from the front-end of your site.\",\"id\":20897348,\"released\":\"2019-08-01 00:00:00\",\"categories\":[\"Business\",\"Data Management\",\"Strategy11\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/table-view-to-csv\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/export-view\\/\",\"changelog\":\"<h4>v1.10 - August 13, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<li>Checks have been added to avoid trying to extend the time limit when the set_time_limit function does not exist to improve compatibility.<\\/li>\\n<li>Several references to deprecated functions have been updated.<\\/li>\\n<\\/ul>\\n<h4>v1.09 - September 19, 2023<\\/h4>\\n<ul>\\n<li>New: A new UTF-8 with BOM format option has been added to the Export Views global settings section.<\\/li>\\n<\\/ul>\\n<h4>v1.08 - June 26, 2023<\\/h4>\\n<ul>\\n<li>Fix: Some admin pages, including the WooCommerce orders page, were broken because of a fatal error when Formidable Views was inactive. Now this plugin will no longer load when Formidable Views is unavailable.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-export-view\\/formidable-export-view.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"export table\",\"is_new\":false},\"26596685\":{\"title\":\"Directory\",\"name\":\"Directory\",\"display_name\":\"Directory\",\"slug\":\"directory\",\"version\":\"1.0.01\",\"new_version\":\"1.0.01\",\"location\":[\"fp.strategy11.com\\/releases\\/directory\\/formidable-directory-1.0.01.zip\"],\"excerpt\":\"\",\"id\":26596685,\"released\":\"2020-06-29 00:00:00\",\"categories\":[\"Business+Views\",\"Solution\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/formidable-directory\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/wordpress-directory-plugin\\/\",\"changelog\":\"<h4>v1.0.01 - October 4, 2021<\\/h4>\\n<ul>\\n<li>Fix: The frm-letter-filter shortcode would always filter by lname instead of using the custom param option.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-directory\\/formidable-directory.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"beta\":{\"version\":\"100\",\"location\":[\"fp.strategy11.com\\/form-templates\\/business-directory.xml\"]},\"is_new\":false},\"28027505\":{\"title\":\"Views\",\"name\":\"Views\",\"display_name\":\"Legacy Views\",\"slug\":\"views\",\"version\":\"4.0.05\",\"new_version\":\"4.0.05\",\"location\":[\"fp.strategy11.com\\/releases\\/views\\/formidable-views-4.0.05.zip\"],\"excerpt\":\"Add the power of views to your Formidable Forms to display your form submissions in listings, tables, calendars, and more.\",\"id\":28027505,\"released\":\"2010-10-28 00:00:00\",\"categories\":[\"Strategy11\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase-category\\/views\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/views\\/\",\"changelog\":\"<h4>v5.7 - December 10, 2024<\\/h4>\\n<ul>\\n<li>New: Calendar views now support a new End Event Time setting and a new Pop-up Location pop-up setting.<\\/li>\\n<li>New: Calendar views now support a new &#091;<span class=\\\"blob-code-inner blob-code-marker \\\" data-code-marker=\\\"+\\\"><span class=\\\"pl-s\\\">end_event_date<\\/span><\\/span>] shortcode.<\\/li>\\n<li>Fix: Support for repeated calendar events in modern calendar views has been improved.<\\/li>\\n<li>Fix: Support for RTL in modern calendar views has been improved.<\\/li>\\n<li>Fix: The Elementor Widget and Gutenberg blocks would only display options for 99 views. These dropdowns will now include every option, and the queries have been updated to help reduce the amount of memory required.<\\/li>\\n<\\/ul>\\n<h4>v5.6.4 - November 13, 2024<\\/h4>\\n<ul>\\n<li>Fix: View blocks would fail to preview in the Gutenberg builder on WordPress 6.7.<\\/li>\\n<li>Fix: A styling conflict with the Divi theme would cause long responsive table column text to overlap over other content, and long strings will now wrap to multiple lines.<\\/li>\\n<li>Fix: Grid view layout data would get printed out when viewed when no form data source was selected.<\\/li>\\n<li>An unnecessary database query has been removed when checking if the detail page is active.<\\/li>\\n<\\/ul>\\n<h4>v5.4.2 - October 25, 2023<\\/h4>\\n<ul>\\n<li>New: A new <span class=\\\"blob-code-inner blob-code-marker js-code-nav-pass \\\" data-code-marker=\\\"+\\\"><span class=\\\"pl-s\\\">frm_filter_final_view filter has been added for modifying the final result of a view.<\\/span><\\/span><\\/li>\\n<li>New: A few UI enhancements have been made. Now sliders for grid view settings include additional input fields with matching numeric values.<\\/li>\\n<li>New: The way CSS is added has been modified for better compatibility with the Snuffleupagus security module.<\\/li>\\n<li>New: The ID column is now sortable on the views list admin page.<\\/li>\\n<li>New: Some accessibility improvements have been added for view editor labels.<\\/li>\\n<li>New: A new filter has been added to support the new entry status types introduced with the form abandonment add on.<\\/li>\\n<li>Fix: Multiple warnings would get logged when sorting a view by a deleted field.<\\/li>\\n<li>Fix: Long view content would scroll underneath the type toggle elements.<\\/li>\\n<li>Fix: The preview result for address field shortcodes was not consistent with the front end result.<\\/li>\\n<li>Fix: The views editor would break with a fatal error when using the Google Listings and Ads plugin by WooCommerce. This conflict has been resolved.<\\/li>\\n<li>Fix: A Undefined array key PHP warning would get logged when loading the view editor if only a single view exists in the database.<\\/li>\\n<li>Fix: A deprecated use of self message would get logged when using the Gutenberg block for views.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-views\\/formidable-views.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28029934\":{\"title\":\"Formidable Pro Basic\",\"name\":\"Formidable Pro Basic\",\"display_name\":\"Formidable Pro Basic\",\"slug\":\"formidable-basic2\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28029934,\"released\":\"2020-11-13 12:10:10\",\"categories\":[],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-basic2\\/\",\"changelog\":\"\",\"plugin\":\"formidable-basic2\\/formidable-basic2.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28058856\":{\"title\":\"Visual Views\",\"name\":\"Visual Views\",\"display_name\":\"Visual Views\",\"slug\":\"visual-views\",\"version\":\"5.8\",\"new_version\":\"5.8\",\"location\":[\"fp.strategy11.com\\/releases\\/views\\/formidable-views-5.8.zip\"],\"excerpt\":\"Create WordPress web apps to display your form submissions in grids, tables, calendars, and more.\",\"id\":28058856,\"released\":\"2021-05-31 00:00:00\",\"categories\":[\"Creator\",\"Data Management\",\"Strategy11\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase-category\\/views\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/visual-views\\/\",\"changelog\":\"<h4>v5.8 - June 10, 2025<\\/h4>\\n<ul>\\n<li>New: Support for Timeline views has been added.<\\/li>\\n<li>Fix: An Uncaught ReferenceError: frm_js is not defined error would appear in the Gutenberg page builder.<\\/li>\\n<li>Fix: Grid views would use an incorrect max-width style in some themes.<\\/li>\\n<li>Fix: In-progress and abandoned entries would be excluded from Views results.<\\/li>\\n<li>A limit of 1000 modals has been set when handling View pagination with AJAX to help prevent abuse. This limit can be adjusted using a new filter, frm_max_modal_offset. A check for the bootstrap modal add-on has been added as well.<\\/li>\\n<li>Many old unused Legacy Views functions have been deprecated including FrmViewsDisplaysController::get_date_field_select, FrmViewsDisplaysController::get_where_options, FrmViewsDisplaysController::get_order_row, FrmViewsDisplaysController::get_where_row, FrmViewsDisplaysController::add_meta_boxes, FrmViewsDisplaysController::mb_advanced, FrmViewsDisplaysController::mb_dyncontent, FrmViewsDisplaysController::mb_excerpt, FrmViewsDisplaysController::mb_form_disp_type, and FrmViewsDisplaysController::add_order_row.<\\/li>\\n<\\/ul>\\n<h4>v5.7.2 - March 18, 2025<\\/h4>\\n<ul>\\n<li>New: Database queries when filtering groups that use AND are now optimized to help prevent issues with queries getting killed for being too long. This should also significantly improve performance.<\\/li>\\n<li>Fix: The accordions on the views editor looked incorrect when using WordPress v6.7.2.<\\/li>\\n<li>Fix: A fatal error would prevent the visual views editor from loading when using the Bluehost plugin.<\\/li>\\n<li>Fix: Visual previews of URLs would incorrectly show auto-embedding for view types that never auto-embed. Now auto-embeds will only display in previews when the view type is set to classic.<\\/li>\\n<li>Unused functions FrmViewsDisplaysController::publish_button and FrmViewsDisplaysController::add_form_nav_edit have been deprecated.<\\/li>\\n<li>Unused asset files edit.css and edit.js have been removed.<\\/li>\\n<\\/ul>\\n<h4>v5.7.1 - January 28, 2025<\\/h4>\\n<ul>\\n<li>Fix: Calendar view previews would display incorrect date values.<\\/li>\\n<li>Fix: When a view was refreshed with AJAX, not all fields would initialize properly when the second form was shown, including date pickers and dropdowns with autocomplete enabled.<\\/li>\\n<li>Fix: The Grid view column layout setting would display a 5 for the 6 column option, and 6 for the 12 column option. The associated input field is now disabled, and the disabled input will show the proper number of columns that is actually being defined.<\\/li>\\n<li>Fix: In some cases, because of an autop issue, AJAX refreshing would only work once and then fail when refreshing the second time.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-views\\/formidable-views.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28058858\":{\"title\":\"Formidable Views + Forms Basic\",\"name\":\"Formidable Views + Forms Basic\",\"display_name\":\"Formidable Views + Forms Basic\",\"slug\":\"formidable-views-basic\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28058858,\"released\":\"2021-05-12 12:29:57\",\"categories\":[],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-views-basic\\/\",\"changelog\":\"\",\"plugin\":\"formidable-views-basic\\/formidable-views-basic.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28058860\":{\"title\":\"Formidable Apps + Forms Elite\",\"name\":\"Formidable Apps + Forms Elite\",\"display_name\":\"Formidable Apps + Forms Elite\",\"slug\":\"formidable-views-elite\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28058860,\"released\":\"2021-05-12 12:22:02\",\"categories\":[],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-views-elite\\/\",\"changelog\":\"\",\"plugin\":\"formidable-views-elite\\/formidable-views-elite.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28058862\":{\"title\":\"Formidable Apps + Forms Business\",\"name\":\"Formidable Apps + Forms Business\",\"display_name\":\"Formidable Apps + Forms Business\",\"slug\":\"formidable-views-business\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28058862,\"released\":\"2021-05-12 12:27:07\",\"categories\":[],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-views-business\\/\",\"changelog\":\"\",\"plugin\":\"formidable-views-business\\/formidable-views-business.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28058864\":{\"title\":\"Formidable Views + Forms Plus\",\"name\":\"Formidable Views + Forms Plus\",\"display_name\":\"Formidable Views + Forms Plus\",\"slug\":\"formidable-views-plus\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28058864,\"released\":\"2021-05-12 12:28:21\",\"categories\":[],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/formidable-views-plus\\/\",\"changelog\":\"\",\"plugin\":\"formidable-views-plus\\/formidable-views-plus.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28067256\":{\"title\":\"Surveys and Polls\",\"name\":\"Surveys and Polls\",\"display_name\":\"Surveys and Polls\",\"slug\":\"surveys\",\"version\":\"1.1.4\",\"new_version\":\"1.1.4\",\"location\":[\"fp.strategy11.com\\/releases\\/surveys\\/formidable-surveys-1.1.4.zip\"],\"excerpt\":\"Transform your WordPress site into a data collection machine with our user-friendly survey form builder.\",\"id\":28067256,\"released\":\"2021-09-16 00:00:00\",\"categories\":[\"Business\",\"Data Collection\",\"Strategy11\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/surveys-and-polls-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/surveys\\/\",\"changelog\":\"<h4>v1.1.4 - November 25, 2024<\\/h4>\\n<ul>\\n<li>Fix: Ranking field is being sorted as string not integers in the form reports.<\\/li>\\n<li>Fix: Ranking items aren\'t aligned when dragging.<\\/li>\\n<li>Fix: Ranking field styling issue in Twenty Twenty-One theme.<\\/li>\\n<li>Improved accessibility for the Ranking field.<\\/li>\\n<\\/ul>\\n<h4>v1.1.3 - September 16, 2024<\\/h4>\\n<ul>\\n<li>Fix: Ranking field scripts would not properly load when the ranking field was on a page after the first page and the option to submit the form using AJAX was enabled.<\\/li>\\n<li>Fix: The remove icon was missing for Likert fields, preventing users from removing Likert field options.<\\/li>\\n<li>Fix: Issues have been fixed with ranking fields when editing an entry and when saving drafts.<\\/li>\\n<li>Fix: Ranking fields will now account for selection limits when displaying ranking field data in a graph.<\\/li>\\n<\\/ul>\\n<h4>v1.1.2 - August 19, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<li>Fix: The icon and text for a selected radio button option would appear blank in the form builder preview when the display format was set to buttons.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-surveys\\/formidable-surveys.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28074303\":{\"title\":\"Landing Pages\",\"name\":\"Landing Pages\",\"display_name\":\"Landing Pages\",\"slug\":\"landing-pages\",\"version\":\"1.0.02\",\"new_version\":\"1.0.02\",\"location\":[\"fp.strategy11.com\\/releases\\/landing\\/formidable-landing-1.0.02.zip\"],\"excerpt\":\"Create beautiful landing pages fast and rake in new leads.\",\"id\":28074303,\"released\":\"2022-01-06 00:00:00\",\"categories\":[\"Creator\",\"Form Design &amp; Display\",\"Strategy11\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/landing-pages\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/landing-pages\\/\",\"changelog\":\"<p>No Changes Found<\\/p>\\n\",\"plugin\":\"formidable-landing\\/formidable-landing.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28100793\":{\"title\":\"Conversational Forms\",\"name\":\"Conversational Forms\",\"display_name\":\"Conversational Forms\",\"slug\":\"conversational-forms\",\"version\":\"1.2\",\"new_version\":\"1.2\",\"location\":[\"fp.strategy11.com\\/releases\\/chat\\/formidable-chat-1.2.zip\"],\"excerpt\":\"Ask one question at a time to humanize forms and boost their conversion rates.\",\"id\":28100793,\"released\":\"2022-01-25 00:00:00\",\"categories\":[\"Business\",\"Form Design &amp; Display\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/conversational-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/conversational-forms\\/\",\"changelog\":\"<h4>v1.2 - March 11, 2025<\\/h4>\\n<ul>\\n<li>New: A new transition type setting has been added. Now, in addition to the horizontal transitions, there are new Vertical and Fade options.<\\/li>\\n<li>This update adds compatibility for the new flatpickr datepicker library available in Pro v6.19.<\\/li>\\n<\\/ul>\\n<h4>v1.1.5 - December 10, 2024<\\/h4>\\n<ul>\\n<li>Fix: Form descriptions would appear twice when editing an entry.<\\/li>\\n<li>Fix: Stripe link email fields would appear even when the payment field is conditionally hidden.<\\/li>\\n<li>Fix: Fieldset padding is now reduced to 0 automatically on mobile device widths to allow more space for content.<\\/li>\\n<li>The toggle component has been updated to match other toggles used on admin pages.<\\/li>\\n<\\/ul>\\n<h4>v1.1.4 - September 23, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<li>Fix: The submit button field would get counted in the progress bar total.<\\/li>\\n<li>Fix: The event listener for the continue button is now removed before it is added to help avoid issues with duplicate events triggering form submit twice, resulting in duplicate entries.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-chat\\/formidable-chat.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28118399\":{\"title\":\"Geolocation\",\"name\":\"Geolocation\",\"display_name\":\"Geolocation\",\"slug\":\"geolocation\",\"version\":\"1.3.4\",\"new_version\":\"1.3.4\",\"location\":[\"fp.strategy11.com\\/releases\\/geo\\/formidable-geo-1.3.4.zip\"],\"excerpt\":\"Get more accurate data and make forms faster to complete with address autocomplete.\",\"id\":28118399,\"released\":\"2022-04-12 00:00:00\",\"categories\":[\"Business\",\"Data Collection\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/geolocation\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/geolocation\\/\",\"changelog\":\"<h4>v1.3.4 - February 17, 2025<\\/h4>\\n<ul>\\n<li>Fix: Geolocation information would not display correctly for some new entries created on the front end.<\\/li>\\n<li>Fix: Repeated address fields would reset to the visitor\'s location when a new repeater row was added.<\\/li>\\n<\\/ul>\\n<h4>v1.3.3 - November 26, 2024<\\/h4>\\n<ul>\\n<li>Fix: Field validation errors would get incorrectly removed, allowing forms with invalid data to get submitted. This has been been fixed. You must also update to Formidable Pro version 6.16.1 or higher, or you might experience issues with required field validation for address fields.<\\/li>\\n<li>Fix: When changing between pages in a form, the default location would appear on the map instead of the previously submitted location.<\\/li>\\n<\\/ul>\\n<h4>v1.3.2 - September 25, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<li>Fix: Address field autocomplete options are now restricted to the default country on load.<\\/li>\\n<li>Fix: An Uncaught TypeError: google.maps.Geocoder error has been fixed.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-geo\\/formidable-geo.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28123662\":{\"title\":\"FAQ\",\"name\":\"FAQ\",\"display_name\":\"FAQ\",\"slug\":\"faq\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28123662,\"released\":\"2022-05-02 13:25:45\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/faq\\/\",\"changelog\":\"\",\"plugin\":\"faq\\/faq.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28123664\":{\"title\":\"Restaurant Menu\",\"name\":\"Restaurant Menu\",\"display_name\":\"Restaurant Menu\",\"slug\":\"restaurant-menu\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28123664,\"released\":\"2022-05-02 13:25:31\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/restaurant-menu\\/\",\"changelog\":\"\",\"plugin\":\"restaurant-menu\\/restaurant-menu.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28123666\":{\"title\":\"Business Hours\",\"name\":\"Business Hours\",\"display_name\":\"Business Hours\",\"slug\":\"business-hours\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28123666,\"released\":\"2022-05-02 13:25:15\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/business-hours\\/\",\"changelog\":\"\",\"plugin\":\"business-hours\\/business-hours.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28123668\":{\"title\":\"Team Directory\",\"name\":\"Team Directory\",\"display_name\":\"Team Directory\",\"slug\":\"team-directory\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28123668,\"released\":\"2022-05-02 13:24:48\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/team-directory\\/\",\"changelog\":\"\",\"plugin\":\"team-directory\\/team-directory.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28123670\":{\"title\":\"Application Shortcuts\",\"name\":\"Application Shortcuts\",\"display_name\":\"Application Shortcuts\",\"slug\":\"application-shortcuts\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28123670,\"released\":\"2022-05-02 13:38:05\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/application-shortcuts\\/\",\"changelog\":\"\",\"plugin\":\"application-shortcuts\\/application-shortcuts.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28124331\":{\"title\":\"Real Estate Listings\",\"name\":\"Real Estate Listings\",\"display_name\":\"Real Estate Listings\",\"slug\":\"real-estate-listings\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28124331,\"released\":\"2022-05-05 13:53:10\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/real-estate-listings\\/\",\"changelog\":\"\",\"plugin\":\"real-estate-listings\\/real-estate-listings.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28124372\":{\"title\":\"Product Reviews\",\"name\":\"Product Reviews\",\"display_name\":\"Product Reviews\",\"slug\":\"product-reviews\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28124372,\"released\":\"2022-05-05 16:39:04\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/product-reviews\\/\",\"changelog\":\"\",\"plugin\":\"product-reviews\\/product-reviews.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28127946\":{\"title\":\"Link in Bio Instagram Grid\",\"name\":\"Link in Bio Instagram Grid\",\"display_name\":\"Link in Bio Instagram Grid\",\"slug\":\"link-in-bio-instagram-grid\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28127946,\"released\":\"2022-05-25 14:13:43\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/link-in-bio-instagram-grid\\/\",\"changelog\":\"\",\"plugin\":\"link-in-bio-instagram-grid\\/link-in-bio-instagram-grid.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28136428\":{\"title\":\"PDFs\",\"name\":\"PDFs\",\"display_name\":\"PDFs\",\"slug\":\"pdfs\",\"version\":\"2.0.6\",\"new_version\":\"2.0.6\",\"location\":[\"fp.strategy11.com\\/releases\\/pdfs\\/formidable-pdfs-2.0.6.zip\"],\"excerpt\":\"Create PDFs from form entries automatically. Email them or let visitors download PDFs from your site.\",\"id\":28136428,\"released\":\"2022-08-09 00:00:00\",\"categories\":[\"Business\",\"Data Management\",\"Utilities\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/pdfs\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/pdfs\\/\",\"changelog\":\"<h4>v2.0.6 - May 28, 2025<\\/h4>\\n<ul>\\n<li>Fix: translation notice in the backend.<\\/li>\\n<li>Fix: the styling issue of file upload icons in PDF file.<\\/li>\\n<li>Fix: the styling issue of image buttons in PDF file.<\\/li>\\n<\\/ul>\\n<h4>v2.0.5 - April 17, 2025<\\/h4>\\n<ul>\\n<li>Fix: Pagination in PDF file is missing the total pages.<\\/li>\\n<li>Fix: Images are not working when they contain a space or URL-encoded characters.<\\/li>\\n<li>Fix: Long likert field doesn\'t show correctly in PDF file.<\\/li>\\n<\\/ul>\\n<h4>v2.0.4 - June 6, 2024<\\/h4>\\n<ul>\\n<li>New: PDFs can now load images without requiring the allow_url_fopen PHP directive.<\\/li>\\n<li>New: Additional shortcode attribute data is now passed to the frm_pdfs_css filter as additional $args data.<\\/li>\\n<li>Fix: Checks have been added to avoid fatal errors when trying to extend the time limit when the function is disabled.<\\/li>\\n<li>An update has been made to improve compatibility with QR code created using https:\\/\\/api.qrserver.com\\/. A new frm_pdfs_dompdf_should_encode_uri filter has been added to allow additional exceptions.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-pdfs\\/formidable-pdfs.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28144027\":{\"title\":\"Member Directory\",\"name\":\"Member Directory\",\"display_name\":\"Member Directory\",\"slug\":\"member-directory\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28144027,\"released\":\"2022-08-24 15:18:56\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/member-directory\\/\",\"changelog\":\"\",\"plugin\":\"member-directory\\/member-directory.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28144089\":{\"title\":\"Business Directory\",\"name\":\"Business Directory\",\"display_name\":\"Business Directory\",\"slug\":\"business-directory\",\"version\":\"\",\"new_version\":\"\",\"location\":[],\"excerpt\":\"\",\"id\":28144089,\"released\":\"2022-08-24 16:41:02\",\"categories\":[\"Solution\",\"Strategy11\"],\"docs\":\"\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/business-directory\\/\",\"changelog\":\"\",\"plugin\":\"business-directory\\/business-directory.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28149579\":{\"title\":\"Google Sheets\",\"name\":\"Google Sheets\",\"display_name\":\"Google Sheets\",\"slug\":\"google-sheets\",\"version\":\"1.0.5\",\"new_version\":\"1.0.5\",\"location\":[\"fp.strategy11.com\\/releases\\/google-sheets\\/formidable-googlespreadsheet-1.0.5.zip\"],\"excerpt\":\"Send form entries to a Google spreadsheet as a backup or for extra processing.\",\"id\":28149579,\"released\":\"2022-10-18 00:00:00\",\"categories\":[\"Business\",\"Data Management\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/google-spreadsheet-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/google-sheets\\/\",\"changelog\":\"<h4>v1.0.5 - June 18, 2025<\\/h4>\\n<ul>\\n<li>New: You can now send form data to sheets in shared Google drives.<\\/li>\\n<li>New: Google sheet actions now support form action automation.<\\/li>\\n<li>New: Google Sheet options will now use autocomplete when there are over 50 options, and the sheet names are sorted alphabetically to make it easier to find the right sheet.<\\/li>\\n<li>Fix: Pagination checks have been added to help prevent issues where not all sheets were available as options.<\\/li>\\n<li>Fix: A column value will no longer be escaped by default when the action setting starts with an equals (=) sign. A new filter, frm_googlespreadsheet_escape_value, has also been added.<\\/li>\\n<li>Checks have been updated when handling redirects to help fix issues that would prevent successful authentication when setting up Google Sheets.<\\/li>\\n<\\/ul>\\n<h4>v1.0.4 - September 25, 2024<\\/h4>\\n<ul>\\n<li>Fix: When inserting to Google Sheets, data would get inserted into the wrong column in cases where cells are empty. A GET request is now made to properly determine the last row to more accurately determine the insert position to improve accuracy. This may have performance costs. To opt out of this, a new frm_googlespreadsheet_should_check_for_first_empty_row filter has been added.<\\/li>\\n<\\/ul>\\n<h4>v1.0.3 - September 3, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<li>New: A fallback solution has been added to enable authentication on some sites where pop ups are disallowed.<\\/li>\\n<li>Extra spaces will be trimmed when adding Client ID and Client Secret values to help prevent errors related to copying extra whitespace.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-googlespreadsheet\\/formidable-googlespreadsheet.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"28158728\":{\"title\":\"ACF Forms\",\"name\":\"ACF Forms\",\"display_name\":\"ACF Forms\",\"slug\":\"acf-forms\",\"version\":\"1.0.2\",\"new_version\":\"1.0.2\",\"location\":[\"fp.strategy11.com\\/releases\\/acf\\/formidable-acf-1.0.2.zip\"],\"excerpt\":\"Sync custom fields between Formidable and Advanced Custom Fields or ACF Pro.\",\"id\":28158728,\"released\":\"2022-12-13 00:00:00\",\"categories\":[\"Business\",\"Data Management\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/acf-form\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/acf-forms\\/\",\"changelog\":\"<h4>v1.0.2 - August 13, 2024<\\/h4>\\n<ul>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<li>Fix: Values were not getting added to an ACF repeater when the setting to store Formidable entries is disabled.<\\/li>\\n<\\/ul>\\n<h4>v1.0.1 - July 6, 2023<\\/h4>\\n<ul>\\n<li>Fix: Repeater values were not appearing for posts until the post was manually updated.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-acf\\/formidable-acf.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"advanced, custom fields\",\"is_new\":false},\"28189169\":{\"title\":\"AI\",\"name\":\"AI\",\"display_name\":\"AI Forms\",\"slug\":\"ai\",\"version\":\"2.0.2\",\"new_version\":\"2.0.2\",\"location\":[\"fp.strategy11.com\\/releases\\/ai\\/formidable-ai-2.0.2.zip\"],\"excerpt\":\"Get back your time by autogenerating a response from ChatGPT and inserting it into a field.\",\"id\":28189169,\"released\":\"2023-04-11 00:00:00\",\"categories\":[\"Automation\",\"Business\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/form-ai\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/ai\\/\",\"changelog\":\"<h4>v2.0.2 - May 7, 2025<\\/h4>\\n<ul>\\n<li>Fix: The AI Prompt setting would get ignored after the previous release.<\\/li>\\n<\\/ul>\\n<h4>v2.0.1 - March 4, 2025<\\/h4>\\n<ul>\\n<li>Fix: The submit button on the edit entry admin page would not work for forms with an AI field without updating the AI response.<\\/li>\\n<li>Fix: AI fields would not properly watch for changes in name fields.<\\/li>\\n<li>Fix: Shortcodes were not properly detected when no spaces were left in-between.<\\/li>\\n<li>Fix: A class FrmAIAppController not found fatal error has been fixed that would trigger when activating the AI add-on when Formidable Lite was not available.<\\/li>\\n<\\/ul>\\n<h4>v2.0 - August 13, 2024<\\/h4>\\n<ul>\\n<li>New: A new Create with AI button has been added to the form templates page, located beside the Create a blank form button. This button will prompt a new modal that will generate a basic form based on user input.<\\/li>\\n<li>New: AI fields now include a new GPT Model setting. This setting supports gpt-3.5-turbo and gpt-4o-mini model options. gpt-3.5-turbo is typically faster and more succinct, and gpt-4o-mini has higher quality responses.<\\/li>\\n<li>New: The watched fields setting has been replaced with a new AI Question text area setting. This update makes it easier to build questions with multiple fields and static text. This setting accepts field shortcodes that update in real time that will re-trigger the AI prompt when updated.<\\/li>\\n<li>New: The Guide Prompt setting now accepts field shortcodes that work with live form values.<\\/li>\\n<li>New: AI fields will not reset when the start over button is clicked.<\\/li>\\n<li>Fix: AI fields inside of embedded fields were not working.<\\/li>\\n<li>Fix: AI fields now properly accept layout classes and work when dragged into groups with other fields.<\\/li>\\n<li>Fix: AI field requests would fail when the WPML add-on was active.<\\/li>\\n<li>Fix: AI fields requests were not happening after changing a watched date field value.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-ai\\/formidable-ai.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"chatgpt, openai, automate\",\"is_new\":false},\"28217763\":{\"title\":\"Abandonment\",\"name\":\"Abandonment\",\"display_name\":\"Form Abandonment\",\"slug\":\"abandonment\",\"version\":\"1.1.6\",\"new_version\":\"1.1.6\",\"location\":[\"fp.strategy11.com\\/releases\\/abandonment\\/formidable-abandonment-1.1.6.zip\"],\"excerpt\":\"Capture form data before it\'s submitted to save more leads and optimize forms. Plus, auto save drafts and allow logged out editing.\",\"id\":28217763,\"released\":\"2023-10-24 00:00:00\",\"categories\":[\"Business\",\"Data Collection\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/form-abandonment\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/abandonment\\/\",\"changelog\":\"<h4>v1.1.6 - March 26, 2025<\\/h4>\\n<ul>\\n<li>Fix: Auto-saving would not work properly after changing pages when submitting with AJAX.<\\/li>\\n<li>Fix: No link would output when using the &#091;frm-signed-edit-link] shortcodes in some cases, like editing an entry after submitting.<\\/li>\\n<li>Fix: When the Require an email address or phone number before saving setting was enabled, changes would only get sent after the required field was changed. Now data will sync after other fields are changed as well, after the required fields have been filled.<\\/li>\\n<li>Fix: When clicking a link in Gmail, a Google cache bot would follow the link and submit the form. This could cause issues with empty form entries and \\\"You do not have permission to view this form\\\" errors for users who are not logged in. Google bots are now blocked by doing a reverse DNS lookup based on IP. To opt out of this, a new frm_abandonment_block_google_cache filter has been added.<\\/li>\\n<\\/ul>\\n<h4>v1.1.5 - March 11, 2025<\\/h4>\\n<ul>\\n<li>New: In-progress entries will no longer get saved to the database for forms with GDPR fields when consent has not yet been granted.<\\/li>\\n<\\/ul>\\n<h4>v1.1.4 - December 18, 2024<\\/h4>\\n<ul>\\n<li>New: Abandonment links will now automatically use a form\'s landing page when one is active.<\\/li>\\n<li>New: This plugin now includes translations for French, Spanish, Italian, German, Japanese and Brazilian Portuguese.<\\/li>\\n<li>Fix: The way &#091;auto_id] shortcode values is retrieved has been updated to improve compatibility with in-progress and abandoned entries. Auto IDs will now update when an in-progress or abandoned entry is submitted.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-abandonment\\/formidable-abandonment.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"partial, save, continue\",\"is_new\":false},\"28248560\":{\"title\":\"Charts\",\"name\":\"Charts\",\"display_name\":\"Charts\",\"slug\":\"charts\",\"version\":\"2.0\",\"new_version\":\"2.0\",\"location\":[\"fp.strategy11.com\\/releases\\/charts\\/formidable-charts-2.0.zip\"],\"excerpt\":\"Transform form data into insightful graphs with ease.\",\"id\":28248560,\"released\":\"2024-01-09 00:00:00\",\"categories\":[\"Creator\",\"Data Management\"],\"docs\":\"https:\\/\\/formidableforms.com\\/knowledgebase\\/graphs\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/charts\\/\",\"changelog\":\"<h4>v2.0 - July 9, 2025<\\/h4>\\n<ul>\\n<li>New: A new \\\"Format\\\" option is added to the Graph block to show the graph as image. The corresponding \'format=\\\"image\\\"\' is also added to the graph shortcode. The new image format supports some new attributes: x_title_margin, y_title_margin, legend_columns.<\\/li>\\n<li>New: If a graph is included in PDF or email content, it will be converted to image format automatically.<\\/li>\\n<li>New: Single color picker options in the Graph block now contains the \\\"Clear\\\" button to clear the color.<\\/li>\\n<li>Fix: Can not add or edit graph colors.<\\/li>\\n<li>Fix: some PHP notices.<\\/li>\\n<\\/ul>\\n<h4>v1.0.5 - April 29, 2025<\\/h4>\\n<ul>\\n<li>New: Add animation settings to the graph block.<\\/li>\\n<\\/ul>\\n<h4>v1.0.4 - February 5, 2025<\\/h4>\\n<ul>\\n<li>Fix: Javascript error when changing the block title style.<\\/li>\\n<\\/ul>\\n\",\"plugin\":\"formidable-charts\\/formidable-charts.php\",\"icons\":{\"1x\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/icon-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"graph\",\"is_new\":false},\"28286367\":{\"title\":\"ConvertKit\",\"name\":\"ConvertKit\",\"display_name\":\"ConvertKit\",\"slug\":\"convertkit\",\"version\":\"1.0\",\"new_version\":\"1.0\",\"location\":[\"fp.strategy11.com\\/releases\\/convertkit\\/formidable-convertkit-1.0.zip\"],\"excerpt\":\"Bring automation into your email marketing plan for the power to say \\\"welcome\\\" to your subscribers the moment they opt-in to your list.\",\"id\":28286367,\"released\":\"2024-07-09 00:00:00\",\"categories\":[\"Creator\",\"Email &amp; SMS Marketing\",\"Strategy11\"],\"docs\":\"\\/knowledgebase\\/convertkit-forms\\/\",\"link\":\"https:\\/\\/formidableforms.com\\/downloads\\/convertkit\\/\",\"changelog\":\"<p>No Changes Found<\\/p>\\n\",\"plugin\":\"formidable-convertkit\\/formidable-convertkit.php\",\"icons\":{\"1x\":\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2013\\/04\\/mailchimp.png\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/formidable\\/assets\\/banner-1544x500.png\"},\"search_terms\":\"\",\"is_new\":false},\"response_code\":200}\";s:7:\"version\";s:4:\"6.23\";}', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(8871, 'db_upgraded', '', 'on');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(9911, 'frm_form_templates_l', 'a:3:{s:7:\"timeout\";i:1739390286;s:5:\"value\";s:174479:\"{\"20874733\":{\"name\":\"Car Payment Calculator Template\",\"slug\":\"automobile-payment-calculator-form\",\"description\":\"Calculate monthly payments with an easy auto loan calculator.\",\"id\":20874733,\"released\":\"2019-01-01 13:22:05\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/automobile-payment-calculator-form\\/\",\"icon\":false,\"key\":\"automobile-payment-calculator\",\"used_addons\":[],\"is_new\":false},\"20874747\":{\"name\":\"Create WooCommerce Product Template\",\"slug\":\"create-woocommerce-product-form\",\"description\":\"Easily create WooCommerce products with front-end creation, auto-populated fields, manual or automatic approval.\",\"id\":20874747,\"released\":\"2019-01-29 13:20:10\",\"categories\":[\"Elite\",\"WooCommerce\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/create-woocommerce-product-form\\/\",\"icon\":false,\"key\":\"create-woocommerce-product\",\"used_addons\":[\"WooCommerce\"],\"is_new\":false},\"20872734\":{\"name\":\"Contact Us Form Template\",\"slug\":\"contact-us-form\",\"description\":\"A basic contact form that for any WordPress website.\",\"id\":20872734,\"released\":\"2017-01-17 16:31:35\",\"categories\":[\"Contact\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/contact-us-form\\/\",\"icon\":false,\"key\":\"contact-us\",\"used_addons\":[],\"is_new\":false},\"20882522\":{\"name\":\"Create WordPress Post Form Template\",\"slug\":\"create-wordpress-post-form\",\"description\":\"Allow users to create WordPress posts from the front-end of your site with the Create WordPress Post form template.\",\"id\":20882522,\"released\":\"2019-03-26 15:05:14\",\"categories\":[\"Basic\",\"Post\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/create-wordpress-post-form\\/\",\"icon\":false,\"key\":\"create-wordpress-post\",\"used_addons\":[],\"is_new\":false},\"20874739\":{\"name\":\"Credit Card Payment Template\",\"slug\":\"credit-card-payment-form\",\"description\":\"Use with either the Stripe or Authorize.net add-ons to securely run payments while keeping users on your site.\",\"id\":20874739,\"released\":\"2019-01-01 12:29:14\",\"categories\":[\"Business\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/credit-card-payment-form\\/\",\"icon\":false,\"key\":\"credit-card-payment\",\"used_addons\":[],\"is_new\":false},\"20873706\":{\"name\":\"User Information Form Template\",\"slug\":\"user-information-form\",\"description\":\"Get a WordPress contact form with more user information including website and address.\",\"id\":20873706,\"released\":\"2017-01-23 19:08:49\",\"categories\":[\"Basic\",\"Contact\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/user-information-form\\/\",\"icon\":false,\"key\":\"user-information\",\"used_addons\":[],\"is_new\":false},\"20873677\":{\"name\":\"Real Estate Listings Form Template\",\"slug\":\"real-estate-listings-form\",\"description\":\"Show Real Estate listings on your site. First add listings in a form, then create a view to display them.\",\"id\":20873677,\"released\":\"2017-01-23 18:56:44\",\"categories\":[\"Personal\",\"Real Estate\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/real-estate-listings-form\\/\",\"icon\":false,\"key\":\"real-estate-listings\",\"used_addons\":[],\"is_new\":false},\"20874045\":{\"name\":\"Job Application Form Template\",\"slug\":\"job-application-form\",\"description\":\"Streamline your hiring process by collecting employment applications online and get more applications.\",\"id\":20874045,\"released\":\"2017-01-25 15:33:33\",\"categories\":[\"Application\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/job-application-form\\/\",\"icon\":false,\"key\":\"job-application\",\"used_addons\":[],\"is_new\":false},\"20874049\":{\"name\":\"Emergency Contact Form Template\",\"slug\":\"emergency-contact-form\",\"description\":\"Protect your clients and be prepared for any situation by collecting emergency contact and basic medical information.\",\"id\":20874049,\"released\":\"2019-01-01 15:50:21\",\"categories\":[\"Business\",\"Contact\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/emergency-contact-form\\/\",\"icon\":false,\"key\":\"emergency-contact\",\"used_addons\":[],\"is_new\":false},\"28080527\":{\"name\":\"Sample Size Calculator Template\",\"slug\":\"sample-size-calculator-form\",\"description\":\"Find out how many people need to respond to a survey to produce statistically significant results.\",\"id\":28080527,\"released\":\"2021-09-20 12:49:06\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/sample-size-calculator-form\\/\",\"icon\":false,\"key\":\"sample-size-calculator\",\"used_addons\":[],\"is_new\":false},\"20873681\":{\"name\":\"SMS Get Quote Form Template\",\"slug\":\"sms-get-quote-form\",\"description\":\"The most streamlined quote form. When the form is submitted, get an instant SMS notification to let you know of a quote request.\",\"id\":20873681,\"released\":\"2019-01-01 19:15:29\",\"categories\":[\"Business\",\"Business Operations\",\"Twilio\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/sms-get-quote-form\\/\",\"icon\":false,\"key\":\"sms-get-quote\",\"used_addons\":[],\"is_new\":false},\"20872681\":{\"name\":\"Contact Form to SMS Template\",\"slug\":\"contact-form-to-sms-template\",\"description\":\"Perfect for a simple contact form. Visitors ask a question and receive an instant SMS text message confirmation.\",\"id\":20872681,\"released\":\"2019-01-01 16:11:52\",\"categories\":[\"Business\",\"Contact\",\"Twilio\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/contact-form-to-sms-template\\/\",\"icon\":false,\"key\":\"contact-form-to-sms\",\"used_addons\":[],\"is_new\":false},\"28036517\":{\"name\":\"Employee Referral Form Template\",\"slug\":\"employee-referral-form\",\"description\":\"Let your current staff refer their friends and family to work for you with this employee referral template\",\"id\":28036517,\"released\":\"2020-12-18 14:07:13\",\"categories\":[\"Business Operations\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employee-referral-form\\/\",\"icon\":false,\"key\":\"employee-referral\",\"used_addons\":[],\"is_new\":false},\"28036180\":{\"name\":\"Call for Proposals Form Template\",\"slug\":\"call-for-proposals-form\",\"description\":\"Putting out a call for proposals? Enhance your RFP process with a call for proposals form template! Now you can request proposals the easy way.\",\"id\":28036180,\"released\":\"2020-12-18 13:00:06\",\"categories\":[\"Business Operations\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/call-for-proposals-form\\/\",\"icon\":false,\"key\":\"call-for-proposals\",\"used_addons\":[],\"is_new\":false},\"20905853\":{\"name\":\"Contest Entry Form Template\",\"slug\":\"contest-entry-form\",\"description\":\"Easily collect entries by promoting participation in a contest.\",\"id\":20905853,\"released\":\"2019-11-24 23:00:23\",\"categories\":[\"Basic\",\"Marketing\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/contest-entry-form\\/\",\"icon\":false,\"key\":\"contest-entry\",\"used_addons\":[],\"is_new\":false},\"20905877\":{\"name\":\"Cancellation Survey Form Template\",\"slug\":\"cancellation-survey-form\",\"description\":\"Ask clients why they are canceling and how you can improve.\",\"id\":20905877,\"released\":\"2019-11-24 23:00:34\",\"categories\":[\"Business\",\"Business Operations\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/cancellation-survey-form\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2019\\/11\\/cancellation-survey-form-template.jpg\",650,288,false],\"key\":\"cancellation-survey\",\"used_addons\":[],\"is_new\":false},\"20905879\":{\"name\":\"Conference Registration Form Template\",\"slug\":\"conference-registration-form\",\"description\":\"Easily register attendees for a conference.\",\"id\":20905879,\"released\":\"2019-11-24 23:00:27\",\"categories\":[\"Business\",\"Event Planning\",\"Payment\",\"Registration and Signup\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/conference-registration-form\\/\",\"icon\":false,\"key\":\"conference-registration\",\"used_addons\":[],\"is_new\":false},\"28036515\":{\"name\":\"Content Download Form Template\",\"slug\":\"content-download-form\",\"description\":\"Use this simple form to capture leads for your business.\",\"id\":28036515,\"released\":\"2020-12-18 13:30:20\",\"categories\":[\"Customer Service\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/content-download-form\\/\",\"icon\":false,\"key\":\"content-download\",\"used_addons\":[],\"is_new\":false},\"20908991\":{\"name\":\"Accident Report Form Template\",\"slug\":\"accident-report-form\",\"description\":\"An easy way to document accidents that happen at the office or on job sites\",\"id\":20908991,\"released\":\"2019-11-24 23:00:38\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/accident-report-form\\/\",\"icon\":false,\"key\":\"accident-report\",\"used_addons\":[],\"is_new\":false},\"20908993\":{\"name\":\"Change Request Form Template\",\"slug\":\"change-request-form\",\"description\":\"Looking for a change request form template? Take your project management to a whole new level! Manage project details effectively with this easy to use form.\",\"id\":20908993,\"released\":\"2019-11-24 23:00:07\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/change-request-form\\/\",\"icon\":false,\"key\":\"change-request\",\"used_addons\":[],\"is_new\":false},\"20874734\":{\"name\":\"B2B Leads Form Template\",\"slug\":\"b2b-leads-form\",\"description\":\"Expand your clientele and increase revenue by bridging the gap between you and your customers.\",\"id\":20874734,\"released\":\"2019-01-01 13:09:59\",\"categories\":[\"Business\",\"Contact\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/b2b-leads-form\\/\",\"icon\":false,\"key\":\"b2b-leads\",\"used_addons\":[],\"is_new\":false},\"20909557\":{\"name\":\"Baseball League Registration Form\",\"slug\":\"baseball-league-registration-form\",\"description\":\"A simple form for registering players for a baseball league including positions, team, and more.\",\"id\":20909557,\"released\":\"2019-11-24 23:00:05\",\"categories\":[\"Basic\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/baseball-league-registration-form\\/\",\"icon\":false,\"key\":\"baseball-league-registration\",\"used_addons\":[],\"is_new\":false},\"28109851\":{\"name\":\"Quiz\",\"slug\":\"quiz-form\",\"description\":\"This multiple-choice quiz template is a great example of basic quiz scoring.\",\"id\":28109851,\"released\":\"2022-02-28 12:00:04\",\"categories\":[\"Business\",\"Education\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/quiz-form\\/\",\"icon\":false,\"key\":\"quiz\",\"used_addons\":[\"Conversational Forms\",\"Quiz Maker\"],\"is_new\":false},\"28148784\":{\"name\":\"Harry Potter House Quiz Template\",\"slug\":\"harry-potter-house-quiz-form\",\"description\":\"Find out which Hogwarts house you truly belong in with this quiz form template.\",\"id\":28148784,\"released\":\"2022-09-20 10:47:37\",\"categories\":[\"Business\",\"Conversational Forms\",\"Entertainment\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/harry-potter-house-quiz-form\\/\",\"icon\":false,\"key\":\"harry-potter-house-quiz\",\"used_addons\":[\"Conversational Forms\",\"Quiz Maker\"],\"is_new\":false},\"22214080\":{\"name\":\"Employee Satisfaction Survey Template\",\"slug\":\"employee-satisfaction-survey-form\",\"description\":\"Job satisfaction matters - get data with a user-friendly survey!\",\"id\":22214080,\"released\":\"2020-05-27 10:55:52\",\"categories\":[\"Business\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employee-satisfaction-survey-form\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-engagement-survey-template.jpg\",650,288,false],\"key\":\"employee-satisfaction-survey\",\"used_addons\":[],\"is_new\":false},\"28028195\":{\"name\":\"Change of Address Form Template\",\"slug\":\"change-of-address-form\",\"description\":\"Need a change of address form template? This form allows any business or government organization to offer an easy way for users to change addresses online.\",\"id\":28028195,\"released\":\"2020-11-23 00:06:21\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/change-of-address-form\\/\",\"icon\":false,\"key\":\"change-of-address\",\"used_addons\":[],\"is_new\":false},\"20909235\":{\"name\":\"Amortization Calculator Template\",\"slug\":\"amortization-calculator-form\",\"description\":\"Estimate monthly mortgage payment principal and interest amounts.\",\"id\":20909235,\"released\":\"2019-11-24 23:00:38\",\"categories\":[\"Business\",\"Calculator\",\"Finance\",\"Real Estate\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/amortization-calculator-form\\/\",\"icon\":false,\"key\":\"amortization-calculator\",\"used_addons\":[],\"is_new\":false},\"28028149\":{\"name\":\"Customer Referral Form Template\",\"slug\":\"customer-referral-form\",\"description\":\"Let your customers introduce you to potential new clients.\",\"id\":28028149,\"released\":\"2020-11-23 00:01:44\",\"categories\":[\"Basic\",\"Customer Service\",\"Marketing\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/customer-referral-form\\/\",\"icon\":false,\"key\":\"customer-referral\",\"used_addons\":[],\"is_new\":false},\"20907786\":{\"name\":\"BMI Calculator Form Template\",\"slug\":\"bmi-calculator-form\",\"description\":\"Calculate BMI (body mass index) to help clients improve health & fitness.\",\"id\":20907786,\"released\":\"2019-11-24 23:00:06\",\"categories\":[\"Business\",\"Calculator\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/bmi-calculator-form\\/\",\"icon\":false,\"key\":\"bmi-calculator\",\"used_addons\":[],\"is_new\":false},\"28147968\":{\"name\":\"Product Recommendation Quiz Template\",\"slug\":\"product-recommendation-quiz-form\",\"description\":\"Discover your skin type and the ideal recommended product with this quiz template.\",\"id\":28147968,\"released\":\"2022-09-20 12:05:48\",\"categories\":[\"Business\",\"Conversational Forms\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/product-recommendation-quiz-form\\/\",\"icon\":false,\"key\":\"product-recommendation-quiz\",\"used_addons\":[\"Conversational Forms\",\"Quiz Maker\"],\"is_new\":false},\"20874752\":{\"name\":\"Simple Mortgage Calculator Template\",\"slug\":\"simple-mortgage-calculator-form\",\"description\":\"Optimize any real estate website with this responsive mortgage calculator!\",\"id\":20874752,\"released\":\"2019-01-01 12:55:25\",\"categories\":[\"Business\",\"Calculator\",\"Finance\",\"Real Estate\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/simple-mortgage-calculator-form\\/\",\"icon\":false,\"key\":\"simple-mortgage-calculator\",\"used_addons\":[],\"is_new\":false},\"20874753\":{\"name\":\"Edit User Profile Form Template\",\"slug\":\"edit-user-profile-form\",\"description\":\"The basics from the regular WordPress profile page including first and last name, password and email, avatar, website, and bio.\",\"id\":20874753,\"released\":\"2019-01-01 13:25:02\",\"categories\":[\"Business\",\"User Registration\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/edit-user-profile-form\\/\",\"icon\":false,\"key\":\"edit-user-profile\",\"used_addons\":[],\"is_new\":false},\"28019201\":{\"name\":\"Charitable Donation Form Template\",\"slug\":\"charitable-donation-form\",\"description\":\"A quick and easy form for collecting and keeping track of charitable donations.\",\"id\":28019201,\"released\":\"2020-09-11 14:40:07\",\"categories\":[\"free\",\"Nonprofit\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/charitable-donation-form\\/\",\"icon\":false,\"key\":\"charitable-donation\",\"used_addons\":[],\"is_new\":false},\"28028161\":{\"name\":\"Direct Deposit ACH Authorization Form Template\",\"slug\":\"direct-deposit-ach-authorization-form\",\"description\":\"Simplify employee onboarding with a direct deposit ACH authorization form.\",\"id\":28028161,\"released\":\"2020-11-23 00:02:48\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/direct-deposit-ach-authorization-form\\/\",\"icon\":false,\"key\":\"direct-deposit-ach-authorization\",\"used_addons\":[],\"is_new\":false},\"28173825\":{\"name\":\"Signup Sheet Form Template\",\"slug\":\"signup-sheet-form\",\"description\":\"Generate signups and easily collect information with the signup form template.\",\"id\":28173825,\"released\":\"2023-01-26 16:03:51\",\"categories\":[\"Business\",\"Conversational Forms\",\"Education\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/signup-sheet-form\\/\",\"icon\":false,\"key\":\"signup-sheet\",\"used_addons\":[],\"is_new\":false},\"20874754\":{\"name\":\"Customer Feedback Form Template\",\"slug\":\"customer-feedback-form\",\"description\":\"Get suggestions and valuable feedback from your customers.\",\"id\":20874754,\"released\":\"2019-01-29 13:23:40\",\"categories\":[\"Business\",\"Feedback\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/customer-feedback-form\\/\",\"icon\":false,\"key\":\"customer-feedback\",\"used_addons\":[],\"is_new\":false},\"28019202\":{\"name\":\"Sponsorship Form Template\",\"slug\":\"sponsorship-form\",\"description\":\"A simple form for use in managing business sponsorships.\",\"id\":28019202,\"released\":\"2020-10-01 08:18:17\",\"categories\":[\"Basic\",\"Business Operations\",\"Nonprofit\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/sponsorship-form\\/\",\"icon\":false,\"key\":\"sponsorship\",\"used_addons\":[],\"is_new\":false},\"28054276\":{\"name\":\"Pay Raise Percent Calculator Template\",\"slug\":\"pay-raise-percent-calculator-form\",\"description\":\"Enter a wage before and after a raise to find out how large your raise was.\",\"id\":28054276,\"released\":\"2021-04-14 11:59:56\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/pay-raise-percent-calculator-form\\/\",\"icon\":false,\"key\":\"pay-raise-percent-calculator\",\"used_addons\":[],\"is_new\":false},\"28028164\":{\"name\":\"Referral Form Template\",\"slug\":\"referral-form\",\"description\":\"Get referrals from people easily with this short and effective referral form.\",\"id\":28028164,\"released\":\"2020-11-23 00:02:17\",\"categories\":[\"Basic\",\"Customer Service\",\"Feedback\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/referral-form\\/\",\"icon\":false,\"key\":\"referral\",\"used_addons\":[],\"is_new\":false},\"28030724\":{\"name\":\"Car Donation Form Template\",\"slug\":\"car-donation-form\",\"description\":\"Collecting vehicle donations? Get all the details you need in this simple online form.\",\"id\":28030724,\"released\":\"2020-12-01 00:01:50\",\"categories\":[\"Nonprofit\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/car-donation-form\\/\",\"icon\":false,\"key\":\"car-donation\",\"used_addons\":[],\"is_new\":false},\"20874757\":{\"name\":\"Small Business Loan Application Form\",\"slug\":\"small-business-loan-application-form\",\"description\":\"A complete loan application for small businesses and startups. Allow business owners to easily apply for loans on your site.\",\"id\":20874757,\"released\":\"2019-01-01 13:17:02\",\"categories\":[\"Application\",\"Business\",\"File Upload\",\"Finance\",\"Multi-Page\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/small-business-loan-application-form\\/\",\"icon\":false,\"key\":\"small-business-loan-application\",\"used_addons\":[],\"is_new\":false},\"28030725\":{\"name\":\"Credit Card Donation Form Template\",\"slug\":\"credit-card-donation-form\",\"description\":\"Credit card donations are the easiest way to donate, and this form template will make it quick for your organization.\",\"id\":28030725,\"released\":\"2020-12-01 00:01:42\",\"categories\":[\"Business\",\"Nonprofit\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/credit-card-donation-form\\/\",\"icon\":false,\"key\":\"credit-card-donation\",\"used_addons\":[],\"is_new\":false},\"20874759\":{\"name\":\"Extended Contact Details Template\",\"slug\":\"extended-contact-details-form\",\"description\":\"Looking for a contact form template that packs a little more punch? This contact form template is complete with social media contact info.\",\"id\":20874759,\"released\":\"2019-01-01 13:15:45\",\"categories\":[\"Basic\",\"Contact\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/extended-contact-details-form\\/\",\"icon\":false,\"key\":\"extended-contact-details\",\"used_addons\":[],\"is_new\":false},\"28237576\":{\"name\":\"Volume Calculator Template\",\"slug\":\"volume-calculator-form\",\"description\":\"Input the dimensions of your object into the calculator to easily determine its volume.\",\"id\":28237576,\"released\":\"2023-11-10 16:09:37\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/volume-calculator-form\\/\",\"icon\":false,\"key\":\"volume-calculator\",\"used_addons\":[],\"is_new\":false},\"20907785\":{\"name\":\"Age Calculator Form Template\",\"slug\":\"age-calculator-form\",\"description\":\"Get an age calculator that tells you your age down to the day!\",\"id\":20907785,\"released\":\"2019-11-24 23:00:10\",\"categories\":[\"Calculator\",\"Datepicker\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/age-calculator-form\\/\",\"icon\":false,\"key\":\"age-calculator\",\"used_addons\":[\"Datepicker Options\"],\"is_new\":false},\"28028170\":{\"name\":\"Counseling Informed Consent Template\",\"slug\":\"professional-counseling-informed-consent-form\",\"description\":\"Acquire informed consent from clients for mental health treatment.\",\"id\":28028170,\"released\":\"2020-11-23 00:01:26\",\"categories\":[\"Business\",\"Health and Wellness\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/professional-counseling-informed-consent-form\\/\",\"icon\":false,\"key\":\"professional-counseling-informed-consent\",\"used_addons\":[],\"is_new\":false},\"20907787\":{\"name\":\"Compound Interest Calculator Template\",\"slug\":\"compound-interest-calculator-form\",\"description\":\"Calculate total compound interest on an investment or loan.\",\"id\":20907787,\"released\":\"2019-11-24 23:00:57\",\"categories\":[\"Business\",\"Calculator\",\"Finance\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/compound-interest-calculator-form\\/\",\"icon\":false,\"key\":\"compound-interest-calculator\",\"used_addons\":[],\"is_new\":false},\"20907788\":{\"name\":\"Final Grade Calculator Template\",\"slug\":\"final-grade-calculator-form\",\"description\":\"Calculate the grade needed on an exam to get the desired final score.\",\"id\":20907788,\"released\":\"2019-11-24 23:00:53\",\"categories\":[\"Business\",\"Calculator\",\"Education\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/final-grade-calculator-form\\/\",\"icon\":false,\"key\":\"final-grade-calculator\",\"used_addons\":[],\"is_new\":false},\"20907789\":{\"name\":\"Pregnancy Due Date Calculator Form Template\",\"slug\":\"pregnancy-due-date-calculator-form\",\"description\":\"Calculate the number of days until the baby due date.\",\"id\":20907789,\"released\":\"2019-11-24 23:00:32\",\"categories\":[\"Business\",\"Calculator\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/pregnancy-due-date-calculator-form\\/\",\"icon\":false,\"key\":\"pregnancy-due-date-calculator\",\"used_addons\":[],\"is_new\":false},\"28028174\":{\"name\":\"Basketball League Registration Form Template\",\"slug\":\"basketball-league-registration-form\",\"description\":\"Need a basketball registration form template? Take your basketball team to the next level with a form that simplifies the registration process.\",\"id\":28028174,\"released\":\"2020-11-23 00:05:47\",\"categories\":[\"Business\",\"Registration and Signup\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/basketball-league-registration-form\\/\",\"icon\":false,\"key\":\"basketball-league-registration\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28056081\":{\"name\":\"Pizza Takeout Order Form Template\",\"slug\":\"pizza-takeout-order-form\",\"description\":\"This quick and easy form is the best way to submit your pizza takeout order.\",\"id\":28056081,\"released\":\"2021-07-05 16:37:27\",\"categories\":[\"Business\",\"Business Operations\",\"Order Form\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/pizza-takeout-order-form\\/\",\"icon\":false,\"key\":\"pizza-takeout-order\",\"used_addons\":[\"Stripe\"],\"is_new\":false},\"28205842\":{\"name\":\"Science Quiz Template\",\"slug\":\"science-quiz-form\",\"description\":\"Take our science quiz to discover how much you know about certain topics.\",\"id\":28205842,\"released\":\"2023-06-27 16:17:31\",\"categories\":[\"Business\",\"Education\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/science-quiz-form\\/\",\"icon\":false,\"key\":\"science-quiz\",\"used_addons\":[\"Quiz Maker\"],\"is_new\":false},\"28028178\":{\"name\":\"Incident Report Form Template\",\"slug\":\"incident-report-form\",\"description\":\"Use this template to report various types of workplace incidents\",\"id\":28028178,\"released\":\"2020-11-23 00:01:03\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/incident-report-form\\/\",\"icon\":false,\"key\":\"incident-report\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28030996\":{\"name\":\"GiveWP Donation Form Template\",\"slug\":\"givewp-donation-form\",\"description\":\"Using GiveWP? This form will help you create a peer-to-peer campaign submission form for GiveWP.\",\"id\":28030996,\"released\":\"2020-12-01 00:01:39\",\"categories\":[\"Nonprofit\",\"Personal\",\"Post\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/givewp-donation-form\\/\",\"icon\":false,\"key\":\"givewp-donation\",\"used_addons\":[],\"is_new\":false},\"28056088\":{\"name\":\"Brand Awareness Survey Template\",\"slug\":\"brand-awareness-survey-form\",\"description\":\"Treat your brand like a celebrity. Stay famous by tracking what people like the most.\",\"id\":28056088,\"released\":\"2021-07-08 09:10:20\",\"categories\":[\"Business\",\"Feedback\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/brand-awareness-survey-form\\/\",\"icon\":false,\"key\":\"brand-awareness-survey\",\"used_addons\":[],\"is_new\":false},\"20874778\":{\"name\":\"WooCommerce Product Configurator\",\"slug\":\"sample-woocommerce-product-configurator-form\",\"description\":\"Calculate the total value of a WooCommerce product with add-ons and style options.\",\"id\":20874778,\"released\":\"2019-01-29 14:29:25\",\"categories\":[\"Calculator\",\"Elite\",\"WooCommerce\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/sample-woocommerce-product-configurator-form\\/\",\"icon\":false,\"key\":\"sample-woocommerce-product-configurator\",\"used_addons\":[\"WooCommerce\"],\"is_new\":false},\"28220186\":{\"name\":\"Shipping Date Calculator Template\",\"slug\":\"shipping-date-calculator-form\",\"description\":\"Calculate the estimated delivery date for a package using transit time and processing time.\",\"id\":28220186,\"released\":\"2023-08-28 16:20:33\",\"categories\":[\"Business\",\"Calculator\",\"Datepicker\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/shipping-date-calculator-form\\/\",\"icon\":false,\"key\":\"shipping-date-calculator\",\"used_addons\":[\"Datepicker Options\"],\"is_new\":false},\"28297242\":{\"name\":\"Candidate Ranking Survey Template\",\"slug\":\"candidate-ranking-survey-form\",\"description\":\"Easily and efficiently rank candidates in order of preference.\",\"id\":28297242,\"released\":\"2024-10-03 12:11:28\",\"categories\":[\"Basic\",\"Business Operations\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/candidate-ranking-survey-form\\/\",\"icon\":false,\"key\":\"candidate-ranking-survey\",\"used_addons\":[],\"is_new\":false},\"28200476\":{\"name\":\"Interactive Fiction Form Template\",\"slug\":\"interactive-fiction-form\",\"description\":\"Use our Interactive Fiction Form to go on an exciting adventure based on your choices.\",\"id\":28200476,\"released\":\"2023-06-27 16:38:04\",\"categories\":[\"Business\",\"Conversational Forms\",\"Entertainment\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/interactive-fiction-form\\/\",\"icon\":false,\"key\":\"interactive-fiction\",\"used_addons\":[\"Conversational Forms\"],\"is_new\":false},\"28150044\":{\"name\":\"Employee Write Up Form Template\",\"slug\":\"write-up-form\",\"description\":\"Report an incident and collect information that you need to implement disciplinary action with the Employee Write Up form template.\",\"id\":28150044,\"released\":\"2022-11-06 16:37:00\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/write-up-form\\/\",\"icon\":false,\"key\":\"write-up\",\"used_addons\":[],\"is_new\":false},\"28067101\":{\"name\":\"Fuel Cost Calculator Template\",\"slug\":\"fuel-cost-calculator-form\",\"description\":\"When going on a trip it is nice to know how much fuel will cost. This calculator is very helpful in budgeting for a road trip.\",\"id\":28067101,\"released\":\"2021-07-23 15:30:00\",\"categories\":[\"Business\",\"Calculator\",\"Event Planning\",\"Finance\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/fuel-cost-calculator-form\\/\",\"icon\":false,\"key\":\"fuel-cost-calculator\",\"used_addons\":[],\"is_new\":false},\"28067104\":{\"name\":\"Gas Buddy Trip Calculator Form Template\",\"slug\":\"gas-buddy-trip-calculator-form\",\"description\":\"When going on a trip with a buddy, it is nice to know how high the cost will be when splitting it between multiple people.\",\"id\":28067104,\"released\":\"2021-07-23 15:23:25\",\"categories\":[\"Business\",\"Calculator\",\"Event Planning\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/gas-buddy-trip-calculator-form\\/\",\"icon\":false,\"key\":\"gas-buddy-trip-calculator\",\"used_addons\":[],\"is_new\":false},\"28205856\":{\"name\":\"Math Quiz Template\",\"slug\":\"math-quiz-form\",\"description\":\"Take our quick and easy math quiz to determine how much you know when it comes to basic math.\",\"id\":28205856,\"released\":\"2023-06-27 16:46:31\",\"categories\":[\"Business\",\"Education\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/math-quiz-form\\/\",\"icon\":false,\"key\":\"math-quiz\",\"used_addons\":[],\"is_new\":false},\"28221984\":{\"name\":\"New Hire Form Template\",\"slug\":\"new-hire-form\",\"description\":\"Gather essential information from new hires to ensure a smooth onboarding process.\",\"id\":28221984,\"released\":\"2023-11-18 03:52:00\",\"categories\":[\"Business\",\"Business Operations\",\"Contact\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/new-hire-form\\/\",\"icon\":false,\"key\":\"new-hire\",\"used_addons\":[],\"is_new\":false},\"28220193\":{\"name\":\"Clothing Order Form Template\",\"slug\":\"clothing-order-form\",\"description\":\"Select a clothing item, quantity and price, then complete payment and shipping details with this clothing order form template.\",\"id\":28220193,\"released\":\"2023-11-18 03:24:00\",\"categories\":[\"Business\",\"Business Operations\",\"Order Form\",\"Payment\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/clothing-order-form\\/\",\"icon\":false,\"key\":\"clothing-order\",\"used_addons\":[],\"is_new\":false},\"28232481\":{\"name\":\"Business Inquiry Form Template\",\"slug\":\"business-inquiry-form\",\"description\":\"Obtain contact information from potential clients interested in your business.\",\"id\":28232481,\"released\":\"2023-11-11 05:17:00\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/business-inquiry-form\\/\",\"icon\":false,\"key\":\"business-inquiry\",\"used_addons\":[],\"is_new\":false},\"28194594\":{\"name\":\"Lesson Idea Generator Form Template\",\"slug\":\"lesson-idea-generator-form\",\"description\":\"Generate engaging lesson plans with the Lesson Idea Generator template by inputting the subject, lesson topic, sub-topic, and any notes about the audience.\",\"id\":28194594,\"released\":\"2023-04-29 23:12:07\",\"categories\":[\"AI\",\"Business\",\"Education\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/lesson-idea-generator-form\\/\",\"icon\":false,\"key\":\"lesson-idea-generator\",\"used_addons\":[\"AI Forms\"],\"is_new\":false},\"28220196\":{\"name\":\"Payment Form Template\",\"slug\":\"payment-form\",\"description\":\"Use this payment form to for quick and easy purchases.\",\"id\":28220196,\"released\":\"2023-11-18 03:37:00\",\"categories\":[\"Business\",\"Payment\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/payment-form\\/\",\"icon\":false,\"key\":\"payment\",\"used_addons\":[],\"is_new\":false},\"28028196\":{\"name\":\"Audition Form Template\",\"slug\":\"audition-form\",\"description\":\"Looking for an audition form template to streamline auditions to your project? Make auditioning easier for everyone involved by creating an online form based on this template. No coding required!\",\"id\":28028196,\"released\":\"2020-11-23 00:09:59\",\"categories\":[\"Basic\",\"Business Operations\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/audition-form\\/\",\"icon\":false,\"key\":\"audition\",\"used_addons\":[],\"is_new\":false},\"28195109\":{\"name\":\"Leave of Absence Form Template\",\"slug\":\"leave-of-absence-form\",\"description\":\"This leave of absence request form is used to formally request time off from work for a specific period of time.\",\"id\":28195109,\"released\":\"2023-05-02 18:05:28\",\"categories\":[\"Business\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/leave-of-absence-form\\/\",\"icon\":false,\"key\":\"leave-of-absence\",\"used_addons\":[],\"is_new\":false},\"20909862\":{\"name\":\"Wedding Party RSVP Form\",\"slug\":\"wedding-party-rsvp-form\",\"description\":\"Keep track of the number of guests for any wedding.\",\"id\":20909862,\"released\":\"2019-11-24 23:00:02\",\"categories\":[\"Basic\",\"Event Planning\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/wedding-party-rsvp-form\\/\",\"icon\":false,\"key\":\"wedding-party-rsvp\",\"used_addons\":[],\"is_new\":false},\"28274470\":{\"name\":\"Coffee Preference Survey Template\",\"slug\":\"coffee-preference-survey-form\",\"description\":\"Understand preferences and trends in coffee consumption with this coffee preference survey template.\",\"id\":28274470,\"released\":\"2024-04-17 14:54:18\",\"categories\":[\"Basic\",\"Business Operations\",\"Feedback\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/coffee-preference-survey-form\\/\",\"icon\":false,\"key\":\"coffee-preference-survey\",\"used_addons\":[\"Surveys and Polls\"],\"is_new\":false},\"20909863\":{\"name\":\"Simple RSVP Form\",\"slug\":\"simple-rsvp-form\",\"description\":\"A general RSVP form that can be used for any occasion.\",\"id\":20909863,\"released\":\"2019-11-24 23:00:57\",\"categories\":[\"Event Planning\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/simple-rsvp-form\\/\",\"icon\":false,\"key\":\"simple-rsvp\",\"used_addons\":[],\"is_new\":false},\"28028199\":{\"name\":\"Vacation Request Form Template\",\"slug\":\"vacation-request-form\",\"description\":\"Let employees request vacation time with this online vacation request form template.\",\"id\":28028199,\"released\":\"2020-11-23 00:03:20\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\",\"Datepicker\",\"Request\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/vacation-request-form\\/\",\"icon\":false,\"key\":\"vacation-request\",\"used_addons\":[\"Datepicker Options\",\"Digital Signatures\"],\"is_new\":false},\"20909864\":{\"name\":\"Potluck Invitation RSVP Form\",\"slug\":\"potluck-invitation-rsvp-form\",\"description\":\"Keep track of who is coming and what they will bring to the next potluck.\",\"id\":20909864,\"released\":\"2019-11-24 23:00:43\",\"categories\":[\"Basic\",\"Event Planning\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/potluck-invitation-rsvp-form\\/\",\"icon\":false,\"key\":\"potluck-invitation-rsvp\",\"used_addons\":[],\"is_new\":false},\"28200744\":{\"name\":\"History Quiz Template\",\"slug\":\"history-quiz-form\",\"description\":\"Test your knowledge of world history through our history quiz.\",\"id\":28200744,\"released\":\"2023-06-27 16:30:50\",\"categories\":[\"Business\",\"Education\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/history-quiz-form\\/\",\"icon\":false,\"key\":\"history-quiz\",\"used_addons\":[],\"is_new\":false},\"20909865\":{\"name\":\"Party Invitation RSVP Form\",\"slug\":\"party-invitation-rsvp-form\",\"description\":\"A simple form used for keeping track of party guests.\",\"id\":20909865,\"released\":\"2019-11-24 23:00:37\",\"categories\":[\"Event Planning\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/party-invitation-rsvp-form\\/\",\"icon\":false,\"key\":\"party-invitation-rsvp\",\"used_addons\":[],\"is_new\":false},\"28220458\":{\"name\":\"Supply Order Form Template\",\"slug\":\"supply-order-form\",\"description\":\"Use this form to place an order for office supplies.\",\"id\":28220458,\"released\":\"2023-11-11 02:46:00\",\"categories\":[\"Business\",\"Business Operations\",\"Order Form\",\"Payment\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/supply-order-form\\/\",\"icon\":false,\"key\":\"supply-order\",\"used_addons\":[],\"is_new\":false},\"28028203\":{\"name\":\"Video Release Form Template\",\"slug\":\"video-release-form\",\"description\":\"Get consent to share videos in your business marketing.\",\"id\":28028203,\"released\":\"2020-11-23 00:01:26\",\"categories\":[\"Business\",\"Business Operations\",\"Consent\",\"Marketing\",\"Multi-Page\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/video-release-form\\/\",\"icon\":false,\"key\":\"video-release\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28200493\":{\"name\":\"Harry Potter Character Quiz Form Template\",\"slug\":\"harry-potter-character-quiz-form\",\"description\":\"Take this quick and easy quiz to find out which Harry Potter character you are.\",\"id\":28200493,\"released\":\"2023-05-31 13:38:51\",\"categories\":[\"Business\",\"Conversational Forms\",\"Personal\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/harry-potter-character-quiz-form\\/\",\"icon\":false,\"key\":\"harry-potter-character-quiz\",\"used_addons\":[],\"is_new\":false},\"28054574\":{\"name\":\"Conversion Rate Calculator\",\"slug\":\"conversion-rate-calculator-form\",\"description\":\"Find out the percentage of people are making purchases with this quick and easy lead magnet conversion rate calculator.\",\"id\":28054574,\"released\":\"2021-07-12 08:16:52\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/conversion-rate-calculator-form\\/\",\"icon\":false,\"key\":\"conversion-rate-calculator\",\"used_addons\":[],\"is_new\":false},\"28225326\":{\"name\":\"Return Merchandise Authorization Form\",\"slug\":\"return-merchandise-authorization-form\",\"description\":\"Collect necessary details from customers seeking to initiate returns or exchanges, ensuring a smooth and efficient process for handling merchandise-related inquiries.\",\"id\":28225326,\"released\":\"2023-11-18 10:24:44\",\"categories\":[\"Basic\",\"Business Operations\",\"Repeater Field\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/return-merchandise-authorization-form\\/\",\"icon\":false,\"key\":\"return-merchandise-authorization\",\"used_addons\":[],\"is_new\":false},\"28310318\":{\"name\":\"Mileage Reimbursement Form Template\",\"slug\":\"mileage-reimbursement-form\",\"description\":\"Easily submit receipts and request mileage reimbursement with a simple, streamlined process.\",\"id\":28310318,\"released\":\"2025-01-30 12:41:46\",\"categories\":[\"Business\",\"File Upload\",\"Finance\",\"Repeater Field\",\"Request\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/mileage-reimbursement-form\\/\",\"icon\":false,\"key\":\"mileage-reimbursement\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":true},\"28054576\":{\"name\":\"Credit Card Repayment Calculator\",\"slug\":\"credit-card-repayment-calculator-form\",\"description\":\"Let visitors know how long it would take to get out of debt. This quick and easy credit card repayment calculator is a great way to generate leads.\",\"id\":28054576,\"released\":\"2021-08-06 16:15:23\",\"categories\":[\"Business\",\"Calculator\",\"Finance\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/credit-card-repayment-calculator-form\\/\",\"icon\":false,\"key\":\"credit-card-repayment-calculator\",\"used_addons\":[],\"is_new\":false},\"28097584\":{\"name\":\"Request a Callback Form Template\",\"slug\":\"request-a-callback-form\",\"description\":\"There are many different ways to get in touch with customers, but sometimes the most effective is a call back.\",\"id\":28097584,\"released\":\"2021-12-20 11:25:07\",\"categories\":[\"Basic\",\"Customer Service\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/request-a-callback-form\\/\",\"icon\":false,\"key\":\"request-a-callback\",\"used_addons\":[],\"is_new\":false},\"28220465\":{\"name\":\"Nomination Form Template\",\"slug\":\"nomination-form\",\"description\":\"Use this form to nominate employees for an award.\",\"id\":28220465,\"released\":\"2023-11-11 02:42:00\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/nomination-form\\/\",\"icon\":false,\"key\":\"nomination\",\"used_addons\":[],\"is_new\":false},\"28200754\":{\"name\":\"Career Quiz Template\",\"slug\":\"career-quiz-form\",\"description\":\"Take this short quiz and discover your ideal career based on your responses.\",\"id\":28200754,\"released\":\"2023-06-27 16:22:04\",\"categories\":[\"Business\",\"Conversational Forms\",\"Entertainment\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/career-quiz-form\\/\",\"icon\":false,\"key\":\"career-quiz\",\"used_addons\":[\"Conversational Forms\"],\"is_new\":false},\"28145458\":{\"name\":\"Medical History Form Template\",\"slug\":\"medical-history-form\",\"description\":\"Make new patient registration faster by collecting information about a patient\\u2019s past conditions with the medical history form.\",\"id\":28145458,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Basic\",\"Health and Wellness\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/medical-history-form\\/\",\"icon\":false,\"key\":\"medical-history\",\"used_addons\":[],\"is_new\":false},\"28031026\":{\"name\":\"Rental Application Form Template\",\"slug\":\"rental-application-form\",\"description\":\"A comprehensive rental application form that takes all the relevant details from the applicant, including contact details, rental history, references, employment details, and next of kin.\",\"id\":28031026,\"released\":\"2020-11-25 13:30:08\",\"categories\":[\"Application\",\"Business\",\"Real Estate\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/rental-application-form\\/\",\"icon\":false,\"key\":\"rental-application\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28215091\":{\"name\":\"Personality Quiz Template\",\"slug\":\"personality-quiz-form\",\"description\":\"Discover your personality with our short quiz.\",\"id\":28215091,\"released\":\"2023-09-01 15:18:13\",\"categories\":[\"Business\",\"Conversational Forms\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/personality-quiz-form\\/\",\"icon\":false,\"key\":\"personality-quiz\",\"used_addons\":[],\"is_new\":false},\"28225588\":{\"name\":\"Acknowledgement Form Template\",\"slug\":\"acknowledgement-form\",\"description\":\"Obtain acknowledgments and confirmations from individuals.\",\"id\":28225588,\"released\":\"2023-11-18 10:30:22\",\"categories\":[\"Business\",\"Business Operations\",\"Consent\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/acknowledgement-form\\/\",\"icon\":false,\"key\":\"acknowledgement\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28236084\":{\"name\":\"Celsius to Fahrenheit Calculator Template\",\"slug\":\"celsius-to-fahrenheit-calculator-form\",\"description\":\"Easily switch between Celsius and Fahrenheit with our versatile temperature converter.\",\"id\":28236084,\"released\":\"2023-11-02 13:06:35\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/celsius-to-fahrenheit-calculator-form\\/\",\"icon\":false,\"key\":\"celsius-to-fahrenheit-calculator\",\"used_addons\":[],\"is_new\":false},\"28222006\":{\"name\":\"W2 Form Template\",\"slug\":\"w2-form\",\"description\":\"Provide your tax-related information for accurate W-2 reporting.\",\"id\":28222006,\"released\":\"2023-11-11 03:57:00\",\"categories\":[\"Basic\",\"Business Operations\",\"Finance\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/w2-form\\/\",\"icon\":false,\"key\":\"w2\",\"used_addons\":[],\"is_new\":false},\"28145463\":{\"name\":\"Doctor Visit Form Template\",\"slug\":\"doctor-visit-form\",\"description\":\"Manage patient appointments and keep track of their follow ups with this doctor visit form template.\",\"id\":28145463,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Business\",\"Business Operations\",\"Health and Wellness\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/doctor-visit-form\\/\",\"icon\":false,\"key\":\"doctor-visit\",\"used_addons\":[],\"is_new\":false},\"28225591\":{\"name\":\"Wedding Date Application Form Template\",\"slug\":\"wedding-date-application-form\",\"description\":\"Collect information from guests attending a wedding who are seeking the ideal date to join in the celebration.\",\"id\":28225591,\"released\":\"2023-11-18 10:32:39\",\"categories\":[\"Application\",\"Event Planning\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/wedding-date-application-form\\/\",\"icon\":false,\"key\":\"wedding-date-application\",\"used_addons\":[],\"is_new\":false},\"28031031\":{\"name\":\"Project Request Form Template\",\"slug\":\"project-request-form\",\"description\":\"This project request form template is designed to be the first point of contact between a potential customer and a creative service provider.\",\"id\":28031031,\"released\":\"2020-11-26 07:00:09\",\"categories\":[\"Customer Service\",\"Marketing\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/project-request-form\\/\",\"icon\":false,\"key\":\"project-request\",\"used_addons\":[],\"is_new\":false},\"28196153\":{\"name\":\"Catering Order Form Template\",\"slug\":\"catering-order-form\",\"description\":\"Use this quick and easy catering order form to effectively organize catering services for an event.\",\"id\":28196153,\"released\":\"2023-05-30 17:58:25\",\"categories\":[\"Business\",\"Event Planning\",\"Order Form\",\"Signature\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/catering-order-form\\/\",\"icon\":false,\"key\":\"catering-order\",\"used_addons\":[\"Digital Signatures\",\"Stripe\"],\"is_new\":false},\"28200505\":{\"name\":\"Spirit Animal Quiz Template\",\"slug\":\"spirit-animal-quiz-form\",\"description\":\"Discover your spirit animal through a quick and intriguing quiz.\",\"id\":28200505,\"released\":\"2023-06-27 16:34:58\",\"categories\":[\"Business\",\"Conversational Forms\",\"Entertainment\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/spirit-animal-quiz-form\\/\",\"icon\":false,\"key\":\"spirit-animal-quiz\",\"used_addons\":[\"Conversational Forms\",\"Quiz Maker\"],\"is_new\":false},\"28215099\":{\"name\":\"Patient Satisfaction Survey Template\",\"slug\":\"patient-satisfaction-survey-form\",\"description\":\"Help us improve your experience! Take a moment to share your thoughts in our brief patient satisfaction survey.\",\"id\":28215099,\"released\":\"2023-09-01 15:22:19\",\"categories\":[\"Business\",\"Feedback\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/patient-satisfaction-survey-form\\/\",\"icon\":false,\"key\":\"patient-satisfaction-survey\",\"used_addons\":[],\"is_new\":false},\"28056636\":{\"name\":\"Neighborhood Feedback Form Template\",\"slug\":\"neighborhood-feedback-form\",\"description\":\"Get input in order to better understand how the community feels about a neighborhood! All responses are compiled into an easy-to-read report.\",\"id\":28056636,\"released\":\"2021-07-28 15:49:09\",\"categories\":[\"Event Planning\",\"Feedback\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/neighborhood-feedback-form\\/\",\"icon\":false,\"key\":\"neighborhood-feedback\",\"used_addons\":[],\"is_new\":false},\"28225599\":{\"name\":\"Vendor Setup Form Template\",\"slug\":\"vendor-setup-form\",\"description\":\"Gather essential details from potential vendors interested in partnering with you.\",\"id\":28225599,\"released\":\"2023-11-18 10:33:57\",\"categories\":[\"Application\",\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/vendor-setup-form\\/\",\"icon\":false,\"key\":\"vendor-setup\",\"used_addons\":[],\"is_new\":false},\"28200514\":{\"name\":\"Vocabulary Quiz Form Template\",\"slug\":\"vocabulary-quiz-form\",\"description\":\"Take this vocabulary quiz to expand your vocabulary and discover how much you know.\",\"id\":28200514,\"released\":\"2023-06-27 16:51:37\",\"categories\":[\"Business\",\"Education\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/vocabulary-quiz-form\\/\",\"icon\":false,\"key\":\"vocabulary-quiz\",\"used_addons\":[\"Quiz Maker\"],\"is_new\":false},\"28305219\":{\"name\":\"Telemental Health Consent Form Template\",\"slug\":\"telemental-health-consent-form\",\"description\":\"A teletherapy consent form collects online consent for teletherapy services, securing patient rights and e-signatures for mental health professionals.\",\"id\":28305219,\"released\":\"2024-12-05 17:14:04\",\"categories\":[\"Business\",\"Consent\",\"Datepicker\",\"Health and Wellness\",\"Lifestyle\",\"Marketing\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/telemental-health-consent-form\\/\",\"icon\":false,\"key\":\"telemental-health-consent\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28236868\":{\"name\":\"Senior Superlatives Nomination Form Template\",\"slug\":\"senior-superlatives-nomination-form\",\"description\":\"Gather nominations and details from students to nominate their peers for senior superlatives.\",\"id\":28236868,\"released\":\"2023-11-07 15:23:39\",\"categories\":[\"Basic\",\"Education\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/senior-superlatives-nomination-form\\/\",\"icon\":false,\"key\":\"senior-superlatives-nomination\",\"used_addons\":[],\"is_new\":false},\"20906055\":{\"name\":\"Prayer Request Form Template\",\"slug\":\"prayer-request-form\",\"description\":\"Help your remote congregation and shut-ins to connect with your church.\",\"id\":20906055,\"released\":\"2019-11-24 23:00:42\",\"categories\":[\"Basic\",\"Nonprofit\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/prayer-request-form\\/\",\"icon\":false,\"key\":\"prayer-request\",\"used_addons\":[],\"is_new\":false},\"28028231\":{\"name\":\"Fundraiser Order Form Template\",\"slug\":\"fundraiser-order-form\",\"description\":\"Make online fundraising a breeze and help volunteers raise money for your nonprofit.\",\"id\":28028231,\"released\":\"2020-12-01 00:01:23\",\"categories\":[\"Business\",\"Calculator\",\"Nonprofit\",\"Order Form\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/fundraiser-order-form\\/\",\"icon\":false,\"key\":\"fundraiser-order\",\"used_addons\":[],\"is_new\":false},\"28305225\":{\"name\":\"Medication Tracking List Form Template\",\"slug\":\"medication-tracking-list-form\",\"description\":\"A medication list template helps medical professionals track patient medications, including descriptions and last taken dates, with options for online completion or printing.\",\"id\":28305225,\"released\":\"2024-12-05 17:24:55\",\"categories\":[\"Basic\",\"Customer Service\",\"Health and Wellness\",\"Lifestyle\",\"Repeater Field\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/medication-tracking-list-form\\/\",\"icon\":false,\"key\":\"medication-tracking-list\",\"used_addons\":[],\"is_new\":false},\"20906058\":{\"name\":\"Travel Request Form Template\",\"slug\":\"travel-request-form\",\"description\":\"Provide a way for your employees to easily request travel arrangements for work.\",\"id\":20906058,\"released\":\"2019-11-24 23:00:06\",\"categories\":[\"Basic\",\"Business Operations\",\"Request\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/travel-request-form\\/\",\"icon\":false,\"key\":\"travel-request\",\"used_addons\":[],\"is_new\":false},\"28057162\":{\"name\":\"Employee Termination Form Template\",\"slug\":\"employee-termination-form\",\"description\":\"This form is a quick and easy way to log employee terminations.\",\"id\":28057162,\"released\":\"2021-07-26 15:41:53\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employee-termination-form\\/\",\"icon\":false,\"key\":\"employee-termination\",\"used_addons\":[],\"is_new\":false},\"28031306\":{\"name\":\"Bakery Order Form Template\",\"slug\":\"bakery-order-form\",\"description\":\"Boost sales and eliminate paperwork with this simple bakery order form.\",\"id\":28031306,\"released\":\"2020-11-27 00:01:08\",\"categories\":[\"Business Operations\",\"Calculator\",\"Elite\",\"Order Form\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/bakery-order-form\\/\",\"icon\":false,\"key\":\"bakery-order\",\"used_addons\":[],\"is_new\":false},\"28121163\":{\"name\":\"Google Autofill Address Form Template\",\"slug\":\"google-address-autofill-form\",\"description\":\"Fill out forms faster and get more accurate data by integrating a Google Map into your web forms to autofill addresses.\",\"id\":28121163,\"released\":\"2022-08-09 16:39:34\",\"categories\":[\"Business\",\"Geolocation\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/google-address-autofill-form\\/\",\"icon\":false,\"key\":\"google-address-autofill\",\"used_addons\":[],\"is_new\":false},\"28147531\":{\"name\":\"Agreement Form Template\",\"slug\":\"agreement-form\",\"description\":\"Create a legal agreement between two parties with the agreement form template.\",\"id\":28147531,\"released\":\"2022-11-06 13:14:00\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/agreement-form\\/\",\"icon\":false,\"key\":\"agreement\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28238668\":{\"name\":\"GKI Calculator Template\",\"slug\":\"gki-calculator-form\",\"description\":\"Collect relevant data from users to calculate the GKI, aiding in the assessment of glucose and ketone levels.\",\"id\":28238668,\"released\":\"2023-11-14 14:40:20\",\"categories\":[\"Business\",\"Calculator\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/gki-calculator-form\\/\",\"icon\":false,\"key\":\"gki-calculator\",\"used_addons\":[],\"is_new\":false},\"20906062\":{\"name\":\"Gym Registration Form Template\",\"slug\":\"gym-registration-form\",\"description\":\"Get clients signed up and registered for a gym membership.\",\"id\":20906062,\"released\":\"2019-11-24 23:00:45\",\"categories\":[\"Basic\",\"Health and Wellness\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/gym-registration-form\\/\",\"icon\":false,\"key\":\"gym-registration\",\"used_addons\":[],\"is_new\":false},\"28236110\":{\"name\":\"Price Quote Calculator Template\",\"slug\":\"price-quote-calculator-form\",\"description\":\"Gather necessary data from clients to calculate and provide accurate price quotes for your services.\",\"id\":28236110,\"released\":\"2023-11-02 15:13:02\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/price-quote-calculator-form\\/\",\"icon\":false,\"key\":\"price-quote-calculator\",\"used_addons\":[],\"is_new\":false},\"20906063\":{\"name\":\"Vendor Contact Information Form Template\",\"slug\":\"vendor-contact-information-form\",\"description\":\"Track the vendors that you are working with and get their contact information.\",\"id\":20906063,\"released\":\"2019-11-24 23:00:17\",\"categories\":[\"Contact\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/vendor-contact-information-form\\/\",\"icon\":false,\"key\":\"vendor-contact-information\",\"used_addons\":[],\"is_new\":false},\"28057167\":{\"name\":\"Online Race Registration Form Template\",\"slug\":\"online-race-registration-form\",\"description\":\"Save time with this simple and easy online race registration form.\",\"id\":28057167,\"released\":\"2021-08-14 16:27:54\",\"categories\":[\"Basic\",\"Event Planning\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/online-race-registration-form\\/\",\"icon\":false,\"key\":\"online-race-registration\",\"used_addons\":[],\"is_new\":false},\"28031311\":{\"name\":\"Esthetician Consent Form Template\",\"slug\":\"esthetician-consent-form\",\"description\":\"Capture information about your client\'s needs and preferences in terms of cosmetic or skin treatment with this simple esthetician consent form.\",\"id\":28031311,\"released\":\"2020-11-28 00:01:55\",\"categories\":[\"Business\",\"Business Operations\",\"Customer Service\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/esthetician-consent-form\\/\",\"icon\":false,\"key\":\"esthetician-consent\",\"used_addons\":[],\"is_new\":false},\"28036175\":{\"name\":\"Support Ticket Form Template\",\"slug\":\"support-ticket-form\",\"description\":\"Looking for a support ticket form template? This form helps you manage customer support requests with ease! Users submit requests & create tickets all at once.\",\"id\":28036175,\"released\":\"2020-12-18 12:56:44\",\"categories\":[\"Customer Service\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/support-ticket-form\\/\",\"icon\":false,\"key\":\"support-ticket\",\"used_addons\":[],\"is_new\":false},\"28222545\":{\"name\":\"Audit Form Template\",\"slug\":\"audit-form\",\"description\":\"Collect valuable insights through our Audit Form to enhance your processes and drive improvements.\",\"id\":28222545,\"released\":\"2023-11-07 16:07:26\",\"categories\":[\"Business\",\"Feedback\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/audit-form\\/\",\"icon\":false,\"key\":\"audit\",\"used_addons\":[],\"is_new\":false},\"28036177\":{\"name\":\"Neighborhood Events Questionnaire Form Template\",\"slug\":\"neighborhood-events-questionnaire-form\",\"description\":\"Want to survey your neighbors to find out what events they are interested in? Do it the easy way - with this neighborhood events questionnaire!\",\"id\":28036177,\"released\":\"2020-12-18 12:55:07\",\"categories\":[\"Event Planning\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/neighborhood-events-questionnaire-form\\/\",\"icon\":false,\"key\":\"neighborhood-events-questionnaire\",\"used_addons\":[],\"is_new\":false},\"28057939\":{\"name\":\"Avon Order Form Template\",\"slug\":\"avon-order-form\",\"description\":\"This Avon order form is great if you are looking to sell makeup online!\",\"id\":28057939,\"released\":\"2021-08-17 16:34:06\",\"categories\":[\"Business\",\"Business Operations\",\"Order Form\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/avon-order-form\\/\",\"icon\":false,\"key\":\"avon-order\",\"used_addons\":[],\"is_new\":false},\"28145235\":{\"name\":\"Check Request Form Template\",\"slug\":\"check-request-form\",\"description\":\"Level up business operations with the check request form! Request a check to pay bills or make purchases from your business accounts.\",\"id\":28145235,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\",\"Order Form\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/check-request-form\\/\",\"icon\":false,\"key\":\"check-request\",\"used_addons\":[],\"is_new\":false},\"20906069\":{\"name\":\"Vendor Registration Form Template\",\"slug\":\"vendor-registration-form\",\"description\":\"Gather information about new vendors that you are expecting for an event.\",\"id\":20906069,\"released\":\"2019-11-24 23:00:32\",\"categories\":[\"Basic\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/vendor-registration-form\\/\",\"icon\":false,\"key\":\"vendor-registration\",\"used_addons\":[],\"is_new\":false},\"28029525\":{\"name\":\"Employment Verification Form Template\",\"slug\":\"employment-verification-form\",\"description\":\"An employment verification form allows individuals to easily apply for housing or mortgage applications by confirming their income or salary.\",\"id\":28029525,\"released\":\"2020-11-23 00:01:07\",\"categories\":[\"Application\",\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employment-verification-form\\/\",\"icon\":false,\"key\":\"employment-verification\",\"used_addons\":[],\"is_new\":false},\"28236885\":{\"name\":\"Persuasive Essay Outline Form Template\",\"slug\":\"persuasive-essay-outline-form\",\"description\":\"Collect essential details to help students and writers outline persuasive essays effectively.\",\"id\":28236885,\"released\":\"2023-11-11 02:24:00\",\"categories\":[\"Basic\",\"Education\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/persuasive-essay-outline-form\\/\",\"icon\":false,\"key\":\"persuasive-essay-outline\",\"used_addons\":[],\"is_new\":false},\"28031318\":{\"name\":\"Donation Request Form Template\",\"slug\":\"donation-request-form\",\"description\":\"Request donations for your event with this form.\",\"id\":28031318,\"released\":\"2020-12-01 00:01:44\",\"categories\":[\"Event Planning\",\"Nonprofit\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/donation-request-form\\/\",\"icon\":false,\"key\":\"donation-request\",\"used_addons\":[],\"is_new\":false},\"28108886\":{\"name\":\"Suggestion Box Form Template\",\"slug\":\"suggestion-box-form\",\"description\":\"A form template that allows an online suggestion box for customers.\",\"id\":28108886,\"released\":\"2022-03-01 14:01:16\",\"categories\":[\"Business\",\"Customer Service\",\"Feedback\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/suggestion-box-form\\/\",\"icon\":false,\"key\":\"suggestion-box\",\"used_addons\":[],\"is_new\":false},\"28029527\":{\"name\":\"Release of Liability Form Template\",\"slug\":\"release-of-liability-form\",\"description\":\"Protect the individual, group, or organization from being held legally responsible in the event of an incident.\",\"id\":28029527,\"released\":\"2020-11-23 00:01:46\",\"categories\":[\"Business Operations\",\"Personal\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/release-of-liability-form\\/\",\"icon\":false,\"key\":\"release-of-liability\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28145240\":{\"name\":\"Request Form Template\",\"slug\":\"request-form\",\"description\":\"Get more information from your customers and manage your requests with ease with the request form template!\",\"id\":28145240,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Basic\",\"Customer Service\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/request-form\\/\",\"icon\":false,\"key\":\"request\",\"used_addons\":[],\"is_new\":false},\"28222552\":{\"name\":\"Receipt Form Template\",\"slug\":\"receipt-form\",\"description\":\"Capture payment details with our Receipt Form, ensuring accurate records of your financial transactions.\",\"id\":28222552,\"released\":\"2023-11-07 15:44:16\",\"categories\":[\"Basic\",\"Finance\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/receipt-form\\/\",\"icon\":false,\"key\":\"receipt\",\"used_addons\":[],\"is_new\":false},\"28225368\":{\"name\":\"Sponsor My Uniform\",\"slug\":\"sponsor-my-uniform-form\",\"description\":\"The Sponsor My Uniform Form Template by Formidable Forms allows organizations to easily collect sponsorship details.\",\"id\":28225368,\"released\":\"2023-11-18 10:27:00\",\"categories\":[\"Basic\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/sponsor-my-uniform-form\\/\",\"icon\":false,\"key\":\"sponsor-my-uniform\",\"used_addons\":[],\"is_new\":false},\"28036184\":{\"name\":\"Personal Trainer Sign-Up Form Template\",\"slug\":\"personal-trainer-sign-up-form\",\"description\":\"Looking for a personal trainer sign-up form template? Make it easy for customers to get started with this personal training registration form.\",\"id\":28036184,\"released\":\"2020-12-18 13:00:00\",\"categories\":[\"free\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/personal-trainer-sign-up-form\\/\",\"icon\":false,\"key\":\"personal-trainer-sign-up\",\"used_addons\":[],\"is_new\":false},\"28275545\":{\"name\":\"Rule of 72 Calculator Template\",\"slug\":\"rule-of-72-calculator-form\",\"description\":\"Estimate the time it takes for an investment to double or calculate the required interest rate for doubling it.\",\"id\":28275545,\"released\":\"2024-04-23 12:47:37\",\"categories\":[\"Business\",\"Calculator\",\"Finance\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/rule-of-72-calculator-form\\/\",\"icon\":false,\"key\":\"rule-of-72-calculator\",\"used_addons\":[],\"is_new\":false},\"28235865\":{\"name\":\"Personal Financial Statement Form Template\",\"slug\":\"personal-financial-statement-form\",\"description\":\"Collect crucial financial information from individuals to create a comprehensive personal financial statement.\",\"id\":28235865,\"released\":\"2023-11-11 05:08:00\",\"categories\":[\"Business\",\"Business Operations\",\"Finance\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/personal-financial-statement-form\\/\",\"icon\":false,\"key\":\"personal-financial-statement\",\"used_addons\":[],\"is_new\":false},\"22152282\":{\"name\":\"Customer Service Survey Template\",\"slug\":\"customer-service-survey-form\",\"description\":\"Transform your business with insightful customer service surveys.\",\"id\":22152282,\"released\":\"2020-05-18 13:31:13\",\"categories\":[\"Business\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/customer-service-survey-form\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2020\\/05\\/customer-service-survey-form-template.jpg\",650,288,false],\"key\":\"customer-service-survey\",\"used_addons\":[],\"is_new\":false},\"28145242\":{\"name\":\"Evaluation Form Template\",\"slug\":\"evaluation-form\",\"description\":\"Obtain valuable feedback on the quality of the presentation and identify areas that need improvement.\",\"id\":28145242,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Business\",\"Business Operations\",\"Feedback\",\"Signature\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/evaluation-form\\/\",\"icon\":false,\"key\":\"evaluation\",\"used_addons\":[],\"is_new\":false},\"28029530\":{\"name\":\"Training Acknowledgement Form Template\",\"slug\":\"training-acknowledgement-form\",\"description\":\"Get proof that an individual has attended and completed a training program.\",\"id\":28029530,\"released\":\"2020-11-23 00:01:23\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/training-acknowledgement-form\\/\",\"icon\":false,\"key\":\"training-acknowledgement\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28031322\":{\"name\":\"Raffle Donation Form Template\",\"slug\":\"raffle-donation-form\",\"description\":\"Collect and track donated items for a raffle or auction in this easy online form.\",\"id\":28031322,\"released\":\"2020-12-01 00:01:48\",\"categories\":[\"Nonprofit\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/raffle-donation-form\\/\",\"icon\":false,\"key\":\"raffle-donation\",\"used_addons\":[],\"is_new\":false},\"20882523\":{\"name\":\"Net Promoter Score (NPS) Survey Form Template\",\"slug\":\"nps-survey-form\",\"description\":\"Collect valuable feedback to increase customer satisfaction.\",\"id\":20882523,\"released\":\"2019-03-26 15:01:03\",\"categories\":[\"Business\",\"Calculator\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/nps-survey-form\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2019\\/03\\/net-promoter-score-nps-survey.jpg\",650,288,false],\"key\":\"nps-survey\",\"used_addons\":[],\"is_new\":false},\"28221020\":{\"name\":\"How Did You Hear About Us Survey Template\",\"slug\":\"how-did-you-hear-about-us-survey-form\",\"description\":\"Collect feedback on how your customers discovered you. Use the information to target your advertising and grow your business.\",\"id\":28221020,\"released\":\"2023-08-31 12:28:50\",\"categories\":[\"Business\",\"Feedback\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/how-did-you-hear-about-us-survey-form\\/\",\"icon\":false,\"key\":\"how-did-you-hear-about-us-survey\",\"used_addons\":[],\"is_new\":false},\"28031324\":{\"name\":\"Sponsor Donation Form Template\",\"slug\":\"sponsor-donation-form\",\"description\":\"Use this online form to handle your event sponsorship and donation applications.\",\"id\":28031324,\"released\":\"2020-12-01 00:01:19\",\"categories\":[\"Application\",\"Business Operations\",\"File Upload\",\"Nonprofit\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/sponsor-donation-form\\/\",\"icon\":false,\"key\":\"sponsor-donation\",\"used_addons\":[],\"is_new\":false},\"28145245\":{\"name\":\"Lab Supply Order Form Template\",\"slug\":\"lab-supply-order-form\",\"description\":\"Select laboratory products and process orders online with the Lab supply order form.\",\"id\":28145245,\"released\":\"2022-11-06 00:00:00\",\"categories\":[\"Business\",\"Health and Wellness\",\"Order Form\",\"PayPal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/lab-supply-order-form\\/\",\"icon\":false,\"key\":\"lab-supply-order\",\"used_addons\":[],\"is_new\":false},\"28236382\":{\"name\":\"Recruiting Intake Form Template\",\"slug\":\"recruiting-intake-form\",\"description\":\"Obtain essential data from businesses seeking the expertise of your recruiting firm to identify and connect with top-tier talent.\",\"id\":28236382,\"released\":\"2023-11-11 05:06:00\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/recruiting-intake-form\\/\",\"icon\":false,\"key\":\"recruiting-intake\",\"used_addons\":[],\"is_new\":false},\"28306270\":{\"name\":\"Request For Medical Records Template\",\"slug\":\"request-for-medical-records-form\",\"description\":\"Our Request for Medical Records Form allows individuals to obtain their health information efficiently.\",\"id\":28306270,\"released\":\"2024-12-16 11:51:31\",\"categories\":[\"Business\",\"Business Operations\",\"Consent\",\"Datepicker\",\"Health and Wellness\",\"Personal\",\"Request\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/request-for-medical-records-form\\/\",\"icon\":false,\"key\":\"request-for-medical-records\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28238943\":{\"name\":\"Board and Batten Wall Calculator Template\",\"slug\":\"board-and-batten-wall-calculator-form\",\"description\":\"Gather project-specific details from users to calculate board and batten wall requirements.\",\"id\":28238943,\"released\":\"2023-11-15 14:05:03\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/board-and-batten-wall-calculator-form\\/\",\"icon\":false,\"key\":\"board-and-batten-wall-calculator\",\"used_addons\":[],\"is_new\":false},\"28056672\":{\"name\":\"General Event Feedback Template\",\"slug\":\"general-event-feedback-form\",\"description\":\"Collect valuable event feedback from your event attendees.\",\"id\":28056672,\"released\":\"2021-04-27 17:27:18\",\"categories\":[\"Business\",\"Event Planning\",\"Feedback\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/general-event-feedback-form\\/\",\"icon\":false,\"key\":\"general-event-feedback\",\"used_addons\":[\"Surveys and Polls\"],\"is_new\":false},\"28226400\":{\"name\":\"Job Requisition Form Template\",\"slug\":\"job-requisition-form\",\"description\":\"Collect necessary information from hiring managers to initiate and streamline the process of requesting new personnel to fill job vacancies.\",\"id\":28226400,\"released\":\"2023-11-18 10:36:01\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/job-requisition-form\\/\",\"icon\":false,\"key\":\"job-requisition\",\"used_addons\":[],\"is_new\":false},\"28311905\":{\"name\":\"Corrective Action Form Template\",\"slug\":\"corrective-action-form\",\"description\":\"Document and address workplace issues efficiently, ensuring clear communication and compliance.\",\"id\":28311905,\"released\":\"2025-02-11 14:14:39\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/corrective-action-form\\/\",\"icon\":false,\"key\":\"corrective-action\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":true},\"28225378\":{\"name\":\"Meeting Availability Poll Template\",\"slug\":\"meeting-availability-poll-form\",\"description\":\"Gather availability information from participants to schedule meetings, ensuring efficient coordination for productive discussions.\",\"id\":28225378,\"released\":\"2023-11-18 10:28:42\",\"categories\":[\"Business Operations\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/meeting-availability-poll-form\\/\",\"icon\":false,\"key\":\"meeting-availability-poll\",\"used_addons\":[],\"is_new\":false},\"28145251\":{\"name\":\"Media Release Form Template\",\"slug\":\"media-release-form\",\"description\":\"Grant consent or authorization to share media in various outlets and business marketing.\",\"id\":28145251,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Business\",\"Business Operations\",\"Marketing\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/media-release-form\\/\",\"icon\":false,\"key\":\"media-release\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28275556\":{\"name\":\"Sales Tax Calculator Template\",\"slug\":\"sales-tax-calculator-form\",\"description\":\"Calculate your sales tax rate, pre-tax price, and after-tax price with ease using our comprehensive sales tax calculator.\",\"id\":28275556,\"released\":\"2024-04-23 13:54:53\",\"categories\":[\"Business\",\"Calculator\",\"Finance\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/sales-tax-calculator-form\\/\",\"icon\":false,\"key\":\"sales-tax-calculator\",\"used_addons\":[],\"is_new\":false},\"28223335\":{\"name\":\"Notary Form Template\",\"slug\":\"notary-form\",\"description\":\"Collect essential details from individuals seeking notary services to assist in processing their requests efficiently.\",\"id\":28223335,\"released\":\"2023-11-07 15:33:51\",\"categories\":[\"Business\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/notary-form\\/\",\"icon\":false,\"key\":\"notary\",\"used_addons\":[],\"is_new\":false},\"28305256\":{\"name\":\"Disciplinary Action Form Template\",\"slug\":\"disciplinary-action-form\",\"description\":\"Streamline disciplinary incident processing across educational, governmental, and corporate settings with a versatile Disciplinary Action Form Template, designed for immediate use and efficient documentation.\",\"id\":28305256,\"released\":\"2024-12-05 18:49:17\",\"categories\":[\"Business\",\"Business Operations\",\"Consent\",\"Datepicker\",\"Feedback\",\"File Upload\",\"Multi-Page\",\"Signature\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/disciplinary-action-form\\/\",\"icon\":false,\"key\":\"disciplinary-action\",\"used_addons\":[\"Datepicker Options\",\"Digital Signatures\"],\"is_new\":false},\"28222569\":{\"name\":\"Jail Release Form Template\",\"slug\":\"jail-release-form\",\"description\":\"Collect essential details for inmate release processing.\",\"id\":28222569,\"released\":\"2023-09-07 13:01:48\",\"categories\":[\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/jail-release-form\\/\",\"icon\":false,\"key\":\"jail-release\",\"used_addons\":[],\"is_new\":false},\"28226665\":{\"name\":\"Warranty Form Template\",\"slug\":\"warranty-form\",\"description\":\"Gather information from customers seeking to register and activate their product warranties, ensuring a smooth process for future support and claims.\",\"id\":28226665,\"released\":\"2023-11-18 10:37:36\",\"categories\":[\"Basic\",\"Customer Service\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/warranty-form\\/\",\"icon\":false,\"key\":\"warranty\",\"used_addons\":[],\"is_new\":false},\"28221036\":{\"name\":\"Prior Authorization Form Template\",\"slug\":\"prior-authorization-form\",\"description\":\"Effortlessly gather authorization requests with our streamlined template.\",\"id\":28221036,\"released\":\"2023-11-11 02:29:00\",\"categories\":[\"Basic\",\"Contact\",\"Finance\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/prior-authorization-form\\/\",\"icon\":false,\"key\":\"prior-authorization\",\"used_addons\":[],\"is_new\":false},\"28235887\":{\"name\":\"Area Calculator Template\",\"slug\":\"area-calculator-form\",\"description\":\"Find the area of a square, rectangle, circle, or a triangle with a 90\\u00b0 angle using our Area Calculator Template.\",\"id\":28235887,\"released\":\"2023-11-03 16:56:38\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/area-calculator-form\\/\",\"icon\":false,\"key\":\"area-calculator\",\"used_addons\":[],\"is_new\":false},\"28306287\":{\"name\":\"Grievance Form Template\",\"slug\":\"grievance-form\",\"description\":\"A Grievance Form allows individuals to formally express concerns or complaints. This form provides a clear process for documentation and resolution, ensuring that issues are addressed fairly and promptly.\",\"id\":28306287,\"released\":\"2024-12-16 15:24:31\",\"categories\":[\"Business\",\"Business Operations\",\"Datepicker\",\"File Upload\",\"Multi-Page\",\"Repeater Field\",\"Request\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/grievance-form\\/\",\"icon\":false,\"key\":\"grievance\",\"used_addons\":[\"Datepicker Options\",\"Digital Signatures\"],\"is_new\":false},\"28142704\":{\"name\":\"Bid Form Template\",\"slug\":\"bid-form\",\"description\":\"Save time by allowing contractors to submit their project proposals with the Bid form template.\",\"id\":28142704,\"released\":\"2022-08-17 14:27:39\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/bid-form\\/\",\"icon\":false,\"key\":\"bid\",\"used_addons\":[],\"is_new\":false},\"28223600\":{\"name\":\"Monthly Payment Form\",\"slug\":\"monthly-payment-form\",\"description\":\"Are you hunting for a low-stress method to sort out online monthly payments? We\'ve got your back! Check out the monthly payment form template from Formidable Forms. The beauty of this thing? It hands the power over to the customers or donors to choose a monthly payment amount.\",\"id\":28223600,\"released\":\"2023-09-12 12:46:47\",\"categories\":[\"free\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/monthly-payment-form\\/\",\"icon\":false,\"key\":\"monthly-payment\",\"used_addons\":[],\"is_new\":false},\"28224368\":{\"name\":\"Interest Form Template\",\"slug\":\"interest-form\",\"description\":\"Gather information from individuals interested in your offerings or activities, helping you better understand their preferences and needs.\",\"id\":28224368,\"released\":\"2023-11-18 04:03:00\",\"categories\":[\"free\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/interest-form\\/\",\"icon\":false,\"key\":\"interest\",\"used_addons\":[],\"is_new\":false},\"28305264\":{\"name\":\"Fundraising Donation Form Template\",\"slug\":\"fundraising-donation-form\",\"description\":\"A Fundraising Donation Form collects contributions for charitable causes, allowing donors to provide essential support to meaningful projects.\",\"id\":28305264,\"released\":\"2024-12-05 19:30:27\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\",\"Elite\",\"Event Planning\",\"Finance\",\"Multi-Page\",\"Nonprofit\",\"Payment\",\"PayPal\",\"Request\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/fundraising-donation-form\\/\",\"icon\":false,\"key\":\"fundraising-donation\",\"used_addons\":[\"PayPal Standard\",\"Stripe\"],\"is_new\":false},\"28223857\":{\"name\":\"Boyfriend Application Form Template\",\"slug\":\"boyfriend-application-form\",\"description\":\"Collect information from prospective partners interested in building a relationship with you.\",\"id\":28223857,\"released\":\"2023-09-13 12:01:55\",\"categories\":[\"Basic\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/boyfriend-application-form\\/\",\"icon\":false,\"key\":\"boyfriend-application\",\"used_addons\":[],\"is_new\":false},\"28172146\":{\"name\":\"FAQ Form Template\",\"slug\":\"faq-form\",\"description\":\"Find information quickly and easily provide answers to the most frequently asked questions.\",\"id\":28172146,\"released\":\"2023-02-07 16:18:43\",\"categories\":[\"Business\",\"Conversational Forms\",\"Customer Service\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/faq-form\\/\",\"icon\":false,\"key\":\"faq\",\"used_addons\":[],\"is_new\":false},\"28305266\":{\"name\":\"Employee Leave Request Form Template\",\"slug\":\"employee-leave-request-form\",\"description\":\"An Employee Leave Request Form allows employees to formally request time off, ensuring proper communication and documentation to maintain organizational productivity.\",\"id\":28305266,\"released\":\"2024-12-05 19:40:00\",\"categories\":[\"Application\",\"Business\",\"Business Operations\",\"Consent\",\"Datepicker\",\"Elite\",\"Request\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employee-leave-request-form\\/\",\"icon\":false,\"key\":\"employee-leave-request\",\"used_addons\":[\"Datepicker Options\",\"Digital Signatures\"],\"is_new\":false},\"28029811\":{\"name\":\"Donation Pledge Form Template\",\"slug\":\"donation-pledge-form\",\"description\":\"Don\'t be stuck on how to take pledges from donors. This template will keep everything organized.\",\"id\":28029811,\"released\":\"2020-12-01 00:01:27\",\"categories\":[\"Business\",\"Nonprofit\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/donation-pledge-form\\/\",\"icon\":false,\"key\":\"donation-pledge\",\"used_addons\":[],\"is_new\":false},\"28305268\":{\"name\":\"Office Supply Order Form Template\",\"slug\":\"office-supply-order-form\",\"description\":\"An Office Supply Order Form streamlines the process of requesting essential supplies for your workplace. This form ensures timely fulfillment and helps maintain an efficient and productive office environment.\",\"id\":28305268,\"released\":\"2024-12-05 19:52:47\",\"categories\":[\"Business\",\"Business Operations\",\"Datepicker\",\"Elite\",\"Finance\",\"Multi-Page\",\"Order Form\",\"Personal\",\"Repeater Field\",\"Request\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/office-supply-order-form\\/\",\"icon\":false,\"key\":\"office-supply-order\",\"used_addons\":[\"Datepicker Options\",\"Digital Signatures\"],\"is_new\":false},\"28221301\":{\"name\":\"Personnel Action Form Template\",\"slug\":\"personnel-action-form\",\"description\":\"Gather essential information from employees seeking personnel actions. Ensure accurate and efficient processing of requests.\",\"id\":28221301,\"released\":\"2023-11-11 02:18:00\",\"categories\":[\"Business Operations\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/personnel-action-form\\/\",\"icon\":false,\"key\":\"personnel-action\",\"used_addons\":[],\"is_new\":false},\"28223861\":{\"name\":\"Credit Card Application Form Template\",\"slug\":\"credit-card-application-form\",\"description\":\"Collect essential details from individuals applying for a credit card to help you assess their eligibility and offer your financial services.\",\"id\":28223861,\"released\":\"2023-09-15 13:53:14\",\"categories\":[\"Application\",\"Business\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/credit-card-application-form\\/\",\"icon\":false,\"key\":\"credit-card-application\",\"used_addons\":[],\"is_new\":false},\"28228469\":{\"name\":\"Blog Post Pitch Form Template\",\"slug\":\"blog-post-pitch-form\",\"description\":\"Gather article pitch submissions from potential contributors who wish to share their ideas and expertise on your blog.\",\"id\":28228469,\"released\":\"2023-10-04 13:15:02\",\"categories\":[\"Basic\",\"Multi-Page\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/blog-post-pitch-form\\/\",\"icon\":false,\"key\":\"blog-post-pitch\",\"used_addons\":[],\"is_new\":false},\"28179829\":{\"name\":\"Parental Contact Form Template\",\"slug\":\"parental-contact-form\",\"description\":\"Using our short and easy parental contact form template can save you time and ensure that you have all the necessary information in one place. Our template is designed to be straightforward and user-friendly, allowing parents and guardians to provide the essential information needed to care for their child without any confusion or hassle.\",\"id\":28179829,\"released\":\"2023-02-21 12:47:16\",\"categories\":[\"Basic\",\"Contact\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/parental-contact-form\\/\",\"icon\":false,\"key\":\"parental-contact\",\"used_addons\":[],\"is_new\":false},\"28222582\":{\"name\":\"Interview Form Template\",\"slug\":\"interview-form\",\"description\":\"Gather valuable insights from candidates during the interview process to assess their qualifications and determine whether or not they are fit for the position.\",\"id\":28222582,\"released\":\"2023-09-07 13:23:01\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/interview-form\\/\",\"icon\":false,\"key\":\"interview\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28194423\":{\"name\":\"AI Pre-Sale Assistant Form Template\",\"slug\":\"ai-pre-sale-assistant-form\",\"description\":\"Streamline your pre-sale experience with our AI-powered assistant. Simply ask a question and you will receive an answer.\",\"id\":28194423,\"released\":\"2023-04-28 16:11:47\",\"categories\":[\"AI\",\"Business\",\"Customer Service\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/ai-pre-sale-assistant-form\\/\",\"icon\":false,\"key\":\"ai-pre-sale-assistant\",\"used_addons\":[],\"is_new\":false},\"28172151\":{\"name\":\"Personal Information Form Template\",\"slug\":\"personal-information-form\",\"description\":\"Whether it is for completing documents or collecting information about a person, use the personal information form template for an easy way to gather personal data.\",\"id\":28172151,\"released\":\"2023-02-07 16:29:38\",\"categories\":[\"Business\",\"Conversational Forms\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/personal-information-form\\/\",\"icon\":false,\"key\":\"personal-information\",\"used_addons\":[],\"is_new\":false},\"20908664\":{\"name\":\"Daily Calorie Intake Calculator Template\",\"slug\":\"daily-calorie-intake-calculator-form\",\"description\":\"Calculate the daily calorie intake required to reach fitness goals.\",\"id\":20908664,\"released\":\"2019-11-24 23:00:44\",\"categories\":[\"Business\",\"Calculator\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/daily-calorie-intake-calculator-form\\/\",\"icon\":false,\"key\":\"daily-calorie-intake-calculator\",\"used_addons\":[],\"is_new\":false},\"28220792\":{\"name\":\"Lead Generation Form Template\",\"slug\":\"lead-generation-form\",\"description\":\"Generate new leads on your website using our lead generation form.\",\"id\":28220792,\"released\":\"2023-11-18 03:50:00\",\"categories\":[\"Basic\",\"Business Operations\",\"Conversational Forms\",\"Lead\",\"Marketing\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/lead-generation-form\\/\",\"icon\":false,\"key\":\"lead-generation\",\"used_addons\":[\"Conversational Forms\"],\"is_new\":false},\"28222328\":{\"name\":\"Sales Lead Form Template\",\"slug\":\"sales-lead-form\",\"description\":\"Connect with potential clients and gather their contact information to boost your sales.\",\"id\":28222328,\"released\":\"2023-11-11 04:01:00\",\"categories\":[\"Basic\",\"Contact\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/sales-lead-form\\/\",\"icon\":false,\"key\":\"sales-lead\",\"used_addons\":[],\"is_new\":false},\"28224376\":{\"name\":\"Husband Complaint Form Template\",\"slug\":\"husband-complaint-form\",\"description\":\"Collect insights and chuckles from spouses sharing their grievances about their husbands.\",\"id\":28224376,\"released\":\"2023-11-18 04:05:00\",\"categories\":[\"Basic\",\"Feedback\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/husband-complaint-form\\/\",\"icon\":false,\"key\":\"husband-complaint\",\"used_addons\":[],\"is_new\":false},\"20908665\":{\"name\":\"Length Conversion Calculator Template\",\"slug\":\"length-conversion-calculator-form\",\"description\":\"Convert lengths across different units of measurement.\",\"id\":20908665,\"released\":\"2019-11-24 23:00:25\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/length-conversion-calculator-form\\/\",\"icon\":false,\"key\":\"length-conversion-calculator\",\"used_addons\":[],\"is_new\":false},\"28192889\":{\"name\":\"Pay Raise Calculator Template\",\"slug\":\"pay-raise-calculator-form\",\"description\":\"Easily calculate what your salary will be after a pay raise.\",\"id\":28192889,\"released\":\"2023-04-20 17:40:33\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/pay-raise-calculator-form\\/\",\"icon\":false,\"key\":\"pay-raise-calculator\",\"used_addons\":[],\"is_new\":false},\"28221049\":{\"name\":\"Release of Information Form Template\",\"slug\":\"release-of-information-form\",\"description\":\"Grant permission for the sharing of confidential details to assist in providing accurate service quotes.\",\"id\":28221049,\"released\":\"2023-11-11 02:21:00\",\"categories\":[\"Business\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/release-of-information-form\\/\",\"icon\":false,\"key\":\"release-of-information\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28306297\":{\"name\":\"Inventory Form Template\",\"slug\":\"inventory-form\",\"description\":\"An Inventory form template streamlines the tracking of stock levels and items. This form helps maintain accurate records, optimize supply management, and ensure efficient operations in any organization.\",\"id\":28306297,\"released\":\"2024-12-17 14:06:17\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\",\"Datepicker\",\"Order Form\",\"Repeater Field\",\"Signature\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/inventory-form\\/\",\"icon\":false,\"key\":\"inventory\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"20908666\":{\"name\":\"Paycheck Calculator Form Template\",\"slug\":\"paycheck-calculator-form\",\"description\":\"Find your salary, daily, weekly and monthly wages based on hourly rates.\",\"id\":20908666,\"released\":\"2019-11-24 23:00:26\",\"categories\":[\"Business\",\"Calculator\",\"Finance\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/paycheck-calculator-form\\/\",\"icon\":false,\"key\":\"paycheck-calculator\",\"used_addons\":[],\"is_new\":false},\"28054906\":{\"name\":\"Square Root Calculator Template\",\"slug\":\"square-root-calculator-form\",\"description\":\"This calculator is great for solving square roots, which are notoriously difficult to calculate.\",\"id\":28054906,\"released\":\"2021-08-28 10:53:21\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/square-root-calculator-form\\/\",\"icon\":false,\"key\":\"square-root-calculator\",\"used_addons\":[],\"is_new\":false},\"28220794\":{\"name\":\"Liability Form Template\",\"slug\":\"liability-form\",\"description\":\"Complete this form to acknowledge your understanding of potential risks and liabilities associated with our products or services\",\"id\":28220794,\"released\":\"2023-11-11 02:39:00\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/liability-form\\/\",\"icon\":false,\"key\":\"liability\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"20908667\":{\"name\":\"Percentage Calculator Template\",\"slug\":\"percentage-calculator-form\",\"description\":\"Find a specified percentage of an entered number.\",\"id\":20908667,\"released\":\"2019-11-24 23:00:25\",\"categories\":[\"Calculator\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/percentage-calculator-form\\/\",\"icon\":false,\"key\":\"percentage-calculator\",\"used_addons\":[],\"is_new\":false},\"20908668\":{\"name\":\"Tip Calculator Form Template\",\"slug\":\"tip-calculator-form\",\"description\":\"Calculate a tip whether splitting the bill or paying alone.\",\"id\":20908668,\"released\":\"2019-11-24 23:00:34\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/tip-calculator-form\\/\",\"icon\":false,\"key\":\"tip-calculator\",\"used_addons\":[],\"is_new\":false},\"28018812\":{\"name\":\"Photo Release Form Template\",\"slug\":\"photo-release-form\",\"description\":\"An easy to use template for releasing photos.\",\"id\":28018812,\"released\":\"2020-09-21 09:58:01\",\"categories\":[\"Business\",\"Business Operations\",\"Consent\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/photo-release-form\\/\",\"icon\":false,\"key\":\"photo-release\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28219004\":{\"name\":\"Attachment Style Quiz Template\",\"slug\":\"attachment-style-quiz-form\",\"description\":\"Determine your attachment style with this short quiz.\",\"id\":28219004,\"released\":\"2023-09-08 16:47:21\",\"categories\":[\"Business\",\"Conversational Forms\",\"Personal\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/attachment-style-quiz-form\\/\",\"icon\":false,\"key\":\"attachment-style-quiz\",\"used_addons\":[],\"is_new\":false},\"28220796\":{\"name\":\"Purchase Request Form Template\",\"slug\":\"purchase-request-form\",\"description\":\"Submit a request for your purchase using this form.\",\"id\":28220796,\"released\":\"2023-11-18 03:41:00\",\"categories\":[\"Basic\",\"Finance\",\"Request\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/purchase-request-form\\/\",\"icon\":false,\"key\":\"purchase-request\",\"used_addons\":[],\"is_new\":false},\"28223869\":{\"name\":\"Demographic Information Form Template\",\"slug\":\"demographic-information-form\",\"description\":\"Gather important demographic data from individuals to better understand your customer base and enhance your services.\",\"id\":28223869,\"released\":\"2023-09-15 13:55:36\",\"categories\":[\"Basic\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/demographic-information-form\\/\",\"icon\":false,\"key\":\"demographic-information\",\"used_addons\":[],\"is_new\":false},\"28306302\":{\"name\":\"Employee Status Change Form Template\",\"slug\":\"employee-status-change-form\",\"description\":\"An Employee Status Change Form documents any modifications to an employee\'s role, status, or details. This form ensures accurate record-keeping and facilitates smooth transitions within the organization.\",\"id\":28306302,\"released\":\"2024-12-17 14:05:26\",\"categories\":[\"Application\",\"Business\",\"Business Operations\",\"File Upload\",\"Finance\",\"Request\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employee-status-change-form\\/\",\"icon\":false,\"key\":\"employee-status-change\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28200063\":{\"name\":\"Straw Poll Form Template\",\"slug\":\"straw-poll-form\",\"description\":\"This form is designed to collect your valuable input on various topics through a straw poll. By participating in this quick survey, you can share your preferences, opinions, or choices on specific questions.\",\"id\":28200063,\"released\":\"2023-05-30 17:53:42\",\"categories\":[\"Business\",\"Conversational Forms\",\"Feedback\",\"Poll\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/straw-poll-form\\/\",\"icon\":false,\"key\":\"straw-poll\",\"used_addons\":[\"Surveys and Polls\"],\"is_new\":false},\"20905855\":{\"name\":\"Equipment Checkout Form Template\",\"slug\":\"equipment-checkout-form\",\"description\":\"Collect employee details and information about the equipment being checked out.\",\"id\":20905855,\"released\":\"2019-11-24 23:00:10\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/equipment-checkout-form\\/\",\"icon\":false,\"key\":\"equipment-checkout\",\"used_addons\":[],\"is_new\":false},\"28220800\":{\"name\":\"Volunteer Hours Form Template\",\"slug\":\"volunteer-hours-form\",\"description\":\"Use this form to log your volunteer hours.\",\"id\":28220800,\"released\":\"2023-11-11 02:31:00\",\"categories\":[\"free\",\"Nonprofit\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/volunteer-hours-form\\/\",\"icon\":false,\"key\":\"volunteer-hours\",\"used_addons\":[],\"is_new\":false},\"20905857\":{\"name\":\"Online Event Registration Form Template\",\"slug\":\"online-event-registration-form\",\"description\":\"Allow users to register to attend a conference.\",\"id\":20905857,\"released\":\"2019-11-24 23:00:14\",\"categories\":[\"Basic\",\"Event Planning\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/online-event-registration-form\\/\",\"icon\":false,\"key\":\"online-event-registration\",\"used_addons\":[],\"is_new\":false},\"28219010\":{\"name\":\"IT Service Request Form Template\",\"slug\":\"it-service-request-form\",\"description\":\"An easy way for employees to request assistance or changes related to their information technology (IT) needs.\",\"id\":28219010,\"released\":\"2023-09-08 16:53:35\",\"categories\":[\"Business\",\"Business Operations\",\"Contact\",\"File Upload\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/it-service-request-form\\/\",\"icon\":false,\"key\":\"it-service-request\",\"used_addons\":[],\"is_new\":false},\"28221314\":{\"name\":\"Student Enrollment Form Template\",\"slug\":\"student-enrollment-form\",\"description\":\"Collect essential information from prospective students and their families to facilitate enrollment in our educational programs.\",\"id\":28221314,\"released\":\"2023-11-07 16:15:57\",\"categories\":[\"Business\",\"Education\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/student-enrollment-form\\/\",\"icon\":false,\"key\":\"student-enrollment\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28223874\":{\"name\":\"Buy Me a Coffee Form Template\",\"slug\":\"buy-me-a-coffee-form\",\"description\":\"Collect details from generous supporters who want to contribute and buy you a coffee to show their appreciation.\",\"id\":28223874,\"released\":\"2023-09-13 13:49:36\",\"categories\":[\"free\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/buy-me-a-coffee-form\\/\",\"icon\":false,\"key\":\"buy-me-a-coffee\",\"used_addons\":[],\"is_new\":false},\"28222595\":{\"name\":\"Lab Requisition Form Template\",\"slug\":\"lab-requisition-form\",\"description\":\"Collect essential patient and test details for accurate and timely laboratory procedures.\",\"id\":28222595,\"released\":\"2023-11-11 08:00:00\",\"categories\":[\"Business\",\"Health and Wellness\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/lab-requisition-form\\/\",\"icon\":false,\"key\":\"lab-requisition\",\"used_addons\":[],\"is_new\":false},\"28306308\":{\"name\":\"Income Verification Form Template\",\"slug\":\"income-verification-form-2\",\"description\":\"An Income Verification Form confirms an individual\'s earnings for various purposes, such as loans or rental applications. This form provides essential proof of income, ensuring transparency and trust in financial transactions.\",\"id\":28306308,\"released\":\"2024-12-16 15:18:16\",\"categories\":[\"Application\",\"Business\",\"Business Operations\",\"Datepicker\",\"Finance\",\"Request\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/income-verification-form-2\\/\",\"icon\":false,\"key\":\"income-verification-form-2\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28269189\":{\"name\":\"Social Media Survey Template\",\"slug\":\"social-media-survey-form\",\"description\":\"Collect insights from participants with this social media survey template to understand user preferences and behaviors.\",\"id\":28269189,\"released\":\"2024-03-22 13:54:49\",\"categories\":[\"Basic\",\"Business Operations\",\"Marketing\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/social-media-survey-form\\/\",\"icon\":false,\"key\":\"social-media-survey\",\"used_addons\":[],\"is_new\":false},\"28054406\":{\"name\":\"YouTube Money Calculator\",\"slug\":\"youtube-money-calculator-form\",\"description\":\"Use this <a href=\\\"https:\\/\\/formidableforms.com\\/how-to-generate-leads-with-a-calculator-lead-magnet\\/\\\">lead magnet<\\/a> to tell visitors how much money they can make via YouTube. This is the ad revenue calculator for you.\",\"id\":28054406,\"released\":\"2021-08-10 16:21:21\",\"categories\":[\"Business\",\"Calculator\",\"Finance\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/youtube-money-calculator-form\\/\",\"icon\":false,\"key\":\"youtube-money-calculator\",\"used_addons\":[],\"is_new\":false},\"28221318\":{\"name\":\"Community Service Form Template\",\"slug\":\"community-service-form\",\"description\":\"Gather essential details from volunteers and participants who are actively engaged in community service initiatives.\",\"id\":28221318,\"released\":\"2023-09-01 13:57:17\",\"categories\":[\"free\",\"Nonprofit\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/community-service-form\\/\",\"icon\":false,\"key\":\"community-service\",\"used_addons\":[],\"is_new\":false},\"28224390\":{\"name\":\"Computer Inventory Form Template\",\"slug\":\"computer-inventory-form\",\"description\":\"Gather essential information about computer assets to maintain an organized and up-to-date inventory of your technology resources.\",\"id\":28224390,\"released\":\"2023-11-18 16:08:54\",\"categories\":[\"Basic\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/computer-inventory-form\\/\",\"icon\":false,\"key\":\"computer-inventory\",\"used_addons\":[],\"is_new\":false},\"28217735\":{\"name\":\"Recipe Request Form Template\",\"slug\":\"recipe-request-form\",\"description\":\"Easily add a form to your site to allow your visitors to request recipes.\",\"id\":28217735,\"released\":\"2023-08-17 12:14:20\",\"categories\":[\"Business\",\"Feedback\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/recipe-request-form\\/\",\"icon\":false,\"key\":\"recipe-request\",\"used_addons\":[],\"is_new\":false},\"28219016\":{\"name\":\"Dog Breed Selector Quiz Template\",\"slug\":\"dog-breed-selector-quiz-form\",\"description\":\"Determine the perfect dog breed for you with this short quiz.\",\"id\":28219016,\"released\":\"2023-11-11 03:45:50\",\"categories\":[\"Business\",\"Conversational Forms\",\"Lifestyle\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/dog-breed-selector-quiz-form\\/\",\"icon\":false,\"key\":\"dog-breed-selector-quiz\",\"used_addons\":[\"Conversational Forms\",\"Quiz Maker\"],\"is_new\":false},\"28223625\":{\"name\":\"Appeal Form Template\",\"slug\":\"appeal-form\",\"description\":\"Collect essential details from employees who are filing appeals.\",\"id\":28223625,\"released\":\"2023-11-07 15:30:48\",\"categories\":[\"Business\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/appeal-form\\/\",\"icon\":false,\"key\":\"appeal\",\"used_addons\":[],\"is_new\":false},\"28223881\":{\"name\":\"Crowdfunding Form Template\",\"slug\":\"crowdfunding-form\",\"description\":\"Collect essential information from potential backers who are interested in supporting your crowdfunding campaign.\",\"id\":28223881,\"released\":\"2023-09-13 14:05:18\",\"categories\":[\"free\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/crowdfunding-form\\/\",\"icon\":false,\"key\":\"crowdfunding\",\"used_addons\":[],\"is_new\":false},\"28029321\":{\"name\":\"Model Release Form Template\",\"slug\":\"model-release-form\",\"description\":\"Photographers can get permission from models to use and publish their photos.\",\"id\":28029321,\"released\":\"2020-11-23 00:02:19\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/model-release-form\\/\",\"icon\":false,\"key\":\"model-release\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28306313\":{\"name\":\"Sponsorship Request Form Template\",\"slug\":\"sponsorship-request-form\",\"description\":\"A Sponsorship Request Form enables organizations to seek funding or support for events and initiatives. This form clearly outlines sponsorship benefits, helping to connect sponsors with meaningful opportunities.\",\"id\":28306313,\"released\":\"2024-12-16 15:25:45\",\"categories\":[\"Application\",\"Business\",\"Business Operations\",\"Datepicker\",\"Event Planning\",\"File Upload\",\"Finance\",\"Nonprofit\",\"PayPal\",\"Request\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/sponsorship-request-form\\/\",\"icon\":false,\"key\":\"sponsorship-request\",\"used_addons\":[\"PayPal Standard\",\"Stripe\"],\"is_new\":false},\"25188491\":{\"name\":\"Student Interest Survey Template\",\"slug\":\"student-interest-survey-form\",\"description\":\"Get feedback from your students using our Interest Survey Form.\",\"id\":25188491,\"released\":\"2020-06-10 22:05:36\",\"categories\":[\"Education\",\"Personal\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/student-interest-survey-form\\/\",\"icon\":false,\"key\":\"student-interest-survey\",\"used_addons\":[],\"is_new\":false},\"28217739\":{\"name\":\"Exit Survey Form Template\",\"slug\":\"exit-survey-form\",\"description\":\"Our Exit Survey helps gather feedback and improve the well-being of employees.\",\"id\":28217739,\"released\":\"2023-08-17 12:45:01\",\"categories\":[\"Business\",\"Business Operations\",\"Feedback\",\"Multi-Page\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/exit-survey-form\\/\",\"icon\":false,\"key\":\"exit-survey\",\"used_addons\":[],\"is_new\":false},\"28195727\":{\"name\":\"BMI Calculator AI Form Template\",\"slug\":\"bmi-calculator-ai-form\",\"description\":\"This form allows users to input their height and weight to calculate their Body Mass Index (BMI) and receive personalized feedback from an AI coach based on their results. The coach provides insights on maintaining a healthy lifestyle and achieving weight-related goals.\",\"id\":28195727,\"released\":\"2023-05-05 19:26:23\",\"categories\":[\"AI\",\"Business\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/bmi-calculator-ai-form\\/\",\"icon\":false,\"key\":\"bmi-calculator-ai\",\"used_addons\":[],\"is_new\":false},\"28226959\":{\"name\":\"Lunch Order Form Template\",\"slug\":\"lunch-order-form\",\"description\":\"Collect meal preferences and details from individuals placing lunch orders, ensuring a seamless and delicious dining experience.\",\"id\":28226959,\"released\":\"2023-11-18 10:41:14\",\"categories\":[\"Business\",\"Business Operations\",\"Order Form\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/lunch-order-form\\/\",\"icon\":false,\"key\":\"lunch-order\",\"used_addons\":[\"Stripe\"],\"is_new\":false},\"28227216\":{\"name\":\"Minor Travel Consent Form Template\",\"slug\":\"minor-travel-consent-form\",\"description\":\"Gather necessary information from parents or legal guardians granting consent for a minor\'s travel.\",\"id\":28227216,\"released\":\"2023-11-18 10:47:18\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/minor-travel-consent-form\\/\",\"icon\":false,\"key\":\"minor-travel-consent\",\"used_addons\":[],\"is_new\":false},\"28217745\":{\"name\":\"Online Pledge Form Template\",\"slug\":\"online-pledge-form\",\"description\":\"Use our online pledge form template to make a donation with very little effort.\",\"id\":28217745,\"released\":\"2023-08-17 13:13:16\",\"categories\":[\"Business\",\"Payment\",\"Signature\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/online-pledge-form\\/\",\"icon\":false,\"key\":\"online-pledge\",\"used_addons\":[\"Digital Signatures\",\"Stripe\"],\"is_new\":false},\"28228498\":{\"name\":\"Social Media Photo Release Form Template\",\"slug\":\"social-media-photo-release-form\",\"description\":\"Gather essential permissions and details from individuals granting consent for the use of their photos on social media platforms.\",\"id\":28228498,\"released\":\"2023-11-11 03:54:00\",\"categories\":[\"Basic\",\"Business Operations\",\"Consent\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/social-media-photo-release-form\\/\",\"icon\":false,\"key\":\"social-media-photo-release\",\"used_addons\":[],\"is_new\":false},\"28302738\":{\"name\":\"New Patient Registration Form Template\",\"slug\":\"new-patient-registration-form\",\"description\":\"Allow patients to efficiently provide the essential information needed for their healthcare experience.\",\"id\":28302738,\"released\":\"2024-11-18 11:04:11\",\"categories\":[\"Basic\",\"Business Operations\",\"Datepicker\",\"Health and Wellness\",\"Multi-Page\",\"Registration and Signup\",\"Repeater Field\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/new-patient-registration-form\\/\",\"icon\":false,\"key\":\"new-patient-registration\",\"used_addons\":[],\"is_new\":false},\"28104595\":{\"name\":\"Online Contact Us Form Template\",\"slug\":\"online-contact-us-form\",\"description\":\"Simple and easy way to get information from your customers.\",\"id\":28104595,\"released\":\"2022-03-07 14:07:46\",\"categories\":[\"Business\",\"Contact\",\"Customer Service\",\"Feedback\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/online-contact-us-form\\/\",\"icon\":false,\"key\":\"online-contact-us\",\"used_addons\":[],\"is_new\":false},\"28219028\":{\"name\":\"Change Order Form Template\",\"slug\":\"change-order-form\",\"description\":\"Request a project change using this order form.\",\"id\":28219028,\"released\":\"2023-08-23 13:53:07\",\"categories\":[\"Basic\",\"Business Operations\",\"Order Form\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/change-order-form\\/\",\"icon\":false,\"key\":\"change-order\",\"used_addons\":[],\"is_new\":false},\"28311445\":{\"name\":\"Petition Form Template\",\"slug\":\"petition-form\",\"description\":\"Easily allow users to collect signatures, gather supporter information, and track responses efficiently.\",\"id\":28311445,\"released\":\"2025-02-06 13:48:09\",\"categories\":[\"Business\",\"File Upload\",\"Nonprofit\",\"Request\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/petition-form\\/\",\"icon\":false,\"key\":\"petition\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":true},\"28018839\":{\"name\":\"Medical Release Form Template\",\"slug\":\"medical-release-form\",\"description\":\"A simple medical release platform that also allows you to collect basic information as well.\",\"id\":28018839,\"released\":\"2020-09-17 10:47:21\",\"categories\":[\"Business\",\"Health and Wellness\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/medical-release-form\\/\",\"icon\":false,\"key\":\"medical-release\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28221336\":{\"name\":\"Medical Referral Form Template\",\"slug\":\"medical-referral-form\",\"description\":\"Collect crucial medical details from patients requiring specialized care.\",\"id\":28221336,\"released\":\"2023-09-01 15:17:23\",\"categories\":[\"Basic\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/medical-referral-form\\/\",\"icon\":false,\"key\":\"medical-referral\",\"used_addons\":[],\"is_new\":false},\"28223640\":{\"name\":\"Stripe Payment Form Template\",\"slug\":\"stripe-payment-form\",\"description\":\"Effortlessly gather payment information from customers using our secure Stripe payment form. Simplify the payment process and ensure a seamless transaction experience.\",\"id\":28223640,\"released\":\"2023-09-12 15:53:15\",\"categories\":[\"Business Operations\",\"free\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/stripe-payment-form\\/\",\"icon\":false,\"key\":\"stripe-payment\",\"used_addons\":[],\"is_new\":false},\"20905880\":{\"name\":\"Family Reunion Registration Form Template\",\"slug\":\"family-reunion-registration-form\",\"description\":\"Register each family member for a reunion.\",\"id\":20905880,\"released\":\"2019-11-24 23:00:20\",\"categories\":[\"Event Planning\",\"free\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/family-reunion-registration-form\\/\",\"icon\":false,\"key\":\"family-reunion-registration\",\"used_addons\":[],\"is_new\":false},\"20905881\":{\"name\":\"Church Membership Form Template\",\"slug\":\"church-membership-form\",\"description\":\"Easily allow new church members to apply for a membership with this form.\",\"id\":20905881,\"released\":\"2019-11-24 23:00:02\",\"categories\":[\"Application\",\"Basic\",\"Nonprofit\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/church-membership-form\\/\",\"icon\":false,\"key\":\"church-membership\",\"used_addons\":[],\"is_new\":false},\"28269210\":{\"name\":\"Class Feedback Survey Template\",\"slug\":\"class-feedback-survey-form\",\"description\":\"Collect valuable feedback from participants with this class feedback survey template to understand their learning experience and improve course offerings for enhanced student satisfaction.\",\"id\":28269210,\"released\":\"2024-03-22 15:24:10\",\"categories\":[\"Basic\",\"Education\",\"Feedback\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/class-feedback-survey-form\\/\",\"icon\":false,\"key\":\"class-feedback-survey\",\"used_addons\":[],\"is_new\":false},\"28036251\":{\"name\":\"Super Bowl Party RSVP Form Template\",\"slug\":\"super-bowl-party-rsvp-form\",\"description\":\"Planning a Super Bowl party? Make the biggest football game of the year EPIC with our Super Bowl Party RSVP form template!\",\"id\":28036251,\"released\":\"2020-12-18 12:56:26\",\"categories\":[\"Event Planning\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/super-bowl-party-rsvp-form\\/\",\"icon\":false,\"key\":\"super-bowl-party-rsvp\",\"used_addons\":[],\"is_new\":false},\"20909980\":{\"name\":\"Work Order Request Form\",\"slug\":\"work-order-request-form\",\"description\":\"A powerful form for keeping track of work orders and requests for maintenance from employees or tenants.\",\"id\":20909980,\"released\":\"2019-11-24 23:00:02\",\"categories\":[\"Basic\",\"Customer Service\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/work-order-request-form\\/\",\"icon\":false,\"key\":\"work-order-request\",\"used_addons\":[],\"is_new\":false},\"28194205\":{\"name\":\"AI Auto-Mate Form Template\",\"slug\":\"ai-auto-mate-form\",\"description\":\"This AI Auto-Mate Auto finder Form Template utilizes AI to help you find your perfect car.\",\"id\":28194205,\"released\":\"2023-04-27 17:48:25\",\"categories\":[\"AI\",\"Business\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/ai-auto-mate-form\\/\",\"icon\":false,\"key\":\"ai-auto-mate\",\"used_addons\":[],\"is_new\":false},\"28227997\":{\"name\":\"Drug Test Results Form Template\",\"slug\":\"drug-test-results-form\",\"description\":\"Streamline the process of receiving, processing, and securely storing drug test results for laboratories and healthcare facilities.\",\"id\":28227997,\"released\":\"2023-10-02 13:56:13\",\"categories\":[\"Business\",\"File Upload\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/drug-test-results-form\\/\",\"icon\":false,\"key\":\"drug-test-results\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28226974\":{\"name\":\"Opt-Out Form Template\",\"slug\":\"opt-out-form\",\"description\":\"Provide customers with a convenient way to opt out of standard procedures.\",\"id\":28226974,\"released\":\"2023-11-18 10:44:27\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/opt-out-form\\/\",\"icon\":false,\"key\":\"opt-out\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28227230\":{\"name\":\"Florida Living Will Form Template\",\"slug\":\"florida-living-will-form\",\"description\":\"Collect essential details from individuals creating a living will in compliance with Florida state laws.\",\"id\":28227230,\"released\":\"2023-11-18 10:50:21\",\"categories\":[\"Business\",\"Health and Wellness\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/florida-living-will-form\\/\",\"icon\":false,\"key\":\"florida-living-will\",\"used_addons\":[],\"is_new\":false},\"28192671\":{\"name\":\"Employee Performance Survey Template\",\"slug\":\"employee-performance-survey-form\",\"description\":\"A good way to keep track on how well each employee is doing.\",\"id\":28192671,\"released\":\"2023-04-19 18:39:59\",\"categories\":[\"Business\",\"Business Operations\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employee-performance-survey-form\\/\",\"icon\":false,\"key\":\"employee-performance-survey\",\"used_addons\":[],\"is_new\":false},\"28056480\":{\"name\":\"Retreat Registration Form Template\",\"slug\":\"retreat-registration-form\",\"description\":\"This retreat registration form is great for booking attendees for a getaway.\",\"id\":28056480,\"released\":\"2021-08-02 15:55:08\",\"categories\":[\"Event Planning\",\"Personal\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/retreat-registration-form\\/\",\"icon\":false,\"key\":\"retreat-registration\",\"used_addons\":[],\"is_new\":false},\"28036512\":{\"name\":\"Online Proposal Form Template\",\"slug\":\"online-proposal-form\",\"description\":\"Use this online proposal form, to gather the information needed to make decisions regarding projects that come your way.\",\"id\":28036512,\"released\":\"2020-12-18 13:12:05\",\"categories\":[\"Business Operations\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/online-proposal-form\\/\",\"icon\":false,\"key\":\"online-proposal\",\"used_addons\":[],\"is_new\":false},\"28036513\":{\"name\":\"Lecture Notes Form Template\",\"slug\":\"lecture-notes-form\",\"description\":\"Use the simple form to organize your lecture notes next time you come to class.\",\"id\":28036513,\"released\":\"2020-12-18 13:18:12\",\"categories\":[\"Education\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/lecture-notes-form\\/\",\"icon\":false,\"key\":\"lecture-notes\",\"used_addons\":[],\"is_new\":false},\"28305313\":{\"name\":\"Chain of Custody Form Template\",\"slug\":\"chain-of-custody-form\",\"description\":\"A Chain of Custody Form documents the handling and transfer of evidence or materials. This form ensures accountability, maintains integrity, and provides a clear record for legal and regulatory purposes.\",\"id\":28305313,\"released\":\"2024-12-06 11:00:05\",\"categories\":[\"Business\",\"Business Operations\",\"Consent\",\"Datepicker\",\"Elite\",\"Request\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/chain-of-custody-form\\/\",\"icon\":false,\"key\":\"chain-of-custody\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28311457\":{\"name\":\"New Vendor Form Template\",\"slug\":\"new-vendor-form\",\"description\":\"Streamline your vendor onboarding process with this New Vendor Form Template, designed to collect essential business details, contact information, and agreements efficiently.\",\"id\":28311457,\"released\":\"2025-02-06 14:48:07\",\"categories\":[\"Basic\",\"Business Operations\",\"Repeater Field\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/new-vendor-form\\/\",\"icon\":false,\"key\":\"new-vendor\",\"used_addons\":[],\"is_new\":true},\"28036514\":{\"name\":\"Fitness Interest Form Template\",\"slug\":\"fitness-interest-form\",\"description\":\"Collect information about your next client with this fitness interest form.\",\"id\":28036514,\"released\":\"2020-12-18 13:25:25\",\"categories\":[\"free\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/fitness-interest-form\\/\",\"icon\":false,\"key\":\"fitness-interest\",\"used_addons\":[],\"is_new\":false},\"28029860\":{\"name\":\"Non Profit Donation Form Template\",\"slug\":\"non-profit-donation-form\",\"description\":\"This donation form template will help nonprofits or charities easily collect donor information & raise money.\",\"id\":28029860,\"released\":\"2020-12-01 00:00:38\",\"categories\":[\"Business\",\"Nonprofit\",\"Payment\",\"PayPal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/non-profit-donation-form\\/\",\"icon\":false,\"key\":\"non-profit-donation\",\"used_addons\":[\"PayPal Standard\"],\"is_new\":false},\"28036516\":{\"name\":\"Suggestion Form Template\",\"slug\":\"suggestion-form-form\",\"description\":\"Get valuable feedback from your customers with this suggestion form.\",\"id\":28036516,\"released\":\"2020-12-18 14:00:06\",\"categories\":[\"Feedback\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/suggestion-form-form\\/\",\"icon\":false,\"key\":\"suggestion-form\",\"used_addons\":[],\"is_new\":false},\"28305316\":{\"name\":\"Raffle Entry Form Template\",\"slug\":\"raffle-entry-form\",\"description\":\"The Raffle entry form template provides a convenient way to create and manage tickets for fundraising events. This template ensures clear identification of each ticket, helping organizers track sales and manage draws effectively.\",\"id\":28305316,\"released\":\"2024-12-06 11:48:36\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\",\"Elite\",\"Event Planning\",\"Marketing\",\"Order Form\",\"PayPal\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/raffle-entry-form\\/\",\"icon\":false,\"key\":\"raffle-entry\",\"used_addons\":[\"PayPal Standard\",\"Stripe\"],\"is_new\":false},\"28029862\":{\"name\":\"Silent Auction Donation Form Template\",\"slug\":\"auction-donation-form\",\"description\":\"Collect donated items and bids for your fundraiser.\",\"id\":28029862,\"released\":\"2020-12-01 00:01:21\",\"categories\":[\"Basic\",\"Nonprofit\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/auction-donation-form\\/\",\"icon\":false,\"key\":\"auction-donation\",\"used_addons\":[],\"is_new\":false},\"28228006\":{\"name\":\"Facial Consent Form Template\",\"slug\":\"facial-consent-form\",\"description\":\"Gather essential information from individuals granting consent for facial treatments or procedures, ensuring a safe and informed experience.\",\"id\":28228006,\"released\":\"2023-10-02 14:43:57\",\"categories\":[\"Business\",\"Customer Service\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/facial-consent-form\\/\",\"icon\":false,\"key\":\"facial-consent\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28311463\":{\"name\":\"Customer Information Form Template\",\"slug\":\"customer-information-form\",\"description\":\"Streamline customer data collection with this Customer Information Form Template.\",\"id\":28311463,\"released\":\"2025-02-06 15:02:33\",\"categories\":[\"Basic\",\"Business Operations\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/customer-information-form\\/\",\"icon\":false,\"key\":\"customer-information\",\"used_addons\":[],\"is_new\":true},\"28142760\":{\"name\":\"Cake Order Form Template\",\"slug\":\"cake-order-form\",\"description\":\"Want to sell more cakes online? Use the cake order form to view incoming cake orders instantly.\",\"id\":28142760,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Business\",\"Business Operations\",\"Conversational Forms\",\"Geolocation\",\"Order Form\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/cake-order-form\\/\",\"icon\":false,\"key\":\"cake-order\",\"used_addons\":[\"Conversational Forms\",\"Geolocation\"],\"is_new\":false},\"28029609\":{\"name\":\"In-Kind Donation Form Template\",\"slug\":\"in-kind-donation-form\",\"description\":\"This simple in-kind template will make it easier to collect non-cash donations for your organization.\",\"id\":28029609,\"released\":\"2020-12-01 00:01:13\",\"categories\":[\"Nonprofit\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/in-kind-donation-form\\/\",\"icon\":false,\"key\":\"in-kind-donation\",\"used_addons\":[],\"is_new\":false},\"28029611\":{\"name\":\"Donation Form Template\",\"slug\":\"donation-form\",\"description\":\"Nonprofits can collect donations the easy way. It is perfect for organizations of all types and sizes!\",\"id\":28029611,\"released\":\"2020-12-01 00:01:43\",\"categories\":[\"Nonprofit\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/donation-form\\/\",\"icon\":false,\"key\":\"donation\",\"used_addons\":[],\"is_new\":false},\"28311468\":{\"name\":\"Insurance Waiver Form Template\",\"slug\":\"insurance-waiver-form\",\"description\":\"Effortlessly collect and manage insurance waiver requests ensuring a seamless user experience.\",\"id\":28311468,\"released\":\"2025-02-06 15:49:27\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/insurance-waiver-form\\/\",\"icon\":false,\"key\":\"insurance-waiver\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":true},\"28029869\":{\"name\":\"Employee Evaluation Form Template\",\"slug\":\"employee-evaluation-form\",\"description\":\"An employee evaluation form template can make human resources easy. This template will help your team fly through performance reviews!\",\"id\":28029869,\"released\":\"2021-09-20 10:35:29\",\"categories\":[\"Business\",\"Business Operations\",\"Feedback\",\"Signature\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employee-evaluation-form\\/\",\"icon\":false,\"key\":\"employee-evaluation\",\"used_addons\":[],\"is_new\":false},\"20908976\":{\"name\":\"IT Asset Form Template\",\"slug\":\"it-asset-management-form\",\"description\":\"Use this form for hardware inventory and asset management to keep track of valuable equipment.\",\"id\":20908976,\"released\":\"2020-01-06 09:33:18\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/it-asset-management-form\\/\",\"icon\":false,\"key\":\"it-asset-management\",\"used_addons\":[],\"is_new\":false},\"28218801\":{\"name\":\"PTO Request Form Template\",\"slug\":\"pto-request-form\",\"description\":\"A simple form allowing team members to request paid time off\",\"id\":28218801,\"released\":\"2023-08-22 15:49:50\",\"categories\":[\"Basic\",\"Business Operations\",\"Request\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/pto-request-form\\/\",\"icon\":false,\"key\":\"pto-request\",\"used_addons\":[],\"is_new\":false},\"28307633\":{\"name\":\"Construction Loan Calculator Form\",\"slug\":\"construction-loan-calculator-form\",\"description\":\"Utilize this calculator to swiftly assess the type of loan you may be eligible for and estimate the monthly payments for an initial interest-only loan.\",\"id\":28307633,\"released\":\"2025-01-06 12:35:34\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\",\"Elite\",\"Finance\",\"Lead\",\"Real Estate\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/construction-loan-calculator-form\\/\",\"icon\":false,\"key\":\"construction-loan-calculator\",\"used_addons\":[],\"is_new\":false},\"28311473\":{\"name\":\"GDPR Form Template\",\"slug\":\"gdpr-form\",\"description\":\"Ensure GDPR compliance by collecting user consent and managing data requests effortlessly.\",\"id\":28311473,\"released\":\"2025-02-06 16:01:13\",\"categories\":[\"Business Operations\",\"Consent\",\"Customer Service\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/gdpr-form\\/\",\"icon\":false,\"key\":\"gdpr\",\"used_addons\":[],\"is_new\":true},\"20908978\":{\"name\":\"Gift Card Order Form Template\",\"slug\":\"gift-card-order-form\",\"description\":\"Sell gift cards to your customers to broaden your customer base.\",\"id\":20908978,\"released\":\"2019-11-24 23:00:42\",\"categories\":[\"Business\",\"Marketing\",\"Order Form\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/gift-card-order-form\\/\",\"icon\":false,\"key\":\"gift-card-order\",\"used_addons\":[\"Stripe\"],\"is_new\":false},\"28219314\":{\"name\":\"Statistical Significance Calculator\",\"slug\":\"statistical-significance-form\",\"description\":\"Calculate the statistical significance and P-value with this calculator.\",\"id\":28219314,\"released\":\"2023-11-11 14:59:07\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/statistical-significance-form\\/\",\"icon\":false,\"key\":\"statistical-significance\",\"used_addons\":[],\"is_new\":false},\"20908979\":{\"name\":\"Testimonial Form Template\",\"slug\":\"testimonial-form\",\"description\":\"Collect and share customer testimonials.\",\"id\":20908979,\"released\":\"2020-01-06 09:52:47\",\"categories\":[\"Marketing\",\"Personal\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/testimonial-form\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2020\\/01\\/testimonial-form-template.jpg\",650,288,false],\"key\":\"testimonial\",\"used_addons\":[\"Surveys and Polls\"],\"is_new\":false},\"28232115\":{\"name\":\"Are You a True Swiftie Quiz Template\",\"slug\":\"are-you-a-true-swiftie-quiz-form\",\"description\":\"Discover whether or not you\'re a true Swiftie with this quiz designed to test your understanding of Taylor Swift.\",\"id\":28232115,\"released\":\"2023-11-07 15:28:12\",\"categories\":[\"Business\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/are-you-a-true-swiftie-quiz-form\\/\",\"icon\":false,\"key\":\"are-you-a-true-swiftie-quiz\",\"used_addons\":[],\"is_new\":false},\"20908980\":{\"name\":\"Event Feedback Template\",\"slug\":\"event-feedback-form\",\"description\":\"Get the opinions of event attendees so you can grow your business.\",\"id\":20908980,\"released\":\"2019-11-24 23:00:08\",\"categories\":[\"Feedback\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/event-feedback-form\\/\",\"icon\":false,\"key\":\"event-feedback\",\"used_addons\":[],\"is_new\":false},\"20909236\":{\"name\":\"Debt to Income Ratio Calculator Form Template\",\"slug\":\"debt-to-income-ratio-calculator-form\",\"description\":\"Check for a healthy debt to income ratio before starting a loan.\",\"id\":20909236,\"released\":\"2019-11-24 23:00:10\",\"categories\":[\"Calculator\",\"Finance\",\"Personal\",\"Real Estate\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/debt-to-income-ratio-calculator-form\\/\",\"icon\":false,\"key\":\"debt-to-income-ratio-calculator\",\"used_addons\":[],\"is_new\":false},\"28307636\":{\"name\":\"Home Inspection Request Form\",\"slug\":\"home-inspection-request-form\",\"description\":\"This form template is designed to streamline the process of requesting a home inspection. Ideal for real estate agents, home buyers, and sellers, this template ensures a comprehensive and organized collection of necessary information.\",\"id\":28307636,\"released\":\"2025-01-06 14:36:46\",\"categories\":[\"Application\",\"Business\",\"Business Operations\",\"Datepicker\",\"Elite\",\"Geolocation\",\"Lead\",\"Nonprofit\",\"Real Estate\",\"Signature\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/home-inspection-request-form\\/\",\"icon\":false,\"key\":\"home-inspection-request\",\"used_addons\":[\"Datepicker Options\"],\"is_new\":false},\"20908981\":{\"name\":\"Survey Form Template\",\"slug\":\"survey-form\",\"description\":\"Collect feedback from your customers, employees, or other members of your community using an online survey form.\",\"id\":20908981,\"released\":\"2021-09-16 23:33:58\",\"categories\":[\"Business\",\"Feedback\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/survey-form\\/\",\"icon\":false,\"key\":\"survey\",\"used_addons\":[\"Surveys and Polls\"],\"is_new\":false},\"20909237\":{\"name\":\"Life Insurance Calculator Template\",\"slug\":\"life-insurance-calculator-form\",\"description\":\"Offer accurate life insurance estimates with this calculator.\",\"id\":20909237,\"released\":\"2019-11-24 23:00:21\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/life-insurance-calculator-form\\/\",\"icon\":false,\"key\":\"life-insurance-calculator\",\"used_addons\":[],\"is_new\":false},\"28015029\":{\"name\":\"College Application Form Template\",\"slug\":\"college-application-form\",\"description\":\"A great an easy way to collect applicant details for college admissions.\",\"id\":28015029,\"released\":\"2020-08-13 11:37:03\",\"categories\":[\"Application\",\"Business\",\"Education\",\"File Upload\",\"Multi-Page\",\"Repeater Field\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/college-application-form\\/\",\"icon\":false,\"key\":\"college-application\",\"used_addons\":[\"Locations\"],\"is_new\":false},\"20909238\":{\"name\":\"ROI Calculator Form Template\",\"slug\":\"roi-calculator-form\",\"description\":\"Estimate the profit or loss on an investment as a simple percentage.\",\"id\":20909238,\"released\":\"2019-11-24 23:00:47\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/roi-calculator-form\\/\",\"icon\":false,\"key\":\"roi-calculator\",\"used_addons\":[],\"is_new\":false},\"28015030\":{\"name\":\"High School Calculator Template\",\"slug\":\"high-school-calculator-form\",\"description\":\"A quick and easy form that can calculate a GPA in a matter of moments.\",\"id\":28015030,\"released\":\"2020-09-28 08:10:52\",\"categories\":[\"Business\",\"Calculator\",\"Education\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/high-school-calculator-form\\/\",\"icon\":false,\"key\":\"high-school-calculator\",\"used_addons\":[],\"is_new\":false},\"20909239\":{\"name\":\"Savings and Investment Calculator Form Template\",\"slug\":\"savings-and-investment-calculator-form\",\"description\":\"Estimate profit from an investment or savings account.\",\"id\":20909239,\"released\":\"2019-11-24 23:00:37\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/savings-and-investment-calculator-form\\/\",\"icon\":false,\"key\":\"savings-and-investment-calculator\",\"used_addons\":[],\"is_new\":false},\"28015031\":{\"name\":\"Event Planner Form Template\",\"slug\":\"event-planner-form\",\"description\":\"A simple form used to collect data from an event. Useful for the planning and simple processing of data.\",\"id\":28015031,\"released\":\"2020-08-07 11:09:13\",\"categories\":[\"Basic\",\"Event Planning\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/event-planner-form\\/\",\"icon\":false,\"key\":\"event-planner\",\"used_addons\":[],\"is_new\":false},\"28015032\":{\"name\":\"Expense Reimbursement Form Template\",\"slug\":\"reimbursement-form\",\"description\":\"A form that can allow you to easily gather expense reimbursements in any setting.\",\"id\":28015032,\"released\":\"2020-08-07 11:20:50\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/reimbursement-form\\/\",\"icon\":false,\"key\":\"reimbursement\",\"used_addons\":[],\"is_new\":false},\"28228024\":{\"name\":\"Babysitter Application Form Template\",\"slug\":\"babysitter-application-form\",\"description\":\"Collect important details from prospective babysitters interested in providing childcare services, helping you find the perfect caregiver for your family.\",\"id\":28228024,\"released\":\"2023-11-18 03:46:00\",\"categories\":[\"Basic\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/babysitter-application-form\\/\",\"icon\":false,\"key\":\"babysitter-application\",\"used_addons\":[],\"is_new\":false},\"20908986\":{\"name\":\"Newsletter Signup Form Template\",\"slug\":\"newsletter-signup-form\",\"description\":\"Build your email list and ramp up your email marketing efforts with a newsletter signup form.\",\"id\":20908986,\"released\":\"2019-11-24 23:00:52\",\"categories\":[\"Marketing\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/newsletter-signup-form\\/\",\"icon\":false,\"key\":\"newsletter-signup\",\"used_addons\":[],\"is_new\":false},\"28224188\":{\"name\":\"Customer Acknowledgement Form Template\",\"slug\":\"customer-acknowledgement-form\",\"description\":\"Utilize our customer acknowledgement form template to capture a client\'s endorsement.\",\"id\":28224188,\"released\":\"2023-11-18 03:55:00\",\"categories\":[\"Business\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/customer-acknowledgement-form\\/\",\"icon\":false,\"key\":\"customer-acknowledgement\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28232124\":{\"name\":\"Social Media Release Form Template\",\"slug\":\"social-media-release-form\",\"description\":\"Gather essential permissions and details from individuals granting consent for the use of their content on social media platforms.\",\"id\":28232124,\"released\":\"2023-10-19 12:26:28\",\"categories\":[\"Business\",\"Business Operations\",\"File Upload\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/social-media-release-form\\/\",\"icon\":false,\"key\":\"social-media-release\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"20908990\":{\"name\":\"Maintenance Request Form Template\",\"slug\":\"maintenance-request-form\",\"description\":\"Streamline the process of dealing with maintenance requests.\",\"id\":20908990,\"released\":\"2019-11-24 23:00:29\",\"categories\":[\"Basic\",\"Customer Service\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/maintenance-request-form\\/\",\"icon\":false,\"key\":\"maintenance-request\",\"used_addons\":[],\"is_new\":false},\"28271295\":{\"name\":\"Skincare Product Survey Template\",\"slug\":\"skincare-product-survey-form\",\"description\":\"Gather valuable insights from participants with this skincare product survey template to understand preferences and trends in skincare routines.\",\"id\":28271295,\"released\":\"2024-04-02 13:38:01\",\"categories\":[\"Basic\",\"Feedback\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/skincare-product-survey-form\\/\",\"icon\":false,\"key\":\"skincare-product-survey\",\"used_addons\":[],\"is_new\":false},\"20908992\":{\"name\":\"Summer Camp Registration Form Template\",\"slug\":\"summer-camp-registration-form\",\"description\":\"An easier way for parents to register their kids for summer camp\",\"id\":20908992,\"released\":\"2019-11-24 23:00:11\",\"categories\":[\"Application\",\"Business\",\"Business Operations\",\"Multi-Page\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/summer-camp-registration-form\\/\",\"icon\":false,\"key\":\"summer-camp-registration\",\"used_addons\":[],\"is_new\":false},\"28150464\":{\"name\":\"Informed Consent Form Template\",\"slug\":\"informed-consent-form\",\"description\":\"Get consent from an individual to participate in a study with this Informed consent form example.\",\"id\":28150464,\"released\":\"2022-11-06 16:42:00\",\"categories\":[\"Business\",\"Education\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/informed-consent-form\\/\",\"icon\":false,\"key\":\"informed-consent\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28232128\":{\"name\":\"Direction of Pay Form Template\",\"slug\":\"direction-of-pay-form\",\"description\":\"Obtain vital information from individuals seeking a direction of pay to ensure swift and secure payment processing.\",\"id\":28232128,\"released\":\"2023-10-19 12:54:57\",\"categories\":[\"Business\",\"Business Operations\",\"Payment\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/direction-of-pay-form\\/\",\"icon\":false,\"key\":\"direction-of-pay\",\"used_addons\":[],\"is_new\":false},\"28173761\":{\"name\":\"Player Profile Template\",\"slug\":\"player-profile-form\",\"description\":\"Collect information of players to play in your team with the Player Profile template.\",\"id\":28173761,\"released\":\"2023-01-24 15:42:33\",\"categories\":[\"Business\",\"Conversational Forms\",\"Education\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/player-profile-form\\/\",\"icon\":false,\"key\":\"player-profile\",\"used_addons\":[\"Conversational Forms\"],\"is_new\":false},\"20908995\":{\"name\":\"Time Sheet Template\",\"slug\":\"time-sheet-form\",\"description\":\"An effective way of keeping track of employee hours each week.\",\"id\":20908995,\"released\":\"2019-11-24 23:00:11\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/time-sheet-form\\/\",\"icon\":false,\"key\":\"time-sheet\",\"used_addons\":[],\"is_new\":false},\"28053955\":{\"name\":\"Student Budget Calculator Template\",\"slug\":\"student-budget-calculator-form\",\"description\":\"This handy student budget calculator will help students figure out expenses and income while attending a university or college.\",\"id\":28053955,\"released\":\"2021-08-20 17:16:48\",\"categories\":[\"Business\",\"Calculator\",\"Education\",\"Finance\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/student-budget-calculator-form\\/\",\"icon\":false,\"key\":\"student-budget-calculator\",\"used_addons\":[],\"is_new\":false},\"28224195\":{\"name\":\"Simple Proxy Form Template\",\"slug\":\"simple-proxy-form\",\"description\":\"Use our simple proxy form to designate someone authorized to act on your behalf.\",\"id\":28224195,\"released\":\"2023-11-18 03:57:00\",\"categories\":[\"Basic\",\"Business Operations\",\"Contact\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/simple-proxy-form\\/\",\"icon\":false,\"key\":\"simple-proxy\",\"used_addons\":[],\"is_new\":false},\"28218820\":{\"name\":\"Margin of Error Calculator Template\",\"slug\":\"margin-of-error-calculator-form\",\"description\":\"Use this calculator to find the margin of error.\",\"id\":28218820,\"released\":\"2023-11-11 03:59:00\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/margin-of-error-calculator-form\\/\",\"icon\":false,\"key\":\"margin-of-error-calculator\",\"used_addons\":[],\"is_new\":false},\"28220100\":{\"name\":\"Shelf Life Calculator\",\"slug\":\"shelf-life-calculator-form\",\"description\":\"Calculate the shelf life of any food product with this calculator.\",\"id\":28220100,\"released\":\"2023-08-28 13:29:33\",\"categories\":[\"Business\",\"Calculator\",\"Datepicker\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/shelf-life-calculator-form\\/\",\"icon\":false,\"key\":\"shelf-life-calculator\",\"used_addons\":[\"Datepicker Options\"],\"is_new\":false},\"28032452\":{\"name\":\"Webinar Registration Form Template\",\"slug\":\"webinar-registration-form\",\"description\":\"A webinar registration form that can be connected to Zoom via Zapier.\",\"id\":28032452,\"released\":\"2020-12-01 13:20:46\",\"categories\":[\"Business\",\"Business Operations\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/webinar-registration-form\\/\",\"icon\":false,\"key\":\"webinar-registration\",\"used_addons\":[],\"is_new\":false},\"20908997\":{\"name\":\"Home Buyer Feedback Form Template\",\"slug\":\"home-buyer-feedback-form\",\"description\":\"Ask recent home buyers about their experiences during the home buying process.\",\"id\":20908997,\"released\":\"2019-11-24 23:00:36\",\"categories\":[\"Basic\",\"Feedback\",\"Real Estate\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/home-buyer-feedback-form\\/\",\"icon\":false,\"key\":\"home-buyer-feedback\",\"used_addons\":[],\"is_new\":false},\"28307653\":{\"name\":\"DoorDash Weekly Earnings Calculator Form\",\"slug\":\"doordash-weekly-earnings-calculator-form\",\"description\":\"This template is crafted to help DoorDash drivers efficiently track and calculate their weekly earnings. It features fields for inputting delivery details, tips received, mileage, and other relevant expenses.\",\"id\":28307653,\"released\":\"2025-01-06 15:55:34\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\",\"Elite\",\"Finance\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/doordash-weekly-earnings-calculator-form\\/\",\"icon\":false,\"key\":\"doordash-weekly-earnings-calculator\",\"used_addons\":[],\"is_new\":false},\"20908998\":{\"name\":\"Parental Consent Template\",\"slug\":\"parental-consent-form\",\"description\":\"Document parental permission before going on a field trip.\",\"id\":20908998,\"released\":\"2019-11-24 23:00:47\",\"categories\":[\"Education\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/parental-consent-form\\/\",\"icon\":false,\"key\":\"parental-consent\",\"used_addons\":[],\"is_new\":false},\"20908999\":{\"name\":\"Exercise Log Form Template\",\"slug\":\"exercise-log-form\",\"description\":\"Organize and monitor client workouts.\",\"id\":20908999,\"released\":\"2020-01-06 09:43:02\",\"categories\":[\"Basic\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/exercise-log-form\\/\",\"icon\":false,\"key\":\"exercise-log\",\"used_addons\":[],\"is_new\":false},\"28150471\":{\"name\":\"Membership Form Template\",\"slug\":\"membership-form\",\"description\":\"Gather personal information from potential members along with membership fees with this form template.\",\"id\":28150471,\"released\":\"2022-11-06 16:44:00\",\"categories\":[\"Business\",\"Geolocation\",\"PayPal\",\"Registration and Signup\",\"Signature\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/membership-form\\/\",\"icon\":false,\"key\":\"membership\",\"used_addons\":[],\"is_new\":false},\"28224199\":{\"name\":\"Girlfriend Application Form Template\",\"slug\":\"girlfriend-application-form\",\"description\":\"Capture information from individuals interested in becoming your girlfriend.\",\"id\":28224199,\"released\":\"2023-11-18 04:00:00\",\"categories\":[\"Application\",\"Basic\",\"Entertainment\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/girlfriend-application-form\\/\",\"icon\":false,\"key\":\"girlfriend-application\",\"used_addons\":[],\"is_new\":false},\"28052681\":{\"name\":\"Newspaper Subscription Form Template\",\"slug\":\"newspaper-subscription-form\",\"description\":\"Get out all pertinent information for newspaper subscriptions submitted electronically through your website using PayPal.\",\"id\":28052681,\"released\":\"2021-08-03 16:06:55\",\"categories\":[\"Payment\",\"PayPal\",\"Personal\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/newspaper-subscription-form\\/\",\"icon\":false,\"key\":\"newspaper-subscription\",\"used_addons\":[\"PayPal Standard\"],\"is_new\":false},\"28150475\":{\"name\":\"Credit Card Authorization Form Template\",\"slug\":\"credit-card-authorization-form\",\"description\":\"Automatically arrange recurring payments between the cardholder and merchant with this credit card authorization form template.\",\"id\":28150475,\"released\":\"2022-11-06 18:47:00\",\"categories\":[\"Business\",\"Business Operations\",\"Geolocation\",\"Payment\",\"Signature\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/credit-card-authorization-form\\/\",\"icon\":false,\"key\":\"credit-card-authorization\",\"used_addons\":[],\"is_new\":false},\"28194252\":{\"name\":\"Bio Writing Assistant Form Template\",\"slug\":\"bio-writing-assistant-form\",\"description\":\"Use this writing assistant to create a unique super-hero themed bio personalized to you.\",\"id\":28194252,\"released\":\"2023-04-27 18:24:39\",\"categories\":[\"AI\",\"Business\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/bio-writing-assistant-form\\/\",\"icon\":false,\"key\":\"bio-writing-assistant\",\"used_addons\":[],\"is_new\":false},\"28232140\":{\"name\":\"Pregnancy Verification Form Template\",\"slug\":\"pregnancy-verification-form\",\"description\":\"Obtain information from healthcare professionals for the purpose of pregnancy verification.\",\"id\":28232140,\"released\":\"2023-11-11 05:29:00\",\"categories\":[\"Business\",\"Health and Wellness\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/pregnancy-verification-form\\/\",\"icon\":false,\"key\":\"pregnancy-verification\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28052685\":{\"name\":\"Performance Improvement Plan Form Template\",\"slug\":\"performanceimprovementplan-form\",\"description\":\"Get an easier way to review and employee performance and make a plan for improvement.\",\"id\":28052685,\"released\":\"2021-04-21 11:29:02\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/performanceimprovementplan-form\\/\",\"icon\":false,\"key\":\"performanceimprovementplan\",\"used_addons\":[],\"is_new\":false},\"28058573\":{\"name\":\"Partnership Agreement Form Template\",\"slug\":\"partnership-agreement-form\",\"description\":\"This form is great for recording an agreement with a partner.\",\"id\":28058573,\"released\":\"2021-07-26 15:35:46\",\"categories\":[\"Business\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/partnership-agreement-form\\/\",\"icon\":false,\"key\":\"partnership-agreement\",\"used_addons\":[],\"is_new\":false},\"28194254\":{\"name\":\"Product Name Generator Form Template\",\"slug\":\"product-name-generator-form\",\"description\":\"Use this form template to generate many unique and fitting product names just by giving a short and simple description of your product.\",\"id\":28194254,\"released\":\"2023-04-27 18:39:17\",\"categories\":[\"AI\",\"Business\",\"Marketing\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/product-name-generator-form\\/\",\"icon\":false,\"key\":\"product-name-generator\",\"used_addons\":[],\"is_new\":false},\"28269006\":{\"name\":\"Customer Interest Survey Template\",\"slug\":\"customer-interest-survey-form\",\"description\":\"Collect customer preferences and interests with this survey form template.\",\"id\":28269006,\"released\":\"2024-03-21 16:03:20\",\"categories\":[\"Basic\",\"Business Operations\",\"Feedback\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/customer-interest-survey-form\\/\",\"icon\":false,\"key\":\"customer-interest-survey\",\"used_addons\":[\"Surveys and Polls\"],\"is_new\":false},\"28168654\":{\"name\":\"Instant Estimate Form Template\",\"slug\":\"instant-estimate-form\",\"description\":\"Provide prospective clients an instant estimate requesting your services.\",\"id\":28168654,\"released\":\"2022-12-28 08:35:27\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\",\"Lead\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/instant-estimate-form\\/\",\"icon\":false,\"key\":\"instant-estimate\",\"used_addons\":[],\"is_new\":false},\"28232143\":{\"name\":\"Insurance Cancellation Form Template\",\"slug\":\"insurance-cancellation-form\",\"description\":\"Collect necessary details from policyholders who wish to request the cancellation of their insurance.\",\"id\":28232143,\"released\":\"2023-11-11 05:28:00\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/insurance-cancellation-form\\/\",\"icon\":false,\"key\":\"insurance-cancellation\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28194256\":{\"name\":\"Book Buddy Form Template\",\"slug\":\"book-buddy-form\",\"description\":\"Use our Book Buddy form template to receive book recommendations based on former books you\'ve read.\",\"id\":28194256,\"released\":\"2023-04-27 18:45:25\",\"categories\":[\"AI\",\"Business\",\"Personal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/book-buddy-form\\/\",\"icon\":false,\"key\":\"book-buddy\",\"used_addons\":[],\"is_new\":false},\"28194258\":{\"name\":\"AI Travel Assistant Form Template\",\"slug\":\"ai-travel-assistant-form\",\"description\":\"Get a detailed itinerary for your vacation by simply inputting some basic information.\",\"id\":28194258,\"released\":\"2023-04-27 18:53:54\",\"categories\":[\"AI\",\"Business\",\"Event Planning\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/ai-travel-assistant-form\\/\",\"icon\":false,\"key\":\"ai-travel-assistant\",\"used_addons\":[],\"is_new\":false},\"28150482\":{\"name\":\"Authorization Form Template\",\"slug\":\"authorization-form\",\"description\":\"Get authorization from an individual to release their information with an authorization form template.\",\"id\":28150482,\"released\":\"2022-11-06 16:50:00\",\"categories\":[\"Business\",\"Business Operations\",\"Geolocation\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/authorization-form\\/\",\"icon\":false,\"key\":\"authorization\",\"used_addons\":[],\"is_new\":false},\"28235220\":{\"name\":\"Tumbler Order Form Template\",\"slug\":\"tumbler-order-form\",\"description\":\"Gather essential information from customers looking to place Tumbler orders.\",\"id\":28235220,\"released\":\"2023-11-11 05:15:00\",\"categories\":[\"Business\",\"Business Operations\",\"Order Form\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/tumbler-order-form\\/\",\"icon\":false,\"key\":\"tumbler-order\",\"used_addons\":[\"Stripe\"],\"is_new\":false},\"28029398\":{\"name\":\"WordPress Search Form Template\",\"slug\":\"wordpress-search-form\",\"description\":\"Search your WordPress site using this simple form.\",\"id\":28029398,\"released\":\"2020-11-23 00:05:43\",\"categories\":[\"Personal\",\"Post\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/wordpress-search-form\\/\",\"icon\":false,\"key\":\"wordpress-search\",\"used_addons\":[],\"is_new\":false},\"28269015\":{\"name\":\"Market Research Survey Template\",\"slug\":\"market-research-survey-form\",\"description\":\"Collect essential data from participants in this market research survey form template.\",\"id\":28269015,\"released\":\"2024-03-21 16:45:44\",\"categories\":[\"Basic\",\"Business Operations\",\"Marketing\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/market-research-survey-form\\/\",\"icon\":false,\"key\":\"market-research-survey\",\"used_addons\":[\"Surveys and Polls\"],\"is_new\":false},\"28232151\":{\"name\":\"Video Recording Consent Form Template\",\"slug\":\"video-recording-consent-form\",\"description\":\"Gather consent and important information from individuals granting permission for video recording.\",\"id\":28232151,\"released\":\"2023-11-11 05:26:00\",\"categories\":[\"Business\",\"Business Operations\",\"Consent\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/video-recording-consent-form\\/\",\"icon\":false,\"key\":\"video-recording-consent\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28303576\":{\"name\":\"Youth Sports Registration Form Template\",\"slug\":\"youth-sports-registration-form-form\",\"description\":\"The Youth Sports Registration Form streamlines enrollment, gathering essential information for a safe and fun experience for young athletes.\",\"id\":28303576,\"released\":\"2024-11-24 13:33:32\",\"categories\":[\"Business\",\"Calculator\",\"Datepicker\",\"Event Planning\",\"Geolocation\",\"Multi-Page\",\"Nonprofit\",\"PayPal\",\"Registration and Signup\",\"Repeater Field\",\"Signature\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/youth-sports-registration-form-form\\/\",\"icon\":false,\"key\":\"youth-sports-registration-form\",\"used_addons\":[\"Datepicker Options\",\"PayPal Standard\",\"Stripe\"],\"is_new\":false},\"28052697\":{\"name\":\"Alumni Donation Template\",\"slug\":\"alumni-donation-form\",\"description\":\"Are you hoping for donations to your school? If so, this is the form for you.\",\"id\":28052697,\"released\":\"2021-04-01 15:50:54\",\"categories\":[\"Business\",\"Nonprofit\",\"Payment\",\"PayPal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/alumni-donation-form\\/\",\"icon\":false,\"key\":\"alumni-donation\",\"used_addons\":[],\"is_new\":false},\"28303579\":{\"name\":\"Online RSVP Birthday Party Form Template\",\"slug\":\"online-rsvp-birthday-party-form\",\"description\":\"The Online RSVP Birthday Party Form makes it easy for guests to confirm their attendance and share any special requests for a fun celebration!\",\"id\":28303579,\"released\":\"2024-11-24 13:44:17\",\"categories\":[\"Basic\",\"Event Planning\",\"Request\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/online-rsvp-birthday-party-form\\/\",\"icon\":false,\"key\":\"online-rsvp-birthday-party\",\"used_addons\":[],\"is_new\":false},\"28307678\":{\"name\":\"Personal Training Client Intake Form\",\"slug\":\"personal-training-client-intake-form\",\"description\":\"This template is crafted to collect vital information from new clients in personal training. It features sections for personal information, fitness objectives, medical background, and current workout practices. Perfect for personal trainers and fitness coaches.\",\"id\":28307678,\"released\":\"2025-01-07 11:55:29\",\"categories\":[\"Business\",\"Business Operations\",\"Consent\",\"Datepicker\",\"Elite\",\"Health and Wellness\",\"Lifestyle\",\"Registration and Signup\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/personal-training-client-intake-form\\/\",\"icon\":false,\"key\":\"personal-training-client-intake\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28310494\":{\"name\":\"General Contract Form Template\",\"slug\":\"general-contract-form\",\"description\":\"This General Contract Form serves as a legally binding agreement outlining the terms, responsibilities, and obligations between all parties involved.\",\"id\":28310494,\"released\":\"2025-01-31 14:42:12\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/general-contract-form\\/\",\"icon\":false,\"key\":\"general-contract\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":true},\"28303583\":{\"name\":\"High School Reunion Registration Form Template\",\"slug\":\"high-school-reunion-registration-form\",\"description\":\"The High School Reunion Registration Form allows alumni to easily register and stay connected for an unforgettable reunion celebration!\",\"id\":28303583,\"released\":\"2024-11-24 14:08:40\",\"categories\":[\"Business\",\"Event Planning\",\"Payment\",\"PayPal\",\"Registration and Signup\",\"Repeater Field\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/high-school-reunion-registration-form\\/\",\"icon\":false,\"key\":\"high-school-reunion-registration\",\"used_addons\":[\"PayPal Standard\",\"Stripe\"],\"is_new\":false},\"28055776\":{\"name\":\"Employee Engagement Survey Template\",\"slug\":\"employee-engagement-survey-form\",\"description\":\"Use this survey to find our how employees feel about their jobs.\",\"id\":28055776,\"released\":\"2021-06-28 13:33:52\",\"categories\":[\"Business\",\"Business Operations\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employee-engagement-survey-form\\/\",\"icon\":false,\"key\":\"employee-engagement-survey\",\"used_addons\":[],\"is_new\":false},\"28057313\":{\"name\":\"Management Performance Survey Template\",\"slug\":\"management-performance-survey-form\",\"description\":\"Collect feedback on your management from employees they supervise.\",\"id\":28057313,\"released\":\"2021-05-01 13:50:24\",\"categories\":[\"Business Operations\",\"Personal\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/management-performance-survey-form\\/\",\"icon\":false,\"key\":\"management-performance-survey\",\"used_addons\":[],\"is_new\":false},\"28303585\":{\"name\":\"Auction Item Registration Form Template\",\"slug\":\"auction-item-registration-form\",\"description\":\"The Auction Item Registration Form simplifies the process for participants to submit items for auction, ensuring a smooth and organized event!\",\"id\":28303585,\"released\":\"2024-11-24 14:56:11\",\"categories\":[\"Business\",\"Business Operations\",\"Event Planning\",\"File Upload\",\"Registration and Signup\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/auction-item-registration-form\\/\",\"icon\":false,\"key\":\"auction-item-registration\",\"used_addons\":[],\"is_new\":false},\"28310498\":{\"name\":\"Gallery Form Template\",\"slug\":\"gallery-form\",\"description\":\"Efficiently allow artists to submit their work and grant necessary permissions for display.\",\"id\":28310498,\"released\":\"2025-01-31 14:53:27\",\"categories\":[\"Basic\",\"Business Operations\",\"Consent\",\"File Upload\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/gallery-form\\/\",\"icon\":false,\"key\":\"gallery\",\"used_addons\":[],\"is_new\":true},\"28030947\":{\"name\":\"Deadline Calculator Template\",\"slug\":\"deadline-calculator-form\",\"description\":\"Calculate deadlines in seconds. Add or subtract days from a date to calculate a new date.\",\"id\":28030947,\"released\":\"2020-11-23 00:00:29\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/deadline-calculator-form\\/\",\"icon\":false,\"key\":\"deadline-calculator\",\"used_addons\":[],\"is_new\":false},\"28145636\":{\"name\":\"Consent Form Template\",\"slug\":\"consent-form\",\"description\":\"Capture participant\\u2019s information and signature with this consent form.\",\"id\":28145636,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Business\",\"Business Operations\",\"Consent\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/consent-form\\/\",\"icon\":false,\"key\":\"consent\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"20910309\":{\"name\":\"House Inventory Form\",\"slug\":\"house-inventory-form\",\"description\":\"A simple form to keep track of household items, as well as value, condition, and make\\/model numbers.\",\"id\":20910309,\"released\":\"2019-11-24 23:00:57\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/house-inventory-form\\/\",\"icon\":false,\"key\":\"house-inventory\",\"used_addons\":[],\"is_new\":false},\"28030949\":{\"name\":\"T-Shirt Order Form Template\",\"slug\":\"t-shirt-order-form\",\"description\":\"Let customers select and order multiple t-shirts in the colors and sizes the want.\",\"id\":28030949,\"released\":\"2020-11-23 00:00:49\",\"categories\":[\"Business\",\"Calculator\",\"Order Form\",\"Payment\",\"PayPal\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/t-shirt-order-form\\/\",\"icon\":false,\"key\":\"t-shirt-order\",\"used_addons\":[\"PayPal Standard\",\"Stripe\"],\"is_new\":false},\"20910310\":{\"name\":\"Dinner Reservation Form\",\"slug\":\"dinner-reservation-form\",\"description\":\"Simply take reservations at a restaurant.\",\"id\":20910310,\"released\":\"2019-11-24 23:00:43\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/dinner-reservation-form\\/\",\"icon\":false,\"key\":\"dinner-reservation\",\"used_addons\":[],\"is_new\":false},\"28174310\":{\"name\":\"360 Degree Feedback Template\",\"slug\":\"360-degree-feedback-form\",\"description\":\"This short and quick survey is an easy way to acquire information from employees.\",\"id\":28174310,\"released\":\"2023-01-26 19:21:52\",\"categories\":[\"Basic\",\"Feedback\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/360-degree-feedback-form\\/\",\"icon\":false,\"key\":\"360-degree-feedback\",\"used_addons\":[],\"is_new\":false},\"28239335\":{\"name\":\"Blood Alcohol Content Calculator Template\",\"slug\":\"blood-alcohol-content-calculator-form\",\"description\":\"Collect necessary information from users to calculate Blood Alcohol Content.\",\"id\":28239335,\"released\":\"2023-11-16 14:42:32\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/blood-alcohol-content-calculator-form\\/\",\"icon\":false,\"key\":\"blood-alcohol-content-calculator\",\"used_addons\":[],\"is_new\":false},\"28145640\":{\"name\":\"Waiver Form Template\",\"slug\":\"waiver-form\",\"description\":\"Have participants sign and agree to any unforeseen injury\\/risks involved with the activity using the waiver form.\",\"id\":28145640,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Business\",\"Education\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/waiver-form\\/\",\"icon\":false,\"key\":\"waiver\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28149480\":{\"name\":\"Employee Discipline Form Template\",\"slug\":\"employee-discipline-form\",\"description\":\"When an employee intentionally violates the rules and policies of the company they are working for, use this Employee Discipline form to submit a report.\",\"id\":28149480,\"released\":\"2022-11-06 16:24:00\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/employee-discipline-form\\/\",\"icon\":false,\"key\":\"employee-discipline\",\"used_addons\":[],\"is_new\":false},\"28237032\":{\"name\":\"Cubic Yard Calculator Template\",\"slug\":\"cubic-yard-calculator-form\",\"description\":\"Gather input data from users to calculate cubic yardage quickly and accurately.\",\"id\":28237032,\"released\":\"2023-11-11 05:04:00\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/cubic-yard-calculator-form\\/\",\"icon\":false,\"key\":\"cubic-yard-calculator\",\"used_addons\":[],\"is_new\":false},\"28310504\":{\"name\":\"Personal Budget Planner Form Template\",\"slug\":\"personal-budget-planner-form\",\"description\":\"Easily track income, expenses, and savings to manage your finances effectively\",\"id\":28310504,\"released\":\"2025-01-31 15:00:49\",\"categories\":[\"Business\",\"Calculator\",\"Finance\",\"Lifestyle\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/personal-budget-planner-form\\/\",\"icon\":false,\"key\":\"personal-budget-planner\",\"used_addons\":[],\"is_new\":true},\"28145641\":{\"name\":\"Deposit Form Template\",\"slug\":\"deposit-form\",\"description\":\"Issue a receipt for funds accepted through cash deposit, checks, money order, and cashier\\u2019s check.\",\"id\":28145641,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\",\"Finance\",\"Payment\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/deposit-form\\/\",\"icon\":false,\"key\":\"deposit\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28149481\":{\"name\":\"Entry Form Template\",\"slug\":\"entry-form\",\"description\":\"Collect entries for contests, competitions, or events, and let users upload their entry.\",\"id\":28149481,\"released\":\"2022-11-06 16:34:00\",\"categories\":[\"Basic\",\"Marketing\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/entry-form\\/\",\"icon\":false,\"key\":\"entry\",\"used_addons\":[],\"is_new\":false},\"28145642\":{\"name\":\"Requisition Form Template\",\"slug\":\"requisition-form\",\"description\":\"Specify details about the requested items with the requisition form.\",\"id\":28145642,\"released\":\"2022-11-06 22:00:00\",\"categories\":[\"Basic\",\"Business Operations\",\"File Upload\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/requisition-form\\/\",\"icon\":false,\"key\":\"requisition\",\"used_addons\":[],\"is_new\":false},\"28176880\":{\"name\":\"Branding Questionnaire Form Template\",\"slug\":\"branding-questionnaire-form\",\"description\":\"An easy questionnaire to help determine all you need to know about your client\'s business and branding choices.\",\"id\":28176880,\"released\":\"2023-02-07 17:50:28\",\"categories\":[\"Basic\",\"Business Operations\",\"Multi-Page\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/branding-questionnaire-form\\/\",\"icon\":false,\"key\":\"branding-questionnaire\",\"used_addons\":[\"Surveys and Polls\"],\"is_new\":false},\"20905713\":{\"name\":\"Order\\/Billing Form Template\",\"slug\":\"order-billing-form\",\"description\":\"A simple order form to start collecting payments fast.\",\"id\":20905713,\"released\":\"2019-11-24 23:00:32\",\"categories\":[\"Business\",\"Order Form\",\"Payment\",\"PayPal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/order-billing-form\\/\",\"icon\":false,\"key\":\"order-billing\",\"used_addons\":[\"PayPal Standard\"],\"is_new\":false},\"20909555\":{\"name\":\"New Years Party RSVP Form\",\"slug\":\"new-years-party-rsvp-form\",\"description\":\"Provides an easy way to keep tack of guests of an upcoming New Years Party.\",\"id\":20909555,\"released\":\"2019-11-24 23:00:01\",\"categories\":[\"Event Planning\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/new-years-party-rsvp-form\\/\",\"icon\":false,\"key\":\"new-years-party-rsvp\",\"used_addons\":[],\"is_new\":false},\"28198899\":{\"name\":\"Love Language Quiz Form Template\",\"slug\":\"love-language-quiz-form\",\"description\":\"Discover your love language and enhance your connections. Take our quiz to understand how you express and receive love.\",\"id\":28198899,\"released\":\"2023-05-30 18:32:58\",\"categories\":[\"Business\",\"Conversational Forms\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/love-language-quiz-form\\/\",\"icon\":false,\"key\":\"love-language-quiz\",\"used_addons\":[\"Conversational Forms\",\"Quiz Maker\"],\"is_new\":false},\"20909556\":{\"name\":\"Birthday Party RSVP Form\",\"slug\":\"birthday-party-invitation-rsvp-form\",\"description\":\"A simple form to keep track of who\'s coming to a Birthday celebration.\",\"id\":20909556,\"released\":\"2019-11-24 23:00:40\",\"categories\":[\"Event Planning\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/birthday-party-invitation-rsvp-form\\/\",\"icon\":false,\"key\":\"birthday-party-invitation-rsvp\",\"used_addons\":[],\"is_new\":false},\"28220148\":{\"name\":\"A\\/B Testing Calculator\",\"slug\":\"ab-testing-calculator-form\",\"description\":\"Quickly analyze A\\/B test outcomes with our calculator.\",\"id\":28220148,\"released\":\"2023-11-11 02:55:00\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/ab-testing-calculator-form\\/\",\"icon\":false,\"key\":\"ab-testing-calculator\",\"used_addons\":[],\"is_new\":false},\"28198901\":{\"name\":\"AI Customer Support Form Template\",\"slug\":\"ai-customer-support-form\",\"description\":\"Our Customer Support Form efficiently collects essential information and addresses inquiries. Gather personal details and select the inquiry type for efficient handling.\",\"id\":28198901,\"released\":\"2023-05-30 17:49:52\",\"categories\":[\"AI\",\"Business\",\"Customer Service\",\"Feedback\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/ai-customer-support-form\\/\",\"icon\":false,\"key\":\"ai-customer-support\",\"used_addons\":[],\"is_new\":false},\"28098549\":{\"name\":\"Spelling Quiz Template\",\"slug\":\"spelling-quiz-form\",\"description\":\"Track student progress online with the spelling quiz form template.\",\"id\":28098549,\"released\":\"2022-03-01 13:50:10\",\"categories\":[\"Business\",\"Conversational Forms\",\"Education\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/spelling-quiz-form\\/\",\"icon\":false,\"key\":\"spelling-quiz\",\"used_addons\":[\"Conversational Forms\",\"Quiz Maker\"],\"is_new\":false},\"28173813\":{\"name\":\"Free Estimate Form Template\",\"slug\":\"free-estimate-form\",\"description\":\"Whether you\'re in construction or any industry, use this template to generate the estimated cost for your customer\'s needs.\",\"id\":28173813,\"released\":\"2023-01-24 16:56:38\",\"categories\":[\"Business\",\"Business Operations\",\"Calculator\",\"Conversational Forms\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/free-estimate-form\\/\",\"icon\":false,\"key\":\"free-estimate\",\"used_addons\":[],\"is_new\":false},\"20874742\":{\"name\":\"PayPal Donation Form Template\",\"slug\":\"paypal-donation-form\",\"description\":\"Easily and securely collect PayPal donations from anyone.\",\"id\":20874742,\"released\":\"2019-01-01 13:13:24\",\"categories\":[\"Business\",\"Nonprofit\",\"Payment\",\"PayPal\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/paypal-donation-form\\/\",\"icon\":false,\"key\":\"paypal-donation\",\"used_addons\":[\"PayPal Standard\"],\"is_new\":false},\"20874743\":{\"name\":\"Simple User Registration Form Template\",\"slug\":\"simple-user-registration-form\",\"description\":\"The perfect minimalistic approach to user registration. Make the registration process as simple as possible.\",\"id\":20874743,\"released\":\"2019-01-01 13:24:20\",\"categories\":[\"Business\",\"User Registration\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/simple-user-registration-form\\/\",\"icon\":false,\"key\":\"simple-user-registration\",\"used_addons\":[\"User Registration\"],\"is_new\":false},\"28028151\":{\"name\":\"Restaurant Evaluation Survey Template\",\"slug\":\"restaurant-evaluation-survey-form\",\"description\":\"Get feedback and ratings from customers on the quality of your services.\",\"id\":28028151,\"released\":\"2020-11-23 00:01:21\",\"categories\":[\"Basic\",\"Business Operations\",\"Feedback\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/restaurant-evaluation-survey-form\\/\",\"icon\":false,\"key\":\"restaurant-evaluation-survey\",\"used_addons\":[],\"is_new\":false},\"28297975\":{\"name\":\"User Review Form Template\",\"slug\":\"user-review-form\",\"description\":\"Efficiently collect reviews from customers with this User Review Form Template.\",\"id\":28297975,\"released\":\"2024-10-08 12:28:46\",\"categories\":[\"Basic\",\"Feedback\",\"File Upload\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/user-review-form\\/\",\"icon\":false,\"key\":\"user-review\",\"used_addons\":[],\"is_new\":false},\"28237047\":{\"name\":\"Drywall Calculator Template\",\"slug\":\"drywall-calculator-form\",\"description\":\"Collect project-specific details from users to calculate drywall requirements efficiently.\",\"id\":28237047,\"released\":\"2023-11-11 04:03:00\",\"categories\":[\"Business\",\"Calculator\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/drywall-calculator-form\\/\",\"icon\":false,\"key\":\"drywall-calculator\",\"used_addons\":[],\"is_new\":false},\"20905719\":{\"name\":\"Rent Receipt Form Template\",\"slug\":\"rent-receipt-form\",\"description\":\"Track tenant payment information using the rent receipt form.\",\"id\":20905719,\"released\":\"2019-11-24 23:00:00\",\"categories\":[\"Business Operations\",\"Personal\",\"Real Estate\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/rent-receipt-form\\/\",\"icon\":false,\"key\":\"rent-receipt\",\"used_addons\":[],\"is_new\":false},\"28311800\":{\"name\":\"Patient Information Form Template\",\"slug\":\"patient-information-form\",\"description\":\"Securely collect and manage patient details with this Patient Information Form Template.\",\"id\":28311800,\"released\":\"2025-02-10 11:51:34\",\"categories\":[\"Basic\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/patient-information-form\\/\",\"icon\":false,\"key\":\"patient-information\",\"used_addons\":[],\"is_new\":true},\"20909560\":{\"name\":\"Football League Registration Form Template\",\"slug\":\"football-league-registration-form\",\"description\":\"An easy form for registering players for a football league including positions, desired team, and other information.more\",\"id\":20909560,\"released\":\"2019-11-24 23:00:55\",\"categories\":[\"Basic\",\"Registration and Signup\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/football-league-registration-form\\/\",\"icon\":false,\"key\":\"football-league-registration\",\"used_addons\":[],\"is_new\":false},\"20905720\":{\"name\":\"Request A Quote Form Template\",\"slug\":\"request-a-quote-form\",\"description\":\"Get information from potential customers who are requesting for a quote on your services.\",\"id\":20905720,\"released\":\"2019-11-24 23:00:18\",\"categories\":[\"Business Operations\",\"Contact\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/request-a-quote-form\\/\",\"icon\":false,\"key\":\"request-a-quote\",\"used_addons\":[],\"is_new\":false},\"28028153\":{\"name\":\"Counseling Intake Form Template\",\"slug\":\"counselling-client-intake-form\",\"description\":\"Automate the process of gathering information from your clients and reduce paperwork with this intake form\",\"id\":28028153,\"released\":\"2020-11-23 00:01:11\",\"categories\":[\"Business\",\"Health and Wellness\",\"Multi-Page\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/counselling-client-intake-form\\/\",\"icon\":false,\"key\":\"counselling-client-intake\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"20909562\":{\"name\":\"Poll Form\",\"slug\":\"poll-form\",\"description\":\"A simple way to take a poll of likes, dislikes, or favorites.\",\"id\":20909562,\"released\":\"2019-11-24 23:00:49\",\"categories\":[\"Personal\",\"Survey\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/poll-form\\/\",\"icon\":[\"https:\\/\\/formidableforms.com\\/wp-content\\/uploads\\/2019\\/11\\/poll-form-template.jpg\",650,288,false],\"key\":\"poll\",\"used_addons\":[\"Surveys and Polls\"],\"is_new\":false},\"20874746\":{\"name\":\"Mortgage Application Form Template\",\"slug\":\"mortgage-application-form\",\"description\":\"A complete and professional mortgage application form template to allow individuals to easily apply for mortgages on your site.\",\"id\":20874746,\"released\":\"2019-01-01 12:46:47\",\"categories\":[\"Application\",\"Business\",\"Real Estate\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/mortgage-application-form\\/\",\"icon\":false,\"key\":\"mortgage-application\",\"used_addons\":[],\"is_new\":false},\"20909563\":{\"name\":\"Enrollment Form Template\",\"slug\":\"enrollment-form\",\"description\":\"A form for quick and easy enrollment into a school system.\",\"id\":20909563,\"released\":\"2019-11-24 23:00:22\",\"categories\":[\"Basic\",\"Education\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/enrollment-form\\/\",\"icon\":false,\"key\":\"enrollment\",\"used_addons\":[],\"is_new\":false},\"28196091\":{\"name\":\"Trivia Form Template\",\"slug\":\"trivia-form\",\"description\":\"The trivia form template challenges your knowledge on a variety of topics and will give you your score at the end.\",\"id\":28196091,\"released\":\"2023-05-08 11:52:40\",\"categories\":[\"Business\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/trivia-form\\/\",\"icon\":false,\"key\":\"trivia\",\"used_addons\":[\"Quiz Maker\"],\"is_new\":false},\"20909564\":{\"name\":\"Recipe Catalog Form Template\",\"slug\":\"recipe-catalog-form\",\"description\":\"Keep track of favorite recipes or create a conglomerate of those of friends and family.\",\"id\":20909564,\"released\":\"2019-11-24 23:00:24\",\"categories\":[\"free\",\"Health and Wellness\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/recipe-catalog-form\\/\",\"icon\":false,\"key\":\"recipe-catalog\",\"used_addons\":[],\"is_new\":false},\"20874748\":{\"name\":\"User Registration Form Template\",\"slug\":\"user-registration-form\",\"description\":\"Let users register on the front-end of your site and set their username, email, password, name, and avatar.\",\"id\":20874748,\"released\":\"2019-01-01 13:14:35\",\"categories\":[\"Business\",\"File Upload\",\"User Registration\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/user-registration-form\\/\",\"icon\":false,\"key\":\"user-registration\",\"used_addons\":[\"User Registration\"],\"is_new\":false},\"20874749\":{\"name\":\"Travel Booking Form Template\",\"slug\":\"travel-booking-form\",\"description\":\"Setting up a travel website? Plan-ahead ride service? Allow your users to easily reserve travel services.\",\"id\":20874749,\"released\":\"2019-01-01 12:53:00\",\"categories\":[\"Business\",\"Event Planning\",\"Multi-Page\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/travel-booking-form\\/\",\"icon\":false,\"key\":\"travel-booking\",\"used_addons\":[],\"is_new\":false},\"28028157\":{\"name\":\"Client Intake Form Template\",\"slug\":\"client-intake-form\",\"description\":\"Capture valuable information during the client intake process.\",\"id\":28028157,\"released\":\"2020-11-23 00:05:11\",\"categories\":[\"Business\",\"Business Operations\",\"Customer Service\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/client-intake-form\\/\",\"icon\":false,\"key\":\"client-intake\",\"used_addons\":[],\"is_new\":false},\"28019198\":{\"name\":\"Release Form Template\",\"slug\":\"release-form\",\"description\":\"A simple standard release form template.\",\"id\":28019198,\"released\":\"2020-09-14 10:42:09\",\"categories\":[\"Business\",\"Business Operations\",\"Signature\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/release-form\\/\",\"icon\":false,\"key\":\"release\",\"used_addons\":[\"Digital Signatures\"],\"is_new\":false},\"28215806\":{\"name\":\"Geography Quiz Template\",\"slug\":\"geography-quiz-form\",\"description\":\"Test your geography knowledge with this 15-question multiple-choice quiz.\",\"id\":28215806,\"released\":\"2023-09-08 16:48:53\",\"categories\":[\"Business\",\"Education\",\"Quiz\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/geography-quiz-form\\/\",\"icon\":false,\"key\":\"geography-quiz\",\"used_addons\":[\"Quiz Maker\"],\"is_new\":false},\"20909567\":{\"name\":\"Grade Book Form Template\",\"slug\":\"gradebook-form\",\"description\":\"Keep track of grades all in one place.\",\"id\":20909567,\"released\":\"2019-11-24 23:00:14\",\"categories\":[\"Education\",\"free\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/gradebook-form\\/\",\"icon\":false,\"key\":\"gradebook\",\"used_addons\":[],\"is_new\":false},\"28254719\":{\"name\":\"Airbnb Reservation Information Form Template\",\"slug\":\"airbnb-reservation-information-form\",\"description\":\"Collect details from guests who are booking your Airbnb property.\",\"id\":28254719,\"released\":\"2024-01-18 12:23:11\",\"categories\":[\"Basic\",\"Business Operations\",\"Real Estate\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/airbnb-reservation-information-form\\/\",\"icon\":false,\"key\":\"airbnb-reservation-information\",\"used_addons\":[],\"is_new\":false},\"20874751\":{\"name\":\"Volunteer Recruitment Application Form\",\"slug\":\"volunteer-recruitment-application-form\",\"description\":\"Collect scheduling details, contact information, and relevant experience from volunteer applicants.\",\"id\":20874751,\"released\":\"2019-01-01 13:21:01\",\"categories\":[\"Application\",\"Business\",\"Multi-Page\",\"Nonprofit\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/volunteer-recruitment-application-form\\/\",\"icon\":false,\"key\":\"volunteer-recruitment-application\",\"used_addons\":[],\"is_new\":false},\"28019199\":{\"name\":\"Time Off Request Form Template\",\"slug\":\"time-off-request-form\",\"description\":\"A form for tracking time off of employees.\",\"id\":28019199,\"released\":\"2020-09-24 08:04:22\",\"categories\":[\"Basic\",\"Business Operations\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/time-off-request-form\\/\",\"icon\":false,\"key\":\"time-off-request\",\"used_addons\":[],\"is_new\":false},\"28031313\":{\"name\":\"Church Donation Form Template\",\"slug\":\"church-donation-form\",\"description\":\"Collect donations for your church or a cause with Stripe credit card payments.\",\"id\":28031313,\"released\":\"2020-12-01 00:01:57\",\"categories\":[\"Business\",\"Nonprofit\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/church-donation-form\\/\",\"icon\":false,\"key\":\"church-donation\",\"used_addons\":[\"Stripe\"],\"is_new\":false},\"28052355\":{\"name\":\"Girl Scout Cookie Order Form Template\",\"slug\":\"girl-scout-cookie-order-form\",\"description\":\"Want a better way to sell Girl Scout cookies? Collect orders without knocking on doors or sitting outside the grocery store.\",\"id\":28052355,\"released\":\"2021-03-31 17:18:05\",\"categories\":[\"Business\",\"Business Operations\",\"Order Form\",\"Payment\",\"Stripe\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/girl-scout-cookie-order-form\\/\",\"icon\":false,\"key\":\"girl-scout-cookie-order\",\"used_addons\":[\"Stripe\"],\"is_new\":false},\"20874729\":{\"name\":\"Advanced Mortgage Calculator Template\",\"slug\":\"advanced-mortgage-calculator-form\",\"description\":\"Get an advanced, in-depth financial analysis on a new mortgage.\",\"id\":20874729,\"released\":\"2019-01-01 12:11:07\",\"categories\":[\"Business\",\"Calculator\",\"Finance\",\"Real Estate\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/advanced-mortgage-calculator-form\\/\",\"icon\":false,\"key\":\"advanced-mortgage-calculator\",\"used_addons\":[],\"is_new\":false},\"20908994\":{\"name\":\"Complaint Form Template\",\"slug\":\"complaint-form\",\"description\":\"A better way to allow customers or employees to submit their complaints.\",\"id\":20908994,\"released\":\"2019-11-24 23:00:11\",\"categories\":[\"Basic\",\"Customer Service\"],\"link\":\"https:\\/\\/formidableforms.com\\/form-templates\\/complaint-form\\/\",\"icon\":false,\"key\":\"complaint\",\"used_addons\":[],\"is_new\":false},\"response_code\":200}\";s:7:\"version\";s:4:\"6.18\";}', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(10006, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'off'),
(9981, 'frm_antispam_secret_key', 'ycUgdVSpB+tYu5Z33A4eXi01zgX/JfJE/YJiegGVTd4=', 'yes'),
(12507, 'loginizer_backuply_promo_time', '1657789069', 'yes'),
(39379, 'elementor_onboarded', '1', 'yes'),
(14532, 'loginizer_csrf_promo_time', '1657789069', 'yes'),
(39384, 'elementor_remote_info_feed_data', 'a:3:{i:0;a:5:{s:5:\"title\";s:70:\"Introducing Elementor 3.31: New Editor V4 Variables, Filters, and More\";s:7:\"excerpt\";s:294:\"Elementor 3.31 is here, pushing Editor V4 forward with powerful design system enhancements and modern visual styling tools. From Variables and Filters to smarter editing workflows and semantic markup, this version makes it easier than ever to design beautiful, performant, and accessible sites.\";s:7:\"created\";i:1755094220;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:140:\"https://elementor.com/blog/elementor-331-v4-alpha-variables-filters/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:67:\"What Is an MCP? The AI Breakthrough Web Creators Shouldn’t Ignore\";s:7:\"excerpt\";s:143:\"Discover how Model Context Protocol (MCP) is shaping AI-tool interaction and redefining how pro web creators build, manage, and scale websites.\";s:7:\"created\";i:1754310811;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:130:\"https://elementor.com/blog/mcp-explained-for-web-creators/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:100:\"Introducing Elementor 3.30: new Editor V4 capabilities, full Website Templates in the cloud, & more!\";s:7:\"excerpt\";s:361:\"Elementor 3.30 is here and it includes upgrades that accelerate your workflow, bring you a step closer to the full power of Editor V4, and help you deliver beautiful, accessible websites faster than ever. From advanced styling tools and smarter editing to full Website Templates in the cloud, this release enhances both the way you design and the way you scale.\";s:7:\"created\";i:1751974442;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:140:\"https://elementor.com/blog/elementor-330-v4-alpha-website-templates/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}', 'off'),
(39390, 'yoast_migrations_free', 'a:1:{s:7:\"version\";s:4:\"25.7\";}', 'yes'),
(39391, 'wpseo', 'a:115:{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:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:21:\"post_type_made_public\";s:29:\"indexables_indexing_completed\";b:1;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"25.7\";s:16:\"previous_version\";s:4:\"25.6\";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:\"ai_enabled_pre_default\";b:0;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1685353924;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:36:\"/%year%/%monthnum%/%day%/%postname%/\";s:8:\"home_url\";s:25:\"https://onlineincshop.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:7:{s:11:\"wpcode_type\";s:11:\"wpcode_type\";s:15:\"wpcode_location\";s:15:\"wpcode_location\";s:11:\"wpcode_tags\";s:11:\"wpcode_tags\";s:22:\"elementor_library_type\";s:22:\"elementor_library_type\";s:26:\"elementor_library_category\";s:26:\"elementor_library_category\";s:19:\"tdc-review-criteria\";s:19:\"tdc-review-criteria\";s:19:\"elementor_font_type\";s:19:\"elementor_font_type\";}s:29:\"enable_enhanced_slack_sharing\";b:1;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:0;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:18:\"first_time_install\";b:1;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1685353925;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:10:\"tdc-review\";i:3;s:16:\"tdc-review-email\";i:4;s:13:\"tdb_templates\";}s:28:\"last_known_public_taxonomies\";a:4:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";i:3;s:19:\"tdc-review-criteria\";}s:23:\"last_known_no_unindexed\";a:6:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1755575544;s:31:\"wpseo_unindexed_post_link_count\";i:1755575544;s:31:\"wpseo_unindexed_term_link_count\";i:1755575544;s:35:\"wpseo_total_unindexed_general_items\";i:1755575544;s:27:\"wpseo_total_unindexed_posts\";i:1721992685;s:27:\"wpseo_total_unindexed_terms\";i:1735039710;}s:14:\"new_post_types\";a:0:{}s:14:\"new_taxonomies\";a:1:{i:3;s:19:\"tdc-review-criteria\";}s:34:\"show_new_content_type_notification\";b:1;s:44:\"site_kit_configuration_permanently_dismissed\";b:0;s:18:\"site_kit_connected\";b:0;s:37:\"site_kit_tracking_setup_widget_loaded\";s:2:\"no\";s:41:\"site_kit_tracking_first_interaction_stage\";s:0:\"\";s:40:\"site_kit_tracking_last_interaction_stage\";s:0:\"\";s:52:\"site_kit_tracking_setup_widget_temporarily_dismissed\";s:2:\"no\";s:52:\"site_kit_tracking_setup_widget_permanently_dismissed\";s:2:\"no\";s:31:\"google_site_kit_feature_enabled\";b:0;s:25:\"ai_free_sparks_started_on\";N;s:15:\"enable_llms_txt\";b:0;}', 'yes'),
(39392, 'wpseo_titles', 'a:174:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%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:53:\"The post %%POSTLINK%% appeared first on %%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:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";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:0:\"\";s:12:\"company_name\";s:0:\"\";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: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:20:\"title-e-landing-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:23:\"metadesc-e-landing-page\";s:0:\"\";s:22:\"noindex-e-landing-page\";b:0;s:33:\"display-metabox-pt-e-landing-page\";b:1;s:33:\"post_types-e-landing-page-maintax\";i:0;s:31:\"schema-page-type-e-landing-page\";s:7:\"WebPage\";s:34:\"schema-article-type-e-landing-page\";s:4:\"None\";s:27:\"social-title-e-landing-page\";s:9:\"%%title%%\";s:33:\"social-description-e-landing-page\";s:0:\"\";s:31:\"social-image-url-e-landing-page\";s:0:\"\";s:30:\"social-image-id-e-landing-page\";i:0;s:23:\"title-elementor_library\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-elementor_library\";s:0:\"\";s:25:\"noindex-elementor_library\";b:0;s:36:\"display-metabox-pt-elementor_library\";b:1;s:36:\"post_types-elementor_library-maintax\";i:0;s:34:\"schema-page-type-elementor_library\";s:7:\"WebPage\";s:37:\"schema-article-type-elementor_library\";s:4:\"None\";s:30:\"social-title-elementor_library\";s:9:\"%%title%%\";s:36:\"social-description-elementor_library\";s:0:\"\";s:34:\"social-image-url-elementor_library\";s:0:\"\";s:33:\"social-image-id-elementor_library\";i:0;s:19:\"title-tdb_templates\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:22:\"metadesc-tdb_templates\";s:0:\"\";s:21:\"noindex-tdb_templates\";b:0;s:32:\"display-metabox-pt-tdb_templates\";b:1;s:32:\"post_types-tdb_templates-maintax\";i:0;s:30:\"schema-page-type-tdb_templates\";s:7:\"WebPage\";s:33:\"schema-article-type-tdb_templates\";s:4:\"None\";s:26:\"social-title-tdb_templates\";s:9:\"%%title%%\";s:32:\"social-description-tdb_templates\";s:0:\"\";s:30:\"social-image-url-tdb_templates\";s:0:\"\";s:29:\"social-image-id-tdb_templates\";i:0;s:15:\"title-tds_email\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:18:\"metadesc-tds_email\";s:0:\"\";s:17:\"noindex-tds_email\";b:0;s:28:\"display-metabox-pt-tds_email\";b:1;s:28:\"post_types-tds_email-maintax\";i:0;s:26:\"schema-page-type-tds_email\";s:7:\"WebPage\";s:29:\"schema-article-type-tds_email\";s:4:\"None\";s:22:\"social-title-tds_email\";s:9:\"%%title%%\";s:28:\"social-description-tds_email\";s:0:\"\";s:26:\"social-image-url-tds_email\";s:0:\"\";s:25:\"social-image-id-tds_email\";i:0;s:16:\"title-tds_locker\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-tds_locker\";s:0:\"\";s:18:\"noindex-tds_locker\";b:0;s:29:\"display-metabox-pt-tds_locker\";b:1;s:29:\"post_types-tds_locker-maintax\";i:0;s:27:\"schema-page-type-tds_locker\";s:7:\"WebPage\";s:30:\"schema-article-type-tds_locker\";s:4:\"None\";s:23:\"social-title-tds_locker\";s:9:\"%%title%%\";s:29:\"social-description-tds_locker\";s:0:\"\";s:27:\"social-image-url-tds_locker\";s:0:\"\";s:26:\"social-image-id-tds_locker\";i:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%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:23:\"%%term_title%% Archives\";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:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";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:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";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:18:\"title-tax-tds_list\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-tds_list\";s:0:\"\";s:28:\"display-metabox-tax-tds_list\";b:1;s:20:\"noindex-tax-tds_list\";b:0;s:25:\"social-title-tax-tds_list\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-tds_list\";s:0:\"\";s:29:\"social-image-url-tax-tds_list\";s:0:\"\";s:28:\"social-image-id-tax-tds_list\";i:0;s:26:\"taxonomy-tds_list-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:0;s:17:\"company_logo_meta\";b:0;s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}', 'yes'),
(39393, 'wpseo_social', 'a:20:{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:{}s:12:\"mastodon_url\";s:0:\"\";}', 'yes'),
(59298, 'wp_attachment_pages_enabled', '1', 'yes'),
(52540, 'WPLANG', '', 'yes'),
(52541, 'new_admin_email', 'admin@onlineincshop.com', 'yes'),
(52510, 'akismet_strictness', '0', 'yes'),
(52511, 'akismet_show_user_comments_approved', '0', 'yes'),
(52512, 'akismet_comment_form_privacy_notice', 'hide', 'yes'),
(52513, 'wordpress_api_key', 'f1a61822c37a', 'yes'),
(52504, 'widget_akismet_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(52517, 'akismet_spam_count', '0', 'yes'),
(55671, 'frm_honeypot_class', 'frm__653ab37b99a44', 'yes'),
(52568, 'ss_stop_sp_reg_stats', 'a:199:{s:6:\"badips\";a:3:{s:12:\"8.134.10.218\";s:19:\"2025/10/23 02:42:34\";s:13:\"162.241.2.128\";s:19:\"2025/10/23 05:42:13\";s:12:\"125.23.86.26\";s:19:\"2025/10/23 06:08:13\";}s:7:\"goodips\";a:1:{s:13:\"74.119.194.52\";s:19:\"2025/10/22 22:39:24\";}s:4:\"hist\";a:26:{s:19:\"2025/10/22 06:11:01\";a:6:{i:0;s:14:\"107.174.68.163\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/22 06:24:56\";a:6:{i:0;s:15:\"213.239.206.148\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/22 07:32:58\";a:6:{i:0;s:15:\"162.241.203.157\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/22 07:45:35\";a:6:{i:0;s:14:\"43.162.109.166\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/22 08:52:18\";a:6:{i:0;s:14:\"108.167.132.33\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/22 09:42:01\";a:6:{i:0;s:13:\"70.40.220.126\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/22 09:46:09\";a:6:{i:0;s:14:\"178.33.109.109\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/22 10:23:25\";a:6:{i:0;s:14:\"103.168.21.194\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/22 10:53:07\";a:6:{i:0;s:14:\"45.156.128.152\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:45:\"/wp-content/plugins/wp-user-avatar/readme.txt\";i:4;s:69:\"404 on Exploit Attempt: /wp-content/plugins/wp-user-avatar/readme.txt\";i:5;s:0:\"\";}s:19:\"2025/10/22 11:02:42\";a:6:{i:0;s:14:\"109.234.161.53\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/22 11:06:39\";a:6:{i:0;s:14:\"108.179.242.41\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/22 13:45:41\";a:6:{i:0;s:12:\"50.87.144.15\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/22 15:20:25\";a:6:{i:0;s:14:\"89.234.157.254\";i:1;s:24:\"marwanb91@code-gmail.com\";i:2;s:24:\"marwanb91@code-gmail.com\";i:3;s:1:\"/\";i:4;s:42:\"SFS Last Seen = 2025-10-07, Frequency = 76\";i:5;s:0:\"\";}s:19:\"2025/10/22 15:20:27\";a:6:{i:0;s:14:\"89.234.157.254\";i:1;s:24:\"marwanb91@code-gmail.com\";i:2;s:0:\"\";i:3;s:1:\"/\";i:4;s:25:\"Bad Cache: 89.234.157.254\";i:5;s:0:\"\";}s:19:\"2025/10/22 16:32:55\";a:6:{i:0;s:15:\"185.250.151.156\";i:1;s:0:\"\";i:2;s:17:\"specialsystemuser\";i:3;s:13:\"/wp-login.php\";i:4;s:24:\"Authenticated User Login\";i:5;s:0:\"\";}s:19:\"2025/10/22 16:36:49\";a:6:{i:0;s:15:\"176.100.124.157\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:36:\"/ves_base/elfinder/php/connector.php\";i:4;s:60:\"404 on Exploit Attempt: /ves_base/elfinder/php/connector.php\";i:5;s:0:\"\";}s:19:\"2025/10/22 19:56:26\";a:6:{i:0;s:13:\"103.81.87.132\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/22 22:25:20\";a:6:{i:0;s:14:\"198.54.120.220\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/22 22:39:24\";a:6:{i:0;s:13:\"74.119.194.52\";i:1;s:0:\"\";i:2;s:8:\"expander\";i:3;s:13:\"/wp-login.php\";i:4;s:24:\"Authenticated User Login\";i:5;s:0:\"\";}s:19:\"2025/10/22 22:58:22\";a:6:{i:0;s:14:\"178.162.234.23\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/22 23:21:00\";a:6:{i:0;s:10:\"3.21.43.19\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/23 00:34:19\";a:6:{i:0;s:13:\"67.217.57.138\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/23 01:19:36\";a:6:{i:0;s:15:\"199.204.213.228\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/23 02:42:34\";a:6:{i:0;s:12:\"8.134.10.218\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/23 05:42:13\";a:6:{i:0;s:13:\"162.241.2.128\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}s:19:\"2025/10/23 06:08:13\";a:6:{i:0;s:12:\"125.23.86.26\";i:1;s:0:\"\";i:2;s:5:\"admin\";i:3;s:13:\"/wp-login.php\";i:4;s:23:\"Spam Word: Ad in author\";i:5;s:0:\"\";}}s:10:\"wlrequests\";a:7:{s:19:\"2023/09/24 22:19:22\";a:6:{i:0;s:15:\"202.163.113.178\";i:1;s:25:\"waleedarshad710@gmail.com\";i:2;s:1:\"2\";i:3;s:21:\"Username Too Short: 2\";i:4;s:80:\"Hi, I hope you and your team fine. I have a good blog for your website regard...\";i:5;s:12:\"/contact-us/\";}s:19:\"2024/02/14 07:43:32\";a:6:{i:0;s:11:\"39.62.20.79\";i:1;s:21:\"brycebrason@gmail.com\";i:2;s:1:\"2\";i:3;s:21:\"Username Too Short: 2\";i:4;s:0:\"\";i:5;s:12:\"/contact-us/\";}s:19:\"2024/02/21 09:45:50\";a:6:{i:0;s:12:\"5.193.99.225\";i:1;s:23:\"fayyazone2ten@gmail.com\";i:2;s:1:\"2\";i:3;s:21:\"Username Too Short: 2\";i:4;s:80:\"Hope you\\\'re having a good one! I\\\'m on one2ten.ae, and I\\\'m part of the crew...\";i:5;s:12:\"/contact-us/\";}s:19:\"2025/02/08 14:30:20\";a:6:{i:0;s:13:\"223.123.5.224\";i:1;s:15:\"asad@mhafs.site\";i:2;s:1:\"2\";i:3;s:21:\"Username Too Short: 2\";i:4;s:80:\"Dear Team, I\\\'m Asad from MHAFs, a digital marketing agency, and I\\\'m very in...\";i:5;s:12:\"/contact-us/\";}s:19:\"2025/02/08 14:31:16\";a:6:{i:0;s:13:\"223.123.5.224\";i:1;s:15:\"asad@mhafs.site\";i:2;s:1:\"2\";i:3;s:21:\"Username Too Short: 2\";i:4;s:80:\"Dear Team, I\\\'m Asad from MHAFs, a digital marketing agency, and I\\\'m very in...\";i:5;s:12:\"/contact-us/\";}s:19:\"2025/05/05 11:09:25\";a:6:{i:0;s:13:\"119.82.89.174\";i:1;s:26:\"nitinkumarwork90@gmail.com\";i:2;s:1:\"2\";i:3;s:21:\"Username Too Short: 2\";i:4;s:80:\"I hope you\\\'re well. Im interested in contributing a guest post to your site....\";i:5;s:12:\"/contact-us/\";}s:19:\"2025/07/05 11:45:02\";a:6:{i:0;s:14:\"103.153.12.162\";i:1;s:23:\"artinc.ashhar@gmail.com\";i:2;s:1:\"2\";i:3;s:21:\"Username Too Short: 2\";i:4;s:66:\"I want to post blogs related to Acoustic Services, Please allow me\";i:5;s:12:\"/contact-us/\";}}s:10:\"addonstats\";a:0:{}s:5:\"multi\";a:1:{s:14:\"89.234.157.254\";a:2:{i:0;s:19:\"2025/10/22 15:20:25\";i:1;i:1;}}s:9:\"cntchkaws\";i:0;s:16:\"cntchkcloudflare\";i:0;s:12:\"cntchkgcache\";i:5;s:18:\"cntchkgenallowlist\";i:0;s:12:\"cntchkgoogle\";i:1;s:19:\"cntchkmiscallowlist\";i:0;s:12:\"cntchkpaypal\";i:0;s:10:\"cntchkform\";i:0;s:13:\"cntchkscripts\";i:10;s:13:\"cntchkvalidip\";i:0;s:10:\"cntchkwlem\";i:0;s:14:\"cntchkwluserid\";i:0;s:11:\"cntchkwlist\";i:0;s:19:\"cntchkyahoomerchant\";i:0;s:7:\"spcount\";i:25170;s:8:\"spmcount\";i:25170;s:6:\"cntcap\";i:0;s:7:\"cntncap\";i:0;s:7:\"cntpass\";i:83;s:7:\"spmdate\";s:10:\"2023/08/29\";s:6:\"spdate\";s:10:\"2023/08/29\";s:9:\"cntchk404\";i:460;s:12:\"cntchkaccept\";i:99;s:11:\"cntchkadmin\";i:0;s:14:\"cntchkadminlog\";i:67;s:11:\"cntchkagent\";i:21141;s:12:\"cntchkamazon\";i:0;s:13:\"cntchkakismet\";i:2;s:12:\"cntchkbcache\";i:268;s:10:\"cntchkblem\";i:0;s:12:\"cntchkuserid\";i:0;s:10:\"cntchkblip\";i:0;s:14:\"cntchkbotscout\";i:0;s:10:\"cntchkdisp\";i:0;s:11:\"cntchkdnsbl\";i:0;s:14:\"cntchkexploits\";i:0;s:16:\"cntchkgooglesafe\";i:0;s:11:\"cntchkhoney\";i:0;s:13:\"cntchkhosting\";i:0;s:15:\"cntchkinvalidip\";i:0;s:10:\"cntchklong\";i:17;s:11:\"cntchkshort\";i:616;s:12:\"cntchkbbcode\";i:0;s:13:\"cntchkreferer\";i:13;s:13:\"cntchksession\";i:0;s:9:\"cntchksfs\";i:236;s:15:\"cntchkspamwords\";i:2313;s:17:\"cntchkchkurlshort\";i:0;s:9:\"cntchktld\";i:0;s:14:\"cntchkubiquity\";i:0;s:11:\"cntchkmulti\";i:1;s:8:\"cntchkAD\";i:0;s:8:\"cntchkAE\";i:0;s:8:\"cntchkAF\";i:0;s:8:\"cntchkAL\";i:0;s:8:\"cntchkAM\";i:0;s:8:\"cntchkAR\";i:0;s:8:\"cntchkAT\";i:0;s:8:\"cntchkAU\";i:0;s:8:\"cntchkAX\";i:0;s:8:\"cntchkAZ\";i:0;s:8:\"cntchkBA\";i:0;s:8:\"cntchkBB\";i:0;s:8:\"cntchkBD\";i:0;s:8:\"cntchkBE\";i:0;s:8:\"cntchkBG\";i:0;s:8:\"cntchkBH\";i:0;s:8:\"cntchkBN\";i:0;s:8:\"cntchkBO\";i:0;s:8:\"cntchkBR\";i:0;s:8:\"cntchkBS\";i:0;s:8:\"cntchkBY\";i:0;s:8:\"cntchkBZ\";i:0;s:8:\"cntchkCA\";i:0;s:8:\"cntchkCD\";i:0;s:8:\"cntchkCH\";i:0;s:8:\"cntchkCL\";i:0;s:8:\"cntchkCN\";i:0;s:8:\"cntchkCO\";i:0;s:8:\"cntchkCR\";i:0;s:8:\"cntchkCU\";i:0;s:8:\"cntchkCW\";i:0;s:8:\"cntchkCY\";i:0;s:8:\"cntchkCZ\";i:0;s:8:\"cntchkDE\";i:0;s:8:\"cntchkDK\";i:0;s:8:\"cntchkDO\";i:0;s:8:\"cntchkDZ\";i:0;s:8:\"cntchkEC\";i:0;s:8:\"cntchkEE\";i:0;s:8:\"cntchkES\";i:0;s:8:\"cntchkEU\";i:0;s:8:\"cntchkFI\";i:0;s:8:\"cntchkFJ\";i:0;s:8:\"cntchkFR\";i:0;s:8:\"cntchkGB\";i:0;s:8:\"cntchkGE\";i:0;s:8:\"cntchkGF\";i:0;s:8:\"cntchkGI\";i:0;s:8:\"cntchkGP\";i:0;s:8:\"cntchkGR\";i:0;s:8:\"cntchkGT\";i:0;s:8:\"cntchkGU\";i:0;s:8:\"cntchkGY\";i:0;s:8:\"cntchkHK\";i:0;s:8:\"cntchkHN\";i:0;s:8:\"cntchkHR\";i:0;s:8:\"cntchkHT\";i:0;s:8:\"cntchkHU\";i:0;s:8:\"cntchkID\";i:0;s:8:\"cntchkIE\";i:0;s:8:\"cntchkIL\";i:0;s:8:\"cntchkIN\";i:0;s:8:\"cntchkIQ\";i:0;s:8:\"cntchkIR\";i:0;s:8:\"cntchkIS\";i:0;s:8:\"cntchkIT\";i:0;s:8:\"cntchkJM\";i:0;s:8:\"cntchkJO\";i:0;s:8:\"cntchkJP\";i:0;s:8:\"cntchkKE\";i:0;s:8:\"cntchkKG\";i:0;s:8:\"cntchkKH\";i:0;s:8:\"cntchkKR\";i:0;s:8:\"cntchkKW\";i:0;s:8:\"cntchkKY\";i:0;s:8:\"cntchkKZ\";i:0;s:8:\"cntchkLA\";i:0;s:8:\"cntchkLB\";i:0;s:8:\"cntchkLK\";i:0;s:8:\"cntchkLT\";i:0;s:8:\"cntchkLU\";i:0;s:8:\"cntchkLV\";i:0;s:8:\"cntchkMD\";i:0;s:8:\"cntchkME\";i:0;s:8:\"cntchkMK\";i:0;s:8:\"cntchkMM\";i:0;s:8:\"cntchkMN\";i:0;s:8:\"cntchkMO\";i:0;s:8:\"cntchkMP\";i:0;s:8:\"cntchkMQ\";i:0;s:8:\"cntchkMT\";i:0;s:8:\"cntchkMV\";i:0;s:8:\"cntchkMX\";i:0;s:8:\"cntchkMY\";i:0;s:8:\"cntchkNC\";i:0;s:8:\"cntchkNI\";i:0;s:8:\"cntchkNL\";i:0;s:8:\"cntchkNO\";i:0;s:8:\"cntchkNP\";i:0;s:8:\"cntchkNZ\";i:0;s:8:\"cntchkOM\";i:0;s:8:\"cntchkPA\";i:0;s:8:\"cntchkPE\";i:0;s:8:\"cntchkPG\";i:0;s:8:\"cntchkPH\";i:0;s:8:\"cntchkPK\";i:0;s:8:\"cntchkPL\";i:0;s:8:\"cntchkPR\";i:0;s:8:\"cntchkPS\";i:0;s:8:\"cntchkPT\";i:0;s:8:\"cntchkPW\";i:0;s:8:\"cntchkPY\";i:0;s:8:\"cntchkQA\";i:0;s:8:\"cntchkRO\";i:0;s:8:\"cntchkRS\";i:0;s:8:\"cntchkRU\";i:0;s:8:\"cntchkSA\";i:0;s:8:\"cntchkSC\";i:0;s:8:\"cntchkSE\";i:0;s:8:\"cntchkSG\";i:0;s:8:\"cntchkSI\";i:0;s:8:\"cntchkSK\";i:0;s:8:\"cntchkSV\";i:0;s:8:\"cntchkSX\";i:0;s:8:\"cntchkSY\";i:0;s:8:\"cntchkTH\";i:0;s:8:\"cntchkTJ\";i:0;s:8:\"cntchkTM\";i:0;s:8:\"cntchkTR\";i:0;s:8:\"cntchkTT\";i:0;s:8:\"cntchkTW\";i:0;s:8:\"cntchkUA\";i:0;s:8:\"cntchkUK\";i:0;s:8:\"cntchkUS\";i:0;s:8:\"cntchkUY\";i:0;s:8:\"cntchkUZ\";i:0;s:8:\"cntchkVC\";i:0;s:8:\"cntchkVE\";i:0;s:8:\"cntchkVN\";i:0;s:8:\"cntchkYE\";i:0;s:7:\"version\";s:6:\"2024.7\";s:13:\"cntchkperiods\";i:4;}', 'yes');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(52567, 'ss_stop_sp_reg_options', 'a:260:{s:11:\"chkadminlog\";s:1:\"Y\";s:6:\"chkaws\";s:1:\"N\";s:13:\"chkcloudflare\";s:1:\"Y\";s:9:\"chkgcache\";s:1:\"Y\";s:15:\"chkgenallowlist\";s:1:\"N\";s:9:\"chkgoogle\";s:1:\"Y\";s:16:\"chkmiscallowlist\";s:1:\"Y\";s:9:\"chkpaypal\";s:1:\"Y\";s:7:\"chkform\";s:1:\"N\";s:15:\"ss_private_mode\";s:1:\"N\";s:18:\"ss_keep_hidden_btn\";s:1:\"Y\";s:15:\"ss_hide_all_btn\";s:1:\"Y\";s:10:\"chkscripts\";s:1:\"Y\";s:10:\"chkvalidip\";s:1:\"Y\";s:7:\"chkwlem\";s:1:\"Y\";s:11:\"chkwluserid\";s:1:\"N\";s:8:\"chkwlist\";s:1:\"Y\";s:13:\"chkwlistemail\";s:1:\"Y\";s:16:\"chkyahoomerchant\";s:1:\"Y\";s:9:\"chkstripe\";s:1:\"Y\";s:15:\"chkauthorizenet\";s:1:\"Y\";s:12:\"chkbraintree\";s:1:\"Y\";s:10:\"chkrecurly\";s:1:\"Y\";s:9:\"chksquare\";s:1:\"Y\";s:30:\"new_user_notification_to_admin\";s:1:\"Y\";s:32:\"ss_new_user_notification_to_user\";s:1:\"Y\";s:40:\"ss_password_change_notification_to_admin\";s:1:\"Y\";s:32:\"ss_send_password_forgotten_email\";s:1:\"Y\";s:30:\"ss_auto_core_update_send_email\";s:1:\"Y\";s:32:\"ss_auto_plugin_update_send_email\";s:1:\"Y\";s:31:\"ss_auto_theme_update_send_email\";s:1:\"Y\";s:26:\"ss_send_email_change_email\";s:1:\"Y\";s:22:\"ss_wp_notify_moderator\";s:1:\"Y\";s:24:\"ss_wp_notify_post_author\";s:1:\"Y\";s:39:\"ss_password_change_notification_to_user\";s:1:\"Y\";s:8:\"chkemail\";s:1:\"Y\";s:5:\"chkip\";s:1:\"Y\";s:11:\"chkcomments\";s:1:\"Y\";s:9:\"chksignup\";s:1:\"Y\";s:9:\"chkxmlrpc\";s:1:\"Y\";s:9:\"chkwpmail\";s:1:\"Y\";s:14:\"addtoallowlist\";s:1:\"N\";s:9:\"wlreqmail\";s:0:\"\";s:5:\"wlreq\";s:1:\"Y\";s:5:\"redir\";s:1:\"N\";s:10:\"chkcaptcha\";s:1:\"N\";s:6:\"chkxff\";s:1:\"N\";s:6:\"notify\";s:1:\"N\";s:12:\"emailrequest\";s:1:\"N\";s:8:\"chkspoof\";s:1:\"N\";s:19:\"filterregistrations\";s:1:\"Y\";s:6:\"chk404\";s:1:\"Y\";s:9:\"chkaccept\";s:1:\"Y\";s:8:\"chkadmin\";s:1:\"Y\";s:8:\"chkagent\";s:1:\"Y\";s:9:\"chkamazon\";s:1:\"N\";s:9:\"chkbcache\";s:1:\"Y\";s:7:\"chkblem\";s:1:\"Y\";s:11:\"chkbluserid\";s:1:\"N\";s:7:\"chkblip\";s:1:\"Y\";s:11:\"chkbotscout\";s:1:\"Y\";s:7:\"chkdisp\";s:1:\"Y\";s:8:\"chkdnsbl\";s:1:\"Y\";s:11:\"chkexploits\";s:1:\"Y\";s:13:\"chkgooglesafe\";s:1:\"N\";s:8:\"chkhoney\";s:1:\"Y\";s:10:\"chkhosting\";s:1:\"Y\";s:12:\"chkinvalidip\";s:1:\"Y\";s:7:\"chklong\";s:1:\"Y\";s:8:\"chkshort\";s:1:\"Y\";s:9:\"chkbbcode\";s:1:\"Y\";s:10:\"chkreferer\";s:1:\"Y\";s:10:\"chksession\";s:1:\"Y\";s:6:\"chksfs\";s:1:\"Y\";s:12:\"chkspamwords\";s:1:\"Y\";s:11:\"chkurlshort\";s:1:\"Y\";s:7:\"chkurls\";s:1:\"Y\";s:6:\"chktld\";s:1:\"Y\";s:11:\"chkubiquity\";s:1:\"Y\";s:10:\"chkakismet\";s:1:\"Y\";s:8:\"chkmulti\";s:1:\"Y\";s:6:\"chktor\";s:1:\"N\";s:10:\"chkperiods\";s:1:\"Y\";s:10:\"chkhyphens\";s:1:\"Y\";s:9:\"badagents\";a:154:{i:0;s:6:\"Abonti\";i:1;s:10:\"aggregator\";i:2;s:9:\"AhrefsBot\";i:3;s:8:\"asterias\";i:4;s:6:\"BDCbot\";i:5;s:7:\"BLEXBot\";i:6;s:13:\"BuiltBotTough\";i:7;s:8:\"Bullseye\";i:8;s:13:\"BunnySlippers\";i:9;s:10:\"ca-crawler\";i:10;s:5:\"CCBot\";i:11;s:9:\"Cegbfeieh\";i:12;s:9:\"CheeseBot\";i:13;s:12:\"CherryPicker\";i:14;s:17:\"CherryPickerElite\";i:15;s:14:\"CherryPickerSE\";i:16;s:14:\"CopyRightCheck\";i:17;s:6:\"cosmos\";i:18;s:25:\"Crescent Internet ToolPak\";i:19;s:8:\"Crescent\";i:20;s:8:\"discobot\";i:21;s:11:\"DittoSpyder\";i:22;s:3:\"DOC\";i:23;s:6:\"DotBot\";i:24;s:14:\"Download Ninja\";i:25;s:11:\"EasouSpider\";i:26;s:14:\"EmailCollector\";i:27;s:11:\"EmailSiphon\";i:28;s:9:\"EmailWolf\";i:29;s:10:\"EroCrawler\";i:30;s:6:\"Exabot\";i:31;s:12:\"ExtractorPro\";i:32;s:9:\"Fasterfox\";i:33;s:11:\"FeedBooster\";i:34;s:6:\"Foobot\";i:35;s:6:\"Genieo\";i:36;s:11:\"grub-client\";i:37;s:7:\"Harvest\";i:38;s:7:\"hloader\";i:39;s:7:\"httplib\";i:40;s:7:\"HTTrack\";i:41;s:10:\"humanlinks\";i:42;s:15:\"ieautodiscovery\";i:43;s:13:\"InfoNaviRobot\";i:44;s:10:\"IstellaBot\";i:45;s:7:\"Java/1.\";i:46;s:8:\"JennyBot\";i:47;s:8:\"k2spider\";i:48;s:13:\"Kenjin Spider\";i:49;s:19:\"Keyword Density/0.9\";i:50;s:6:\"larbin\";i:51;s:7:\"LexiBot\";i:52;s:6:\"libWeb\";i:53;s:6:\"libwww\";i:54;s:16:\"LinkextractorPro\";i:55;s:5:\"linko\";i:56;s:18:\"LinkScan/8.1a Unix\";i:57;s:10:\"LinkWalker\";i:58;s:11:\"LNSpiderguy\";i:59;s:11:\"lwp-trivial\";i:60;s:11:\"lwp-trivial\";i:61;s:6:\"magpie\";i:62;s:9:\"Mata Hari\";i:63;s:15:\"MaxPointCrawler\";i:64;s:9:\"MegaIndex\";i:65;s:21:\"Microsoft URL Control\";i:66;s:6:\"MIIxpc\";i:67;s:6:\"Mippin\";i:68;s:16:\"Missigua Locator\";i:69;s:10:\"Mister PiX\";i:70;s:7:\"MJ12bot\";i:71;s:5:\"moget\";i:72;s:11:\"MSIECrawler\";i:73;s:7:\"NetAnts\";i:74;s:9:\"NICErsPRO\";i:75;s:8:\"Niki-Bot\";i:76;s:5:\"NPBot\";i:77;s:5:\"Nutch\";i:78;s:16:\"Offline Explorer\";i:79;s:21:\"Openfind data gathere\";i:80;s:8:\"Openfind\";i:81;s:13:\"panscient.com\";i:82;s:7:\"PHP/5.{\";i:83;s:16:\"ProPowerBot/2.14\";i:84;s:12:\"ProWebWalker\";i:85;s:13:\"Python-urllib\";i:86;s:17:\"QueryN Metasearch\";i:87;s:10:\"RepoMonkey\";i:88;s:10:\"RepoMonkey\";i:89;s:3:\"RMA\";i:90;s:10:\"SemrushBot\";i:91;s:10:\"SeznamBot \";i:92;s:7:\"SISTRIX\";i:93;s:26:\"sitecheck.Internetseer.com\";i:94;s:11:\"SiteSnagger\";i:95;s:14:\"SnapPreviewBot\";i:96;s:5:\"Sogou\";i:97;s:8:\"SpankBot\";i:98;s:7:\"spanner\";i:99;s:5:\"spbot\";i:100;s:7:\"Spinn3r\";i:101;s:7:\"suzuran\";i:102;s:11:\"Szukacz/1.4\";i:103;s:17:\"Teleport Pro/1.29\";i:104;s:8:\"Teleport\";i:105;s:11:\"TeleportPro\";i:106;s:8:\"Telesoft\";i:107;s:16:\"The Intraformant\";i:108;s:8:\"TheNomad\";i:109;s:12:\"TightTwatBot\";i:110;s:5:\"Titan\";i:111;s:21:\"toCrawl/UrlDispatcher\";i:112;s:10:\"True_Robot\";i:113;s:14:\"True_Robot/1.0\";i:114;s:8:\"turingos\";i:115;s:11:\"TurnitinBot\";i:116;s:10:\"UbiCrawler\";i:117;s:10:\"UnisterBot\";i:118;s:12:\"URLy Warning\";i:119;s:33:\"VCI WebViewer VCI WebViewer Win32\";i:120;s:3:\"VCI\";i:121;s:11:\"WBSearchBot\";i:122;s:18:\"Web Downloader/6.9\";i:123;s:19:\"Web Image Collector\";i:124;s:7:\"WebAuto\";i:125;s:9:\"WebBandit\";i:126;s:14:\"WebBandit/3.50\";i:127;s:14:\"WebCopier v4.0\";i:128;s:9:\"WebCopier\";i:129;s:11:\"WebEnhancer\";i:130;s:22:\"WebmasterWorldForumBot\";i:131;s:9:\"WebReaper\";i:132;s:9:\"WebSauger\";i:133;s:15:\"Website Quester\";i:134;s:11:\"Webster Pro\";i:135;s:11:\"WebStripper\";i:136;s:6:\"WebZip\";i:137;s:6:\"Wotbox\";i:138;s:9:\"wsr-agent\";i:139;s:15:\"WWW-Collector-E\";i:140;s:4:\"Xenu\";i:141;s:6:\"yandex\";i:142;s:3:\"Zao\";i:143;s:4:\"Zeus\";i:144;s:4:\"Zeus\";i:145;s:6:\"ZyBORG\";i:146;s:6:\"coccoc\";i:147;s:7:\"Incutio\";i:148;s:8:\"lmspider\";i:149;s:9:\"memoryBot\";i:150;s:10:\"SemrushBot\";i:151;s:4:\"serf\";i:152;s:7:\"Unknown\";i:153;s:12:\"uptime files\";}s:7:\"badTLDs\";a:0:{}s:5:\"blist\";N;s:10:\"payoptions\";a:0:{}s:5:\"wlist\";a:1:{i:0;s:13:\"213.230.86.30\";}s:11:\"wlist_email\";a:0:{}s:9:\"spamwords\";a:326:{i:0;s:7:\"-online\";i:1;s:2:\"#1\";i:2;s:3:\"$$$\";i:3;s:9:\"100% free\";i:4;s:9:\"100% more\";i:5;s:14:\"100% satisfied\";i:6;s:3:\"4-u\";i:7;s:2:\"4u\";i:8;s:19:\"Accept credit cards\";i:9;s:7:\"Act now\";i:10;s:2:\"Ad\";i:11;s:17:\"Additional income\";i:12;s:17:\"additional-income\";i:13;s:6:\"adipex\";i:14;s:7:\"advicer\";i:15;s:7:\"air max\";i:16;s:7:\"All new\";i:17;s:8:\"allstate\";i:18;s:6:\"ambien\";i:19;s:9:\"Apply now\";i:20;s:10:\"As seen on\";i:21;s:9:\"baccarrat\";i:22;s:20:\"BackPage Ads Posting\";i:23;s:16:\"BackPage Posting\";i:24;s:19:\"barbour northumbria\";i:25;s:7:\"Bargain\";i:26;s:16:\"Be your own boss\";i:27;s:15:\"Become a member\";i:28;s:11:\"Beneficiary\";i:29;s:10:\"Best price\";i:30;s:9:\"Big bucks\";i:31;s:7:\"Billing\";i:32;s:5:\"bingo\";i:33;s:9:\"blackjack\";i:34;s:9:\"bllogspot\";i:35;s:5:\"Bonus\";i:36;s:6:\"booker\";i:37;s:10:\"Bulk email\";i:38;s:10:\"Buy direct\";i:39;s:4:\"byob\";i:40;s:8:\"Call now\";i:41;s:18:\"Cancel at any time\";i:42;s:17:\"car-rental-e-site\";i:43;s:18:\"car-rentals-e-site\";i:44;s:14:\"Cards accepted\";i:45;s:12:\"carisoprodol\";i:46;s:10:\"Cash bonus\";i:47;s:4:\"Cash\";i:48;s:6:\"casino\";i:49;s:19:\"Cents on the dollar\";i:50;s:9:\"Certified\";i:51;s:8:\"chatroom\";i:52;s:5:\"Cheap\";i:53;s:20:\"Check or money order\";i:54;s:6:\"cialis\";i:55;s:6:\"Claims\";i:56;s:9:\"Clearance\";i:57;s:11:\"Click below\";i:58;s:10:\"Click here\";i:59;s:18:\"Collect your prize\";i:60;s:13:\"Compare rates\";i:61;s:15:\"Confidentiality\";i:62;s:15:\"Congratulations\";i:63;s:16:\"Consolidate debt\";i:64;s:6:\"coolhu\";i:65;s:22:\"CraigsList Ads Posting\";i:66;s:18:\"Credit card offers\";i:67;s:16:\"credit-card-debt\";i:68;s:13:\"credit-report\";i:69;s:14:\"Cures baldness\";i:70;s:5:\"Cures\";i:71;s:4:\"cwas\";i:72;s:6:\"cyclen\";i:73;s:15:\"cyclobenzaprine\";i:74;s:13:\"dating-e-site\";i:75;s:11:\"day-trading\";i:76;s:4:\"Deal\";i:77;s:11:\"Dear friend\";i:78;s:11:\"Dear Friend\";i:79;s:18:\"debt-consolidation\";i:80;s:4:\"Debt\";i:81;s:12:\"Direct email\";i:82;s:16:\"Direct marketing\";i:83;s:8:\"Discount\";i:84;s:16:\"discreetordering\";i:85;s:11:\"Do it today\";i:86;s:14:\"Don’t delete\";i:87;s:16:\"Double your cash\";i:88;s:18:\"Double your income\";i:89;s:9:\"duty-free\";i:90;s:8:\"dutyfree\";i:91;s:15:\"Earn extra cash\";i:92;s:10:\"Earn money\";i:93;s:9:\"Easy date\";i:94;s:20:\"Eliminate bad credit\";i:95;s:13:\"Email harvest\";i:96;s:15:\"email-marketing\";i:97;s:11:\"equityloans\";i:98;s:14:\"Exclusive deal\";i:99;s:14:\"Expect to earn\";i:100;s:10:\"Extra cash\";i:101;s:12:\"Extra income\";i:102;s:12:\"extra-income\";i:103;s:9:\"Fantastic\";i:104;s:9:\"Fast cash\";i:105;s:9:\"fast-cash\";i:106;s:17:\"Financial freedom\";i:107;s:17:\"Financial Schemes\";i:108;s:8:\"fioricet\";i:109;s:20:\"flowers-leading-site\";i:110;s:11:\"Free access\";i:111;s:17:\"Free consultation\";i:112;s:14:\"Free gift card\";i:113;s:9:\"Free gift\";i:114;s:12:\"Free hosting\";i:115;s:9:\"Free info\";i:116;s:15:\"Free investment\";i:117;s:15:\"Free membership\";i:118;s:10:\"Free money\";i:119;s:12:\"Free preview\";i:120;s:10:\"Free quote\";i:121;s:10:\"Free trial\";i:122;s:16:\"freenet-shopping\";i:123;s:7:\"freenet\";i:124;s:11:\"Full refund\";i:125;s:9:\"gambling-\";i:126;s:10:\"Get it now\";i:127;s:15:\"Get out of debt\";i:128;s:8:\"Get paid\";i:129;s:15:\"Get started now\";i:130;s:8:\"Giveaway\";i:131;s:10:\"Guaranteed\";i:132;s:9:\"hair-loss\";i:133;s:21:\"health-insurancedeals\";i:134;s:14:\"Hidden charges\";i:135;s:6:\"holdem\";i:136;s:19:\"Home based business\";i:137;s:10:\"Home based\";i:138;s:21:\"home security systems\";i:139;s:10:\"home-based\";i:140;s:9:\"homebased\";i:141;s:15:\"homeequityloans\";i:142;s:11:\"homefinance\";i:143;s:7:\"Hot men\";i:144;s:9:\"Hot women\";i:145;s:17:\"hotel-dealse-site\";i:146;s:11:\"hotele-site\";i:147;s:12:\"hotelse-site\";i:148;s:20:\"Human growth hormone\";i:149;s:31:\"Important information regarding\";i:150;s:23:\"In accordance with laws\";i:151;s:6:\"incest\";i:152;s:16:\"Income from home\";i:153;s:6:\"Income\";i:154;s:14:\"Increase sales\";i:155;s:14:\"Increase sales\";i:156;s:16:\"Increase traffic\";i:157;s:16:\"Increase traffic\";i:158;s:15:\"Incredible deal\";i:159;s:25:\"Information you requested\";i:160;s:7:\"Instant\";i:161;s:16:\"insurance-quotes\";i:162;s:14:\"insurancedeals\";i:163;s:8:\"insurnce\";i:164;s:18:\"Internet marketing\";i:165;s:10:\"Investment\";i:166;s:13:\"Join millions\";i:167;s:11:\"jrcreations\";i:168;s:15:\"Lead generation\";i:169;s:7:\"levitra\";i:170;s:8:\"Lifetime\";i:171;s:12:\"Limited time\";i:172;s:5:\"Loans\";i:173;s:11:\"Lose weight\";i:174;s:11:\"Lower rates\";i:175;s:12:\"Lowest price\";i:176;s:6:\"Luxury\";i:177;s:11:\"macinstruct\";i:178;s:6:\"Make $\";i:179;s:10:\"Make money\";i:180;s:18:\"Marketing solution\";i:181;s:19:\"Marketing solutions\";i:182;s:10:\"Mass email\";i:183;s:12:\"Meet singles\";i:184;s:16:\"Message contains\";i:185;s:15:\"Million dollars\";i:186;s:7:\"Miracle\";i:187;s:10:\"Money back\";i:188;s:17:\"Month trial offer\";i:189;s:14:\"Mortgage rates\";i:190;s:8:\"Mortgage\";i:191;s:14:\"mortgagequotes\";i:192;s:21:\"Multi-level marketing\";i:193;s:10:\"Name brand\";i:194;s:18:\"New customers only\";i:195;s:4:\"nike\";i:196;s:8:\"No catch\";i:197;s:7:\"No cost\";i:198;s:15:\"No credit check\";i:199;s:7:\"No fees\";i:200;s:10:\"No gimmick\";i:201;s:15:\"No hidden costs\";i:202;s:14:\"No hidden fees\";i:203;s:11:\"No interest\";i:204;s:13:\"No investment\";i:205;s:13:\"No obligation\";i:206;s:21:\"No purchase necessary\";i:207;s:18:\"No questions asked\";i:208;s:19:\"No strings attached\";i:209;s:8:\"Not junk\";i:210;s:7:\"Notspam\";i:211;s:10:\"Obligation\";i:212;s:5:\"Offer\";i:213;s:18:\"Once in a lifetime\";i:214;s:24:\"One hundred percent free\";i:215;s:8:\"One time\";i:216;s:22:\"Online biz opportunity\";i:217;s:13:\"Online degree\";i:218;s:16:\"Online marketing\";i:219;s:15:\"Online pharmacy\";i:220;s:15:\"online-gambling\";i:221;s:14:\"onlinegambling\";i:222;s:11:\"Opportunity\";i:223;s:6:\"Opt in\";i:224;s:9:\"Order now\";i:225;s:14:\"ottawavalleyag\";i:226;s:8:\"ownsthis\";i:227;s:9:\"Passwords\";i:228;s:5:\"paxil\";i:229;s:5:\"penis\";i:230;s:13:\"Pennies a day\";i:231;s:14:\"Perform in bed\";i:232;s:8:\"pharmacy\";i:233;s:11:\"phentermine\";i:234;s:11:\"Please read\";i:235;s:10:\"poker-chip\";i:236;s:5:\"poker\";i:237;s:18:\"Potential earnings\";i:238;s:4:\"poze\";i:239;s:12:\"Pre-approved\";i:240;s:5:\"Prize\";i:241;s:7:\"Promise\";i:242;s:11:\"Pure profit\";i:243;s:5:\"pussy\";i:244;s:5:\"Quote\";i:245;s:5:\"Rates\";i:246;s:10:\"real money\";i:247;s:9:\"Refinance\";i:248;s:7:\"Removal\";i:249;s:16:\"Removes wrinkles\";i:250;s:17:\"rental-car-e-site\";i:251;s:27:\"Requires initial investment\";i:252;s:18:\"Reserves the right\";i:253;s:14:\"Reverses aging\";i:254;s:9:\"ringtones\";i:255;s:9:\"Risk-free\";i:256;s:8:\"roulette\";i:257;s:23:\"Satisfaction guaranteed\";i:258;s:14:\"Save big money\";i:259;s:10:\"Save up to\";i:260;s:13:\"Score tonight\";i:261;s:5:\"Score\";i:262;s:26:\"Search Engine Optimization\";i:263;s:13:\"Search engine\";i:264;s:16:\"See for yourself\";i:265;s:18:\"Sent in compliance\";i:266;s:4:\"seo-\";i:267;s:7:\"shemale\";i:268;s:4:\"Shox\";i:269;s:11:\"sibutramine\";i:270;s:12:\"Sign up free\";i:271;s:18:\"Sign-up free today\";i:272;s:12:\"slot-machine\";i:273;s:22:\"Social security number\";i:274;s:22:\"Social Security Number\";i:275;s:17:\"Special promotion\";i:276;s:11:\"Stock alert\";i:277;s:12:\"Stop snoring\";i:278;s:13:\"Subject to…\";i:279;s:11:\"Take action\";i:280;s:20:\"Terms and conditions\";i:281;s:19:\"This isn’t a scam\";i:282;s:17:\"This isn’t junk\";i:283;s:17:\"This isn’t spam\";i:284;s:17:\"This won’t last\";i:285;s:11:\"thorcarlson\";i:286;s:10:\"top-e-site\";i:287;s:8:\"top-site\";i:288;s:8:\"tramadol\";i:289;s:5:\"Trial\";i:290;s:8:\"trim-spa\";i:291;s:6:\"ultram\";i:292;s:11:\"Undisclosed\";i:293;s:19:\"University diplomas\";i:294;s:9:\"Unlimited\";i:295;s:16:\"Unsecured credit\";i:296;s:14:\"Unsecured debt\";i:297;s:11:\"Unsolicited\";i:298;s:15:\"Urgent proposal\";i:299;s:6:\"Urgent\";i:300;s:28:\"valeofglamorganconservatives\";i:301;s:6:\"Valium\";i:302;s:6:\"viagra\";i:303;s:6:\"Viagra\";i:304;s:7:\"Vicodin\";i:305;s:5:\"vioxx\";i:306;s:8:\"Warranty\";i:307;s:12:\"We hate spam\";i:308;s:11:\"Web traffic\";i:309;s:11:\"Weight loss\";i:310;s:11:\"weight-loss\";i:311;s:10:\"weightloss\";i:312;s:25:\"What are you waiting for?\";i:313;s:19:\"While supplies last\";i:314;s:26:\"Will not believe your eyes\";i:315;s:6:\"Winner\";i:316;s:7:\"Winning\";i:317;s:14:\"Work from home\";i:318;s:12:\"work-at-home\";i:319;s:10:\"workathome\";i:320;s:5:\"xanax\";i:321;s:5:\"Xanax\";i:322;s:16:\"You are a winner\";i:323;s:22:\"You have been selected\";i:324;s:17:\"You’re a winner\";i:325;s:5:\"zolus\";}s:17:\"blockurlshortners\";a:637:{i:0;s:6:\"0rz.tw\";i:1;s:9:\"1-url.net\";i:2;s:6:\"126.am\";i:3;s:8:\"1link.in\";i:4;s:6:\"1tk.us\";i:5;s:6:\"1un.fr\";i:6;s:8:\"1url.com\";i:7;s:7:\"1url.cz\";i:8;s:8:\"1wb2.net\";i:9;s:4:\"2.gp\";i:10;s:4:\"2.ht\";i:11;s:7:\"23o.net\";i:12;s:6:\"2ad.in\";i:13;s:7:\"2big.at\";i:14;s:8:\"2doc.net\";i:15;s:9:\"2fear.com\";i:16;s:6:\"2pl.us\";i:17;s:6:\"2tu.us\";i:18;s:6:\"2ty.in\";i:19;s:8:\"2u.xf.cz\";i:20;s:7:\"2ya.com\";i:21;s:6:\"3ra.be\";i:22;s:5:\"3x.si\";i:23;s:5:\"4i.ae\";i:24;s:7:\"4url.cc\";i:25;s:8:\"4view.me\";i:26;s:6:\"5em.cz\";i:27;s:8:\"5url.net\";i:28;s:8:\"5z8.info\";i:29;s:6:\"6fr.ru\";i:30;s:6:\"6g6.eu\";i:31;s:8:\"6url.com\";i:32;s:4:\"7.ly\";i:33;s:5:\"76.gd\";i:34;s:5:\"77.ai\";i:35;s:7:\"7fth.cc\";i:36;s:6:\"7li.in\";i:37;s:6:\"7vd.cn\";i:38;s:5:\"8u.cz\";i:39;s:6:\"944.la\";i:40;s:5:\"98.to\";i:41;s:10:\"AltURL.com\";i:42;s:10:\"BudURL.com\";i:43;s:7:\"Buff.ly\";i:44;s:11:\"BurnURL.com\";i:45;s:6:\"C-O.IN\";i:46;s:14:\"ClickMeter.com\";i:47;s:13:\"DecentURL.com\";i:48;s:10:\"DigBig.com\";i:49;s:8:\"Digg.com\";i:50;s:12:\"DwarfURL.com\";i:51;s:11:\"EasyURI.com\";i:52;s:11:\"EasyURL.net\";i:53;s:10:\"EsyURL.com\";i:54;s:9:\"Fhurl.com\";i:55;s:7:\"Fly2.ws\";i:56;s:8:\"GoWat.ch\";i:57;s:7:\"Hurl.it\";i:58;s:10:\"IsCool.net\";i:59;s:7:\"Just.as\";i:60;s:5:\"L9.fr\";i:61;s:8:\"Lvvk.com\";i:62;s:8:\"MyURL.in\";i:63;s:9:\"PiURL.com\";i:64;s:10:\"Profile.to\";i:65;s:8:\"QLNK.net\";i:66;s:12:\"Quip-Art.com\";i:67;s:10:\"RedirX.com\";i:68;s:11:\"Sharein.com\";i:69;s:16:\"ShortLinks.co.uk\";i:70;s:13:\"Shrinkify.com\";i:71;s:10:\"SimURL.com\";i:72;s:12:\"StartURL.com\";i:73;s:12:\"TightURL.com\";i:74;s:8:\"Tnij.org\";i:75;s:6:\"To8.cc\";i:76;s:12:\"TraceURL.com\";i:77;s:6:\"URL.ie\";i:78;s:11:\"URLHawk.com\";i:79;s:12:\"WapURL.co.uk\";i:80;s:10:\"XeeURL.com\";i:81;s:6:\"Yep.it\";i:82;s:4:\"a.co\";i:83;s:4:\"a.gg\";i:84;s:4:\"a.nf\";i:85;s:5:\"a0.fr\";i:86;s:6:\"a2a.me\";i:87;s:7:\"abbr.sk\";i:88;s:9:\"abbrr.com\";i:89;s:9:\"ad-med.cz\";i:90;s:6:\"ad5.eu\";i:91;s:7:\"ad7.biz\";i:92;s:6:\"adb.ug\";i:93;s:6:\"adf.ly\";i:94;s:7:\"adfa.st\";i:95;s:8:\"adfly.fr\";i:96;s:8:\"adfoc.us\";i:97;s:9:\"adjix.com\";i:98;s:7:\"adli.pw\";i:99;s:9:\"admy.link\";i:100;s:6:\"adv.li\";i:101;s:6:\"ajn.me\";i:102;s:6:\"aka.gr\";i:103;s:5:\"al.ly\";i:104;s:7:\"alil.in\";i:105;s:6:\"any.gs\";i:106;s:7:\"aqva.pl\";i:107;s:7:\"ares.tl\";i:108;s:7:\"asso.in\";i:109;s:6:\"atu.ca\";i:110;s:5:\"au.ms\";i:111;s:6:\"ayt.fr\";i:112;s:8:\"azali.fr\";i:113;s:6:\"b00.fr\";i:114;s:6:\"b23.ru\";i:115;s:6:\"b54.in\";i:116;s:7:\"bacn.me\";i:117;s:7:\"baid.us\";i:118;s:5:\"bc.vc\";i:119;s:8:\"bee4.biz\";i:120;s:6:\"bim.im\";i:121;s:6:\"bit.do\";i:122;s:6:\"bit.ly\";i:123;s:9:\"bitly.com\";i:124;s:7:\"bitw.in\";i:125;s:9:\"bkite.com\";i:126;s:8:\"blap.net\";i:127;s:6:\"ble.pl\";i:128;s:7:\"blip.tv\";i:129;s:8:\"bloat.me\";i:130;s:6:\"boi.re\";i:131;s:7:\"bote.me\";i:132;s:8:\"bougn.at\";i:133;s:6:\"br4.in\";i:134;s:6:\"brk.to\";i:135;s:8:\"brzu.net\";i:136;s:10:\"budurl.com\";i:137;s:6:\"buk.me\";i:138;s:6:\"bul.lu\";i:139;s:6:\"bxl.me\";i:140;s:6:\"bzh.me\";i:141;s:9:\"cachor.ro\";i:142;s:9:\"captur.in\";i:143;s:14:\"catchylink.com\";i:144;s:6:\"cbs.so\";i:145;s:7:\"cbug.cc\";i:146;s:5:\"cc.cc\";i:147;s:6:\"ccj.im\";i:148;s:5:\"cf.ly\";i:149;s:6:\"cf2.me\";i:150;s:6:\"cf6.co\";i:151;s:8:\"chilp.it\";i:152;s:7:\"cjb.net\";i:153;s:7:\"clck.ru\";i:154;s:6:\"cli.gs\";i:155;s:8:\"clikk.in\";i:156;s:8:\"cn86.org\";i:157;s:11:\"coinurl.com\";i:158;s:7:\"cort.as\";i:159;s:8:\"couic.fr\";i:160;s:5:\"cr.tl\";i:161;s:9:\"cudder.it\";i:162;s:6:\"cur.lv\";i:163;s:7:\"curl.im\";i:164;s:6:\"cut.pe\";i:165;s:6:\"cut.sk\";i:166;s:7:\"cutt.eu\";i:167;s:7:\"cutt.us\";i:168;s:7:\"cutu.me\";i:169;s:10:\"cuturl.com\";i:170;s:7:\"cybr.fr\";i:171;s:9:\"cyonix.to\";i:172;s:6:\"d75.eu\";i:173;s:6:\"daa.pl\";i:174;s:6:\"dai.ly\";i:175;s:5:\"dd.ma\";i:176;s:7:\"ddp.net\";i:177;s:13:\"decenturl.com\";i:178;s:7:\"dfl8.me\";i:179;s:6:\"dft.ba\";i:180;s:9:\"doiop.com\";i:181;s:7:\"dolp.cc\";i:182;s:9:\"dopice.sk\";i:183;s:8:\"droid.ws\";i:184;s:5:\"dv.gd\";i:185;s:5:\"dy.fi\";i:186;s:6:\"dyo.gs\";i:187;s:6:\"e37.eu\";i:188;s:7:\"ecra.se\";i:189;s:10:\"eepurl.com\";i:190;s:6:\"ely.re\";i:191;s:7:\"erax.cz\";i:192;s:6:\"erw.cz\";i:193;s:9:\"ewerl.com\";i:194;s:6:\"ex9.co\";i:195;s:8:\"ezurl.cc\";i:196;s:4:\"fa.b\";i:197;s:5:\"ff.im\";i:198;s:6:\"fff.re\";i:199;s:6:\"fff.to\";i:200;s:6:\"fff.wf\";i:201;s:7:\"filz.fr\";i:202;s:7:\"fire.to\";i:203;s:11:\"firsturl.de\";i:204;s:7:\"flic.kr\";i:205;s:7:\"fly2.ws\";i:206;s:6:\"fnk.es\";i:207;s:6:\"foe.hn\";i:208;s:7:\"folu.me\";i:209;s:6:\"fon.gs\";i:210;s:8:\"freze.it\";i:211;s:6:\"fur.ly\";i:212;s:7:\"fwd4.me\";i:213;s:6:\"g00.me\";i:214;s:5:\"gg.gg\";i:215;s:6:\"git.io\";i:216;s:5:\"gl.am\";i:217;s:10:\"go.9nl.com\";i:218;s:6:\"go2.me\";i:219;s:10:\"go2cut.com\";i:220;s:6:\"goo.gl\";i:221;s:6:\"goo.lu\";i:222;s:7:\"good.ly\";i:223;s:12:\"goshrink.com\";i:224;s:7:\"grem.io\";i:225;s:6:\"gri.ms\";i:226;s:9:\"guiama.is\";i:227;s:7:\"gurl.es\";i:228;s:8:\"hadej.co\";i:229;s:6:\"hec.su\";i:230;s:12:\"hellotxt.com\";i:231;s:6:\"hex.io\";i:232;s:7:\"hide.my\";i:233;s:7:\"hjkl.fr\";i:234;s:7:\"hops.me\";i:235;s:9:\"hover.com\";i:236;s:7:\"href.in\";i:237;s:7:\"href.li\";i:238;s:5:\"ht.ly\";i:239;s:7:\"htxt.it\";i:240;s:11:\"hugeurl.com\";i:241;s:7:\"hurl.me\";i:242;s:7:\"hurl.ws\";i:243;s:6:\"i-2.co\";i:244;s:6:\"i99.cz\";i:245;s:11:\"icanhaz.com\";i:246;s:7:\"icit.fr\";i:247;s:6:\"ick.li\";i:248;s:7:\"icks.ro\";i:249;s:8:\"idek.net\";i:250;s:8:\"iiiii.in\";i:251;s:6:\"iky.fr\";i:252;s:7:\"ilix.in\";i:253;s:7:\"info.ms\";i:254;s:10:\"inreply.to\";i:255;s:5:\"is.gd\";i:256;s:7:\"isra.li\";i:257;s:11:\"iterasi.net\";i:258;s:6:\"itm.im\";i:259;s:6:\"ity.im\";i:260;s:5:\"ix.sk\";i:261;s:4:\"j.gs\";i:262;s:4:\"j.mp\";i:263;s:7:\"jdem.cz\";i:264;s:7:\"jieb.be\";i:265;s:8:\"jijr.com\";i:266;s:8:\"jmp2.net\";i:267;s:8:\"jp22.net\";i:268;s:6:\"jqw.de\";i:269;s:7:\"kask.us\";i:270;s:7:\"kd2.org\";i:271;s:6:\"kfd.pl\";i:272;s:8:\"kissa.be\";i:273;s:5:\"kl.am\";i:274;s:7:\"klck.me\";i:275;s:8:\"korta.nu\";i:276;s:7:\"kr3w.de\";i:277;s:7:\"krat.si\";i:278;s:9:\"kratsi.cz\";i:279;s:7:\"krod.cz\";i:280;s:11:\"krunchd.com\";i:281;s:6:\"kuc.cz\";i:282;s:6:\"kxb.me\";i:283;s:6:\"l-k.be\";i:284;s:4:\"l.gg\";i:285;s:7:\"lc-s.co\";i:286;s:5:\"lc.cx\";i:287;s:7:\"lcut.in\";i:288;s:8:\"letop10.\";i:289;s:9:\"libero.it\";i:290;s:7:\"lick.my\";i:291;s:7:\"lien.li\";i:292;s:7:\"lien.pl\";i:293;s:7:\"liip.to\";i:294;s:11:\"liltext.com\";i:295;s:6:\"lin.cr\";i:296;s:6:\"lin.io\";i:297;s:11:\"linkbee.com\";i:298;s:10:\"linkbun.ch\";i:299;s:8:\"linkn.co\";i:300;s:8:\"liurl.cn\";i:301;s:6:\"llu.ch\";i:302;s:8:\"ln-s.net\";i:303;s:7:\"ln-s.ru\";i:304;s:6:\"lnk.co\";i:305;s:6:\"lnk.gd\";i:306;s:6:\"lnk.in\";i:307;s:6:\"lnk.ly\";i:308;s:6:\"lnk.sk\";i:309;s:8:\"lnked.in\";i:310;s:7:\"lnks.fr\";i:311;s:7:\"lnky.fr\";i:312;s:6:\"lnp.sn\";i:313;s:8:\"loopt.us\";i:314;s:7:\"lp25.fr\";i:315;s:6:\"lru.jp\";i:316;s:5:\"lt.tl\";i:317;s:7:\"lurl.no\";i:318;s:7:\"lynk.my\";i:319;s:6:\"m1p.fr\";i:320;s:8:\"m3mi.com\";i:321;s:7:\"make.my\";i:322;s:7:\"mcaf.ee\";i:323;s:9:\"mdl29.net\";i:324;s:12:\"metamark.net\";i:325;s:6:\"mic.fr\";i:326;s:8:\"migre.me\";i:327;s:12:\"minilien.com\";i:328;s:11:\"miniurl.com\";i:329;s:7:\"minu.me\";i:330;s:9:\"minurl.fr\";i:331;s:10:\"moourl.com\";i:332;s:7:\"more.sh\";i:333;s:6:\"mut.lu\";i:334;s:8:\"myurl.in\";i:335;s:7:\"ne1.net\";i:336;s:6:\"net.ms\";i:337;s:9:\"net46.net\";i:338;s:8:\"nicou.ch\";i:339;s:6:\"nig.gr\";i:340;s:6:\"njx.me\";i:341;s:5:\"nn.nf\";i:342;s:11:\"notlong.com\";i:343;s:6:\"nov.io\";i:344;s:5:\"nq.st\";i:345;s:7:\"nsfw.in\";i:346;s:6:\"nxy.in\";i:347;s:6:\"o-x.fr\";i:348;s:7:\"okok.fr\";i:349;s:5:\"om.ly\";i:350;s:5:\"ou.af\";i:351;s:5:\"ou.gd\";i:352;s:6:\"oua.be\";i:353;s:6:\"ouo.io\";i:354;s:5:\"ow.ly\";i:355;s:4:\"p.pw\";i:356;s:7:\"para.pt\";i:357;s:8:\"parky.tv\";i:358;s:7:\"past.is\";i:359;s:5:\"pd.am\";i:360;s:6:\"pdh.co\";i:361;s:6:\"ph.dog\";i:362;s:5:\"ph.ly\";i:363;s:6:\"pic.gd\";i:364;s:7:\"pich.in\";i:365;s:6:\"pin.st\";i:366;s:7:\"ping.fm\";i:367;s:8:\"plots.fr\";i:368;s:8:\"pm.wu.cz\";i:369;s:6:\"pnt.me\";i:370;s:5:\"po.st\";i:371;s:9:\"poprl.com\";i:372;s:7:\"post.ly\";i:373;s:9:\"posted.at\";i:374;s:7:\"ppfr.it\";i:375;s:7:\"ppst.me\";i:376;s:6:\"ppt.cc\";i:377;s:6:\"ppt.li\";i:378;s:9:\"prejit.cz\";i:379;s:7:\"ptab.it\";i:380;s:6:\"ptm.ro\";i:381;s:6:\"pw2.ro\";i:382;s:6:\"py6.ru\";i:383;s:4:\"q.gs\";i:384;s:6:\"qbn.ru\";i:385;s:10:\"qicute.com\";i:386;s:6:\"qqc.co\";i:387;s:6:\"qr.net\";i:388;s:8:\"qrtag.fr\";i:389;s:6:\"qxp.cz\";i:390;s:6:\"qxp.sk\";i:391;s:6:\"rb6.co\";i:392;s:6:\"rb6.me\";i:393;s:8:\"rcknr.io\";i:394;s:6:\"rdz.me\";i:395;s:8:\"redir.ec\";i:396;s:8:\"redir.fr\";i:397;s:7:\"redu.it\";i:398;s:6:\"ref.so\";i:399;s:8:\"reise.lc\";i:400;s:9:\"relink.fr\";i:401;s:5:\"ri.ms\";i:402;s:11:\"rickroll.it\";i:403;s:6:\"riz.cz\";i:404;s:6:\"riz.gd\";i:405;s:6:\"rod.gs\";i:406;s:8:\"roflc.at\";i:407;s:12:\"rsmonkey.com\";i:408;s:5:\"rt.se\";i:409;s:5:\"rt.tc\";i:410;s:5:\"ru.ly\";i:411;s:11:\"rubyurl.com\";i:412;s:8:\"s-url.fr\";i:413;s:4:\"s.id\";i:414;s:6:\"s7y.us\";i:415;s:7:\"safe.mn\";i:416;s:9:\"sagyap.tk\";i:417;s:6:\"sdu.sk\";i:418;s:8:\"seeme.at\";i:419;s:8:\"segue.se\";i:420;s:5:\"sh.st\";i:421;s:7:\"shar.as\";i:422;s:13:\"sharetabs.com\";i:423;s:9:\"shorl.com\";i:424;s:8:\"short.cc\";i:425;s:8:\"short.ie\";i:426;s:8:\"short.nr\";i:427;s:8:\"short.pk\";i:428;s:8:\"short.to\";i:429;s:9:\"shorte.st\";i:430;s:10:\"shortna.me\";i:431;s:12:\"shorturl.com\";i:432;s:10:\"shoturl.us\";i:433;s:12:\"shrinkee.com\";i:434;s:14:\"shrinkster.com\";i:435;s:12:\"shrinkurl.in\";i:436;s:7:\"shrt.in\";i:437;s:7:\"shrt.st\";i:438;s:10:\"shrten.com\";i:439;s:12:\"shrunkin.com\";i:440;s:6:\"shw.me\";i:441;s:6:\"shy.si\";i:442;s:9:\"sicax.net\";i:443;s:7:\"sina.lt\";i:444;s:5:\"sk.gy\";i:445;s:6:\"skr.sk\";i:446;s:8:\"skroc.pl\";i:447;s:7:\"smll.co\";i:448;s:5:\"sn.im\";i:449;s:5:\"sn.vc\";i:450;s:9:\"snipr.com\";i:451;s:11:\"snipurl.com\";i:452;s:7:\"snsw.us\";i:453;s:9:\"snurl.com\";i:454;s:6:\"soo.gd\";i:455;s:6:\"sp2.ro\";i:456;s:9:\"spedr.com\";i:457;s:6:\"spn.sr\";i:458;s:9:\"sptfy.com\";i:459;s:6:\"sq6.ru\";i:460;s:7:\"sqrl.it\";i:461;s:6:\"ssl.gs\";i:462;s:10:\"sturly.com\";i:463;s:5:\"su.pr\";i:464;s:7:\"surl.me\";i:465;s:6:\"sux.cz\";i:466;s:5:\"sy.pe\";i:467;s:4:\"t.cn\";i:468;s:4:\"t.co\";i:469;s:5:\"ta.gd\";i:470;s:9:\"tabzi.com\";i:471;s:6:\"tau.pe\";i:472;s:7:\"tcrn.ch\";i:473;s:7:\"tdjt.cz\";i:474;s:8:\"thesa.us\";i:475;s:10:\"thinfi.com\";i:476;s:8:\"thrdl.es\";i:477;s:6:\"tin.li\";i:478;s:7:\"tini.cc\";i:479;s:7:\"tiny.cc\";i:480;s:7:\"tiny.lt\";i:481;s:7:\"tiny.ms\";i:482;s:7:\"tiny.pl\";i:483;s:11:\"tiny123.com\";i:484;s:11:\"tinyarro.ws\";i:485;s:9:\"tinytw.it\";i:486;s:10:\"tinyuri.ca\";i:487;s:11:\"tinyurl.com\";i:488;s:10:\"tinyurl.hu\";i:489;s:10:\"tinyvid.io\";i:490;s:9:\"tixsu.com\";i:491;s:7:\"tldr.sk\";i:492;s:11:\"tldrify.com\";i:493;s:8:\"tllg.net\";i:494;s:8:\"tnij.org\";i:495;s:6:\"tny.cz\";i:496;s:6:\"tny.im\";i:497;s:5:\"to.ly\";i:498;s:9:\"togoto.us\";i:499;s:8:\"tohle.de\";i:500;s:8:\"tpmr.com\";i:501;s:5:\"tr.im\";i:502;s:5:\"tr.my\";i:503;s:6:\"tr5.in\";i:504;s:7:\"trck.me\";i:505;s:8:\"trick.ly\";i:506;s:7:\"trkr.ws\";i:507;s:8:\"trunc.it\";i:508;s:7:\"turo.us\";i:509;s:15:\"tweetburner.com\";i:510;s:7:\"twet.fr\";i:511;s:6:\"twi.im\";i:512;s:8:\"twirl.at\";i:513;s:7:\"twit.ac\";i:514;s:14:\"twitterpan.com\";i:515;s:12:\"twitthis.com\";i:516;s:10:\"twiturl.de\";i:517;s:7:\"twlr.me\";i:518;s:8:\"twurl.cc\";i:519;s:8:\"twurl.nl\";i:520;s:12:\"u.mavrev.com\";i:521;s:4:\"u.nu\";i:522;s:4:\"u.to\";i:523;s:6:\"u6e.de\";i:524;s:6:\"ub0.cc\";i:525;s:6:\"uby.es\";i:526;s:7:\"ucam.me\";i:527;s:5:\"ug.cz\";i:528;s:7:\"ulmt.in\";i:529;s:7:\"unlc.us\";i:530;s:11:\"updating.me\";i:531;s:9:\"upzat.com\";i:532;s:6:\"ur1.ca\";i:533;s:9:\"url.co.uk\";i:534;s:7:\"url2.fr\";i:535;s:7:\"url4.eu\";i:536;s:8:\"url5.org\";i:537;s:9:\"urlao.com\";i:538;s:12:\"urlbrief.com\";i:539;s:12:\"urlcover.com\";i:540;s:10:\"urlcut.com\";i:541;s:10:\"urlenco.de\";i:542;s:8:\"urlin.it\";i:543;s:11:\"urlkiss.com\";i:544;s:9:\"urlkr.com\";i:545;s:9:\"urlot.com\";i:546;s:11:\"urlpire.com\";i:547;s:7:\"urls.fr\";i:548;s:7:\"urlx.ie\";i:549;s:8:\"urlx.org\";i:550;s:7:\"urlz.fr\";i:551;s:10:\"urlzen.com\";i:552;s:7:\"urub.us\";i:553;s:7:\"utfg.sk\";i:554;s:4:\"v.gd\";i:555;s:4:\"v.ht\";i:556;s:5:\"v5.gd\";i:557;s:7:\"vaaa.fr\";i:558;s:7:\"valv.im\";i:559;s:7:\"vaza.me\";i:560;s:7:\"vbly.us\";i:561;s:8:\"vd55.com\";i:562;s:7:\"verd.in\";i:563;s:6:\"vgn.me\";i:564;s:8:\"virl.com\";i:565;s:5:\"vl.am\";i:566;s:6:\"vov.li\";i:567;s:7:\"vsll.eu\";i:568;s:8:\"vt802.us\";i:569;s:6:\"vur.me\";i:570;s:5:\"vv.vg\";i:571;s:6:\"w1p.fr\";i:572;s:7:\"w3t.org\";i:573;s:6:\"waa.ai\";i:574;s:6:\"wb1.eu\";i:575;s:8:\"web99.eu\";i:576;s:6:\"wed.li\";i:577;s:8:\"wideo.fr\";i:578;s:7:\"wipi.es\";i:579;s:5:\"wp.me\";i:580;s:6:\"wtc.la\";i:581;s:5:\"wu.cz\";i:582;s:6:\"ww7.fr\";i:583;s:6:\"wwy.me\";i:584;s:4:\"x.co\";i:585;s:4:\"x.nu\";i:586;s:4:\"x.se\";i:587;s:6:\"x10.mx\";i:588;s:6:\"x2c.eu\";i:589;s:8:\"x2c.eumx\";i:590;s:9:\"xaddr.com\";i:591;s:6:\"xav.cc\";i:592;s:6:\"xgd.in\";i:593;s:6:\"xib.me\";i:594;s:6:\"xl8.eu\";i:595;s:6:\"xoe.cz\";i:596;s:6:\"xr.com\";i:597;s:6:\"xrl.in\";i:598;s:6:\"xrl.us\";i:599;s:6:\"xt3.me\";i:600;s:6:\"xua.me\";i:601;s:6:\"xub.me\";i:602;s:7:\"xurl.jp\";i:603;s:8:\"xurls.co\";i:604;s:6:\"xzb.cc\";i:605;s:6:\"y2u.be\";i:606;s:8:\"yagoa.fr\";i:607;s:8:\"yagoa.me\";i:608;s:6:\"yau.sh\";i:609;s:7:\"yeca.eu\";i:610;s:8:\"yect.com\";i:611;s:6:\"yep.it\";i:612;s:9:\"yfrog.com\";i:613;s:7:\"yogh.me\";i:614;s:6:\"yon.ir\";i:615;s:9:\"youfap.me\";i:616;s:8:\"ysear.ch\";i:617;s:8:\"yweb.com\";i:618;s:6:\"yyv.co\";i:619;s:5:\"z9.fr\";i:620;s:8:\"zSMS.net\";i:621;s:8:\"zapit.nu\";i:622;s:7:\"zeek.ir\";i:623;s:5:\"zi.ma\";i:624;s:5:\"zi.pe\";i:625;s:7:\"zip.net\";i:626;s:12:\"zipmyurl.com\";i:627;s:6:\"zkr.cz\";i:628;s:8:\"zkrat.me\";i:629;s:7:\"zkrt.cz\";i:630;s:9:\"zoodl.com\";i:631;s:7:\"zpag.es\";i:632;s:6:\"zti.me\";i:633;s:7:\"zxq.net\";i:634;s:8:\"zyva.org\";i:635;s:5:\"zz.gd\";i:636;s:6:\"zzb.bz\";}s:6:\"apikey\";s:0:\"\";s:8:\"honeyapi\";s:0:\"\";s:11:\"botscoutapi\";s:0:\"\";s:9:\"googleapi\";s:0:\"\";s:18:\"recaptchaapisecret\";s:0:\"\";s:16:\"recaptchaapisite\";s:0:\"\";s:17:\"hcaptchaapisecret\";s:0:\"\";s:15:\"hcaptchaapisite\";s:0:\"\";s:22:\"solvmediaapivchallenge\";s:0:\"\";s:18:\"solvmediaapiverify\";s:0:\"\";s:11:\"blogseyekey\";s:0:\"\";s:8:\"sesstime\";s:1:\"4\";s:7:\"sfsfreq\";i:0;s:6:\"hnyage\";i:9999;s:7:\"botfreq\";i:0;s:6:\"sfsage\";i:9999;s:8:\"hnylevel\";i:5;s:6:\"botage\";i:9999;s:8:\"multicnt\";s:1:\"5\";s:9:\"multitime\";s:1:\"3\";s:5:\"chkAD\";s:1:\"N\";s:5:\"chkAE\";s:1:\"N\";s:5:\"chkAF\";s:1:\"N\";s:5:\"chkAL\";s:1:\"N\";s:5:\"chkAM\";s:1:\"N\";s:5:\"chkAR\";s:1:\"N\";s:5:\"chkAT\";s:1:\"N\";s:5:\"chkAU\";s:1:\"N\";s:5:\"chkAX\";s:1:\"N\";s:5:\"chkAZ\";s:1:\"N\";s:5:\"chkBA\";s:1:\"N\";s:5:\"chkBB\";s:1:\"N\";s:5:\"chkBD\";s:1:\"N\";s:5:\"chkBE\";s:1:\"N\";s:5:\"chkBG\";s:1:\"N\";s:5:\"chkBH\";s:1:\"N\";s:5:\"chkBN\";s:1:\"N\";s:5:\"chkBO\";s:1:\"N\";s:5:\"chkBR\";s:1:\"N\";s:5:\"chkBS\";s:1:\"N\";s:5:\"chkBY\";s:1:\"N\";s:5:\"chkBZ\";s:1:\"N\";s:5:\"chkCA\";s:1:\"N\";s:5:\"chkCD\";s:1:\"N\";s:5:\"chkCH\";s:1:\"N\";s:5:\"chkCL\";s:1:\"N\";s:5:\"chkCN\";s:1:\"N\";s:5:\"chkCO\";s:1:\"N\";s:5:\"chkCR\";s:1:\"N\";s:5:\"chkCU\";s:1:\"N\";s:5:\"chkCW\";s:1:\"N\";s:5:\"chkCY\";s:1:\"N\";s:5:\"chkCZ\";s:1:\"N\";s:5:\"chkDE\";s:1:\"N\";s:5:\"chkDK\";s:1:\"N\";s:5:\"chkDO\";s:1:\"N\";s:5:\"chkDZ\";s:1:\"N\";s:5:\"chkEC\";s:1:\"N\";s:5:\"chkEE\";s:1:\"N\";s:5:\"chkES\";s:1:\"N\";s:5:\"chkEU\";s:1:\"N\";s:5:\"chkFI\";s:1:\"N\";s:5:\"chkFJ\";s:1:\"N\";s:5:\"chkFR\";s:1:\"N\";s:5:\"chkGB\";s:1:\"N\";s:5:\"chkGE\";s:1:\"N\";s:5:\"chkGF\";s:1:\"N\";s:5:\"chkGI\";s:1:\"N\";s:5:\"chkGP\";s:1:\"N\";s:5:\"chkGR\";s:1:\"N\";s:5:\"chkGT\";s:1:\"N\";s:5:\"chkGU\";s:1:\"N\";s:5:\"chkGY\";s:1:\"N\";s:5:\"chkHK\";s:1:\"N\";s:5:\"chkHN\";s:1:\"N\";s:5:\"chkHR\";s:1:\"N\";s:5:\"chkHT\";s:1:\"N\";s:5:\"chkHU\";s:1:\"N\";s:5:\"chkID\";s:1:\"N\";s:5:\"chkIE\";s:1:\"N\";s:5:\"chkIL\";s:1:\"N\";s:5:\"chkIN\";s:1:\"N\";s:5:\"chkIQ\";s:1:\"N\";s:5:\"chkIR\";s:1:\"N\";s:5:\"chkIS\";s:1:\"N\";s:5:\"chkIT\";s:1:\"N\";s:5:\"chkJM\";s:1:\"N\";s:5:\"chkJO\";s:1:\"N\";s:5:\"chkJP\";s:1:\"N\";s:5:\"chkKE\";s:1:\"N\";s:5:\"chkKG\";s:1:\"N\";s:5:\"chkKH\";s:1:\"N\";s:5:\"chkKR\";s:1:\"N\";s:5:\"chkKW\";s:1:\"N\";s:5:\"chkKY\";s:1:\"N\";s:5:\"chkKZ\";s:1:\"N\";s:5:\"chkLA\";s:1:\"N\";s:5:\"chkLB\";s:1:\"N\";s:5:\"chkLK\";s:1:\"N\";s:5:\"chkLT\";s:1:\"N\";s:5:\"chkLU\";s:1:\"N\";s:5:\"chkLV\";s:1:\"N\";s:5:\"chkMD\";s:1:\"N\";s:5:\"chkME\";s:1:\"N\";s:5:\"chkMK\";s:1:\"N\";s:5:\"chkMM\";s:1:\"N\";s:5:\"chkMN\";s:1:\"N\";s:5:\"chkMO\";s:1:\"N\";s:5:\"chkMP\";s:1:\"N\";s:5:\"chkMQ\";s:1:\"N\";s:5:\"chkMT\";s:1:\"N\";s:5:\"chkMV\";s:1:\"N\";s:5:\"chkMX\";s:1:\"N\";s:5:\"chkMY\";s:1:\"N\";s:5:\"chkNC\";s:1:\"N\";s:5:\"chkNI\";s:1:\"N\";s:5:\"chkNL\";s:1:\"N\";s:5:\"chkNO\";s:1:\"N\";s:5:\"chkNP\";s:1:\"N\";s:5:\"chkNZ\";s:1:\"N\";s:5:\"chkOM\";s:1:\"N\";s:5:\"chkPA\";s:1:\"N\";s:5:\"chkPE\";s:1:\"N\";s:5:\"chkPG\";s:1:\"N\";s:5:\"chkPH\";s:1:\"N\";s:5:\"chkPK\";s:1:\"N\";s:5:\"chkPL\";s:1:\"N\";s:5:\"chkPR\";s:1:\"N\";s:5:\"chkPS\";s:1:\"N\";s:5:\"chkPT\";s:1:\"N\";s:5:\"chkPW\";s:1:\"N\";s:5:\"chkPY\";s:1:\"N\";s:5:\"chkQA\";s:1:\"N\";s:5:\"chkRO\";s:1:\"N\";s:5:\"chkRS\";s:1:\"N\";s:5:\"chkRU\";s:1:\"N\";s:5:\"chkSA\";s:1:\"N\";s:5:\"chkSC\";s:1:\"N\";s:5:\"chkSE\";s:1:\"N\";s:5:\"chkSG\";s:1:\"N\";s:5:\"chkSI\";s:1:\"N\";s:5:\"chkSK\";s:1:\"N\";s:5:\"chkSV\";s:1:\"N\";s:5:\"chkSX\";s:1:\"N\";s:5:\"chkSY\";s:1:\"N\";s:5:\"chkTH\";s:1:\"N\";s:5:\"chkTJ\";s:1:\"N\";s:5:\"chkTM\";s:1:\"N\";s:5:\"chkTR\";s:1:\"N\";s:5:\"chkTT\";s:1:\"N\";s:5:\"chkTW\";s:1:\"N\";s:5:\"chkUA\";s:1:\"N\";s:5:\"chkUK\";s:1:\"N\";s:5:\"chkUS\";s:1:\"N\";s:5:\"chkUY\";s:1:\"N\";s:5:\"chkUZ\";s:1:\"N\";s:5:\"chkVC\";s:1:\"N\";s:5:\"chkVE\";s:1:\"N\";s:5:\"chkVN\";s:1:\"N\";s:5:\"chkYE\";s:1:\"N\";s:7:\"version\";s:6:\"2024.7\";s:11:\"ss_sp_cache\";i:25;s:10:\"ss_sp_hist\";i:25;s:10:\"ss_sp_good\";i:2;s:14:\"ss_sp_cache_em\";i:4;s:8:\"redirurl\";s:0:\"\";s:11:\"logfilesize\";i:0;s:13:\"rejectmessage\";s:18:\"Access Blocked<br>\";}', 'yes'),
(348642, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1765248679;s:7:\"checked\";a:2:{s:9:\"Newspaper\";s:6:\"12.6.8\";s:15:\"twentytwentytwo\";s:3:\"1.9\";}s:8:\"response\";a:2:{s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.2.1.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}s:9:\"Newspaper\";a:5:{s:5:\"theme\";s:9:\"Newspaper\";s:11:\"new_version\";s:6:\"12.7.3\";s:3:\"url\";s:28:\"https://tagdiv.com/Newspaper\";s:17:\"clear_destination\";b:1;s:7:\"package\";s:67:\"https://cloud.tagdiv.com/wp-content/uploads/2025/10/Newspaper-1.zip\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}', 'off'),
(54089, 'frm_strp_options', 'O:8:\"stdClass\":2:{s:9:\"test_mode\";i:1;s:18:\"processing_message\";s:56:\"This payment may take several days to finish processing.\";}', 'yes'),
(52857, 'elementor_allow_tracking', 'no', 'yes'),
(62490, 'frm_summary_emails_options', 'a:3:{s:12:\"last_monthly\";s:10:\"2025-08-30\";s:11:\"last_yearly\";s:10:\"2025-01-23\";s:12:\"renewal_date\";s:10:\"2024-02-11\";}', 'yes'),
(68082, 'wpsdt4_license_key', '\n193f097c193a041c2f21383f1823091a387318231a29234b7a453c030e2d23560e2b544b5c20155a0c075c', 'yes'),
(217606, '9f847f43', '\n6f0d7900175502227321041c3020000d042f320467757b0543273d17362b48751e38061f3b18120d16531523394962330258', 'auto'),
(82133, 'rsssl_activation_timestamp', '1735039521', 'off'),
(82252, 'widget_td_block_1_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82253, 'widget_td_block_2_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82254, 'widget_td_block_3_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82255, 'widget_td_block_4_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82256, 'widget_td_block_5_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82257, 'widget_td_block_6_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82258, 'widget_td_block_7_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82259, 'widget_td_block_8_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82260, 'widget_td_block_9_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82261, 'widget_td_block_10_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82262, 'widget_td_block_11_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82263, 'widget_td_block_12_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82264, 'widget_td_block_13_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82265, 'widget_td_block_14_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82266, 'widget_td_block_15_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82267, 'widget_td_block_16_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82268, 'widget_td_block_17_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82269, 'widget_td_block_18_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82270, 'widget_td_block_19_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82271, 'widget_td_block_20_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82272, 'widget_td_block_21_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82273, 'widget_td_block_22_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82274, 'widget_td_block_23_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82275, 'widget_td_block_24_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82276, 'widget_td_block_25_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(84045, 'widget_td_block_social_counter_widget', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'yes'),
(82459, 'rsssl_l_notification_dismissed_for', 'a:0:{}', 'no'),
(82460, 'rsssl_m_notification_dismissed_for', 'a:1:{i:8;s:36:\"b81af396-3748-4461-82ac-c27ba3a71f27\";}', 'off'),
(82461, 'rsssl_h_notification_dismissed_for', 'a:0:{}', 'off'),
(82462, 'rsssl_c_notification_dismissed_for', 'a:1:{i:12;s:36:\"8bc298b5-f885-4088-9793-cce31a6185ad\";}', 'off'),
(94572, 'using_application_passwords', '1', 'no'),
(112278, 'wpcode_usage_tracking_config', 'a:6:{s:3:\"day\";i:4;s:4:\"hour\";i:3;s:6:\"minute\";i:23;s:6:\"second\";i:51;s:6:\"offset\";i:357831;s:8:\"initsend\";i:1723692231;}', 'off'),
(112279, 'ihaf_activated', 'a:2:{s:6:\"wpcode\";i:1723048046;s:7:\"version\";s:5:\"2.3.1\";}', 'auto'),
(112282, 'wpcode_admin_notices', 'a:3:{s:14:\"review_request\";a:2:{s:4:\"time\";i:1735039592;s:9:\"dismissed\";b:1;}s:15:\"suggest_plugins\";a:2:{s:4:\"time\";i:1765248418;s:9:\"dismissed\";b:1;}s:27:\"wpcode-library-connect-lite\";a:2:{s:4:\"time\";i:1765248419;s:9:\"dismissed\";b:1;}}', 'on'),
(112281, 'wpcode_snippets', 'a:0:{}', 'auto'),
(348613, '_transient_wpcode_used_library_snippets', 'a:1:{i:12;i:525;}', 'on'),
(348611, 'wpcode_snippets_errors', 'a:0:{}', 'auto');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(82327, 'rsssl_ssl_labs_data', 'a:14:{s:6:\"action\";s:14:\"store_ssl_labs\";s:7:\"_locale\";s:4:\"user\";s:4:\"host\";s:17:\"onlineincshop.com\";s:4:\"port\";i:443;s:8:\"protocol\";s:4:\"http\";s:8:\"isPublic\";b:0;s:6:\"status\";s:5:\"READY\";s:9:\"startTime\";i:1720170461363;s:8:\"testTime\";i:1720170513866;s:13:\"engineVersion\";s:5:\"2.3.0\";s:15:\"criteriaVersion\";s:5:\"2009q\";s:9:\"endpoints\";a:1:{i:0;a:10:{s:9:\"ipAddress\";s:13:\"162.0.232.163\";s:10:\"serverName\";s:27:\"server288-3.web-hosting.com\";s:13:\"statusMessage\";s:5:\"Ready\";s:5:\"grade\";s:1:\"A\";s:17:\"gradeTrustIgnored\";s:1:\"A\";s:11:\"hasWarnings\";b:0;s:13:\"isExceptional\";b:0;s:8:\"progress\";i:100;s:8:\"duration\";i:52438;s:10:\"delegation\";i:1;}}s:12:\"endpointData\";a:1:{i:0;a:11:{s:9:\"ipAddress\";s:13:\"162.0.232.163\";s:10:\"serverName\";s:27:\"server288-3.web-hosting.com\";s:13:\"statusMessage\";s:5:\"Ready\";s:5:\"grade\";s:1:\"A\";s:17:\"gradeTrustIgnored\";s:1:\"A\";s:11:\"hasWarnings\";b:0;s:13:\"isExceptional\";b:0;s:8:\"progress\";i:100;s:8:\"duration\";i:52438;s:10:\"delegation\";i:1;s:7:\"details\";a:57:{s:13:\"hostStartTime\";i:1720170461363;s:10:\"certChains\";a:2:{i:0;a:5:{s:2:\"id\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:7:\"certIds\";a:3:{i:0;s:64:\"43235ef91a3b65ad193efff8aa37da4d1b50d2347e4bc6f2714118ffa3edd0d7\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"68b9c761219a5b1f0131784474665db61bbdb109e00f05ca9f74244ee5f5f52b\";}s:10:\"trustPaths\";a:10:{i:0;a:2:{s:7:\"certIds\";a:3:{i:0;s:64:\"43235ef91a3b65ad193efff8aa37da4d1b50d2347e4bc6f2714118ffa3edd0d7\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"e793c9b02fd8aa13e21c31228accb08119643b749c898964b1746d46c3d4cbd2\";}s:5:\"trust\";a:1:{i:0;a:2:{s:9:\"rootStore\";s:7:\"Mozilla\";s:9:\"isTrusted\";b:1;}}}i:1;a:2:{s:7:\"certIds\";a:4:{i:0;s:64:\"43235ef91a3b65ad193efff8aa37da4d1b50d2347e4bc6f2714118ffa3edd0d7\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"68b9c761219a5b1f0131784474665db61bbdb109e00f05ca9f74244ee5f5f52b\";i:3;s:64:\"d7a7a0fb5d7e2731d771e9484ebcdef71d5f0c3e0a2948782bc83ee0ea699ef4\";}s:5:\"trust\";a:1:{i:0;a:2:{s:9:\"rootStore\";s:7:\"Mozilla\";s:9:\"isTrusted\";b:1;}}}i:2;a:2:{s:7:\"certIds\";a:3:{i:0;s:64:\"43235ef91a3b65ad193efff8aa37da4d1b50d2347e4bc6f2714118ffa3edd0d7\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"e793c9b02fd8aa13e21c31228accb08119643b749c898964b1746d46c3d4cbd2\";}s:5:\"trust\";a:1:{i:0;a:2:{s:9:\"rootStore\";s:5:\"Apple\";s:9:\"isTrusted\";b:1;}}}i:3;a:2:{s:7:\"certIds\";a:4:{i:0;s:64:\"43235ef91a3b65ad193efff8aa37da4d1b50d2347e4bc6f2714118ffa3edd0d7\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"68b9c761219a5b1f0131784474665db61bbdb109e00f05ca9f74244ee5f5f52b\";i:3;s:64:\"d7a7a0fb5d7e2731d771e9484ebcdef71d5f0c3e0a2948782bc83ee0ea699ef4\";}s:5:\"trust\";a:1:{i:0;a:2:{s:9:\"rootStore\";s:5:\"Apple\";s:9:\"isTrusted\";b:1;}}}i:4;a:2:{s:7:\"certIds\";a:3:{i:0;s:64:\"43235ef91a3b65ad193efff8aa37da4d1b50d2347e4bc6f2714118ffa3edd0d7\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"e793c9b02fd8aa13e21c31228accb08119643b749c898964b1746d46c3d4cbd2\";}s:5:\"trust\";a:1:{i:0;a:2:{s:9:\"rootStore\";s:7:\"Android\";s:9:\"isTrusted\";b:1;}}}i:5;a:2:{s:7:\"certIds\";a:4:{i:0;s:64:\"43235ef91a3b65ad193efff8aa37da4d1b50d2347e4bc6f2714118ffa3edd0d7\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"68b9c761219a5b1f0131784474665db61bbdb109e00f05ca9f74244ee5f5f52b\";i:3;s:64:\"d7a7a0fb5d7e2731d771e9484ebcdef71d5f0c3e0a2948782bc83ee0ea699ef4\";}s:5:\"trust\";a:1:{i:0;a:2:{s:9:\"rootStore\";s:7:\"Android\";s:9:\"isTrusted\";b:1;}}}i:6;a:2:{s:7:\"certIds\";a:3:{i:0;s:64:\"43235ef91a3b65ad193efff8aa37da4d1b50d2347e4bc6f2714118ffa3edd0d7\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"e793c9b02fd8aa13e21c31228accb08119643b749c898964b1746d46c3d4cbd2\";}s:5:\"trust\";a:1:{i:0;a:2:{s:9:\"rootStore\";s:4:\"Java\";s:9:\"isTrusted\";b:1;}}}i:7;a:2:{s:7:\"certIds\";a:4:{i:0;s:64:\"43235ef91a3b65ad193efff8aa37da4d1b50d2347e4bc6f2714118ffa3edd0d7\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"68b9c761219a5b1f0131784474665db61bbdb109e00f05ca9f74244ee5f5f52b\";i:3;s:64:\"d7a7a0fb5d7e2731d771e9484ebcdef71d5f0c3e0a2948782bc83ee0ea699ef4\";}s:5:\"trust\";a:1:{i:0;a:2:{s:9:\"rootStore\";s:4:\"Java\";s:9:\"isTrusted\";b:1;}}}i:8;a:2:{s:7:\"certIds\";a:3:{i:0;s:64:\"43235ef91a3b65ad193efff8aa37da4d1b50d2347e4bc6f2714118ffa3edd0d7\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"e793c9b02fd8aa13e21c31228accb08119643b749c898964b1746d46c3d4cbd2\";}s:5:\"trust\";a:1:{i:0;a:2:{s:9:\"rootStore\";s:7:\"Windows\";s:9:\"isTrusted\";b:1;}}}i:9;a:2:{s:7:\"certIds\";a:4:{i:0;s:64:\"43235ef91a3b65ad193efff8aa37da4d1b50d2347e4bc6f2714118ffa3edd0d7\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"68b9c761219a5b1f0131784474665db61bbdb109e00f05ca9f74244ee5f5f52b\";i:3;s:64:\"d7a7a0fb5d7e2731d771e9484ebcdef71d5f0c3e0a2948782bc83ee0ea699ef4\";}s:5:\"trust\";a:1:{i:0;a:2:{s:9:\"rootStore\";s:7:\"Windows\";s:9:\"isTrusted\";b:1;}}}}s:6:\"issues\";i:0;s:5:\"noSni\";b:0;}i:1;a:5:{s:2:\"id\";s:64:\"8dadfaa4a59a046dde899fc05e0b7e13578a6259bb45a7c013b79d69e35a61a9\";s:7:\"certIds\";a:3:{i:0;s:64:\"b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"68b9c761219a5b1f0131784474665db61bbdb109e00f05ca9f74244ee5f5f52b\";}s:10:\"trustPaths\";a:10:{i:0;a:2:{s:7:\"certIds\";a:3:{i:0;s:64:\"b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"e793c9b02fd8aa13e21c31228accb08119643b749c898964b1746d46c3d4cbd2\";}s:5:\"trust\";a:1:{i:0;a:3:{s:9:\"rootStore\";s:7:\"Mozilla\";s:9:\"isTrusted\";b:0;s:17:\"trustErrorMessage\";s:106:\"invalid certificate [Fingerprint SHA256: b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0]\";}}}i:1;a:2:{s:7:\"certIds\";a:4:{i:0;s:64:\"b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"68b9c761219a5b1f0131784474665db61bbdb109e00f05ca9f74244ee5f5f52b\";i:3;s:64:\"d7a7a0fb5d7e2731d771e9484ebcdef71d5f0c3e0a2948782bc83ee0ea699ef4\";}s:5:\"trust\";a:1:{i:0;a:3:{s:9:\"rootStore\";s:7:\"Mozilla\";s:9:\"isTrusted\";b:0;s:17:\"trustErrorMessage\";s:106:\"invalid certificate [Fingerprint SHA256: b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0]\";}}}i:2;a:2:{s:7:\"certIds\";a:3:{i:0;s:64:\"b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"e793c9b02fd8aa13e21c31228accb08119643b749c898964b1746d46c3d4cbd2\";}s:5:\"trust\";a:1:{i:0;a:3:{s:9:\"rootStore\";s:5:\"Apple\";s:9:\"isTrusted\";b:0;s:17:\"trustErrorMessage\";s:106:\"invalid certificate [Fingerprint SHA256: b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0]\";}}}i:3;a:2:{s:7:\"certIds\";a:4:{i:0;s:64:\"b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"68b9c761219a5b1f0131784474665db61bbdb109e00f05ca9f74244ee5f5f52b\";i:3;s:64:\"d7a7a0fb5d7e2731d771e9484ebcdef71d5f0c3e0a2948782bc83ee0ea699ef4\";}s:5:\"trust\";a:1:{i:0;a:3:{s:9:\"rootStore\";s:5:\"Apple\";s:9:\"isTrusted\";b:0;s:17:\"trustErrorMessage\";s:106:\"invalid certificate [Fingerprint SHA256: b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0]\";}}}i:4;a:2:{s:7:\"certIds\";a:3:{i:0;s:64:\"b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"e793c9b02fd8aa13e21c31228accb08119643b749c898964b1746d46c3d4cbd2\";}s:5:\"trust\";a:1:{i:0;a:3:{s:9:\"rootStore\";s:7:\"Android\";s:9:\"isTrusted\";b:0;s:17:\"trustErrorMessage\";s:106:\"invalid certificate [Fingerprint SHA256: b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0]\";}}}i:5;a:2:{s:7:\"certIds\";a:4:{i:0;s:64:\"b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"68b9c761219a5b1f0131784474665db61bbdb109e00f05ca9f74244ee5f5f52b\";i:3;s:64:\"d7a7a0fb5d7e2731d771e9484ebcdef71d5f0c3e0a2948782bc83ee0ea699ef4\";}s:5:\"trust\";a:1:{i:0;a:3:{s:9:\"rootStore\";s:7:\"Android\";s:9:\"isTrusted\";b:0;s:17:\"trustErrorMessage\";s:106:\"invalid certificate [Fingerprint SHA256: b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0]\";}}}i:6;a:2:{s:7:\"certIds\";a:3:{i:0;s:64:\"b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"e793c9b02fd8aa13e21c31228accb08119643b749c898964b1746d46c3d4cbd2\";}s:5:\"trust\";a:1:{i:0;a:3:{s:9:\"rootStore\";s:4:\"Java\";s:9:\"isTrusted\";b:0;s:17:\"trustErrorMessage\";s:106:\"invalid certificate [Fingerprint SHA256: b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0]\";}}}i:7;a:2:{s:7:\"certIds\";a:4:{i:0;s:64:\"b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"68b9c761219a5b1f0131784474665db61bbdb109e00f05ca9f74244ee5f5f52b\";i:3;s:64:\"d7a7a0fb5d7e2731d771e9484ebcdef71d5f0c3e0a2948782bc83ee0ea699ef4\";}s:5:\"trust\";a:1:{i:0;a:3:{s:9:\"rootStore\";s:4:\"Java\";s:9:\"isTrusted\";b:0;s:17:\"trustErrorMessage\";s:106:\"invalid certificate [Fingerprint SHA256: b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0]\";}}}i:8;a:2:{s:7:\"certIds\";a:3:{i:0;s:64:\"b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"e793c9b02fd8aa13e21c31228accb08119643b749c898964b1746d46c3d4cbd2\";}s:5:\"trust\";a:1:{i:0;a:3:{s:9:\"rootStore\";s:7:\"Windows\";s:9:\"isTrusted\";b:0;s:17:\"trustErrorMessage\";s:106:\"invalid certificate [Fingerprint SHA256: b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0]\";}}}i:9;a:2:{s:7:\"certIds\";a:4:{i:0;s:64:\"b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0\";i:1;s:64:\"7fa4ff68ec04a99d7528d5085f94907f4d1dd1c5381bacdc832ed5c960214676\";i:2;s:64:\"68b9c761219a5b1f0131784474665db61bbdb109e00f05ca9f74244ee5f5f52b\";i:3;s:64:\"d7a7a0fb5d7e2731d771e9484ebcdef71d5f0c3e0a2948782bc83ee0ea699ef4\";}s:5:\"trust\";a:1:{i:0;a:3:{s:9:\"rootStore\";s:7:\"Windows\";s:9:\"isTrusted\";b:0;s:17:\"trustErrorMessage\";s:106:\"invalid certificate [Fingerprint SHA256: b31c46b34f4930acc3938cdc6e2e6d9dac28a8250548648466679fbf0e29a9e0]\";}}}}s:6:\"issues\";i:0;s:5:\"noSni\";b:1;}}s:9:\"protocols\";a:2:{i:0;a:3:{s:2:\"id\";i:771;s:4:\"name\";s:3:\"TLS\";s:7:\"version\";s:3:\"1.2\";}i:1;a:3:{s:2:\"id\";i:772;s:4:\"name\";s:3:\"TLS\";s:7:\"version\";s:3:\"1.3\";}}s:6:\"suites\";a:2:{i:0;a:3:{s:8:\"protocol\";i:771;s:4:\"list\";a:13:{i:0;a:8:{s:2:\"id\";i:52392;s:4:\"name\";s:43:\"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256\";s:14:\"cipherStrength\";i:256;s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";}i:1;a:8:{s:2:\"id\";i:49199;s:4:\"name\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:14:\"cipherStrength\";i:128;s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";}i:2;a:8:{s:2:\"id\";i:49200;s:4:\"name\";s:37:\"TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384\";s:14:\"cipherStrength\";i:256;s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";}i:3;a:9:{s:2:\"id\";i:158;s:4:\"name\";s:35:\"TLS_DHE_RSA_WITH_AES_128_GCM_SHA256\";s:14:\"cipherStrength\";i:128;s:6:\"kxType\";s:2:\"DH\";s:10:\"kxStrength\";i:2048;s:6:\"dhBits\";i:256;s:3:\"dhP\";i:256;s:3:\"dhG\";i:1;s:4:\"dhYs\";i:256;}i:4;a:9:{s:2:\"id\";i:159;s:4:\"name\";s:35:\"TLS_DHE_RSA_WITH_AES_256_GCM_SHA384\";s:14:\"cipherStrength\";i:256;s:6:\"kxType\";s:2:\"DH\";s:10:\"kxStrength\";i:2048;s:6:\"dhBits\";i:256;s:3:\"dhP\";i:256;s:3:\"dhG\";i:1;s:4:\"dhYs\";i:256;}i:5;a:9:{s:2:\"id\";i:49191;s:4:\"name\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256\";s:14:\"cipherStrength\";i:128;s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";s:1:\"q\";i:1;}i:6;a:9:{s:2:\"id\";i:49192;s:4:\"name\";s:37:\"TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384\";s:14:\"cipherStrength\";i:256;s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";s:1:\"q\";i:1;}i:7;a:9:{s:2:\"id\";i:49171;s:4:\"name\";s:34:\"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA\";s:14:\"cipherStrength\";i:128;s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";s:1:\"q\";i:1;}i:8;a:9:{s:2:\"id\";i:49172;s:4:\"name\";s:34:\"TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA\";s:14:\"cipherStrength\";i:256;s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";s:1:\"q\";i:1;}i:9;a:10:{s:2:\"id\";i:103;s:4:\"name\";s:35:\"TLS_DHE_RSA_WITH_AES_128_CBC_SHA256\";s:14:\"cipherStrength\";i:128;s:6:\"kxType\";s:2:\"DH\";s:10:\"kxStrength\";i:2048;s:6:\"dhBits\";i:256;s:3:\"dhP\";i:256;s:3:\"dhG\";i:1;s:4:\"dhYs\";i:256;s:1:\"q\";i:1;}i:10;a:10:{s:2:\"id\";i:51;s:4:\"name\";s:32:\"TLS_DHE_RSA_WITH_AES_128_CBC_SHA\";s:14:\"cipherStrength\";i:128;s:6:\"kxType\";s:2:\"DH\";s:10:\"kxStrength\";i:2048;s:6:\"dhBits\";i:256;s:3:\"dhP\";i:256;s:3:\"dhG\";i:1;s:4:\"dhYs\";i:256;s:1:\"q\";i:1;}i:11;a:10:{s:2:\"id\";i:107;s:4:\"name\";s:35:\"TLS_DHE_RSA_WITH_AES_256_CBC_SHA256\";s:14:\"cipherStrength\";i:256;s:6:\"kxType\";s:2:\"DH\";s:10:\"kxStrength\";i:2048;s:6:\"dhBits\";i:256;s:3:\"dhP\";i:256;s:3:\"dhG\";i:1;s:4:\"dhYs\";i:256;s:1:\"q\";i:1;}i:12;a:10:{s:2:\"id\";i:57;s:4:\"name\";s:32:\"TLS_DHE_RSA_WITH_AES_256_CBC_SHA\";s:14:\"cipherStrength\";i:256;s:6:\"kxType\";s:2:\"DH\";s:10:\"kxStrength\";i:2048;s:6:\"dhBits\";i:256;s:3:\"dhP\";i:256;s:3:\"dhG\";i:1;s:4:\"dhYs\";i:256;s:1:\"q\";i:1;}}s:10:\"preference\";b:1;}i:1;a:4:{s:8:\"protocol\";i:772;s:4:\"list\";a:4:{i:0;a:8:{s:2:\"id\";i:4866;s:4:\"name\";s:22:\"TLS_AES_256_GCM_SHA384\";s:14:\"cipherStrength\";i:256;s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";}i:1;a:8:{s:2:\"id\";i:4867;s:4:\"name\";s:28:\"TLS_CHACHA20_POLY1305_SHA256\";s:14:\"cipherStrength\";i:256;s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";}i:2;a:8:{s:2:\"id\";i:4865;s:4:\"name\";s:22:\"TLS_AES_128_GCM_SHA256\";s:14:\"cipherStrength\";i:128;s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";}i:3;a:8:{s:2:\"id\";i:4868;s:4:\"name\";s:22:\"TLS_AES_128_CCM_SHA256\";s:14:\"cipherStrength\";i:128;s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";}}s:10:\"preference\";b:1;s:18:\"chaCha20Preference\";b:1;}}s:11:\"namedGroups\";a:2:{s:4:\"list\";a:5:{i:0;a:4:{s:2:\"id\";i:29;s:4:\"name\";s:6:\"x25519\";s:4:\"bits\";i:256;s:14:\"namedGroupType\";s:2:\"EC\";}i:1;a:4:{s:2:\"id\";i:23;s:4:\"name\";s:9:\"secp256r1\";s:4:\"bits\";i:256;s:14:\"namedGroupType\";s:2:\"EC\";}i:2;a:4:{s:2:\"id\";i:30;s:4:\"name\";s:4:\"x448\";s:4:\"bits\";i:224;s:14:\"namedGroupType\";s:2:\"EC\";}i:3;a:4:{s:2:\"id\";i:25;s:4:\"name\";s:9:\"secp521r1\";s:4:\"bits\";i:521;s:14:\"namedGroupType\";s:2:\"EC\";}i:4;a:4:{s:2:\"id\";i:24;s:4:\"name\";s:9:\"secp384r1\";s:4:\"bits\";i:384;s:14:\"namedGroupType\";s:2:\"EC\";}}s:10:\"preference\";b:1;}s:15:\"serverSignature\";s:9:\"LiteSpeed\";s:16:\"prefixDelegation\";b:0;s:19:\"nonPrefixDelegation\";b:1;s:9:\"vulnBeast\";b:0;s:12:\"renegSupport\";i:2;s:17:\"sessionResumption\";i:2;s:18:\"compressionMethods\";i:0;s:11:\"supportsNpn\";b:0;s:12:\"supportsAlpn\";b:1;s:13:\"alpnProtocols\";s:11:\"h2 http/1.1\";s:14:\"sessionTickets\";i:0;s:12:\"ocspStapling\";b:0;s:11:\"sniRequired\";b:1;s:14:\"httpStatusCode\";i:200;s:11:\"supportsRc4\";b:0;s:13:\"rc4WithModern\";b:0;s:7:\"rc4Only\";b:0;s:14:\"forwardSecrecy\";i:4;s:12:\"supportsAead\";b:1;s:19:\"protocolIntolerance\";i:0;s:15:\"miscIntolerance\";i:0;s:4:\"sims\";a:1:{s:7:\"results\";a:64:{i:0;a:4:{s:6:\"client\";a:4:{s:2:\"id\";i:56;s:4:\"name\";s:7:\"Android\";s:7:\"version\";s:5:\"2.3.7\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:1;s:12:\"errorMessage\";s:33:\"Protocol mismatch (not simulated)\";s:8:\"attempts\";i:0;}i:1;a:4:{s:6:\"client\";a:4:{s:2:\"id\";i:58;s:4:\"name\";s:7:\"Android\";s:7:\"version\";s:5:\"4.0.4\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:1;s:12:\"errorMessage\";s:33:\"Protocol mismatch (not simulated)\";s:8:\"attempts\";i:0;}i:2;a:4:{s:6:\"client\";a:4:{s:2:\"id\";i:59;s:4:\"name\";s:7:\"Android\";s:7:\"version\";s:5:\"4.1.1\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:1;s:12:\"errorMessage\";s:33:\"Protocol mismatch (not simulated)\";s:8:\"attempts\";i:0;}i:3;a:4:{s:6:\"client\";a:4:{s:2:\"id\";i:60;s:4:\"name\";s:7:\"Android\";s:7:\"version\";s:5:\"4.2.2\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:1;s:12:\"errorMessage\";s:33:\"Protocol mismatch (not simulated)\";s:8:\"attempts\";i:0;}i:4;a:4:{s:6:\"client\";a:4:{s:2:\"id\";i:61;s:4:\"name\";s:7:\"Android\";s:7:\"version\";s:3:\"4.3\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:1;s:12:\"errorMessage\";s:33:\"Protocol mismatch (not simulated)\";s:8:\"attempts\";i:0;}i:5;a:15:{s:6:\"client\";a:4:{s:2:\"id\";i:62;s:4:\"name\";s:7:\"Android\";s:7:\"version\";s:5:\"4.4.2\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:6;a:15:{s:6:\"client\";a:4:{s:2:\"id\";i:88;s:4:\"name\";s:7:\"Android\";s:7:\"version\";s:5:\"5.0.0\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:7;a:15:{s:6:\"client\";a:4:{s:2:\"id\";i:129;s:4:\"name\";s:7:\"Android\";s:7:\"version\";s:3:\"6.0\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:8;a:15:{s:6:\"client\";a:4:{s:2:\"id\";i:167;s:4:\"name\";s:7:\"Android\";s:7:\"version\";s:3:\"7.0\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:52392;s:9:\"suiteName\";s:43:\"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:9;a:15:{s:6:\"client\";a:4:{s:2:\"id\";i:168;s:4:\"name\";s:7:\"Android\";s:7:\"version\";s:3:\"8.0\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:52392;s:9:\"suiteName\";s:43:\"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:10;a:11:{s:6:\"client\";a:4:{s:2:\"id\";i:157;s:4:\"name\";s:7:\"Android\";s:7:\"version\";s:3:\"8.1\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:10:\"protocolId\";i:772;s:7:\"suiteId\";i:4867;s:9:\"suiteName\";s:28:\"TLS_CHACHA20_POLY1305_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";}i:11;a:11:{s:6:\"client\";a:4:{s:2:\"id\";i:158;s:4:\"name\";s:7:\"Android\";s:7:\"version\";s:3:\"9.0\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:10:\"protocolId\";i:772;s:7:\"suiteId\";i:4867;s:9:\"suiteName\";s:28:\"TLS_CHACHA20_POLY1305_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";}i:12;a:4:{s:6:\"client\";a:4:{s:2:\"id\";i:94;s:4:\"name\";s:5:\"Baidu\";s:7:\"version\";s:8:\"Jan 2015\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:1;s:12:\"errorMessage\";s:33:\"Protocol mismatch (not simulated)\";s:8:\"attempts\";i:0;}i:13;a:15:{s:6:\"client\";a:4:{s:2:\"id\";i:91;s:4:\"name\";s:11:\"BingPreview\";s:7:\"version\";s:8:\"Jan 2015\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:14;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:136;s:4:\"name\";s:6:\"Chrome\";s:8:\"platform\";s:6:\"XP SP3\";s:7:\"version\";s:2:\"49\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:52392;s:9:\"suiteName\";s:43:\"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:15;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:152;s:4:\"name\";s:6:\"Chrome\";s:8:\"platform\";s:5:\"Win 7\";s:7:\"version\";s:2:\"69\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:52392;s:9:\"suiteName\";s:43:\"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:16;a:11:{s:6:\"client\";a:5:{s:2:\"id\";i:153;s:4:\"name\";s:6:\"Chrome\";s:8:\"platform\";s:6:\"Win 10\";s:7:\"version\";s:2:\"70\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:10:\"protocolId\";i:772;s:7:\"suiteId\";i:4866;s:9:\"suiteName\";s:22:\"TLS_AES_256_GCM_SHA384\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";}i:17;a:11:{s:6:\"client\";a:5:{s:2:\"id\";i:170;s:4:\"name\";s:6:\"Chrome\";s:8:\"platform\";s:6:\"Win 10\";s:7:\"version\";s:2:\"80\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:10:\"protocolId\";i:772;s:7:\"suiteId\";i:4866;s:9:\"suiteName\";s:22:\"TLS_AES_256_GCM_SHA384\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";}i:18;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:84;s:4:\"name\";s:7:\"Firefox\";s:8:\"platform\";s:5:\"Win 7\";s:7:\"version\";s:10:\"31.3.0 ESR\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:19;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:132;s:4:\"name\";s:7:\"Firefox\";s:8:\"platform\";s:5:\"Win 7\";s:7:\"version\";s:2:\"47\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:52392;s:9:\"suiteName\";s:43:\"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:20;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:137;s:4:\"name\";s:7:\"Firefox\";s:8:\"platform\";s:6:\"XP SP3\";s:7:\"version\";s:2:\"49\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:52392;s:9:\"suiteName\";s:43:\"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:21;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:151;s:4:\"name\";s:7:\"Firefox\";s:8:\"platform\";s:5:\"Win 7\";s:7:\"version\";s:2:\"62\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:52392;s:9:\"suiteName\";s:43:\"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:22;a:11:{s:6:\"client\";a:5:{s:2:\"id\";i:171;s:4:\"name\";s:7:\"Firefox\";s:8:\"platform\";s:6:\"Win 10\";s:7:\"version\";s:2:\"73\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:10:\"protocolId\";i:772;s:7:\"suiteId\";i:4866;s:9:\"suiteName\";s:22:\"TLS_AES_256_GCM_SHA384\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";}i:23;a:15:{s:6:\"client\";a:4:{s:2:\"id\";i:145;s:4:\"name\";s:9:\"Googlebot\";s:7:\"version\";s:8:\"Feb 2018\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:52392;s:9:\"suiteName\";s:43:\"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:24;a:4:{s:6:\"client\";a:5:{s:2:\"id\";i:100;s:4:\"name\";s:2:\"IE\";s:8:\"platform\";s:2:\"XP\";s:7:\"version\";s:1:\"6\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:1;s:12:\"errorMessage\";s:33:\"Protocol mismatch (not simulated)\";s:8:\"attempts\";i:0;}i:25;a:4:{s:6:\"client\";a:5:{s:2:\"id\";i:19;s:4:\"name\";s:2:\"IE\";s:8:\"platform\";s:5:\"Vista\";s:7:\"version\";s:1:\"7\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:1;s:12:\"errorMessage\";s:33:\"Protocol mismatch (not simulated)\";s:8:\"attempts\";i:0;}i:26;a:4:{s:6:\"client\";a:5:{s:2:\"id\";i:101;s:4:\"name\";s:2:\"IE\";s:8:\"platform\";s:2:\"XP\";s:7:\"version\";s:1:\"8\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:1;s:12:\"errorMessage\";s:33:\"Protocol mismatch (not simulated)\";s:8:\"attempts\";i:0;}i:27;a:4:{s:6:\"client\";a:5:{s:2:\"id\";i:113;s:4:\"name\";s:2:\"IE\";s:8:\"platform\";s:5:\"Win 7\";s:7:\"version\";s:4:\"8-10\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:1;s:12:\"errorMessage\";s:33:\"Protocol mismatch (not simulated)\";s:8:\"attempts\";i:0;}i:28;a:16:{s:6:\"client\";a:5:{s:2:\"id\";i:143;s:4:\"name\";s:2:\"IE\";s:8:\"platform\";s:5:\"Win 7\";s:7:\"version\";s:2:\"11\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:158;s:9:\"suiteName\";s:35:\"TLS_DHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:2:\"DH\";s:10:\"kxStrength\";i:16384;s:6:\"dhBits\";i:2048;s:3:\"dhP\";i:256;s:3:\"dhG\";i:1;s:4:\"dhYs\";i:256;s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:29;a:16:{s:6:\"client\";a:5:{s:2:\"id\";i:134;s:4:\"name\";s:2:\"IE\";s:8:\"platform\";s:7:\"Win 8.1\";s:7:\"version\";s:2:\"11\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:158;s:9:\"suiteName\";s:35:\"TLS_DHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:2:\"DH\";s:10:\"kxStrength\";i:16384;s:6:\"dhBits\";i:2048;s:3:\"dhP\";i:256;s:3:\"dhG\";i:1;s:4:\"dhYs\";i:256;s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:30;a:4:{s:6:\"client\";a:5:{s:2:\"id\";i:64;s:4:\"name\";s:2:\"IE\";s:8:\"platform\";s:13:\"Win Phone 8.0\";s:7:\"version\";s:2:\"10\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:1;s:12:\"errorMessage\";s:33:\"Protocol mismatch (not simulated)\";s:8:\"attempts\";i:0;}i:31;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:65;s:4:\"name\";s:2:\"IE\";s:8:\"platform\";s:13:\"Win Phone 8.1\";s:7:\"version\";s:2:\"11\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49191;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:32;a:16:{s:6:\"client\";a:5:{s:2:\"id\";i:106;s:4:\"name\";s:2:\"IE\";s:8:\"platform\";s:20:\"Win Phone 8.1 Update\";s:7:\"version\";s:2:\"11\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:158;s:9:\"suiteName\";s:35:\"TLS_DHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:2:\"DH\";s:10:\"kxStrength\";i:16384;s:6:\"dhBits\";i:2048;s:3:\"dhP\";i:256;s:3:\"dhG\";i:1;s:4:\"dhYs\";i:256;s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:33;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:131;s:4:\"name\";s:2:\"IE\";s:8:\"platform\";s:6:\"Win 10\";s:7:\"version\";s:2:\"11\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:34;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:144;s:4:\"name\";s:4:\"Edge\";s:8:\"platform\";s:6:\"Win 10\";s:7:\"version\";s:2:\"15\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:35;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:159;s:4:\"name\";s:4:\"Edge\";s:8:\"platform\";s:6:\"Win 10\";s:7:\"version\";s:2:\"16\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:36;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:160;s:4:\"name\";s:4:\"Edge\";s:8:\"platform\";s:6:\"Win 10\";s:7:\"version\";s:2:\"18\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:37;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:120;s:4:\"name\";s:4:\"Edge\";s:8:\"platform\";s:12:\"Win Phone 10\";s:7:\"version\";s:2:\"13\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:38;a:4:{s:6:\"client\";a:4:{s:2:\"id\";i:25;s:4:\"name\";s:4:\"Java\";s:7:\"version\";s:4:\"6u45\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:1;s:12:\"errorMessage\";s:33:\"Protocol mismatch (not simulated)\";s:8:\"attempts\";i:0;}i:39;a:4:{s:6:\"client\";a:4:{s:2:\"id\";i:26;s:4:\"name\";s:4:\"Java\";s:7:\"version\";s:4:\"7u25\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:1;s:12:\"errorMessage\";s:33:\"Protocol mismatch (not simulated)\";s:8:\"attempts\";i:0;}i:40;a:15:{s:6:\"client\";a:4:{s:2:\"id\";i:147;s:4:\"name\";s:4:\"Java\";s:7:\"version\";s:5:\"8u161\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:41;a:11:{s:6:\"client\";a:4:{s:2:\"id\";i:162;s:4:\"name\";s:4:\"Java\";s:7:\"version\";s:6:\"11.0.3\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:10:\"protocolId\";i:772;s:7:\"suiteId\";i:4866;s:9:\"suiteName\";s:22:\"TLS_AES_256_GCM_SHA384\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";}i:42;a:11:{s:6:\"client\";a:4:{s:2:\"id\";i:163;s:4:\"name\";s:4:\"Java\";s:7:\"version\";s:6:\"12.0.1\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:10:\"protocolId\";i:772;s:7:\"suiteId\";i:4866;s:9:\"suiteName\";s:22:\"TLS_AES_256_GCM_SHA384\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";}i:43;a:4:{s:6:\"client\";a:4:{s:2:\"id\";i:27;s:4:\"name\";s:7:\"OpenSSL\";s:7:\"version\";s:6:\"0.9.8y\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:1;s:12:\"errorMessage\";s:33:\"Protocol mismatch (not simulated)\";s:8:\"attempts\";i:0;}i:44;a:15:{s:6:\"client\";a:4:{s:2:\"id\";i:99;s:4:\"name\";s:7:\"OpenSSL\";s:7:\"version\";s:6:\"1.0.1l\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:45;a:15:{s:6:\"client\";a:4:{s:2:\"id\";i:164;s:4:\"name\";s:7:\"OpenSSL\";s:7:\"version\";s:6:\"1.0.2s\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:46;a:15:{s:6:\"client\";a:4:{s:2:\"id\";i:169;s:4:\"name\";s:7:\"OpenSSL\";s:7:\"version\";s:6:\"1.1.0k\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:52392;s:9:\"suiteName\";s:43:\"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:47;a:11:{s:6:\"client\";a:4:{s:2:\"id\";i:165;s:4:\"name\";s:7:\"OpenSSL\";s:7:\"version\";s:6:\"1.1.1c\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:10:\"protocolId\";i:772;s:7:\"suiteId\";i:4866;s:9:\"suiteName\";s:22:\"TLS_AES_256_GCM_SHA384\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";}i:48;a:4:{s:6:\"client\";a:5:{s:2:\"id\";i:32;s:4:\"name\";s:6:\"Safari\";s:8:\"platform\";s:11:\"OS X 10.6.8\";s:7:\"version\";s:5:\"5.1.9\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:1;s:12:\"errorMessage\";s:33:\"Protocol mismatch (not simulated)\";s:8:\"attempts\";i:0;}i:49;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:33;s:4:\"name\";s:6:\"Safari\";s:8:\"platform\";s:9:\"iOS 6.0.1\";s:7:\"version\";s:1:\"6\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49191;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:50;a:4:{s:6:\"client\";a:5:{s:2:\"id\";i:34;s:4:\"name\";s:6:\"Safari\";s:8:\"platform\";s:11:\"OS X 10.8.4\";s:7:\"version\";s:5:\"6.0.4\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:1;s:12:\"errorMessage\";s:33:\"Protocol mismatch (not simulated)\";s:8:\"attempts\";i:0;}i:51;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:63;s:4:\"name\";s:6:\"Safari\";s:8:\"platform\";s:7:\"iOS 7.1\";s:7:\"version\";s:1:\"7\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49191;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:52;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:35;s:4:\"name\";s:6:\"Safari\";s:8:\"platform\";s:9:\"OS X 10.9\";s:7:\"version\";s:1:\"7\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49191;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:53;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:85;s:4:\"name\";s:6:\"Safari\";s:8:\"platform\";s:7:\"iOS 8.4\";s:7:\"version\";s:1:\"8\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49191;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:54;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:87;s:4:\"name\";s:6:\"Safari\";s:8:\"platform\";s:10:\"OS X 10.10\";s:7:\"version\";s:1:\"8\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49191;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:55;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:114;s:4:\"name\";s:6:\"Safari\";s:8:\"platform\";s:5:\"iOS 9\";s:7:\"version\";s:1:\"9\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:56;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:111;s:4:\"name\";s:6:\"Safari\";s:8:\"platform\";s:10:\"OS X 10.11\";s:7:\"version\";s:1:\"9\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:57;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:140;s:4:\"name\";s:6:\"Safari\";s:8:\"platform\";s:6:\"iOS 10\";s:7:\"version\";s:2:\"10\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:58;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:138;s:4:\"name\";s:6:\"Safari\";s:8:\"platform\";s:10:\"OS X 10.12\";s:7:\"version\";s:2:\"10\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:59;a:11:{s:6:\"client\";a:5:{s:2:\"id\";i:161;s:4:\"name\";s:6:\"Safari\";s:8:\"platform\";s:18:\"MacOS 10.14.6 Beta\";s:7:\"version\";s:6:\"12.1.2\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:10:\"protocolId\";i:772;s:7:\"suiteId\";i:4867;s:9:\"suiteName\";s:28:\"TLS_CHACHA20_POLY1305_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";}i:60;a:11:{s:6:\"client\";a:5:{s:2:\"id\";i:166;s:4:\"name\";s:6:\"Safari\";s:8:\"platform\";s:10:\"iOS 12.3.1\";s:7:\"version\";s:6:\"12.1.1\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:10:\"protocolId\";i:772;s:7:\"suiteId\";i:4867;s:9:\"suiteName\";s:28:\"TLS_CHACHA20_POLY1305_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:29;s:14:\"namedGroupName\";s:6:\"x25519\";}i:61;a:15:{s:6:\"client\";a:5:{s:2:\"id\";i:112;s:4:\"name\";s:9:\"Apple ATS\";s:8:\"platform\";s:5:\"iOS 9\";s:7:\"version\";s:1:\"9\";s:11:\"isReference\";b:1;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:62;a:15:{s:6:\"client\";a:4:{s:2:\"id\";i:92;s:4:\"name\";s:11:\"Yahoo Slurp\";s:7:\"version\";s:8:\"Jan 2015\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}i:63;a:15:{s:6:\"client\";a:4:{s:2:\"id\";i:93;s:4:\"name\";s:9:\"YandexBot\";s:7:\"version\";s:8:\"Jan 2015\";s:11:\"isReference\";b:0;}s:9:\"errorCode\";i:0;s:8:\"attempts\";i:1;s:11:\"certChainId\";s:64:\"5b7440ab493109532cf67d0b43280542367033787ace839cc5610bc332405634\";s:10:\"protocolId\";i:771;s:7:\"suiteId\";i:49199;s:9:\"suiteName\";s:37:\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\";s:6:\"kxType\";s:4:\"ECDH\";s:10:\"kxStrength\";i:3072;s:14:\"namedGroupBits\";i:256;s:12:\"namedGroupId\";i:23;s:14:\"namedGroupName\";s:9:\"secp256r1\";s:6:\"keyAlg\";s:3:\"RSA\";s:7:\"keySize\";i:2048;s:6:\"sigAlg\";s:13:\"SHA256withRSA\";}}}s:10:\"heartbleed\";b:0;s:9:\"heartbeat\";b:0;s:10:\"openSslCcs\";i:1;s:19:\"openSSLLuckyMinus20\";i:1;s:11:\"ticketbleed\";i:1;s:14:\"bleichenbacher\";i:1;s:6:\"poodle\";b:0;s:9:\"poodleTls\";i:1;s:12:\"fallbackScsv\";b:1;s:5:\"freak\";b:0;s:6:\"hasSct\";i:1;s:8:\"dhPrimes\";a:1:{i:0;s:512:\"ec86f870a03316ec051a7359cd1f8bf829e4d2cf52ddc2248db5389afb5ca4e4b2dace665074a6854d4b1d30b82bf310e9a72d0571e781df8b59523b5f430b68f1db07be086b1b23ee4dcc9e0e43a01edf438cecbebe90b45154b92f7b64764e5dd42eaec29eae514359c7779c503c0eed73045ff14c762ad8f8cffc3440d1b442618466423904f868b262d755ed1b747591e0c569c1315cdb7b442ece84580d1e660cc8449efd4008675dfba7768f001187e993f97dc4bc745520d44a412f43421ac1f297174927376b2f887e1ca0a1899227d9565a71c156377e3a9d05e7ee5d8f8217bce9c2933082f9f4c9ae49dbd054b4d9754dfa06b8d63841b71f77f3\";}s:17:\"dhUsesKnownPrimes\";i:0;s:9:\"dhYsReuse\";b:0;s:18:\"ecdhParameterReuse\";b:0;s:6:\"logjam\";b:0;s:18:\"chaCha20Preference\";b:1;s:10:\"hstsPolicy\";a:3:{s:12:\"LONG_MAX_AGE\";i:15552000;s:6:\"status\";s:6:\"absent\";s:10:\"directives\";a:0:{}}s:12:\"hstsPreloads\";a:4:{i:0;a:4:{s:6:\"source\";s:6:\"Chrome\";s:8:\"hostname\";s:17:\"onlineincshop.com\";s:6:\"status\";s:6:\"absent\";s:10:\"sourceTime\";i:1720167188679;}i:1;a:4:{s:6:\"source\";s:4:\"Edge\";s:8:\"hostname\";s:17:\"onlineincshop.com\";s:6:\"status\";s:6:\"absent\";s:10:\"sourceTime\";i:1720167244858;}i:2;a:4:{s:6:\"source\";s:7:\"Firefox\";s:8:\"hostname\";s:17:\"onlineincshop.com\";s:6:\"status\";s:6:\"absent\";s:10:\"sourceTime\";i:1720167244858;}i:3;a:4:{s:6:\"source\";s:2:\"IE\";s:8:\"hostname\";s:17:\"onlineincshop.com\";s:6:\"status\";s:6:\"absent\";s:10:\"sourceTime\";i:1720167244858;}}s:10:\"hpkpPolicy\";a:4:{s:6:\"status\";s:6:\"absent\";s:4:\"pins\";a:0:{}s:11:\"matchedPins\";a:0:{}s:10:\"directives\";a:0:{}}s:12:\"hpkpRoPolicy\";a:4:{s:6:\"status\";s:6:\"absent\";s:4:\"pins\";a:0:{}s:11:\"matchedPins\";a:0:{}s:10:\"directives\";a:0:{}}s:15:\"staticPkpPolicy\";a:5:{s:6:\"status\";s:6:\"absent\";s:4:\"pins\";a:0:{}s:11:\"matchedPins\";a:0:{}s:13:\"forbiddenPins\";a:0:{}s:20:\"matchedForbiddenPins\";a:0:{}}s:16:\"httpTransactions\";a:1:{i:0;a:8:{s:10:\"requestUrl\";s:26:\"https://onlineincshop.com/\";s:10:\"statusCode\";i:200;s:11:\"requestLine\";s:14:\"GET / HTTP/1.1\";s:14:\"requestHeaders\";a:4:{i:0;s:23:\"Host: onlineincshop.com\";i:1;s:98:\"User-Agent: SSL Labs (https://www.ssllabs.com/about/assessment.html); on behalf of XXX.XXX.XXX.XXX\";i:2;s:11:\"Accept: */*\";i:3;s:17:\"Connection: Close\";}s:12:\"responseLine\";s:15:\"HTTP/1.1 200 OK\";s:18:\"responseHeadersRaw\";a:12:{i:0;s:30:\"keep-alive: timeout=5, max=100\";i:1;s:38:\"content-type: text/html; charset=UTF-8\";i:2;s:68:\"link: <https://onlineincshop.com/wp-json/>; rel=\"https://api.w.org/\"\";i:3;s:98:\"link: <https://onlineincshop.com/wp-json/wp/v2/pages/32>; rel=\"alternate\"; type=\"application/json\"\";i:4;s:49:\"link: <https://onlineincshop.com/>; rel=shortlink\";i:5;s:25:\"etag: \"922-1720170068;;;\"\";i:6;s:22:\"x-litespeed-cache: hit\";i:7;s:26:\"transfer-encoding: chunked\";i:8;s:35:\"date: Fri, 05 Jul 2024 09:07:47 GMT\";i:9;s:17:\"server: LiteSpeed\";i:10;s:29:\"x-turbo-charged-by: LiteSpeed\";i:11;s:17:\"connection: close\";}s:15:\"responseHeaders\";a:12:{i:0;a:2:{s:4:\"name\";s:10:\"keep-alive\";s:5:\"value\";s:18:\"timeout=5, max=100\";}i:1;a:2:{s:4:\"name\";s:12:\"content-type\";s:5:\"value\";s:24:\"text/html; charset=UTF-8\";}i:2;a:2:{s:4:\"name\";s:4:\"link\";s:5:\"value\";s:62:\"<https://onlineincshop.com/wp-json/>; rel=\"https://api.w.org/\"\";}i:3;a:2:{s:4:\"name\";s:4:\"link\";s:5:\"value\";s:92:\"<https://onlineincshop.com/wp-json/wp/v2/pages/32>; rel=\"alternate\"; type=\"application/json\"\";}i:4;a:2:{s:4:\"name\";s:4:\"link\";s:5:\"value\";s:43:\"<https://onlineincshop.com/>; rel=shortlink\";}i:5;a:2:{s:4:\"name\";s:4:\"etag\";s:5:\"value\";s:19:\"\"922-1720170068;;;\"\";}i:6;a:2:{s:4:\"name\";s:17:\"x-litespeed-cache\";s:5:\"value\";s:3:\"hit\";}i:7;a:2:{s:4:\"name\";s:17:\"transfer-encoding\";s:5:\"value\";s:7:\"chunked\";}i:8;a:2:{s:4:\"name\";s:4:\"date\";s:5:\"value\";s:29:\"Fri, 05 Jul 2024 09:07:47 GMT\";}i:9;a:2:{s:4:\"name\";s:6:\"server\";s:5:\"value\";s:9:\"LiteSpeed\";}i:10;a:2:{s:4:\"name\";s:18:\"x-turbo-charged-by\";s:5:\"value\";s:9:\"LiteSpeed\";}i:11;a:2:{s:4:\"name\";s:10:\"connection\";s:5:\"value\";s:5:\"close\";}}s:13:\"fragileServer\";b:0;}}s:26:\"implementsTLS13MandatoryCS\";b:1;s:14:\"zeroRTTEnabled\";i:0;s:12:\"zombiePoodle\";i:1;s:12:\"goldenDoodle\";i:1;s:11:\"supportsCBC\";b:1;s:23:\"zeroLengthPaddingOracle\";i:1;s:14:\"sleepingPoodle\";i:1;}}}s:5:\"nonce\";s:10:\"e774abb613\";}', 'no');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(82328, 'rsssl_wp_version_token', '7917012009', 'yes'),
(82332, 'rsssl_email_verification_status', 'started', 'no'),
(82367, 'rsssl_mixed_content_scan_dismissed', '1', 'off'),
(82368, 'rsssl_check_redirect_dismissed', '1', 'no'),
(82369, 'rsssl_elementor_dismissed', '1', 'no'),
(82370, 'rsssl_email_verification_not_verified_dismissed', '1', 'no'),
(82371, 'rsssl_block_display_is_login_enabled_dismissed', '1', 'no'),
(82372, 'rsssl_display_name_is_login_exists_dismissed', '1', 'no'),
(82373, 'rsssl_code-execution-uploads-allowed_dismissed', '1', 'no'),
(82375, 'rsssl_application-passwords_dismissed', '1', 'no'),
(85708, 'rsssl_vulnerability_mail_sent_for', 'a:3:{i:21;s:36:\"b81af396-3748-4461-82ac-c27ba3a71f27\";i:22;s:36:\"8bc298b5-f885-4088-9793-cce31a6185ad\";i:23;s:36:\"32cfc93e-ae2e-4744-81e3-7b6975362530\";}', 'off'),
(82365, 'rsssl_username_admin_exists_dismissed', '1', 'no'),
(238893, 'rsssl_reset_fix', '1', 'off'),
(112285, 'wpcode_notifications', 'a:4:{s:6:\"update\";i:1765248136;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}', 'off'),
(119482, '_elementor_global_css', 'a:6:{s:4:\"time\";i:1723712361;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}', 'auto'),
(233284, 'elementor_checklist', '{\"last_opened_timestamp\":-1,\"first_closed_checklist_in_editor\":false,\"is_popup_minimized\":false,\"steps\":{\"add_logo\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"set_fonts_and_colors\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"create_pages\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"setup_header\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"assign_homepage\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"setup_header_pro\":{\"is_marked_completed\":false,\"is_immutable_completed\":false}},\"editor_visit_count\":0,\"should_open_in_editor\":false}', 'auto');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(117511, 'rsssl_404_cache', 'a:804:{s:13:\"66.249.65.230\";a:1:{i:101;i:1723809863;}s:13:\"66.249.65.229\";a:1:{i:139;i:1723811720;}s:13:\"66.249.65.228\";a:1:{i:136;i:1723810302;}s:12:\"40.77.167.57\";a:1:{i:0;i:1723647437;}s:13:\"94.156.68.159\";a:1:{i:17;i:1727505984;}s:13:\"66.249.79.165\";a:1:{i:2424;i:1731749642;}s:14:\"52.167.144.142\";a:1:{i:1;i:1724330903;}s:12:\"85.208.98.20\";a:1:{i:14;i:1730171599;}s:15:\"104.238.137.201\";a:8:{i:0;i:1723659811;i:1;i:1723659811;i:2;i:1723659811;i:3;i:1723659812;i:4;i:1723659812;i:5;i:1723659812;i:6;i:1723659813;i:7;i:1723659813;}s:14:\"52.167.144.161\";a:1:{i:2;i:1724717348;}s:12:\"66.249.65.32\";a:1:{i:16750;i:1729428470;}s:12:\"66.249.65.46\";a:1:{i:142192;i:1729422545;}s:12:\"66.249.65.33\";a:1:{i:7718;i:1729422607;}s:12:\"194.38.20.13\";a:1:{i:48;i:1731652795;}s:13:\"188.163.82.21\";a:1:{i:0;i:1723673297;}s:13:\"40.77.167.241\";a:1:{i:0;i:1723676719;}s:12:\"40.77.167.55\";a:1:{i:0;i:1723677833;}s:14:\"52.167.144.195\";a:1:{i:0;i:1723680835;}s:13:\"109.169.10.10\";a:1:{i:13;i:1731741697;}s:12:\"40.77.167.20\";a:1:{i:0;i:1723700679;}s:11:\"45.61.60.18\";a:1:{i:0;i:1723707529;}s:12:\"194.38.23.16\";a:1:{i:32;i:1731488684;}s:12:\"40.77.167.50\";a:1:{i:1;i:1723895274;}s:13:\"66.249.70.128\";a:1:{i:3;i:1724534702;}s:11:\"66.249.72.2\";a:1:{i:305;i:1727165176;}s:14:\"52.167.144.191\";a:1:{i:4;i:1726725628;}s:14:\"52.167.144.174\";a:1:{i:1;i:1727079217;}s:13:\"45.227.254.34\";a:1:{i:34;i:1731060351;}s:14:\"45.141.215.206\";a:1:{i:6;i:1723741798;}s:12:\"158.69.23.79\";a:1:{i:10;i:1730844745;}s:12:\"66.249.73.96\";a:1:{i:14;i:1723810667;}s:13:\"66.249.65.197\";a:1:{i:131;i:1729266515;}s:13:\"207.46.13.102\";a:1:{i:4;i:1725498886;}s:15:\"194.163.150.199\";a:1:{i:0;i:1723760332;}s:12:\"85.208.98.16\";a:1:{i:14;i:1730109345;}s:13:\"40.77.167.126\";a:1:{i:0;i:1723763215;}s:14:\"52.167.144.236\";a:1:{i:0;i:1723764718;}s:13:\"104.248.9.129\";a:8:{i:0;i:1723766442;i:1;i:1723766443;i:2;i:1723766443;i:3;i:1723766443;i:4;i:1723766444;i:5;i:1723766444;i:6;i:1723766445;i:7;i:1723766445;}s:12:\"66.249.65.73\";a:1:{i:12;i:1723811518;}s:11:\"66.249.74.1\";a:1:{i:0;i:1723766455;}s:12:\"66.249.74.40\";a:1:{i:15;i:1723811761;}s:13:\"66.249.74.134\";a:1:{i:29;i:1735102144;}s:14:\"134.209.25.199\";a:3:{i:9;i:1723772286;i:10;i:1723772288;i:11;i:1723772290;}s:12:\"157.55.39.58\";a:1:{i:6;i:1725531720;}s:12:\"66.249.74.42\";a:1:{i:0;i:1723775588;}s:12:\"66.249.74.41\";a:1:{i:6;i:1723812318;}s:12:\"66.249.74.97\";a:1:{i:2;i:1723813039;}s:13:\"66.249.73.224\";a:1:{i:5;i:1723811437;}s:13:\"66.249.65.110\";a:1:{i:10;i:1723810284;}s:12:\"66.249.74.64\";a:1:{i:5;i:1723806674;}s:12:\"66.249.73.64\";a:1:{i:7;i:1723809556;}s:13:\"66.249.73.132\";a:1:{i:7;i:1723810535;}s:13:\"66.249.73.128\";a:1:{i:8;i:1723810040;}s:12:\"66.249.73.78\";a:1:{i:17;i:1723813588;}s:14:\"104.236.68.152\";a:8:{i:0;i:1723780551;i:1;i:1723780551;i:2;i:1723780552;i:3;i:1723780552;i:4;i:1723780552;i:5;i:1723780553;i:6;i:1723780553;i:7;i:1723780553;}s:14:\"146.190.98.129\";a:1:{i:0;i:1723783400;}s:13:\"157.55.39.204\";a:1:{i:1;i:1723866487;}s:14:\"213.180.203.81\";a:1:{i:0;i:1723787755;}s:13:\"66.249.74.110\";a:1:{i:6;i:1723811457;}s:12:\"66.249.74.15\";a:1:{i:11;i:1723811791;}s:13:\"66.249.73.196\";a:1:{i:14;i:1723811558;}s:13:\"154.38.175.35\";a:1:{i:3;i:1725431828;}s:12:\"66.249.74.96\";a:1:{i:6;i:1723811681;}s:13:\"66.249.74.132\";a:10:{i:270;i:1735104033;i:271;i:1735104034;i:272;i:1735104034;i:273;i:1735104035;i:274;i:1735104035;i:275;i:1735104035;i:276;i:1735104036;i:277;i:1735104036;i:278;i:1735104036;i:279;i:1735104037;}s:12:\"66.249.74.65\";a:1:{i:3;i:1723811056;}s:11:\"66.249.73.5\";a:1:{i:19;i:1731645031;}s:13:\"66.249.73.238\";a:1:{i:11;i:1723811862;}s:12:\"66.249.74.78\";a:1:{i:8;i:1723811477;}s:12:\"66.249.65.96\";a:1:{i:2;i:1723810950;}s:13:\"66.249.65.195\";a:1:{i:160;i:1729267493;}s:13:\"66.249.73.225\";a:1:{i:0;i:1723794064;}s:11:\"66.249.74.2\";a:1:{i:2;i:1723806316;}s:11:\"13.74.50.26\";a:1:{i:0;i:1723794686;}s:12:\"66.249.73.98\";a:1:{i:1;i:1723811113;}s:12:\"66.249.73.97\";a:1:{i:11;i:1723812302;}s:12:\"66.249.65.74\";a:1:{i:1;i:1723812862;}s:13:\"66.249.74.133\";a:8:{i:78;i:1735104029;i:79;i:1735104031;i:80;i:1735104031;i:81;i:1735104031;i:82;i:1735104032;i:83;i:1735104032;i:84;i:1735104033;i:85;i:1735104033;}s:12:\"66.249.66.36\";a:1:{i:50;i:1727040648;}s:11:\"66.249.73.6\";a:1:{i:18;i:1731661433;}s:12:\"66.249.73.34\";a:1:{i:2;i:1723810566;}s:12:\"66.249.73.33\";a:1:{i:1;i:1723802738;}s:13:\"66.249.73.129\";a:1:{i:0;i:1723800849;}s:12:\"66.249.73.32\";a:1:{i:5;i:1723811074;}s:13:\"66.249.65.196\";a:1:{i:133;i:1729266419;}s:12:\"66.249.73.65\";a:1:{i:2;i:1723813590;}s:12:\"66.249.65.97\";a:1:{i:3;i:1723810991;}s:13:\"66.249.73.197\";a:1:{i:2;i:1723808420;}s:12:\"66.249.65.64\";a:1:{i:0;i:1723806425;}s:12:\"40.77.167.75\";a:1:{i:4;i:1725714637;}s:13:\"66.249.73.198\";a:1:{i:1;i:1723809787;}s:11:\"66.249.73.7\";a:1:{i:12;i:1731673397;}s:12:\"157.55.39.10\";a:1:{i:2;i:1724496862;}s:13:\"40.77.167.247\";a:1:{i:3;i:1725899049;}s:12:\"66.249.79.35\";a:1:{i:0;i:1723819269;}s:13:\"207.46.13.111\";a:1:{i:3;i:1725488460;}s:14:\"52.167.144.186\";a:1:{i:2;i:1728126346;}s:12:\"157.55.39.61\";a:1:{i:0;i:1723836319;}s:12:\"85.208.98.19\";a:1:{i:14;i:1730407542;}s:13:\"207.46.13.141\";a:1:{i:1;i:1723974373;}s:13:\"138.197.5.154\";a:8:{i:0;i:1723849557;i:1;i:1723849557;i:2;i:1723849558;i:3;i:1723849558;i:4;i:1723849558;i:5;i:1723849559;i:6;i:1723849559;i:7;i:1723849560;}s:13:\"207.46.13.124\";a:1:{i:1;i:1726325456;}s:14:\"52.167.144.192\";a:1:{i:4;i:1730945832;}s:12:\"40.77.167.53\";a:1:{i:1;i:1730483838;}s:13:\"109.195.210.2\";a:1:{i:0;i:1723874012;}s:14:\"45.147.249.178\";a:1:{i:0;i:1723883539;}s:12:\"157.55.39.15\";a:1:{i:1;i:1723940592;}s:13:\"207.46.13.168\";a:1:{i:0;i:1723924908;}s:12:\"91.219.84.32\";a:1:{i:0;i:1723927425;}s:12:\"157.55.39.53\";a:1:{i:2;i:1724881492;}s:14:\"139.59.143.102\";a:3:{i:9;i:1723944044;i:10;i:1723944046;i:11;i:1723944048;}s:12:\"207.46.13.14\";a:1:{i:10;i:1726063619;}s:12:\"13.38.24.184\";a:1:{i:0;i:1723956205;}s:12:\"157.55.39.54\";a:1:{i:2;i:1725540537;}s:12:\"157.55.39.48\";a:1:{i:5;i:1725071159;}s:12:\"157.55.39.52\";a:1:{i:3;i:1726002140;}s:13:\"94.156.65.216\";a:1:{i:0;i:1723971877;}s:13:\"173.252.83.13\";a:1:{i:0;i:1723976059;}s:12:\"40.77.167.22\";a:1:{i:0;i:1723977980;}s:14:\"89.232.192.135\";a:1:{i:0;i:1723987740;}s:14:\"216.128.135.88\";a:8:{i:0;i:1723996677;i:1;i:1723996677;i:2;i:1723996677;i:3;i:1723996678;i:4;i:1723996678;i:5;i:1723996678;i:6;i:1723996678;i:7;i:1723996679;}s:12:\"15.237.72.71\";a:1:{i:0;i:1723998585;}s:14:\"52.167.144.145\";a:1:{i:10;i:1728957622;}s:13:\"94.156.65.250\";a:1:{i:36;i:1727729939;}s:12:\"157.55.39.13\";a:1:{i:6;i:1725505168;}s:13:\"152.42.160.30\";a:2:{i:6;i:1724369806;i:7;i:1724369810;}s:14:\"149.56.150.218\";a:2:{i:1;i:1724016719;i:2;i:1724016722;}s:12:\"85.208.98.24\";a:1:{i:14;i:1730679058;}s:12:\"207.46.13.87\";a:1:{i:5;i:1724808274;}s:12:\"85.208.98.22\";a:1:{i:13;i:1728261562;}s:15:\"144.126.128.225\";a:1:{i:16;i:1725015453;}s:11:\"66.249.72.1\";a:1:{i:442;i:1729620763;}s:14:\"52.167.144.187\";a:1:{i:12;i:1726530157;}s:12:\"125.29.36.11\";a:1:{i:1;i:1724048142;}s:11:\"103.78.0.62\";a:1:{i:1;i:1724037610;}s:15:\"185.208.158.229\";a:1:{i:7;i:1724110343;}s:12:\"50.87.144.46\";a:1:{i:0;i:1724041153;}s:14:\"198.57.247.216\";a:1:{i:0;i:1724041159;}s:12:\"176.99.2.242\";a:1:{i:0;i:1724059237;}s:13:\"188.166.54.99\";a:1:{i:0;i:1724065366;}s:11:\"40.77.167.7\";a:1:{i:6;i:1728703082;}s:13:\"66.249.79.166\";a:1:{i:2261;i:1731753503;}s:11:\"13.38.52.45\";a:1:{i:0;i:1724081122;}s:13:\"69.171.230.17\";a:1:{i:0;i:1724081827;}s:12:\"40.77.167.44\";a:1:{i:2;i:1726037433;}s:14:\"216.128.142.96\";a:8:{i:0;i:1724084014;i:1;i:1724084014;i:2;i:1724084015;i:3;i:1724084015;i:4;i:1724084015;i:5;i:1724084016;i:6;i:1724084016;i:7;i:1724084016;}s:11:\"57.141.5.10\";a:1:{i:0;i:1724086152;}s:13:\"157.55.39.201\";a:1:{i:8;i:1725497846;}s:13:\"173.252.107.1\";a:1:{i:0;i:1724097872;}s:12:\"85.208.98.29\";a:1:{i:17;i:1730711729;}s:14:\"188.166.222.21\";a:3:{i:1;i:1724104362;i:2;i:1724104363;i:3;i:1724104366;}s:12:\"66.249.66.38\";a:1:{i:27;i:1725929311;}s:13:\"66.249.79.164\";a:1:{i:2540;i:1731749625;}s:14:\"52.167.144.229\";a:1:{i:7;i:1730175753;}s:13:\"159.89.17.243\";a:3:{i:9;i:1724116145;i:10;i:1724116147;i:11;i:1724116149;}s:13:\"15.188.144.40\";a:1:{i:7;i:1724125343;}s:13:\"207.46.13.127\";a:1:{i:4;i:1725516003;}s:13:\"95.154.200.46\";a:1:{i:1;i:1729397166;}s:11:\"207.46.13.7\";a:1:{i:2;i:1725978711;}s:12:\"40.77.167.72\";a:1:{i:3;i:1726126689;}s:12:\"207.46.13.78\";a:1:{i:8;i:1725995504;}s:13:\"60.99.179.120\";a:1:{i:0;i:1724162066;}s:13:\"158.247.196.6\";a:8:{i:0;i:1724165278;i:1;i:1724165278;i:2;i:1724165279;i:3;i:1724165279;i:4;i:1724165280;i:5;i:1724165280;i:6;i:1724165281;i:7;i:1724165281;}s:14:\"52.167.144.216\";a:1:{i:7;i:1726073520;}s:13:\"66.249.70.129\";a:1:{i:0;i:1724174508;}s:14:\"164.90.189.122\";a:1:{i:20;i:1724199752;}s:12:\"40.77.167.61\";a:1:{i:0;i:1724195192;}s:14:\"52.167.144.163\";a:1:{i:0;i:1724202877;}s:14:\"52.167.144.137\";a:1:{i:5;i:1727300996;}s:12:\"35.180.89.86\";a:1:{i:7;i:1724218997;}s:14:\"175.177.48.116\";a:1:{i:0;i:1724224223;}s:14:\"89.213.211.210\";a:1:{i:1;i:1724679798;}s:12:\"40.77.167.30\";a:1:{i:4;i:1725888178;}s:14:\"159.65.135.148\";a:2:{i:99;i:1724255552;i:100;i:1724255555;}s:12:\"91.92.242.21\";a:1:{i:22;i:1725927902;}s:14:\"95.179.134.166\";a:8:{i:0;i:1724271282;i:1;i:1724271283;i:2;i:1724271283;i:3;i:1724271284;i:4;i:1724271284;i:5;i:1724271285;i:6;i:1724271285;i:7;i:1724271286;}s:12:\"66.249.65.38\";a:1:{i:200;i:1728373797;}s:14:\"172.105.197.17\";a:3:{i:9;i:1724290133;i:10;i:1724290135;i:11;i:1724290137;}s:11:\"40.77.167.5\";a:1:{i:3;i:1729460110;}s:14:\"134.122.19.251\";a:3:{i:0;i:1724294757;i:1;i:1724294759;i:2;i:1724294761;}s:13:\"66.249.70.142\";a:1:{i:37;i:1724942275;}s:12:\"40.77.167.48\";a:1:{i:2;i:1727349282;}s:12:\"40.77.167.79\";a:1:{i:8;i:1726497515;}s:12:\"40.77.167.56\";a:1:{i:0;i:1724314417;}s:14:\"146.70.194.220\";a:2:{i:41;i:1724316141;i:42;i:1724316144;}s:13:\"154.38.175.69\";a:1:{i:0;i:1724331405;}s:14:\"74.208.156.122\";a:1:{i:0;i:1724332289;}s:14:\"52.167.144.168\";a:1:{i:1;i:1726204263;}s:14:\"52.167.144.231\";a:1:{i:7;i:1727044234;}s:12:\"85.208.98.31\";a:1:{i:15;i:1730366172;}s:13:\"52.167.144.21\";a:1:{i:8;i:1728971044;}s:14:\"52.167.144.226\";a:1:{i:0;i:1724370817;}s:12:\"40.77.167.21\";a:1:{i:5;i:1729244498;}s:12:\"40.77.167.76\";a:1:{i:5;i:1726055144;}s:12:\"40.77.167.32\";a:1:{i:5;i:1729980927;}s:13:\"40.77.167.235\";a:1:{i:2;i:1724717659;}s:13:\"52.167.144.19\";a:1:{i:1;i:1727777204;}s:14:\"52.167.144.207\";a:1:{i:7;i:1725583543;}s:13:\"40.120.111.49\";a:1:{i:0;i:1724416972;}s:13:\"40.77.167.136\";a:1:{i:1;i:1728377258;}s:13:\"13.74.114.201\";a:2:{i:153;i:1724426595;i:154;i:1724426598;}s:12:\"40.77.167.59\";a:1:{i:2;i:1725891605;}s:14:\"52.167.144.206\";a:1:{i:1;i:1724880089;}s:12:\"45.63.108.53\";a:8:{i:0;i:1724446110;i:1;i:1724446111;i:2;i:1724446111;i:3;i:1724446111;i:4;i:1724446112;i:5;i:1724446112;i:6;i:1724446112;i:7;i:1724446112;}s:14:\"152.42.208.105\";a:2:{i:75;i:1724447173;i:76;i:1724447176;}s:14:\"52.167.144.171\";a:1:{i:2;i:1725454078;}s:11:\"40.77.167.3\";a:1:{i:1;i:1725366182;}s:14:\"207.154.212.47\";a:3:{i:9;i:1724460432;i:10;i:1724460434;i:11;i:1724460436;}s:13:\"52.167.144.24\";a:1:{i:4;i:1728753036;}s:14:\"52.167.144.166\";a:1:{i:3;i:1728281312;}s:14:\"52.167.144.173\";a:1:{i:5;i:1728388804;}s:12:\"66.249.66.37\";a:1:{i:27;i:1725929436;}s:11:\"157.55.39.6\";a:1:{i:2;i:1725500496;}s:12:\"157.55.39.55\";a:1:{i:4;i:1726005114;}s:13:\"207.46.13.150\";a:1:{i:1;i:1726341623;}s:13:\"94.156.64.213\";a:4:{i:9;i:1726861331;i:10;i:1726861331;i:11;i:1726861333;i:12;i:1726861335;}s:14:\"52.167.144.220\";a:1:{i:1;i:1724534723;}s:13:\"45.138.16.198\";a:2:{i:4;i:1727448208;i:5;i:1727448212;}s:14:\"35.180.242.121\";a:1:{i:0;i:1724522613;}s:12:\"64.225.14.42\";a:8:{i:0;i:1724525595;i:1;i:1724525596;i:2;i:1724525596;i:3;i:1724525596;i:4;i:1724525597;i:5;i:1724525597;i:6;i:1724525598;i:7;i:1724525598;}s:13:\"195.3.223.154\";a:1:{i:38;i:1728217238;}s:12:\"40.77.167.17\";a:1:{i:3;i:1725423353;}s:13:\"91.92.247.168\";a:1:{i:0;i:1724528717;}s:12:\"40.77.167.36\";a:1:{i:6;i:1725986774;}s:13:\"157.55.39.205\";a:1:{i:4;i:1725517274;}s:13:\"38.60.254.202\";a:1:{i:1;i:1724551074;}s:13:\"94.156.66.165\";a:4:{i:24;i:1727628797;i:25;i:1727628797;i:26;i:1727628799;i:27;i:1727628801;}s:12:\"157.55.39.56\";a:1:{i:2;i:1724914034;}s:12:\"40.77.167.23\";a:1:{i:1;i:1725014644;}s:14:\"52.167.144.224\";a:1:{i:2;i:1725825635;}s:14:\"52.167.144.189\";a:1:{i:7;i:1726704137;}s:12:\"40.77.167.71\";a:1:{i:1;i:1730712655;}s:13:\"89.110.87.170\";a:2:{i:0;i:1724585553;i:1;i:1724585553;}s:12:\"40.77.167.78\";a:1:{i:5;i:1725585954;}s:14:\"52.167.144.200\";a:1:{i:1;i:1724600012;}s:13:\"52.167.144.20\";a:1:{i:2;i:1725785988;}s:13:\"95.179.145.54\";a:8:{i:0;i:1724604283;i:1;i:1724604284;i:2;i:1724604285;i:3;i:1724604285;i:4;i:1724604286;i:5;i:1724604286;i:6;i:1724604287;i:7;i:1724604287;}s:14:\"52.167.144.228\";a:1:{i:1;i:1725532362;}s:12:\"40.77.167.13\";a:1:{i:0;i:1724612955;}s:13:\"40.77.167.243\";a:1:{i:3;i:1725971523;}s:14:\"52.167.144.203\";a:1:{i:3;i:1725255776;}s:12:\"40.77.167.60\";a:1:{i:3;i:1725090629;}s:14:\"156.244.37.156\";a:1:{i:1;i:1724623927;}s:14:\"52.167.144.238\";a:1:{i:2;i:1725218261;}s:13:\"92.118.39.244\";a:4:{i:0;i:1724628351;i:1;i:1724628351;i:2;i:1724628351;i:3;i:1724628352;}s:13:\"164.90.208.56\";a:3:{i:9;i:1724632780;i:10;i:1724632782;i:11;i:1724632783;}s:12:\"40.77.167.54\";a:1:{i:0;i:1724649869;}s:14:\"208.109.35.123\";a:1:{i:0;i:1724657397;}s:12:\"157.55.39.60\";a:1:{i:6;i:1726081148;}s:15:\"216.225.195.102\";a:1:{i:2;i:1724662020;}s:11:\"207.46.13.6\";a:1:{i:1;i:1724889847;}s:12:\"207.46.13.54\";a:1:{i:0;i:1724690381;}s:13:\"141.164.47.27\";a:8:{i:0;i:1724701947;i:1;i:1724701948;i:2;i:1724701948;i:3;i:1724701949;i:4;i:1724701949;i:5;i:1724701950;i:6;i:1724701950;i:7;i:1724701951;}s:14:\"52.167.144.222\";a:1:{i:6;i:1727658526;}s:12:\"66.249.65.41\";a:1:{i:4;i:1726281202;}s:12:\"66.249.65.37\";a:1:{i:712;i:1729007099;}s:12:\"66.249.65.36\";a:1:{i:2071;i:1728367530;}s:12:\"66.249.65.45\";a:1:{i:3;i:1725003362;}s:12:\"66.249.65.34\";a:1:{i:2;i:1724907902;}s:12:\"66.249.65.40\";a:1:{i:2;i:1725003339;}s:12:\"45.76.19.197\";a:8:{i:0;i:1724774043;i:1;i:1724774043;i:2;i:1724774043;i:3;i:1724774044;i:4;i:1724774044;i:5;i:1724774044;i:6;i:1724774044;i:7;i:1724774045;}s:12:\"13.37.224.17\";a:1:{i:5;i:1724775871;}s:13:\"66.249.70.133\";a:1:{i:0;i:1724781751;}s:12:\"40.77.167.52\";a:1:{i:8;i:1725943859;}s:14:\"52.167.144.182\";a:1:{i:3;i:1729781482;}s:14:\"52.167.144.188\";a:1:{i:1;i:1725921976;}s:13:\"206.81.24.227\";a:2:{i:22;i:1725151804;i:23;i:1725151807;}s:13:\"207.46.13.126\";a:1:{i:1;i:1726284612;}s:13:\"66.249.69.168\";a:1:{i:156;i:1730872224;}s:12:\"157.55.39.62\";a:1:{i:2;i:1724922854;}s:13:\"91.92.254.104\";a:3:{i:1;i:1725487603;i:2;i:1725487604;i:3;i:1725487604;}s:12:\"66.249.66.32\";a:1:{i:3002;i:1726140311;}s:13:\"207.46.13.116\";a:1:{i:3;i:1730272059;}s:12:\"66.249.66.46\";a:1:{i:3268;i:1726140565;}s:15:\"144.126.135.200\";a:1:{i:13;i:1725745532;}s:11:\"157.55.39.9\";a:1:{i:2;i:1725401736;}s:14:\"162.247.74.204\";a:1:{i:0;i:1724872853;}s:13:\"207.46.13.151\";a:1:{i:3;i:1726358236;}s:13:\"207.46.13.107\";a:1:{i:5;i:1725997662;}s:12:\"40.77.167.47\";a:1:{i:1;i:1727532365;}s:12:\"66.249.65.39\";a:1:{i:30;i:1729005759;}s:12:\"66.249.65.42\";a:1:{i:1;i:1725003350;}s:12:\"66.249.65.43\";a:1:{i:5;i:1725003344;}s:13:\"40.77.167.144\";a:1:{i:1;i:1725967906;}s:13:\"66.249.69.169\";a:1:{i:169;i:1729499429;}s:14:\"52.167.144.180\";a:1:{i:3;i:1727358680;}s:13:\"66.249.64.233\";a:1:{i:176;i:1726319091;}s:12:\"66.55.76.192\";a:1:{i:1;i:1724994756;}s:14:\"52.167.144.179\";a:1:{i:2;i:1726010139;}s:11:\"40.77.167.9\";a:1:{i:4;i:1725812261;}s:12:\"207.46.13.17\";a:1:{i:0;i:1724964262;}s:14:\"52.167.144.138\";a:1:{i:4;i:1725834077;}s:13:\"209.38.248.17\";a:2:{i:10;i:1724978014;i:11;i:1724978017;}s:13:\"207.46.13.153\";a:1:{i:0;i:1724986844;}s:14:\"52.167.144.140\";a:1:{i:1;i:1725252404;}s:12:\"66.249.65.35\";a:3:{i:3;i:1725982652;i:4;i:1725982653;i:5;i:1725982653;}s:12:\"66.249.65.44\";a:1:{i:0;i:1725004198;}s:13:\"52.167.144.18\";a:1:{i:0;i:1725013897;}s:12:\"40.77.167.14\";a:1:{i:2;i:1725759456;}s:14:\"52.167.144.235\";a:1:{i:0;i:1725022520;}s:14:\"52.167.144.198\";a:1:{i:4;i:1729939581;}s:15:\"144.126.136.157\";a:1:{i:12;i:1725359553;}s:14:\"159.223.32.136\";a:1:{i:0;i:1725072663;}s:12:\"65.20.73.166\";a:1:{i:0;i:1725093588;}s:13:\"66.249.69.170\";a:1:{i:115;i:1729495765;}s:13:\"178.20.101.26\";a:2:{i:4;i:1725124462;i:5;i:1725124464;}s:14:\"185.129.250.75\";a:2:{i:4;i:1725124462;i:5;i:1725124465;}s:12:\"40.77.167.38\";a:1:{i:1;i:1726051468;}s:14:\"94.136.184.220\";a:1:{i:4;i:1725134378;}s:13:\"15.188.246.58\";a:1:{i:7;i:1725137062;}s:13:\"66.249.64.224\";a:1:{i:111;i:1725964043;}s:13:\"35.181.168.21\";a:8:{i:0;i:1725195440;i:1;i:1725195441;i:2;i:1725195442;i:3;i:1725195442;i:4;i:1725195443;i:5;i:1725195443;i:6;i:1725195443;i:7;i:1725195444;}s:13:\"66.249.64.234\";a:1:{i:127;i:1727335990;}s:12:\"92.53.96.105\";a:2:{i:0;i:1725197819;i:1;i:1725197819;}s:12:\"40.77.167.28\";a:1:{i:2;i:1730747212;}s:13:\"193.9.114.211\";a:1:{i:0;i:1725214786;}s:15:\"104.247.184.220\";a:4:{i:0;i:1725241750;i:1;i:1725241750;i:2;i:1725241751;i:3;i:1725241751;}s:14:\"193.34.213.138\";a:1:{i:30;i:1728569958;}s:12:\"138.68.82.23\";a:3:{i:9;i:1725246351;i:10;i:1725246353;i:11;i:1725246355;}s:13:\"13.39.162.253\";a:1:{i:3;i:1725254549;}s:14:\"52.167.144.204\";a:1:{i:1;i:1725667440;}s:12:\"91.92.242.88\";a:1:{i:0;i:1725297882;}s:14:\"141.164.34.216\";a:8:{i:0;i:1725301709;i:1;i:1725301710;i:2;i:1725301710;i:3;i:1725301710;i:4;i:1725301711;i:5;i:1725301711;i:6;i:1725301712;i:7;i:1725301712;}s:13:\"40.77.167.132\";a:1:{i:0;i:1725335975;}s:15:\"128.199.132.189\";a:1:{i:0;i:1725342166;}s:13:\"173.249.11.33\";a:1:{i:16;i:1725567139;}s:13:\"45.156.130.35\";a:1:{i:0;i:1725358888;}s:12:\"66.249.66.33\";a:1:{i:2515;i:1726140314;}s:12:\"40.77.167.45\";a:1:{i:0;i:1725367622;}s:11:\"103.78.0.60\";a:1:{i:1;i:1725389125;}s:13:\"45.32.207.189\";a:8:{i:0;i:1725383354;i:1;i:1725383354;i:2;i:1725383354;i:3;i:1725383354;i:4;i:1725383355;i:5;i:1725383355;i:6;i:1725383355;i:7;i:1725383355;}s:12:\"3.250.15.253\";a:1:{i:0;i:1725390177;}s:13:\"203.145.46.65\";a:1:{i:1;i:1725408007;}s:13:\"203.145.46.67\";a:1:{i:0;i:1725412317;}s:12:\"40.77.167.33\";a:1:{i:1;i:1728534141;}s:15:\"207.246.240.109\";a:1:{i:0;i:1725452092;}s:14:\"52.167.144.176\";a:1:{i:4;i:1725843230;}s:14:\"52.167.144.181\";a:1:{i:3;i:1725776060;}s:12:\"66.249.72.64\";a:1:{i:4;i:1726337485;}s:14:\"15.237.218.187\";a:2:{i:6;i:1725462835;i:7;i:1725462839;}s:12:\"5.150.246.66\";a:1:{i:1;i:1725479112;}s:14:\"52.167.144.170\";a:1:{i:0;i:1725479689;}s:12:\"40.77.167.15\";a:1:{i:1;i:1725881823;}s:14:\"52.167.144.212\";a:1:{i:2;i:1726062211;}s:13:\"52.167.144.22\";a:1:{i:4;i:1728923240;}s:13:\"52.167.144.17\";a:1:{i:2;i:1725560228;}s:14:\"92.205.172.126\";a:1:{i:0;i:1725535189;}s:13:\"144.202.79.70\";a:8:{i:0;i:1725539096;i:1;i:1725539097;i:2;i:1725539097;i:3;i:1725539097;i:4;i:1725539097;i:5;i:1725539098;i:6;i:1725539098;i:7;i:1725539098;}s:13:\"40.77.167.152\";a:1:{i:1;i:1726227868;}s:13:\"40.77.167.143\";a:1:{i:3;i:1726027798;}s:14:\"52.167.144.217\";a:1:{i:2;i:1731071231;}s:13:\"93.174.93.127\";a:3:{i:15;i:1726856419;i:16;i:1726856420;i:17;i:1726856422;}s:11:\"139.59.5.55\";a:1:{i:9;i:1725594773;}s:13:\"40.77.167.254\";a:1:{i:1;i:1725631105;}s:14:\"52.167.144.214\";a:1:{i:1;i:1725771063;}s:15:\"107.170.218.224\";a:1:{i:0;i:1725616685;}s:14:\"75.119.143.226\";a:1:{i:6;i:1725625038;}s:13:\"45.77.168.230\";a:8:{i:0;i:1725626302;i:1;i:1725626302;i:2;i:1725626303;i:3;i:1725626303;i:4;i:1725626304;i:5;i:1725626304;i:6;i:1725626305;i:7;i:1725626305;}s:13:\"139.162.45.49\";a:1:{i:0;i:1725637096;}s:12:\"35.235.84.95\";a:1:{i:2;i:1725640111;}s:12:\"62.233.57.53\";a:5:{i:21;i:1725659982;i:22;i:1725659983;i:23;i:1725659984;i:24;i:1725659984;i:25;i:1725659985;}s:13:\"13.37.213.184\";a:1:{i:0;i:1725660237;}s:14:\"92.204.218.109\";a:1:{i:0;i:1725670346;}s:14:\"52.167.144.230\";a:1:{i:2;i:1726093013;}s:15:\"162.241.218.163\";a:1:{i:0;i:1725677292;}s:14:\"162.210.97.116\";a:1:{i:0;i:1725677338;}s:13:\"213.27.159.23\";a:1:{i:0;i:1725677346;}s:15:\"108.179.253.210\";a:1:{i:0;i:1725677354;}s:12:\"40.77.167.16\";a:1:{i:0;i:1725739648;}s:14:\"167.71.211.222\";a:1:{i:0;i:1725762692;}s:11:\"40.77.167.2\";a:1:{i:1;i:1726022954;}s:12:\"66.249.66.39\";a:1:{i:22;i:1725927598;}s:12:\"85.203.21.46\";a:2:{i:26;i:1725798569;i:27;i:1725798573;}s:12:\"85.203.21.37\";a:2:{i:62;i:1725798854;i:63;i:1725798857;}s:11:\"85.203.21.6\";a:2:{i:112;i:1725799265;i:113;i:1725799268;}s:12:\"109.169.10.5\";a:1:{i:0;i:1725801031;}s:14:\"144.202.106.38\";a:8:{i:0;i:1725808821;i:1;i:1725808822;i:2;i:1725808822;i:3;i:1725808823;i:4;i:1725808823;i:5;i:1725808823;i:6;i:1725808824;i:7;i:1725808825;}s:14:\"52.167.144.136\";a:1:{i:1;i:1728761301;}s:14:\"170.64.225.186\";a:1:{i:10;i:1725835004;}s:15:\"155.138.165.118\";a:8:{i:0;i:1725885919;i:1;i:1725885920;i:2;i:1725885920;i:3;i:1725885920;i:4;i:1725885920;i:5;i:1725885921;i:6;i:1725885921;i:7;i:1725885921;}s:14:\"51.254.215.154\";a:1:{i:0;i:1725895564;}s:13:\"192.95.33.162\";a:1:{i:7;i:1725927388;}s:14:\"52.167.144.221\";a:1:{i:1;i:1727082057;}s:12:\"84.15.45.163\";a:1:{i:7;i:1725937306;}s:13:\"15.237.189.64\";a:1:{i:3;i:1725973407;}s:14:\"35.212.183.147\";a:1:{i:0;i:1725974677;}s:14:\"216.128.128.27\";a:8:{i:0;i:1726053543;i:1;i:1726053544;i:2;i:1726053545;i:3;i:1726053545;i:4;i:1726053545;i:5;i:1726053546;i:6;i:1726053547;i:7;i:1726053547;}s:13:\"152.42.226.79\";a:2:{i:2;i:1726056007;i:3;i:1726056011;}s:12:\"157.55.39.14\";a:1:{i:0;i:1726068632;}s:12:\"85.192.42.87\";a:1:{i:0;i:1726070896;}s:15:\"157.230.247.136\";a:3:{i:1;i:1726075267;i:2;i:1726075268;i:3;i:1726075271;}s:12:\"13.74.63.110\";a:2:{i:73;i:1726108305;i:74;i:1726108308;}s:12:\"13.74.98.138\";a:2:{i:141;i:1726317221;i:142;i:1726317224;}s:12:\"40.113.88.55\";a:2:{i:69;i:1726110209;i:70;i:1726110212;}s:12:\"13.74.182.94\";a:1:{i:75;i:1726112190;}s:14:\"52.138.205.109\";a:1:{i:71;i:1726112277;}s:14:\"172.81.133.100\";a:1:{i:6;i:1726116966;}s:14:\"68.183.227.214\";a:2:{i:2;i:1726151626;i:3;i:1726151629;}s:15:\"184.168.114.169\";a:1:{i:0;i:1726156415;}s:14:\"188.166.248.65\";a:2:{i:0;i:1726172292;i:1;i:1726172294;}s:13:\"141.164.63.73\";a:8:{i:0;i:1726178291;i:1;i:1726178292;i:2;i:1726178292;i:3;i:1726178293;i:4;i:1726178293;i:5;i:1726178294;i:6;i:1726178294;i:7;i:1726178295;}s:14:\"160.30.136.227\";a:1:{i:0;i:1726184817;}s:14:\"160.30.136.129\";a:1:{i:5;i:1726186687;}s:12:\"65.20.82.228\";a:7:{i:1;i:1726210354;i:2;i:1726210355;i:3;i:1726210355;i:4;i:1726210356;i:5;i:1726210357;i:6;i:1726210357;i:7;i:1726210358;}s:12:\"40.77.167.65\";a:1:{i:0;i:1726218298;}s:14:\"120.29.155.174\";a:1:{i:0;i:1726225965;}s:12:\"13.74.98.244\";a:2:{i:70;i:1726228052;i:71;i:1726228055;}s:13:\"40.113.88.139\";a:2:{i:140;i:1726314753;i:141;i:1726314755;}s:12:\"4.233.139.36\";a:1:{i:0;i:1726228682;}s:13:\"152.42.196.89\";a:3:{i:1;i:1726232532;i:2;i:1726232533;i:3;i:1726232536;}s:13:\"52.169.220.93\";a:2:{i:136;i:1726316220;i:137;i:1726316223;}s:13:\"13.79.226.168\";a:2:{i:150;i:1726315879;i:151;i:1726315882;}s:11:\"13.79.91.95\";a:2:{i:144;i:1726316220;i:145;i:1726316223;}s:13:\"20.171.153.97\";a:3:{i:98;i:1726245255;i:99;i:1726245257;i:100;i:1726245259;}s:14:\"52.167.144.218\";a:1:{i:1;i:1726336308;}s:12:\"213.190.7.86\";a:4:{i:0;i:1726289365;i:1;i:1726289365;i:2;i:1726289365;i:3;i:1726289365;}s:14:\"52.167.144.167\";a:1:{i:0;i:1726305669;}s:14:\"52.167.144.184\";a:1:{i:1;i:1726639838;}s:12:\"35.180.31.75\";a:1:{i:7;i:1726313620;}s:13:\"193.118.52.22\";a:1:{i:0;i:1726314168;}s:14:\"46.105.101.113\";a:1:{i:0;i:1726329253;}s:11:\"45.63.2.144\";a:8:{i:0;i:1726333973;i:1;i:1726333973;i:2;i:1726333974;i:3;i:1726333974;i:4;i:1726333974;i:5;i:1726333974;i:6;i:1726333975;i:7;i:1726333975;}s:14:\"193.29.107.153\";a:1:{i:0;i:1726354171;}s:12:\"35.188.71.88\";a:2:{i:0;i:1726374267;i:1;i:1726374269;}s:14:\"17.241.227.191\";a:1:{i:0;i:1726431193;}s:12:\"51.15.184.67\";a:2:{i:15;i:1727444602;i:16;i:1727444606;}s:13:\"17.241.219.84\";a:1:{i:0;i:1726546378;}s:15:\"155.138.242.214\";a:8:{i:0;i:1726577111;i:1;i:1726577112;i:2;i:1726577112;i:3;i:1726577112;i:4;i:1726577113;i:5;i:1726577113;i:6;i:1726577113;i:7;i:1726577114;}s:12:\"40.77.167.26\";a:1:{i:0;i:1726633133;}s:13:\"137.220.51.47\";a:7:{i:1;i:1726658791;i:2;i:1726658792;i:3;i:1726658792;i:4;i:1726658793;i:5;i:1726658794;i:6;i:1726658794;i:7;i:1726658795;}s:13:\"18.205.41.114\";a:2:{i:0;i:1726704059;i:1;i:1726704060;}s:14:\"192.42.116.202\";a:2:{i:1;i:1726705286;i:2;i:1726705290;}s:12:\"109.70.100.6\";a:1:{i:1;i:1726705271;}s:13:\"185.220.101.9\";a:1:{i:1;i:1726705282;}s:14:\"185.220.101.78\";a:2:{i:1;i:1726705301;i:2;i:1726705305;}s:13:\"198.98.51.249\";a:1:{i:1;i:1726705314;}s:13:\"185.220.101.6\";a:2:{i:1;i:1726705322;i:2;i:1726705325;}s:12:\"109.70.100.5\";a:1:{i:1;i:1726705335;}s:13:\"45.141.215.90\";a:1:{i:0;i:1726705339;}s:14:\"192.42.116.196\";a:1:{i:2;i:1726705353;}s:11:\"185.40.4.29\";a:2:{i:1;i:1726705362;i:2;i:1726705366;}s:12:\"89.58.26.216\";a:1:{i:1;i:1726705376;}s:14:\"192.42.116.179\";a:1:{i:1;i:1726705385;}s:15:\"185.220.100.240\";a:1:{i:1;i:1726705395;}s:14:\"192.42.116.217\";a:1:{i:0;i:1726705399;}s:14:\"149.28.102.130\";a:8:{i:0;i:1726741941;i:1;i:1726741942;i:2;i:1726741942;i:3;i:1726741942;i:4;i:1726741943;i:5;i:1726741944;i:6;i:1726741944;i:7;i:1726741945;}s:15:\"165.232.168.233\";a:1:{i:0;i:1726750882;}s:13:\"51.89.228.207\";a:1:{i:0;i:1726775685;}s:13:\"149.56.150.81\";a:3:{i:0;i:1726783506;i:1;i:1726783508;i:2;i:1726783510;}s:14:\"216.238.72.117\";a:1:{i:0;i:1726809765;}s:13:\"179.43.191.19\";a:1:{i:2;i:1727763778;}s:13:\"45.77.197.166\";a:8:{i:0;i:1726850699;i:1;i:1726850699;i:2;i:1726850699;i:3;i:1726850700;i:4;i:1726850700;i:5;i:1726850700;i:6;i:1726850701;i:7;i:1726850701;}s:13:\"95.142.39.247\";a:2:{i:0;i:1726859154;i:1;i:1726859154;}s:14:\"78.153.140.224\";a:1:{i:16;i:1726867218;}s:13:\"20.169.44.236\";a:3:{i:198;i:1728956447;i:199;i:1728956449;i:200;i:1728956451;}s:12:\"207.46.13.64\";a:1:{i:0;i:1726925517;}s:15:\"104.247.184.179\";a:1:{i:0;i:1726931200;}s:13:\"188.40.73.113\";a:1:{i:0;i:1726943552;}s:13:\"5.181.188.151\";a:2:{i:10;i:1730116891;i:11;i:1730116893;}s:14:\"176.109.183.70\";a:1:{i:0;i:1726965494;}s:12:\"157.55.39.11\";a:1:{i:1;i:1729071802;}s:11:\"40.77.167.4\";a:1:{i:0;i:1726992754;}s:11:\"66.249.72.3\";a:1:{i:291;i:1727168742;}s:13:\"139.59.107.40\";a:2:{i:3;i:1727011227;i:4;i:1727011230;}s:12:\"40.77.167.24\";a:1:{i:0;i:1727021752;}s:15:\"144.202.101.205\";a:8:{i:0;i:1727022522;i:1;i:1727022522;i:2;i:1727022523;i:3;i:1727022523;i:4;i:1727022523;i:5;i:1727022523;i:6;i:1727022524;i:7;i:1727022524;}s:12:\"40.77.167.19\";a:1:{i:0;i:1727024197;}s:12:\"109.169.10.8\";a:1:{i:0;i:1727058007;}s:14:\"217.107.34.198\";a:1:{i:0;i:1727066378;}s:14:\"52.167.144.185\";a:1:{i:0;i:1727079107;}s:14:\"64.176.168.165\";a:7:{i:1;i:1727091910;i:2;i:1727091911;i:3;i:1727091911;i:4;i:1727091912;i:5;i:1727091913;i:6;i:1727091913;i:7;i:1727091914;}s:14:\"37.247.112.137\";a:1:{i:0;i:1727144039;}s:13:\"20.171.206.36\";a:2:{i:0;i:1727160755;i:1;i:1727160757;}s:13:\"52.167.144.23\";a:1:{i:1;i:1727653838;}s:14:\"52.167.144.199\";a:1:{i:0;i:1727165832;}s:13:\"160.30.136.16\";a:2:{i:53;i:1727626912;i:54;i:1727626914;}s:12:\"94.156.65.23\";a:3:{i:0;i:1727191800;i:1;i:1727191802;i:2;i:1727191804;}s:12:\"89.41.26.199\";a:1:{i:0;i:1727239684;}s:14:\"52.167.144.208\";a:1:{i:0;i:1727250896;}s:14:\"52.167.144.190\";a:1:{i:1;i:1729997695;}s:14:\"52.167.144.219\";a:1:{i:0;i:1727265075;}s:14:\"216.238.86.148\";a:8:{i:0;i:1727284348;i:1;i:1727284348;i:2;i:1727284348;i:3;i:1727284349;i:4;i:1727284349;i:5;i:1727284349;i:6;i:1727284350;i:7;i:1727284350;}s:13:\"168.61.72.248\";a:2:{i:6;i:1727299952;i:7;i:1727299956;}s:15:\"132.148.167.243\";a:1:{i:1;i:1727310877;}s:14:\"104.28.214.212\";a:1:{i:0;i:1727312249;}s:14:\"185.100.65.235\";a:1:{i:4;i:1727318473;}s:14:\"34.207.150.101\";a:2:{i:0;i:1727318340;i:1;i:1727318340;}s:12:\"40.77.167.70\";a:1:{i:0;i:1727338786;}s:12:\"40.77.167.67\";a:1:{i:0;i:1727359689;}s:13:\"52.167.144.16\";a:1:{i:1;i:1728560731;}s:14:\"165.227.105.37\";a:1:{i:0;i:1727372278;}s:13:\"144.202.59.68\";a:8:{i:0;i:1727458913;i:1;i:1727458913;i:2;i:1727458914;i:3;i:1727458914;i:4;i:1727458914;i:5;i:1727458915;i:6;i:1727458915;i:7;i:1727458916;}s:13:\"17.241.75.130\";a:1:{i:0;i:1727494955;}s:14:\"52.178.142.186\";a:2:{i:96;i:1727521989;i:97;i:1727521993;}s:13:\"107.191.43.18\";a:8:{i:0;i:1727537185;i:1;i:1727537186;i:2;i:1727537187;i:3;i:1727537187;i:4;i:1727537187;i:5;i:1727537188;i:6;i:1727537188;i:7;i:1727537189;}s:13:\"20.169.44.107\";a:2:{i:200;i:1728380814;i:201;i:1728380817;}s:12:\"13.94.100.62\";a:2:{i:28;i:1727584318;i:29;i:1727584320;}s:14:\"69.163.133.224\";a:3:{i:4;i:1727599828;i:5;i:1727599830;i:6;i:1727599832;}s:13:\"69.167.13.105\";a:8:{i:0;i:1727601478;i:1;i:1727601479;i:2;i:1727601479;i:3;i:1727601479;i:4;i:1727601480;i:5;i:1727601480;i:6;i:1727601480;i:7;i:1727601481;}s:14:\"138.128.148.11\";a:1:{i:0;i:1727612273;}s:15:\"206.206.124.104\";a:1:{i:0;i:1727612283;}s:12:\"216.74.80.70\";a:1:{i:0;i:1727612289;}s:13:\"45.43.180.164\";a:1:{i:0;i:1727612298;}s:15:\"142.147.240.254\";a:1:{i:0;i:1727612322;}s:13:\"84.33.236.179\";a:1:{i:0;i:1727612332;}s:15:\"138.128.148.106\";a:1:{i:0;i:1727612340;}s:12:\"136.0.109.85\";a:1:{i:0;i:1727612350;}s:14:\"45.151.161.242\";a:1:{i:0;i:1727612361;}s:15:\"142.147.128.212\";a:1:{i:0;i:1727612368;}s:11:\"45.41.179.8\";a:1:{i:0;i:1727612379;}s:14:\"138.128.148.97\";a:1:{i:0;i:1727612384;}s:15:\"194.116.250.138\";a:1:{i:0;i:1727612396;}s:13:\"155.254.49.92\";a:1:{i:0;i:1727612410;}s:12:\"217.69.127.7\";a:1:{i:0;i:1727612425;}s:14:\"103.37.181.220\";a:1:{i:0;i:1727612436;}s:14:\"92.119.182.157\";a:1:{i:0;i:1727612454;}s:15:\"194.116.250.167\";a:1:{i:0;i:1727612465;}s:14:\"154.30.241.246\";a:1:{i:0;i:1727612474;}s:14:\"45.151.161.203\";a:1:{i:0;i:1727612487;}s:15:\"109.196.161.225\";a:1:{i:0;i:1727612499;}s:14:\"23.236.247.103\";a:1:{i:0;i:1727612507;}s:13:\"45.138.117.77\";a:1:{i:0;i:1727612517;}s:15:\"206.206.124.145\";a:1:{i:0;i:1727612524;}s:14:\"92.119.182.170\";a:1:{i:0;i:1727612532;}s:12:\"45.32.135.95\";a:8:{i:0;i:1727617909;i:1;i:1727617909;i:2;i:1727617910;i:3;i:1727617910;i:4;i:1727617910;i:5;i:1727617910;i:6;i:1727617911;i:7;i:1727617911;}s:13:\"194.87.31.144\";a:1:{i:6;i:1727654398;}s:13:\"52.169.18.233\";a:2:{i:126;i:1729012440;i:127;i:1729012443;}s:14:\"94.232.247.193\";a:1:{i:0;i:1727699289;}s:14:\"52.167.144.234\";a:1:{i:0;i:1727704465;}s:13:\"178.20.102.48\";a:1:{i:0;i:1727722493;}s:11:\"191.96.5.10\";a:2:{i:22;i:1727723134;i:23;i:1727723137;}s:14:\"172.81.132.118\";a:1:{i:0;i:1727725606;}s:14:\"220.202.112.62\";a:1:{i:0;i:1727726138;}s:14:\"104.131.34.105\";a:2:{i:5;i:1727746577;i:6;i:1727746580;}s:10:\"5.9.80.116\";a:2:{i:2;i:1727746578;i:3;i:1727746581;}s:13:\"40.77.167.230\";a:1:{i:0;i:1727750825;}s:14:\"52.167.144.210\";a:1:{i:0;i:1727789300;}s:14:\"35.160.129.165\";a:1:{i:1;i:1727820018;}s:14:\"20.171.206.106\";a:1:{i:0;i:1727837873;}s:12:\"20.171.206.0\";a:1:{i:4;i:1727837963;}s:14:\"20.171.206.206\";a:1:{i:0;i:1727838017;}s:14:\"20.171.206.197\";a:2:{i:0;i:1727838091;i:1;i:1727838093;}s:13:\"20.171.206.70\";a:3:{i:2;i:1727838143;i:3;i:1727838145;i:4;i:1727838147;}s:14:\"20.171.206.255\";a:2:{i:1;i:1727838190;i:2;i:1727838192;}s:14:\"20.171.206.133\";a:2:{i:6;i:1727838273;i:7;i:1727838276;}s:14:\"20.171.206.126\";a:2:{i:3;i:1727838301;i:4;i:1727838304;}s:13:\"20.171.206.77\";a:1:{i:3;i:1727838388;}s:14:\"20.171.206.168\";a:2:{i:3;i:1727838452;i:4;i:1727838454;}s:14:\"20.171.206.154\";a:1:{i:3;i:1727838511;}s:14:\"20.171.206.122\";a:2:{i:4;i:1727838569;i:5;i:1727838572;}s:14:\"20.171.206.148\";a:1:{i:6;i:1727838623;}s:12:\"20.171.206.2\";a:2:{i:0;i:1727838641;i:1;i:1727838643;}s:15:\"207.244.255.186\";a:3:{i:1;i:1728881515;i:2;i:1728881517;i:3;i:1728881519;}s:13:\"95.154.200.42\";a:1:{i:0;i:1727931174;}s:11:\"40.77.167.8\";a:1:{i:0;i:1727931428;}s:15:\"103.153.182.104\";a:1:{i:0;i:1727934271;}s:14:\"216.244.66.237\";a:1:{i:0;i:1727962555;}s:15:\"208.122.217.164\";a:1:{i:0;i:1727983041;}s:13:\"45.151.99.142\";a:1:{i:0;i:1727989616;}s:12:\"62.72.42.177\";a:1:{i:0;i:1727994112;}s:13:\"89.248.172.92\";a:1:{i:6;i:1728967694;}s:14:\"94.156.167.147\";a:1:{i:23;i:1731649736;}s:14:\"194.233.83.169\";a:2:{i:15;i:1728401093;i:16;i:1728401097;}s:11:\"85.31.47.20\";a:1:{i:3;i:1728942010;}s:14:\"181.214.173.92\";a:1:{i:0;i:1728089211;}s:14:\"20.171.206.227\";a:2:{i:0;i:1728093488;i:1;i:1728093490;}s:12:\"34.79.80.196\";a:3:{i:0;i:1728121285;i:1;i:1728121286;i:2;i:1728121286;}s:14:\"178.215.224.87\";a:1:{i:0;i:1728139593;}s:13:\"87.120.114.20\";a:1:{i:3;i:1728247624;}s:12:\"13.37.239.64\";a:1:{i:7;i:1728170398;}s:13:\"82.220.38.196\";a:1:{i:0;i:1728172411;}s:13:\"78.46.232.122\";a:1:{i:0;i:1728184305;}s:14:\"185.243.11.107\";a:1:{i:0;i:1728185859;}s:13:\"85.208.96.200\";a:1:{i:0;i:1728209071;}s:13:\"92.205.20.196\";a:1:{i:0;i:1728234435;}s:13:\"34.136.57.195\";a:8:{i:0;i:1728251089;i:1;i:1728251089;i:2;i:1728251089;i:3;i:1728251090;i:4;i:1728251090;i:5;i:1728251090;i:6;i:1728251091;i:7;i:1728251091;}s:13:\"156.67.104.25\";a:2:{i:6;i:1728698577;i:7;i:1728698578;}s:14:\"15.237.215.117\";a:1:{i:0;i:1728372962;}s:15:\"143.198.205.230\";a:1:{i:11;i:1728409528;}s:13:\"34.163.114.36\";a:8:{i:0;i:1728422732;i:1;i:1728422733;i:2;i:1728422733;i:3;i:1728422734;i:4;i:1728422734;i:5;i:1728422735;i:6;i:1728422735;i:7;i:1728422736;}s:14:\"52.178.182.177\";a:2:{i:98;i:1728434290;i:99;i:1728434293;}s:14:\"165.154.252.26\";a:1:{i:2;i:1728438359;}s:15:\"165.154.254.189\";a:1:{i:5;i:1728445667;}s:15:\"176.118.242.127\";a:1:{i:0;i:1728452480;}s:13:\"209.145.50.38\";a:1:{i:0;i:1728461883;}s:11:\"54.71.28.15\";a:1:{i:0;i:1728466182;}s:12:\"52.41.221.91\";a:1:{i:0;i:1728546085;}s:13:\"13.79.231.196\";a:2:{i:59;i:1728563025;i:60;i:1728563029;}s:14:\"193.34.213.181\";a:1:{i:7;i:1729020659;}s:14:\"212.154.200.86\";a:1:{i:0;i:1728583510;}s:14:\"20.188.228.141\";a:7:{i:1;i:1728589460;i:2;i:1728589460;i:3;i:1728589461;i:4;i:1728589461;i:5;i:1728589462;i:6;i:1728589463;i:7;i:1728589463;}s:15:\"178.128.203.226\";a:1:{i:2;i:1728609646;}s:15:\"144.126.215.254\";a:1:{i:2;i:1728609772;}s:12:\"20.42.202.36\";a:8:{i:0;i:1728663765;i:1;i:1728663766;i:2;i:1728663766;i:3;i:1728663767;i:4;i:1728663768;i:5;i:1728663768;i:6;i:1728663769;i:7;i:1728663769;}s:13:\"17.241.227.16\";a:1:{i:0;i:1728685488;}s:12:\"185.253.7.99\";a:1:{i:0;i:1728690617;}s:12:\"45.77.103.32\";a:2:{i:0;i:1728705232;i:1;i:1728705234;}s:14:\"52.178.192.141\";a:2:{i:107;i:1728733930;i:108;i:1728733933;}s:14:\"185.196.220.26\";a:1:{i:1;i:1730800869;}s:14:\"154.26.138.213\";a:1:{i:144;i:1729878992;}s:12:\"13.38.54.104\";a:1:{i:7;i:1728808761;}s:14:\"35.226.224.195\";a:3:{i:0;i:1728831174;i:1;i:1728831174;i:2;i:1728831175;}s:12:\"13.74.53.200\";a:2:{i:121;i:1728902284;i:122;i:1728902287;}s:14:\"52.178.137.117\";a:2:{i:99;i:1728901110;i:100;i:1728901114;}s:13:\"95.109.231.18\";a:1:{i:1;i:1731491102;}s:12:\"40.77.167.77\";a:1:{i:0;i:1728842489;}s:13:\"167.71.207.66\";a:2:{i:2;i:1728849140;i:3;i:1728849143;}s:12:\"18.228.31.52\";a:1:{i:0;i:1728850810;}s:13:\"52.178.179.60\";a:2:{i:97;i:1728860811;i:98;i:1728860813;}s:13:\"52.169.31.135\";a:2:{i:96;i:1728871474;i:97;i:1728871477;}s:14:\"52.178.196.224\";a:2:{i:12;i:1728872047;i:13;i:1728872050;}s:14:\"212.132.125.70\";a:1:{i:0;i:1728881516;}s:13:\"52.169.158.10\";a:2:{i:97;i:1728890113;i:98;i:1728890115;}s:11:\"52.47.200.0\";a:1:{i:0;i:1728891225;}s:14:\"82.180.145.186\";a:2:{i:7;i:1728999183;i:8;i:1728999187;}s:13:\"141.94.73.230\";a:1:{i:0;i:1728912604;}s:14:\"178.128.162.41\";a:1:{i:1;i:1728918674;}s:15:\"172.104.167.197\";a:1:{i:3;i:1730791731;}s:12:\"40.77.167.25\";a:1:{i:0;i:1728951844;}s:12:\"13.72.246.27\";a:8:{i:0;i:1728952019;i:1;i:1728952020;i:2;i:1728952020;i:3;i:1728952021;i:4;i:1728952021;i:5;i:1728952022;i:6;i:1728952022;i:7;i:1728952023;}s:13:\"52.24.129.144\";a:1:{i:1;i:1728953693;}s:13:\"52.178.213.73\";a:2:{i:97;i:1728980284;i:98;i:1728980286;}s:14:\"52.178.143.183\";a:2:{i:96;i:1728991258;i:97;i:1728991262;}s:12:\"40.69.63.221\";a:2:{i:107;i:1728998221;i:108;i:1728998224;}s:14:\"52.178.193.251\";a:2:{i:97;i:1729002718;i:98;i:1729002721;}s:12:\"13.74.53.223\";a:2:{i:12;i:1729013494;i:13;i:1729013496;}s:12:\"52.89.172.61\";a:1:{i:1;i:1729013769;}s:13:\"52.156.171.62\";a:8:{i:0;i:1729030759;i:1;i:1729030760;i:2;i:1729030760;i:3;i:1729030761;i:4;i:1729030762;i:5;i:1729030762;i:6;i:1729030763;i:7;i:1729030763;}s:12:\"35.180.24.59\";a:1:{i:7;i:1729053859;}s:13:\"4.242.129.232\";a:1:{i:1;i:1729298269;}s:11:\"5.188.62.21\";a:1:{i:1;i:1729070937;}s:12:\"157.55.39.51\";a:1:{i:0;i:1729089855;}s:12:\"13.75.150.98\";a:8:{i:0;i:1729106956;i:1;i:1729106957;i:2;i:1729106957;i:3;i:1729106958;i:4;i:1729106959;i:5;i:1729106959;i:6;i:1729106960;i:7;i:1729106960;}s:11:\"34.82.3.213\";a:1:{i:0;i:1729121404;}s:13:\"34.145.60.115\";a:1:{i:0;i:1729122360;}s:12:\"40.77.167.73\";a:1:{i:0;i:1729131505;}s:13:\"217.15.165.84\";a:1:{i:17;i:1729136321;}s:15:\"136.243.211.251\";a:1:{i:0;i:1729145965;}s:13:\"217.25.40.254\";a:1:{i:2;i:1729154424;}s:11:\"157.55.39.7\";a:1:{i:0;i:1729156552;}s:14:\"20.191.247.157\";a:8:{i:0;i:1729203738;i:1;i:1729203739;i:2;i:1729203739;i:3;i:1729203740;i:4;i:1729203741;i:5;i:1729203741;i:6;i:1729203742;i:7;i:1729203742;}s:13:\"13.39.110.213\";a:1:{i:0;i:1729207076;}s:13:\"34.82.116.179\";a:1:{i:0;i:1729213955;}s:14:\"104.196.194.61\";a:1:{i:0;i:1729227674;}s:13:\"143.198.87.20\";a:1:{i:0;i:1729230448;}s:14:\"18.118.195.166\";a:1:{i:0;i:1729234861;}s:12:\"3.22.216.188\";a:1:{i:0;i:1729234967;}s:12:\"52.169.88.68\";a:2:{i:107;i:1729255762;i:108;i:1729255766;}s:15:\"144.217.135.193\";a:3:{i:0;i:1729289210;i:1;i:1729289212;i:2;i:1729289214;}s:13:\"20.188.243.97\";a:7:{i:1;i:1729290162;i:2;i:1729290162;i:3;i:1729290163;i:4;i:1729290164;i:5;i:1729290164;i:6;i:1729290165;i:7;i:1729290166;}s:14:\"17.241.227.153\";a:1:{i:0;i:1729295224;}s:14:\"174.138.20.249\";a:1:{i:0;i:1729315299;}s:12:\"18.246.40.49\";a:1:{i:1;i:1729319990;}s:14:\"84.247.179.135\";a:2:{i:0;i:1729325469;i:1;i:1729325472;}s:12:\"89.36.78.114\";a:1:{i:0;i:1729359929;}s:12:\"51.195.88.32\";a:1:{i:1;i:1729368350;}s:12:\"62.76.230.36\";a:1:{i:0;i:1729376074;}s:13:\"157.55.39.202\";a:1:{i:0;i:1729376860;}s:13:\"159.138.98.10\";a:1:{i:0;i:1729388574;}s:13:\"89.248.169.52\";a:1:{i:0;i:1729396041;}s:13:\"138.68.29.215\";a:1:{i:0;i:1729408637;}s:14:\"104.28.196.198\";a:1:{i:0;i:1729418242;}s:12:\"51.159.30.40\";a:1:{i:1;i:1729457332;}s:14:\"185.241.208.89\";a:2:{i:22;i:1731339924;i:23;i:1731339928;}s:13:\"48.218.180.39\";a:8:{i:0;i:1729465326;i:1;i:1729465326;i:2;i:1729465327;i:3;i:1729465327;i:4;i:1729465328;i:5;i:1729465328;i:6;i:1729465328;i:7;i:1729465329;}s:13:\"34.47.138.176\";a:1:{i:0;i:1729481033;}s:13:\"34.79.110.157\";a:1:{i:0;i:1729501098;}s:13:\"38.242.206.95\";a:1:{i:7;i:1729501884;}s:13:\"13.38.217.113\";a:1:{i:0;i:1729523515;}s:14:\"34.147.103.188\";a:1:{i:3;i:1729532377;}s:11:\"40.69.34.25\";a:2:{i:105;i:1729543069;i:106;i:1729543073;}s:14:\"45.156.129.113\";a:1:{i:0;i:1729545096;}s:13:\"52.156.175.98\";a:7:{i:1;i:1729549710;i:2;i:1729549710;i:3;i:1729549711;i:4;i:1729549712;i:5;i:1729549712;i:6;i:1729549713;i:7;i:1729549713;}s:14:\"52.167.144.150\";a:1:{i:0;i:1729577700;}s:12:\"40.69.35.143\";a:2:{i:105;i:1729588639;i:106;i:1729588642;}s:11:\"35.90.180.7\";a:1:{i:1;i:1729603115;}s:13:\"13.75.255.102\";a:7:{i:1;i:1729627610;i:2;i:1729627611;i:3;i:1729627611;i:4;i:1729627612;i:5;i:1729627613;i:6;i:1729627613;i:7;i:1729627614;}s:13:\"52.169.188.23\";a:2:{i:212;i:1729691877;i:213;i:1729691880;}s:12:\"172.104.89.9\";a:1:{i:0;i:1729685200;}s:14:\"52.156.165.184\";a:7:{i:1;i:1729722650;i:2;i:1729722651;i:3;i:1729722651;i:4;i:1729722652;i:5;i:1729722652;i:6;i:1729722653;i:7;i:1729722654;}s:12:\"52.169.25.52\";a:2:{i:105;i:1729748349;i:106;i:1729748352;}s:14:\"35.181.155.171\";a:1:{i:0;i:1729757163;}s:11:\"40.69.33.98\";a:2:{i:105;i:1729785496;i:106;i:1729785499;}s:14:\"87.120.113.172\";a:1:{i:2;i:1731473166;}s:13:\"146.70.224.34\";a:1:{i:1;i:1729803122;}s:13:\"162.243.62.14\";a:1:{i:3;i:1729817038;}s:14:\"34.123.250.194\";a:1:{i:0;i:1729820523;}s:14:\"87.120.127.163\";a:1:{i:27;i:1729825728;}s:12:\"13.75.175.17\";a:7:{i:1;i:1729825544;i:2;i:1729825545;i:3;i:1729825545;i:4;i:1729825546;i:5;i:1729825547;i:6;i:1729825547;i:7;i:1729825548;}s:11:\"40.69.37.74\";a:2:{i:105;i:1729843851;i:106;i:1729843854;}s:14:\"199.101.196.73\";a:1:{i:218;i:1729868382;}s:13:\"51.254.11.170\";a:1:{i:0;i:1729878755;}s:12:\"5.182.207.21\";a:2:{i:1;i:1729883023;i:2;i:1729883026;}s:13:\"147.78.47.230\";a:2:{i:5;i:1729889239;i:6;i:1729889242;}s:12:\"13.75.169.16\";a:7:{i:1;i:1729891512;i:2;i:1729891513;i:3;i:1729891513;i:4;i:1729891514;i:5;i:1729891514;i:6;i:1729891515;i:7;i:1729891516;}s:14:\"119.13.104.117\";a:1:{i:0;i:1729892235;}s:12:\"13.74.147.38\";a:2:{i:105;i:1729903342;i:106;i:1729903345;}s:13:\"31.220.102.15\";a:2:{i:59;i:1729945463;i:60;i:1729945466;}s:12:\"207.46.13.36\";a:1:{i:0;i:1729918772;}s:12:\"5.254.31.227\";a:1:{i:0;i:1729954445;}s:13:\"87.120.127.64\";a:1:{i:11;i:1729973860;}s:13:\"146.70.184.34\";a:1:{i:0;i:1729975477;}s:12:\"40.69.34.125\";a:2:{i:216;i:1730028162;i:217;i:1730028166;}s:12:\"13.74.176.27\";a:2:{i:107;i:1730059159;i:108;i:1730059162;}s:13:\"52.237.248.99\";a:7:{i:1;i:1730062817;i:2;i:1730062818;i:3;i:1730062819;i:4;i:1730062819;i:5;i:1730062820;i:6;i:1730062820;i:7;i:1730062821;}s:13:\"35.222.48.186\";a:1:{i:0;i:1730102721;}s:14:\"141.94.107.204\";a:2:{i:7;i:1730110108;i:8;i:1730110111;}s:14:\"94.158.246.181\";a:2:{i:5;i:1730110110;i:6;i:1730110112;}s:12:\"51.195.88.35\";a:1:{i:4;i:1730331406;}s:12:\"40.77.167.64\";a:1:{i:0;i:1730139966;}s:13:\"20.188.243.19\";a:7:{i:1;i:1730148845;i:2;i:1730148845;i:3;i:1730148846;i:4;i:1730148846;i:5;i:1730148847;i:6;i:1730148847;i:7;i:1730148848;}s:12:\"40.77.167.42\";a:1:{i:0;i:1730171034;}s:13:\"209.97.128.70\";a:1:{i:0;i:1730187040;}s:14:\"149.248.50.163\";a:2:{i:0;i:1730197139;i:1;i:1730197140;}s:14:\"87.120.113.120\";a:1:{i:0;i:1730197804;}s:13:\"178.238.230.4\";a:1:{i:2;i:1730211094;}s:13:\"20.37.219.164\";a:7:{i:1;i:1730224406;i:2;i:1730224407;i:3;i:1730224407;i:4;i:1730224408;i:5;i:1730224408;i:6;i:1730224409;i:7;i:1730224410;}s:13:\"34.147.44.109\";a:1:{i:0;i:1730241560;}s:12:\"89.117.77.43\";a:3:{i:127;i:1730343695;i:128;i:1730343697;i:129;i:1730343699;}s:13:\"192.95.30.227\";a:2:{i:18;i:1731127199;i:19;i:1731127202;}s:12:\"34.82.203.51\";a:1:{i:0;i:1730316567;}s:13:\"47.236.177.76\";a:2:{i:0;i:1730317836;i:1;i:1730317837;}s:14:\"52.187.206.205\";a:7:{i:1;i:1730321827;i:2;i:1730321827;i:3;i:1730321828;i:4;i:1730321829;i:5;i:1730321829;i:6;i:1730321830;i:7;i:1730321831;}s:13:\"34.136.210.77\";a:1:{i:0;i:1730371609;}s:14:\"20.188.228.201\";a:8:{i:0;i:1730401835;i:1;i:1730401836;i:2;i:1730401836;i:3;i:1730401837;i:4;i:1730401838;i:5;i:1730401838;i:6;i:1730401839;i:7;i:1730401839;}s:13:\"5.181.188.149\";a:1:{i:17;i:1731433980;}s:14:\"130.255.160.60\";a:1:{i:0;i:1730415794;}s:12:\"34.127.34.58\";a:1:{i:0;i:1730440868;}s:12:\"40.77.167.68\";a:1:{i:0;i:1730448649;}s:14:\"34.171.241.208\";a:1:{i:0;i:1730488827;}s:13:\"46.250.229.88\";a:2:{i:64;i:1730493008;i:65;i:1730493011;}s:13:\"129.213.94.27\";a:2:{i:108;i:1730497875;i:109;i:1730497878;}s:14:\"52.187.192.183\";a:7:{i:1;i:1730501020;i:2;i:1730501021;i:3;i:1730501021;i:4;i:1730501022;i:5;i:1730501023;i:6;i:1730501023;i:7;i:1730501024;}s:15:\"185.111.159.135\";a:2:{i:65;i:1730728891;i:66;i:1730728894;}s:13:\"17.241.227.38\";a:1:{i:0;i:1730512882;}s:14:\"104.197.10.205\";a:1:{i:0;i:1730519941;}s:13:\"66.249.70.110\";a:1:{i:1;i:1731329507;}s:11:\"40.77.17.79\";a:3:{i:47;i:1730543385;i:48;i:1730543387;i:49;i:1730543389;}s:14:\"152.32.236.116\";a:1:{i:4;i:1730561912;}s:12:\"138.199.48.4\";a:1:{i:0;i:1730582841;}s:12:\"34.57.239.72\";a:1:{i:0;i:1730611708;}s:14:\"35.240.150.102\";a:1:{i:0;i:1730624348;}s:14:\"34.143.201.133\";a:1:{i:0;i:1730639515;}s:14:\"20.191.210.109\";a:7:{i:1;i:1730667052;i:2;i:1730667053;i:3;i:1730667053;i:4;i:1730667054;i:5;i:1730667054;i:6;i:1730667055;i:7;i:1730667056;}s:12:\"157.55.39.49\";a:1:{i:0;i:1730681643;}s:12:\"66.249.70.96\";a:1:{i:0;i:1730698319;}s:11:\"51.91.9.168\";a:1:{i:0;i:1730711924;}s:13:\"128.140.66.26\";a:2:{i:12;i:1730717770;i:13;i:1730717773;}s:13:\"167.71.237.53\";a:2:{i:11;i:1730717771;i:12;i:1730717774;}s:12:\"20.37.97.122\";a:8:{i:0;i:1730764851;i:1;i:1730764852;i:2;i:1730764853;i:3;i:1730764853;i:4;i:1730764853;i:5;i:1730764854;i:6;i:1730764854;i:7;i:1730764855;}s:14:\"104.28.234.178\";a:1:{i:0;i:1730772916;}s:13:\"154.26.138.72\";a:1:{i:75;i:1730870157;}s:14:\"52.187.197.238\";a:2:{i:1;i:1730836654;i:2;i:1730836657;}s:13:\"48.218.201.78\";a:1:{i:25;i:1731674606;}s:13:\"13.75.250.159\";a:8:{i:0;i:1730845066;i:1;i:1730845067;i:2;i:1730845067;i:3;i:1730845068;i:4;i:1730845069;i:5;i:1730845069;i:6;i:1730845070;i:7;i:1730845070;}s:13:\"87.120.116.15\";a:1:{i:0;i:1730853291;}s:14:\"165.22.220.140\";a:1:{i:0;i:1730860898;}s:12:\"5.252.54.168\";a:1:{i:0;i:1730861700;}s:13:\"35.231.230.29\";a:1:{i:0;i:1730878542;}s:12:\"92.222.70.66\";a:1:{i:1;i:1731640392;}s:13:\"52.237.194.57\";a:7:{i:1;i:1730918354;i:2;i:1730918355;i:3;i:1730918355;i:4;i:1730918356;i:5;i:1730918356;i:6;i:1730918357;i:7;i:1730918358;}s:14:\"35.240.249.188\";a:1:{i:0;i:1730970703;}s:14:\"129.213.150.89\";a:3:{i:291;i:1731720590;i:292;i:1731720592;i:293;i:1731720594;}s:13:\"52.237.249.14\";a:7:{i:1;i:1731016129;i:2;i:1731016130;i:3;i:1731016130;i:4;i:1731016131;i:5;i:1731016131;i:6;i:1731016132;i:7;i:1731016133;}s:14:\"48.218.201.167\";a:1:{i:69;i:1731666570;}s:14:\"172.86.116.245\";a:1:{i:2;i:1731037147;}s:14:\"41.216.188.168\";a:1:{i:2;i:1731093380;}s:14:\"52.156.190.204\";a:7:{i:89;i:1731315888;i:90;i:1731315888;i:91;i:1731315889;i:92;i:1731315889;i:93;i:1731315890;i:94;i:1731315891;i:95;i:1731315891;}s:13:\"104.196.56.70\";a:1:{i:0;i:1731117056;}s:13:\"188.68.47.138\";a:2:{i:9;i:1731127207;i:10;i:1731127210;}s:14:\"17.241.227.229\";a:1:{i:0;i:1731131307;}s:12:\"34.85.135.36\";a:1:{i:0;i:1731161251;}s:12:\"89.36.76.126\";a:1:{i:0;i:1731246469;}s:14:\"139.59.233.183\";a:1:{i:10;i:1731260831;}s:14:\"52.187.192.213\";a:1:{i:10;i:1731280273;}s:13:\"13.74.147.220\";a:1:{i:0;i:1731298661;}s:14:\"52.167.144.160\";a:1:{i:0;i:1731330144;}s:13:\"31.216.136.18\";a:1:{i:0;i:1731341028;}s:13:\"46.101.77.138\";a:1:{i:0;i:1731342647;}s:13:\"20.222.232.46\";a:8:{i:32;i:1731423891;i:33;i:1731423892;i:34;i:1731423893;i:35;i:1731423893;i:36;i:1731423893;i:37;i:1731423894;i:38;i:1731423894;i:39;i:1731423895;}s:10:\"34.45.5.85\";a:1:{i:0;i:1731422108;}s:14:\"192.42.116.208\";a:1:{i:0;i:1731460234;}s:12:\"52.169.67.40\";a:2:{i:137;i:1731545334;i:138;i:1731545337;}s:14:\"172.86.115.240\";a:1:{i:2;i:1731591936;}s:14:\"196.70.174.148\";a:2:{i:2;i:1731626674;i:3;i:1731626676;}s:13:\"52.138.237.95\";a:2:{i:130;i:1731655395;i:131;i:1731655398;}s:12:\"204.48.17.36\";a:1:{i:0;i:1731683165;}s:13:\"52.237.195.28\";a:8:{i:8;i:1731723784;i:9;i:1731723785;i:10;i:1731723785;i:11;i:1731723786;i:12;i:1731723786;i:13;i:1731723787;i:14;i:1731723787;i:15;i:1731723788;}s:12:\"17.241.75.69\";a:1:{i:0;i:1731713561;}s:13:\"17.241.227.78\";a:1:{i:0;i:1731721062;}s:13:\"17.241.227.86\";a:1:{i:0;i:1731728395;}s:14:\"185.196.10.143\";a:1:{i:0;i:1731733459;}s:13:\"93.174.93.126\";a:1:{i:0;i:1731751084;}s:13:\"40.113.85.222\";a:1:{i:12;i:1731752461;}s:12:\"5.175.237.12\";a:1:{i:1;i:1735042704;}s:11:\"36.32.3.219\";a:1:{i:0;i:1735047724;}s:11:\"20.184.0.91\";a:2:{i:23;i:1735062878;i:24;i:1735062881;}s:14:\"18.221.254.163\";a:8:{i:0;i:1735064326;i:1;i:1735064327;i:2;i:1735064327;i:3;i:1735064327;i:4;i:1735064328;i:5;i:1735064328;i:6;i:1735064328;i:7;i:1735064329;}s:12:\"66.249.68.33\";a:1:{i:0;i:1735066954;}s:14:\"185.49.126.237\";a:5:{i:38;i:1735074992;i:39;i:1735074993;i:40;i:1735074994;i:41;i:1735074995;i:42;i:1735074995;}s:13:\"3.135.238.228\";a:8:{i:0;i:1735078800;i:1;i:1735078800;i:2;i:1735078801;i:3;i:1735078801;i:4;i:1735078801;i:5;i:1735078802;i:6;i:1735078802;i:7;i:1735078802;}s:13:\"204.10.194.57\";a:1:{i:1;i:1735080868;}s:14:\"140.245.45.186\";a:2:{i:8;i:1735081207;i:9;i:1735081211;}s:13:\"87.120.115.34\";a:1:{i:0;i:1735091926;}s:12:\"142.93.8.206\";a:1:{i:0;i:1735092217;}}', 'off'),
(244055, 'elementor_connect_site_key', '7440b89c9ed230c9367de99c340be34c', 'auto'),
(244144, '_transient_TD_THEME_VERSION', '12.6.8', 'on'),
(325956, 'wp_0ab19e7a932d62f70db4c245216f4bf2', '1756209251', 'off'),
(247250, 'loginizer_softwp_upgrade', '-1743638938', 'off'),
(348043, 'litespeed.admin_display.thirdparty_litespeed_check', '1', 'auto'),
(347623, 'wp_a5d662326309580e9fb1145045431a6d', '1764581148', 'off'),
(244160, '_site_transient_ai1wm_last_check_for_updates', '1757480746', 'off'),
(244166, '_transient_wp_styles_for_blocks', 'a:2:{s:4:\"hash\";s:32:\"9dcf3dbca73d524659603d120d7397f8\";s:6:\"blocks\";a:6:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:18:\"core/term-template\";s:120:\":where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}', 'on');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(348342, '_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:57:\"https://downloads.wordpress.org/release/wordpress-6.9.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.9.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.9-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.9-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.9\";s:7:\"version\";s:3:\"6.9\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1765248288;s:15:\"version_checked\";s:3:\"6.9\";s:12:\"translations\";a:0:{}}', 'off'),
(335782, 'wp_ecb2a5caed14efa62bb3f5d9af8bbf86', '1761172781', 'off'),
(335697, 'wp_05a128a501164b05478ad2562685e4fb', '1761150786', 'off'),
(345295, 'wp_0d1544fc5ef64206d8706e70ac6e15c1', '1764050248', 'off'),
(343167, 'wp_91d0fe9f6a3832ab321082672872a5ca', '1763427491', 'off'),
(343540, 'wp_b28da46588996ddfef344345ebe583e0', '1763578331', 'off'),
(347194, 'wp_46e8f3c353554902f51bcf470d3bcba4', '1764499671', 'off'),
(347826, 'litespeed.conf._version', '7.6.2', 'auto'),
(347827, 'litespeed.conf.hash', 'MeZyZEtulBkmbeiBuaxHhcpEAp58hvIJ', 'auto'),
(347828, 'litespeed.conf.api_key', '', 'auto'),
(347829, 'litespeed.conf.auto_upgrade', '', 'auto'),
(347830, 'litespeed.conf.server_ip', '', 'auto'),
(347831, 'litespeed.conf.guest', '', 'auto'),
(347832, 'litespeed.conf.guest_optm', '', 'auto'),
(347833, 'litespeed.conf.news', '1', 'auto'),
(347834, 'litespeed.conf.guest_uas', '[\"Lighthouse\",\"GTmetrix\",\"Google\",\"Pingdom\",\"bot\",\"spider\",\"PTST\",\"HeadlessChrome\"]', 'auto'),
(347835, '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\"]', 'auto'),
(347836, 'litespeed.conf.cache', '1', 'auto'),
(347837, 'litespeed.conf.cache-priv', '1', 'auto'),
(347838, 'litespeed.conf.cache-commenter', '1', 'auto'),
(347839, 'litespeed.conf.cache-rest', '1', 'auto'),
(347840, 'litespeed.conf.cache-page_login', '1', 'auto'),
(347841, 'litespeed.conf.cache-mobile', '', 'auto'),
(347842, 'litespeed.conf.cache-mobile_rules', '[\"Mobile\",\"Android\",\"Silk\\/\",\"Kindle\",\"BlackBerry\",\"Opera Mini\",\"Opera Mobi\"]', 'auto'),
(347843, 'litespeed.conf.cache-browser', '', 'auto'),
(347844, 'litespeed.conf.cache-exc_useragents', '[]', 'auto'),
(347845, 'litespeed.conf.cache-exc_cookies', '[]', 'auto'),
(347846, 'litespeed.conf.cache-exc_qs', '[]', 'auto'),
(347847, 'litespeed.conf.cache-exc_cat', '[]', 'auto'),
(347848, 'litespeed.conf.cache-exc_tag', '[]', 'auto'),
(347849, 'litespeed.conf.cache-force_uri', '[]', 'auto'),
(347850, 'litespeed.conf.cache-force_pub_uri', '[]', 'auto'),
(347851, 'litespeed.conf.cache-priv_uri', '[]', 'auto'),
(347852, 'litespeed.conf.cache-exc', '[]', 'auto'),
(347853, 'litespeed.conf.cache-exc_roles', '[]', 'auto'),
(347854, 'litespeed.conf.cache-drop_qs', '[\"fbclid\",\"gclid\",\"utm*\",\"_ga\"]', 'auto'),
(347855, 'litespeed.conf.cache-ttl_pub', '604800', 'auto'),
(347856, 'litespeed.conf.cache-ttl_priv', '1800', 'auto'),
(347857, 'litespeed.conf.cache-ttl_frontpage', '604800', 'auto'),
(347858, 'litespeed.conf.cache-ttl_feed', '604800', 'auto'),
(347859, 'litespeed.conf.cache-ttl_rest', '604800', 'auto'),
(347860, 'litespeed.conf.cache-ttl_browser', '31557600', 'auto'),
(347861, 'litespeed.conf.cache-ttl_status', '[\"404 3600\",\"500 600\"]', 'auto'),
(347862, 'litespeed.conf.cache-login_cookie', '', 'auto'),
(347863, 'litespeed.conf.cache-ajax_ttl', '[]', 'auto'),
(347864, 'litespeed.conf.cache-vary_cookies', '[]', 'auto'),
(347865, 'litespeed.conf.cache-vary_group', '[]', 'auto'),
(347866, 'litespeed.conf.purge-upgrade', '', 'auto'),
(347867, 'litespeed.conf.purge-stale', '', 'auto'),
(347868, 'litespeed.conf.purge-post_all', '', 'auto'),
(347869, 'litespeed.conf.purge-post_f', '1', 'auto'),
(347870, 'litespeed.conf.purge-post_h', '1', 'auto'),
(347871, 'litespeed.conf.purge-post_p', '1', 'auto'),
(347872, 'litespeed.conf.purge-post_pwrp', '1', 'auto'),
(347873, 'litespeed.conf.purge-post_a', '1', 'auto'),
(347874, 'litespeed.conf.purge-post_y', '', 'auto'),
(347875, 'litespeed.conf.purge-post_m', '1', 'auto'),
(347876, 'litespeed.conf.purge-post_d', '', 'auto'),
(347877, 'litespeed.conf.purge-post_t', '1', 'auto'),
(347878, 'litespeed.conf.purge-post_pt', '1', 'auto'),
(347879, 'litespeed.conf.purge-timed_urls', '[]', 'auto'),
(347880, 'litespeed.conf.purge-timed_urls_time', '', 'auto'),
(347881, '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\"]', 'auto'),
(347882, 'litespeed.conf.esi', '', 'auto'),
(347883, 'litespeed.conf.esi-cache_admbar', '1', 'auto'),
(347884, 'litespeed.conf.esi-cache_commform', '1', 'auto'),
(347885, 'litespeed.conf.esi-nonce', '[\"stats_nonce\",\"subscribe_nonce\"]', 'auto'),
(347886, 'litespeed.conf.util-instant_click', '', 'auto'),
(347887, 'litespeed.conf.util-no_https_vary', '', 'auto'),
(347888, 'litespeed.conf.debug-disable_all', '', 'auto'),
(347889, 'litespeed.conf.debug', '0', 'auto'),
(347890, 'litespeed.conf.debug-ips', '[\"127.0.0.1\"]', 'auto'),
(347891, 'litespeed.conf.debug-level', '', 'auto'),
(347892, 'litespeed.conf.debug-filesize', '3', 'auto'),
(347893, 'litespeed.conf.debug-collapse_qs', '', 'auto'),
(347894, 'litespeed.conf.debug-inc', '[]', 'auto'),
(347895, 'litespeed.conf.debug-exc', '[]', 'auto'),
(347896, 'litespeed.conf.debug-exc_strings', '[]', 'auto'),
(347897, 'litespeed.conf.db_optm-revisions_max', '0', 'auto'),
(347898, 'litespeed.conf.db_optm-revisions_age', '0', 'auto'),
(347899, 'litespeed.conf.optm-css_min', '', 'auto'),
(347900, 'litespeed.conf.optm-css_comb', '', 'auto'),
(347901, 'litespeed.conf.optm-css_comb_ext_inl', '1', 'auto'),
(347902, 'litespeed.conf.optm-ucss', '', 'auto'),
(347903, 'litespeed.conf.optm-ucss_inline', '', 'auto'),
(347904, 'litespeed.conf.optm-ucss_whitelist', '[]', 'auto'),
(347905, 'litespeed.conf.optm-ucss_file_exc_inline', '[]', 'auto'),
(347906, 'litespeed.conf.optm-ucss_exc', '[]', 'auto'),
(347907, 'litespeed.conf.optm-css_exc', '[]', 'auto'),
(347908, 'litespeed.conf.optm-js_min', '', 'auto'),
(347909, 'litespeed.conf.optm-js_comb', '', 'auto'),
(347910, 'litespeed.conf.optm-js_comb_ext_inl', '1', 'auto'),
(347911, 'litespeed.conf.optm-js_delay_inc', '[]', 'auto'),
(347912, 'litespeed.conf.optm-js_exc', '[\"jquery.js\",\"jquery.min.js\"]', 'auto'),
(347913, 'litespeed.conf.optm-html_min', '', 'auto'),
(347914, 'litespeed.conf.optm-html_lazy', '[]', 'auto'),
(347915, 'litespeed.conf.optm-html_skip_comment', '[]', 'auto'),
(347916, 'litespeed.conf.optm-qs_rm', '', 'auto'),
(347917, 'litespeed.conf.optm-ggfonts_rm', '', 'auto'),
(347918, 'litespeed.conf.optm-css_async', '', 'auto'),
(347919, 'litespeed.conf.optm-ccss_per_url', '', 'auto'),
(347920, 'litespeed.conf.optm-ccss_sep_posttype', '[\"page\"]', 'auto'),
(347921, 'litespeed.conf.optm-ccss_sep_uri', '[]', 'auto'),
(347922, 'litespeed.conf.optm-ccss_whitelist', '[]', 'auto'),
(347923, 'litespeed.conf.optm-css_async_inline', '1', 'auto'),
(347924, 'litespeed.conf.optm-css_font_display', '', 'auto'),
(347925, 'litespeed.conf.optm-js_defer', '0', 'auto'),
(347926, 'litespeed.conf.optm-emoji_rm', '', 'auto'),
(347927, 'litespeed.conf.optm-noscript_rm', '', 'auto'),
(347928, 'litespeed.conf.optm-ggfonts_async', '', 'auto'),
(347929, 'litespeed.conf.optm-exc_roles', '[]', 'auto'),
(347930, 'litespeed.conf.optm-ccss_con', '', 'auto'),
(347931, 'litespeed.conf.optm-js_defer_exc', '[\"jquery.js\",\"jquery.min.js\",\"gtm.js\",\"analytics.js\"]', 'auto'),
(347932, 'litespeed.conf.optm-gm_js_exc', '[]', 'auto'),
(347933, 'litespeed.conf.optm-dns_prefetch', '[]', 'auto'),
(347934, 'litespeed.conf.optm-dns_prefetch_ctrl', '', 'auto'),
(347935, 'litespeed.conf.optm-dns_preconnect', '[]', 'auto'),
(347936, 'litespeed.conf.optm-exc', '[]', 'auto'),
(347937, 'litespeed.conf.optm-guest_only', '1', 'auto'),
(347938, 'litespeed.conf.object', '', 'auto'),
(347939, 'litespeed.conf.object-kind', '', 'auto'),
(347940, 'litespeed.conf.object-host', 'localhost', 'auto'),
(347941, 'litespeed.conf.object-port', '11211', 'auto'),
(347942, 'litespeed.conf.object-life', '360', 'auto'),
(347943, 'litespeed.conf.object-persistent', '1', 'auto'),
(347944, 'litespeed.conf.object-admin', '1', 'auto'),
(347945, 'litespeed.conf.object-transients', '1', 'auto'),
(347946, 'litespeed.conf.object-db_id', '0', 'auto'),
(347947, 'litespeed.conf.object-user', '', 'auto'),
(347948, 'litespeed.conf.object-pswd', '', 'auto'),
(347949, '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\"]', 'auto'),
(347950, 'litespeed.conf.object-non_persistent_groups', '[\"comment\",\"counts\",\"plugins\",\"wc_session_id\"]', 'auto'),
(347951, 'litespeed.conf.discuss-avatar_cache', '', 'auto'),
(347952, 'litespeed.conf.discuss-avatar_cron', '', 'auto'),
(347953, 'litespeed.conf.discuss-avatar_cache_ttl', '604800', 'auto'),
(347954, 'litespeed.conf.optm-localize', '', 'auto'),
(347955, 'litespeed.conf.optm-localize_domains', '[\"### Popular scripts ###\",\"https:\\/\\/platform.twitter.com\\/widgets.js\",\"https:\\/\\/connect.facebook.net\\/en_US\\/fbevents.js\"]', 'auto'),
(347956, 'litespeed.conf.media-lazy', '', 'auto'),
(347957, 'litespeed.conf.media-lazy_placeholder', '', 'auto'),
(347958, 'litespeed.conf.media-placeholder_resp', '', 'auto'),
(347959, 'litespeed.conf.media-placeholder_resp_color', '#cfd4db', 'auto'),
(347960, '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>', 'auto'),
(347961, 'litespeed.conf.media-lqip', '', 'auto'),
(347962, 'litespeed.conf.media-lqip_qual', '4', 'auto'),
(347963, 'litespeed.conf.media-lqip_min_w', '150', 'auto'),
(347964, 'litespeed.conf.media-lqip_min_h', '150', 'auto'),
(347965, 'litespeed.conf.media-placeholder_resp_async', '1', 'auto'),
(347966, 'litespeed.conf.media-iframe_lazy', '', 'auto'),
(347967, 'litespeed.conf.media-add_missing_sizes', '', 'auto'),
(347968, 'litespeed.conf.media-lazy_exc', '[]', 'auto'),
(347969, 'litespeed.conf.media-lazy_cls_exc', '[\"wmu-preview-img\"]', 'auto'),
(347970, 'litespeed.conf.media-lazy_parent_cls_exc', '[]', 'auto'),
(347971, 'litespeed.conf.media-iframe_lazy_cls_exc', '[]', 'auto'),
(347972, 'litespeed.conf.media-iframe_lazy_parent_cls_exc', '[]', 'auto'),
(347973, 'litespeed.conf.media-lazy_uri_exc', '[]', 'auto'),
(347974, 'litespeed.conf.media-lqip_exc', '[]', 'auto'),
(347975, 'litespeed.conf.media-vpi', '', 'auto'),
(347976, 'litespeed.conf.media-vpi_cron', '', 'auto'),
(347977, 'litespeed.conf.media-auto_rescale_ori', '', 'auto'),
(347978, 'litespeed.conf.img_optm-auto', '', 'auto'),
(347979, 'litespeed.conf.img_optm-ori', '1', 'auto'),
(347980, 'litespeed.conf.img_optm-rm_bkup', '', 'auto'),
(347981, 'litespeed.conf.img_optm-webp', '0', 'auto'),
(347982, 'litespeed.conf.img_optm-lossless', '', 'auto'),
(347983, 'litespeed.conf.img_optm-sizes_skipped', '[]', 'auto'),
(347984, 'litespeed.conf.img_optm-exif', '1', 'auto'),
(347985, '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\"]', 'auto'),
(347986, 'litespeed.conf.img_optm-webp_replace_srcset', '', 'auto'),
(347987, 'litespeed.conf.img_optm-jpg_quality', '82', 'auto'),
(347988, 'litespeed.conf.crawler', '', 'auto'),
(347989, 'litespeed.conf.crawler-crawl_interval', '302400', 'auto'),
(347990, 'litespeed.conf.crawler-load_limit', '1', 'auto'),
(347991, 'litespeed.conf.crawler-sitemap', '', 'auto'),
(347992, 'litespeed.conf.crawler-roles', '[]', 'auto'),
(347993, 'litespeed.conf.crawler-cookies', '[]', 'auto'),
(347994, 'litespeed.conf.misc-heartbeat_front', '', 'auto'),
(347995, 'litespeed.conf.misc-heartbeat_front_ttl', '60', 'auto'),
(347996, 'litespeed.conf.misc-heartbeat_back', '', 'auto'),
(347997, 'litespeed.conf.misc-heartbeat_back_ttl', '60', 'auto'),
(347998, 'litespeed.conf.misc-heartbeat_editor', '', 'auto'),
(347999, 'litespeed.conf.misc-heartbeat_editor_ttl', '15', 'auto'),
(348000, 'litespeed.conf.cdn', '', 'auto'),
(348001, 'litespeed.conf.cdn-ori', '[]', 'auto'),
(348002, 'litespeed.conf.cdn-ori_dir', '[\"wp-content\",\"wp-includes\"]', 'auto'),
(348003, 'litespeed.conf.cdn-exc', '[]', 'auto'),
(348004, 'litespeed.conf.cdn-quic', '', 'auto'),
(348005, 'litespeed.conf.cdn-cloudflare', '', 'auto'),
(348006, 'litespeed.conf.cdn-cloudflare_email', '', 'auto'),
(348007, 'litespeed.conf.cdn-cloudflare_key', '', 'auto'),
(348008, 'litespeed.conf.cdn-cloudflare_name', '', 'auto'),
(348009, 'litespeed.conf.cdn-cloudflare_zone', '', 'auto'),
(348010, 'litespeed.conf.cdn-cloudflare_clear', '', 'auto'),
(348011, '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\"]}]', 'auto'),
(348012, 'litespeed.conf.cdn-attr', '[\".src\",\".data-src\",\".href\",\".poster\",\"source.srcset\"]', 'auto'),
(348013, 'litespeed.conf.qc-nameservers', '', 'auto'),
(348014, 'litespeed.conf.qc-cname', '', 'auto'),
(348015, 'litespeed.conf.debug-disable_tmp', '0', 'auto'),
(348016, 'litespeed.purge.queue', '-1', 'auto'),
(348017, 'litespeed.purge.queue2', '-1', 'auto'),
(346490, 'wp_1442eb7b222ec94277073d87ecd6b0a8', '1764319206', 'off'),
(272628, 'elementor_1_elementor_pro_updater_batch_8c720a243f385026f1f83499', 'a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:34:\"ElementorPro\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}}', 'off'),
(263422, 'wp_2ad4995210132f723383685f73ee1d23', '1739536936', 'off'),
(244761, 'rsssl_404_notice_shown', '1', 'off'),
(246889, '_transient_health-check-site-status-result', '{\"good\":17,\"recommended\":7,\"critical\":0}', 'on'),
(247246, '_site_transient_wp_plugin_dependencies_plugin_data', 'a:0:{}', 'off'),
(247261, 'frm_yt_videos', 'a:3:{s:7:\"timeout\";i:1739368685;s:5:\"value\";s:644:\"{\"welcome\":{\"video-id\":\"7X2BqhRsXcg\"},\"latest\":[{\"video-id\":\"6cbUV9nkdNA\",\"thumbnails\":{\"default\":{\"url\":\"https:\\/\\/i.ytimg.com\\/vi\\/6cbUV9nkdNA\\/default.jpg\",\"width\":120,\"height\":90},\"medium\":{\"url\":\"https:\\/\\/i.ytimg.com\\/vi\\/6cbUV9nkdNA\\/mqdefault.jpg\",\"width\":320,\"height\":180},\"high\":{\"url\":\"https:\\/\\/i.ytimg.com\\/vi\\/6cbUV9nkdNA\\/hqdefault.jpg\",\"width\":480,\"height\":360}},\"title\":\"Formidable Forms 15 Year Anniversary Sale\",\"description\":\"Click here to get to the sale: https:\\/\\/formidableforms.com\\/go\\/15years Formidable Forms is now 15 years old. To celebrate, we are ...\"}],\"featured\":{\"video-id\":\"94Lt-BM6x2E\"},\"response_code\":200}\";s:7:\"version\";s:4:\"6.18\";}', 'off'),
(319051, 'wp_ddb2a14e73755b48f46001658c6c163e', '1753443879', 'off'),
(252221, 'elementor_1_elementor_updater_batch_798f6295c01c56696290ee60f9eb', 'a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}}', 'off'),
(257502, 'wp_2329a53de06d7581fe4ec87c9df6939a', '1739860767', 'off'),
(254053, 'frm_sales_cache', 'a:3:{s:7:\"timeout\";i:1757502346;s:5:\"value\";s:5473:\"{\"0\":{\"key\":\"menu-link-fix\",\"starts\":1740096000,\"expires\":1745971200,\"who\":[\"all\"],\"discount_percent\":50,\"test_group\":\"\",\"lite_banner_cta_link\":\"\",\"lite_banner_cta_text\":\"\",\"menu_cta_link\":\"https:\\/\\/formidableforms.com\\/lite-upgrade\\/?utm_source=WordPress&utm_medium=upgrade&utm_campaign=liteplugin&utm_content=submenu-upgrade\",\"menu_cta_text\":\"\",\"dashboard_license_cta_link\":\"\",\"dashboard_license_cta_text\":\"\",\"global_settings_license_cta_link\":\"\",\"global_settings_license_cta_text\":\"\",\"global_settings_unlock_more_cta_link\":\"\",\"global_settings_unlock_more_cta_text\":\"\",\"global_settings_upgrade_cta_link\":\"\",\"footer_cta_link\":\"\",\"footer_cta_text\":\"\",\"plugin_page_cta_link\":\"\",\"plugin_page_cta_text\":\"\",\"pro_tip_cta_link\":\"\",\"pro_tip_cta_text\":\"\",\"banner_title\":\"\",\"banner_icon\":\"\",\"banner_body\":\"\",\"banner_text_color\":\"\",\"banner_bg_color\":\"\",\"banner_cta_link\":\"\",\"banner_cta_text\":\"\",\"banner_cta_text_color\":\"\",\"banner_cta_bg_color\":\"\"},\"1\":{\"key\":\"spring-sale-2025\",\"starts\":1745884800,\"expires\":1746748800,\"who\":[\"free\",\"basic\",\"personal\",\"business\"],\"discount_percent\":60,\"test_group\":\"\",\"lite_banner_cta_link\":\"https:\\/\\/formidableforms.com\\/lite-upgrade\\/\",\"lite_banner_cta_text\":\"upgrading for 60% off during our Spring Sale!\",\"menu_cta_link\":\"https:\\/\\/formidableforms.com\\/lite-upgrade\\/\",\"menu_cta_text\":\"Spring Sale!\",\"dashboard_license_cta_link\":\"https:\\/\\/formidableforms.com\\/lite-upgrade\\/\",\"dashboard_license_cta_text\":\"Get 60% Off Pro\",\"global_settings_license_cta_link\":\"https:\\/\\/formidableforms.com\\/lite-upgrade\\/\",\"global_settings_license_cta_text\":\"Get 60% Off Pro\",\"global_settings_unlock_more_cta_link\":\"https:\\/\\/formidableforms.com\\/lite-upgrade\\/\",\"global_settings_unlock_more_cta_text\":\"upgrading for 60% off during our Spring Sale!\",\"global_settings_upgrade_cta_link\":\"https:\\/\\/formidableforms.com\\/lite-upgrade\\/\",\"footer_cta_link\":\"https:\\/\\/formidableforms.com\\/lite-upgrade\\/\",\"footer_cta_text\":\"Get 60% Off Pro\",\"plugin_page_cta_link\":\"https:\\/\\/formidableforms.com\\/lite-upgrade\\/\",\"plugin_page_cta_text\":\"60% Off Sale\",\"pro_tip_cta_link\":\"\",\"pro_tip_cta_text\":\"\",\"banner_title\":\"Formidable Forms Spring Sale \\u2013 Save 60% Now\",\"banner_icon\":\"\",\"banner_body\":\"Spring promotion: claim 60% off the most powerful WordPress form plugin available.\",\"banner_text_color\":\"\",\"banner_bg_color\":\"\",\"banner_cta_link\":\"https:\\/\\/formidableforms.com\\/lite-upgrade\\/\",\"banner_cta_text\":\"\",\"banner_cta_text_color\":\"\",\"banner_cta_bg_color\":\"\"},\"2\":{\"key\":\"summer-silent-2025\",\"starts\":1750550400,\"expires\":1751155200,\"who\":[\"free\",\"basic\",\"personal\",\"business\",\"expired\"],\"discount_percent\":60,\"test_group\":\"\",\"lite_banner_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/j2v6\",\"lite_banner_cta_text\":\"upgrading (this week only) for 60% off!\",\"menu_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/j2v6\",\"menu_cta_text\":\"60% Off Sale!\",\"dashboard_license_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/j2v6\",\"dashboard_license_cta_text\":\"Get 60% Off Pro\",\"global_settings_license_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/j2v6\",\"global_settings_license_cta_text\":\"Get 60% Off Pro\",\"global_settings_unlock_more_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/j2v6\",\"global_settings_unlock_more_cta_text\":\"upgrading (this week only) for 60% off!\",\"global_settings_upgrade_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/j2v6\",\"footer_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/j2v6\",\"footer_cta_text\":\"Get 60% Off\",\"plugin_page_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/j2v6\",\"plugin_page_cta_text\":\"60% Off Sale!\",\"pro_tip_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/j2v6\",\"pro_tip_cta_text\":\"Get 60% Off Pro!\",\"banner_title\":\"Summer Sale!\",\"banner_icon\":\"summer\",\"banner_body\":\"This week only \\u2014\\u00a0get 60% Elite, Business, and Plus licenses!\",\"banner_text_color\":\"\",\"banner_bg_color\":\"rgba(190, 227, 227, 1)\",\"banner_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/j2v6\",\"banner_cta_text\":\"Get 60% Off Pro!\",\"banner_cta_text_color\":\"\",\"banner_cta_bg_color\":\"\"},\"3\":{\"key\":\"summer-2025-sale\",\"starts\":1754956800,\"expires\":1755820800,\"who\":[\"free\",\"basic\",\"personal\",\"business\",\"expired\"],\"discount_percent\":60,\"test_group\":\"\",\"lite_banner_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/5wpe\",\"lite_banner_cta_text\":\"upgrading for 60% off!\",\"menu_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/j3mp\",\"menu_cta_text\":\"60% Off Sale!\",\"dashboard_license_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/cxjf\",\"dashboard_license_cta_text\":\"Get 60% Off Pro\",\"global_settings_license_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/zmq3\",\"global_settings_license_cta_text\":\"Get 60% Off Pro\",\"global_settings_unlock_more_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/hb8o\",\"global_settings_unlock_more_cta_text\":\"upgrading for 60% off!\",\"global_settings_upgrade_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/gxqh\",\"footer_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/39ze\",\"footer_cta_text\":\"Get 60% Off\",\"plugin_page_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/85zi\",\"plugin_page_cta_text\":\"60% Off Sale!\",\"pro_tip_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/e85p\",\"pro_tip_cta_text\":\"Get 60% Off Pro!\",\"banner_title\":\"Summer 2025 Sale!\",\"banner_icon\":\"summer\",\"banner_body\":\"Get up to 60% off Formidable Pro licenses!\",\"banner_text_color\":\"\",\"banner_bg_color\":\"rgba(190, 227, 227, 1)\",\"banner_cta_link\":\"https:\\/\\/formidableforms.com\\/go\\/fvho\",\"banner_cta_text\":\"Get the Deal\",\"banner_cta_text_color\":\"\",\"banner_cta_bg_color\":\"\"},\"response_code\":200}\";s:7:\"version\";s:4:\"6.23\";}', 'off'),
(264774, 'elementor_fonts_manager_fonts', 'a:0:{}', 'auto'),
(264775, 'elementor_custom_icon_sets_config', 'a:0:{}', 'auto'),
(271336, 'wp_40f31778f8b4683e07dce4c699d64011', '1741843047', 'off'),
(274159, 'wp_4b9538a7297dcc80372bddbcf31820f6', '1742191271', 'off'),
(264759, 'elementor_pro_version', '3.27.6', 'auto'),
(264760, 'elementor_pro_install_history', 'a:3:{s:6:\"3.27.4\";i:1739860764;s:6:\"3.27.5\";i:1741583862;s:6:\"3.27.6\";i:1741842890;}', 'auto'),
(264761, 'widget_elementor-library', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(264762, '_elementor_pro_installed_time', '1739860764', 'auto'),
(264838, '_elementor_pro_api_requests_lock', 'a:1:{s:11:\"get_version\";i:1757481136;}', 'auto'),
(264757, 'elementor_pro_license_key', 'activated', 'auto'),
(264758, '_elementor_pro_license_v2_data', 'a:2:{s:7:\"timeout\";i:1757524335;s:5:\"value\";s:71:\"{\"success\":true,\"license\":\"valid\",\"expires\":\"01.01.2030\",\"features\":[]}\";}', 'auto'),
(264773, 'elementor_fonts_manager_font_types', 'a:0:{}', 'auto'),
(264764, 'elementor_submissions_db_version', '5', 'auto'),
(264765, 'elementor_notes_db_version', '5', 'auto');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(305611, 'elementor_pro_remote_info_api_data_3.29.1', 'a:2:{s:7:\"timeout\";i:1749602856;s:5:\"value\";s:242122:\"{\"stable_version\":\"3.29.2\",\"last_updated\":\"2025-06-04 14:56:19\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:226546:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.29.2 - 2025-06-04<\\/h4>\\n<ul>\\n<li>Tweak: Added selectors to Menu widget for compatibility with Optimized Markup experiment<\\/li>\\n<\\/ul>\\n<h4>3.29.1 - 2025-05-28<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Price Table widget<\\/li>\\n<\\/ul>\\n<h4>3.29.0 - 2025-05-19<\\/h4>\\n<ul>\\n<li>New: Introduced Cloud Templates - save, manage, and reuse your templates across all your sites from a single cloud library<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> attributes in Share Buttons widget<\\/li>\\n<li>Tweak: Improved accessibility by grouping content with <code>role=region<\\/code> in the Video Playlist widget<\\/li>\\n<li>Fix: Focus color is not applied correctly for accessibility in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24239\\\">#24239<\\/a>)<\\/li>\\n<li>Fix: Common scripts loaded late when using the Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.28.4 - 2025-05-05<\\/h4>\\n<ul>\\n<li>Fix: Empty results appeared on the frontend when using the Taxonomy Filter with the \'Avoid Duplicates\' option in Loop Grid widget<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled and the Optimized Markup experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.28.3 - 2025-04-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved sidebar navigation flow on the Elementor Home screen<\\/li>\\n<\\/ul>\\n<h4>3.28.2 - 2025-03-30<\\/h4>\\n<ul>\\n<li>Fix: Default Elementor animation shown for logged-out users when using an &quot;External URL&quot; source in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.28.1 - 2025-03-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline and Form widgets<\\/li>\\n<\\/ul>\\n<h4>3.28.0 - 2025-03-17<\\/h4>\\n<ul>\\n<li>Tweak: Ensured File Upload field styles are overridden by global styles in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11651\\\">#11651<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17223\\\">#17223<\\/a>)<\\/li>\\n<li>Tweak: Updated Scroll Snap description to clarify incompatibility with animations and motion effects<\\/li>\\n<li>Tweak: Prevented special characters from being encoded in the email subject field in Form widget<\\/li>\\n<li>Tweak: Loaded module styles within the module instead of registering them in <code>plugin.php<\\/code><\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.5<\\/li>\\n<li>Tweak: Improved keyboard accessibility for menus in Editor Top Bar<\\/li>\\n<li>Tweak: Made the edit button accessible in the Template widget<\\/li>\\n<li>Tweak: Optimized Form widget performance by caching field assets <code>using get_style_depends()<\\/code> and <code>get_script_depends()<\\/code> methods<\\/li>\\n<li>Tweak: Added Text Shadow control in Testimonial Carousel, Call to Action and Animated Headline widgets<\\/li>\\n<li>Fix: Button icon alignment breaks when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16077\\\">#16077<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16511\\\">#16511<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17692\\\">#17692<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17922\\\">#17922<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19253\\\">#19253<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19370\\\">#19370<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21236\\\">#21236<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21844\\\">#21844<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28080\\\">#28080<\\/a>)<\\/li>\\n<li>Fix: Dropdown caret color did not follow menu item color when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17500\\\">#17500<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18466\\\">#18466<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21664\\\">#21664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24929\\\">#24929<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28064\\\">#28064<\\/a>)<\\/li>\\n<li>Fix: Page doesn\'t scroll up when a coupon error notice appears in Checkout widget<\\/li>\\n<\\/ul>\\n<h4>3.27.7 - 2025-03-13<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.27.6 - 2025-03-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Template Condition<\\/li>\\n<\\/ul>\\n<h4>3.27.5 - 2025-03-03<\\/h4>\\n<ul>\\n<li>Fix: The <code>wp_trigger_error<\\/code> function causes the site to crash instead of triggering a warning when used with ACF text<\\/li>\\n<\\/ul>\\n<h4>3.27.4 - 2025-02-16<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Screenshots module<\\/li>\\n<li>Security Fix: Improved code security enforcement in Query control<\\/li>\\n<li>Fix: ACF <code>true_false<\\/code> field causing a fatal error when used as a dynamic tag with third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/30170\\\">#30170<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.27.3 - 2025-02-06<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Stripe Button widget<\\/li>\\n<\\/ul>\\n<h4>3.27.2 - 2025-02-03<\\/h4>\\n<ul>\\n<li>Fix: Value type configuration issue causing errors when using ACF<\\/li>\\n<li>Fix: Hide content on responsive breakpoint option is not working on WordPress Menu widget when Optimized Markup experiment is activated<\\/li>\\n<\\/ul>\\n<h4>3.27.1 - 2025-01-27<\\/h4>\\n<ul>\\n<li>Tweak: Increased the number of items allowed in Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<li>Security Fix: Improved code security enforcement in Global widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Admin settings<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Empty custom fields are missing in the Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<\\/ul>\\n<h4>3.27.0 - 2025-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Removed the <code>elementor-widget-container<\\/code> div from the Menu, Loop, Table of Contents, Form, and Hotspot widgets as part of the Optimized Markup experiment to improve HTML structure<\\/li>\\n<li>Tweak: Reduced DOM size by optimizing the submit button markup in Search widget<\\/li>\\n<li>Tweak: Moved style loading to the head instead of the footer to improve CLS<\\/li>\\n<li>Tweak: Enabled conditional loading of Swiper.js based on widget dependencies to reduce unnecessary assets and improve page load times<\\/li>\\n<li>Tweak: Standardized navigation elements like arrows and bullets across all carousel and slider widgets for improved accessibility<\\/li>\\n<li>Tweak: Improved accessibility when the submit button has only an icon and no text in Search widget<\\/li>\\n<li>Tweak: Removed <code>load_plugin_textdomain()<\\/code> function from Elementor Pro<\\/li>\\n<\\/ul>\\n<h4>3.26.3 - 2025-01-07<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Search widget<\\/li>\\n<li>Fix: Height issues cause slideshow thumbnails to display incorrectly in Media Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29663\\\">#29663<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.2 - 2024-12-22<\\/h4>\\n<ul>\\n<li>Fix: Menu items are not clickable in various scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29191\\\">#29191<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.1 - 2024-12-17<\\/h4>\\n<ul>\\n<li>Fix: Restore deprecated <code>Plugin::enqueue_styles()<\\/code> function to avoid errors with 3rd party plugins<\\/li>\\n<\\/ul>\\n<h4>3.26.0 - 2024-12-16<\\/h4>\\n<ul>\\n<li>New: Introducing dynamic content support for Off-canvas in Loop Grid widget templates - enabling seamless display of additional content dynamically (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29049\\\">#29049<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28935\\\">#28935<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7106\\\">#7106<\\/a>)<\\/li>\\n<li>New: AdBlock Detection trigger for Popups - display targeted popups for visitors using ad blockers<\\/li>\\n<li>New: Added Reload Page link action for Dynamic Tags<\\/li>\\n<li>Tweak: Added &quot;Space Between Dots&quot; control to Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2526\\\">#2526<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3277\\\">#3277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21697\\\">#21697<\\/a>)<\\/li>\\n<li>Tweak: Replaced hidden <code>elementor-screen-only<\\/code> div with <code>aria-label<\\/code> attributes<\\/li>\\n<li>Tweak: Removed <code>elementor-widget-container<\\/code> div from Elementor widgets as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Optimize popup styling by loading it only when necessary<\\/li>\\n<li>Tweak: Updated Gap between slides control to support only PX units in Carousel widget<\\/li>\\n<li>Tweak: Removed the dependency between the Tabs handler and the Menu handler<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> in Carousel widgets<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=carousel<\\/code> to carousel wrapper<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=slide<\\/code> to slide wrapper<\\/li>\\n<li>Tweak: Optimized carousel widgets markup as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Updated minimum required Safari version to 15.5<\\/li>\\n<li>Tweak: Facebook widgets are no longer supported on mobile due to Facebook functionality changes<\\/li>\\n<li>Fix: Motion Effects sticky feature is not working when Scroll Snap is enabled<\\/li>\\n<li>Fix: Custom Image Resolution option is not working in Gallery widget<\\/li>\\n<li>Fix: \'Reading Settings\' unexpectedly reduces the number of posts displayed when using the Archive with Pagination setting<\\/li>\\n<li>Fix: Step Form does not scroll to the top when the first field is not an input field in Form widget<\\/li>\\n<li>Fix: Display Condition feature is available without an active Elementor license in Floating Elements<\\/li>\\n<li>Fix: Background options of Flip Box in Loop Grid widget are not working when images are added using ACF Dynamic Tags<\\/li>\\n<li>Fix: Dropdown icon in the Select field of the Form widget is cut off when the Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Incompatibility between Form widget and WPML when using Nested Elements<\\/li>\\n<li>Fix: Performance issues when changing the title name in the Menu widget<\\/li>\\n<li>Fix: Warnings appear when Element Caching is set to Inactive in Carousel widgets<\\/li>\\n<li>Fix: Swiper styling missing from Lightbox inside Gallery widgets<\\/li>\\n<\\/ul>\\n<h4>3.25.5 - 2024-12-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Popup overlay shown for non-logged users even when disabled<\\/li>\\n<\\/ul>\\n<h4>3.25.4 - 2024-11-20<\\/h4>\\n<ul>\\n<li>Tweak: Improved Global Widget loading method to enhance performance<\\/li>\\n<\\/ul>\\n<h4>3.25.3 - 2024-11-13<\\/h4>\\n<ul>\\n<li>Fix: Nested Elements are activated even when the Container experiment is inactive<\\/li>\\n<\\/ul>\\n<h4>3.25.2 - 2024-11-03<\\/h4>\\n<ul>\\n<li>Fix: Styling issues affecting popup layout when using a Dynamic Tag to open the popup<\\/li>\\n<li>Fix: Image captions are not displaying for non-logged-in users in Media Carousel widget<\\/li>\\n<li>Fix: Custom Add to Cart widget with Quantity enabled causes critical error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29159\\\">#29159<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.25.1 - 2024-10-31<\\/h4>\\n<ul>\\n<li>Fix: Multiple Custom Add to Cart widgets on the same page are adding the same product<\\/li>\\n<\\/ul>\\n<h4>3.25.0 - 2024-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added pagination functionality to the Live Results in Search widget<\\/li>\\n<li>Tweak: Added Anchor Offset control to allow precise positioning when scrolling to anchor links on the page<\\/li>\\n<li>Tweak: Load motion effects styles only when they are in use<\\/li>\\n<li>Tweak: Load sticky styles only when they are in use<\\/li>\\n<li>Tweak: Load popup styles only when they are in use<\\/li>\\n<li>Tweak: Load theme builder styles only when they are in use<\\/li>\\n<li>Tweak: Load transition styles for Call to Action and Gallery widgets only when they are in use<\\/li>\\n<li>Tweak: Load styles for Form widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for WooCommerce widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Theme Elements widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Carousel widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Pricing widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Floating Elements separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Link in Bio widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load minified CSS in the Loop Builder\'s Call to Action button in the Editor<\\/li>\\n<li>Tweak: Removed &quot;Payments&quot; module styles<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Payapl widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Stripe widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Merged &quot;Form Submissions&quot; feature into the version and moved it to the Advanced tab<\\/li>\\n<li>Tweak: Merged &quot;Display Conditions&quot; into the version<\\/li>\\n<li>Fix: Missing translation string for the empty message in the Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27580\\\">#27580<\\/a>)<\\/li>\\n<li>Fix: Local Storage and Session Storage were being used even when popups were not in use (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7151\\\">#7151<\\/a>)<\\/li>\\n<li>Fix: Masonry layout is not working when pagination is set to &quot;Load More&quot; or &quot;Infinite Scroll&quot; in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23684\\\">#23684<\\/a>)<\\/li>\\n<li>Fix: Extra gap between widgets on the frontend when using Off-canvas widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27706\\\">#27706<\\/a>)<\\/li>\\n<li>Fix: Pagination and custom queries did not work when the Posts Widget was saved as a Global Widget or used via shortcode<\\/li>\\n<li>Fix: Lightbox videos are missing controls and displayed at the wrong size in Media Carousel widget<\\/li>\\n<li>Fix: Pagination options with Individual Pagination not working as expected in Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Justified or Masonry layouts for the Pro Gallery would not display images on the frontend when inserted via nested tabs<\\/li>\\n<li>Fix: Error issue in the Loop Grid widget when used in theme parts with the Taxonomy Filter<\\/li>\\n<li>Fix: Removed the focus ring after clicking to open the Off Canvas inside the Editor<\\/li>\\n<li>Fix: Background gradient colors from the dynamic color tag values are not rendering on the frontend<\\/li>\\n<li>Fix: Excessive database requests generated by the Loop Grid widget<\\/li>\\n<li>Fix: Colors from Dynamic Tags were not rendered on the frontend<\\/li>\\n<li>Fix: Display issue in the Menu widget caused by the \'Native Intersection Observer API<\\/li>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget<\\/li>\\n<li>Fix: Content Width control inside the Mega Menu is displaying an empty value<\\/li>\\n<\\/ul>\\n<h4>3.24.4 - 2024-10-09<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<\\/ul>\\n<h4>3.24.3 - 2024-10-01<\\/h4>\\n<ul>\\n<li>Fix: Floating Elements template not loading when Single Page template is set with All Singular condition<\\/li>\\n<li>Fix: Form field styles not loading properly in various scenarios<\\/li>\\n<\\/ul>\\n<h4>3.24.2 - 2024-09-18<\\/h4>\\n<ul>\\n<li>Fix: Icons not displaying when Inline SVG Icons experiment is active in Link In Bio widgets and Floating Elements<\\/li>\\n<\\/ul>\\n<h4>3.24.1 - 2024-09-12<\\/h4>\\n<ul>\\n<li>Fix: Widget styles not loading correctly on front causing alignment inconsistencies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28676\\\">#28676<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.24.0 - 2024-09-10<\\/h4>\\n<ul>\\n<li>New: Introducing support for Variable Fonts - allowing for more dynamic and flexible text styling (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6703\\\">#6703<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11333\\\">#11333<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19277\\\">#19277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25485\\\">#25485<\\/a>)<\\/li>\\n<li>Tweak: Added \'Structure\' indication for widgets with Display Conditions applied (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28027\\\">#28027<\\/a>)<\\/li>\\n<li>Tweak: Added a new option for setting the live search results width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28280\\\">#28280<\\/a>)<\\/li>\\n<li>Tweak: Improved Honeypot field functionality in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28480\\\">#28480<\\/a>)<\\/li>\\n<li>Tweak: Added options to \'Copy\', \'Paste\', and \'Clear\' Display Conditions in Context Menu<\\/li>\\n<li>Tweak: Improved performance of the Menu widget when using Dynamic Tags in the URL field<\\/li>\\n<li>Tweak: Improved performance when using Dynamic Tags in Nested Elements<\\/li>\\n<li>Tweak: Added the option for users to disable Akismet for specific Elementor forms<\\/li>\\n<li>Tweak: Adjusted URL structure when presenting the Search Archive page in Search widget<\\/li>\\n<li>Tweak: Added the \'Create Template\' button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the \'Loader\' animation while live results are loading in Search widget<\\/li>\\n<li>Tweak: Load share buttons compatibility styles only when they are in use<\\/li>\\n<li>Tweak: Load dialog styles only when they are in use<\\/li>\\n<li>Tweak: Load global widget styles only during Editor preview<\\/li>\\n<li>Tweak: Conditionally load widget styles only when the widgets are used<\\/li>\\n<li>Tweak: Load styles for CTA hover animations only when they are in use<\\/li>\\n<li>Tweak: Load notes styles only when the WordPress Toolbar is displayed<\\/li>\\n<li>Tweak: Split <code>animations.min.css<\\/code> into multiple CSS files and load them conditionally<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Stable status<\\/li>\\n<li>Tweak: Merged Taxonomy Filter feature into the version<\\/li>\\n<li>Tweak: Merged Search feature into the version<\\/li>\\n<li>Tweak: Added a note to \'Current Query\' explaining the impact of WordPress settings on pagination within Archives<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for the Off-Canvas widget<\\/li>\\n<li>Fix: Manual Selection option is not excluding sticky posts in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18689\\\">#18689<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23331\\\">#23331<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28179\\\">#28179<\\/a>)<\\/li>\\n<li>Fix: Template ID does not change according to the imported Loop Item (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21404\\\">#21404<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22202\\\">#22202<\\/a>)<\\/li>\\n<li>Fix: \'Editing Mode\' for the Off-canvas was not functioning correctly in certain scenarios<\\/li>\\n<li>Fix: Added definition to <code>clear_custom_image_sizes<\\/code> hook to prevent edge case issues<\\/li>\\n<li>Fix: Flickering issue with search result buttons when closing results using the keyboard escape key in Search widget<\\/li>\\n<li>Fix: Theme Style settings for buttons were overriding the text styling in Search widget<\\/li>\\n<li>Fix: Nesting menu inside another menu causes functionality issues in Menu widget<\\/li>\\n<li>Fix: Error when using array as custom fields value in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.23.3 - 2024-08-05<\\/h4>\\n<ul>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28194\\\">#28194<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.23.2 - 2024-07-29<\\/h4>\\n<ul>\\n<li>Fix: Horizontal scroll bar appearing on the page when using Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28087\\\">#28087<\\/a>)<\\/li>\\n<li>Fix: Dropdown area disappearing in certain scenarios in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.23.1 - 2024-07-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in link URL<\\/li>\\n<\\/ul>\\n<h4>3.23.0 - 2024-07-15<\\/h4>\\n<ul>\\n<li>New: Search Widget with Live Results - Display live search results as visitors type into the search box, enhancing user experience and engagement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27664\\\">#27664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24931\\\">#24931<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21459\\\">#21459<\\/a>)<\\/li>\\n<li>Tweak: Renamed <code>width<\\/code> to <code>Min width<\\/code> and added <code>Max width<\\/code> control to Hotspot tooltips (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18930\\\">#18930<\\/a>)<\\/li>\\n<li>Tweak: Applied a logical DOM order to the Mega Menu widget to improve accessibility<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for WordPress Menu widget<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for Menu widget<\\/li>\\n<li>Tweak: Added a bottom option to the Image Position control in Call to Action widget<\\/li>\\n<li>Fix: Missing version string in included CSS query string when Improved CSS Loading is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21879\\\">#21879<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23821\\\">#23821<\\/a>)<\\/li>\\n<li>Fix: Form submission icon message does not display correctly when Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Save and Close button position issues in the conditions screen in Theme Builder.<\\/li>\\n<li>Fix: Focus appears on the first element when using the mouse to open Off-Canvas <\\/li>\\n<li>Fix: Links to Elementor Settings are broken in various locations<\\/li>\\n<li>Fix: Conditions field not showing all relevant conditions in Theme Builder<\\/li>\\n<li>Fix: Off-Canvas flickering in sticky containers with exit animations triggered by sticky effects<\\/li>\\n<\\/ul>\\n<h4>3.22.1 - 2024-06-24<\\/h4>\\n<ul>\\n<li>Fix: Styling of Global widgets not loading when Element Caching experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27704\\\">#27704<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.22.0 - 2024-06-16<\\/h4>\\n<ul>\\n<li>New: Introducing Off-Canvas widget - create engaging and creative layers triggered by a link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6225\\\">#6225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21769\\\">#21769<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25770\\\">#25770<\\/a>)<\\/li>\\n<li>Tweak: Added option to remove \'User IP\' and \'User Agent\' from the form submissions metadata (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14285\\\">#14285<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>waypoints.js<\\/code> library with the native Intersection Observer API<\\/li>\\n<li>Tweak: Extended Alignment and Position capabilities in Form widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Flip Box widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Call to Action widget<\\/li>\\n<li>Tweak: Optimized Form widget to eliminate unnecessary markup when the button icon is empty<\\/li>\\n<li>Tweak: Optimized Posts widget to eliminate unnecessary markup when Load More button text is empty<\\/li>\\n<li>Tweak: Remove <code>placeholder<\\/code> arguments from URL controls<\\/li>\\n<li>Tweak: Implemented CSS logical properties to Icon Position in Form, Posts and Menu Cart widgets<\\/li>\\n<li>Tweak: Activated Display Conditions feature for existing sites<\\/li>\\n<li>Tweak: Activated Taxonomy Filter feature for existing sites<\\/li>\\n<li>Tweak: Added functionality to delay the running of the ready triggers on inner elements<\\/li>\\n<li>Fix: Icons are now part of the link in the Menu Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24298\\\">#24298<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25112\\\">#25112<\\/a>)<\\/li>\\n<li>Fix: <code>all: unset<\\/code> assigned to buttons cause focus issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24322\\\">#24322<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25448\\\">#25448<\\/a>)<\\/li>\\n<li>Fix: Menu cart SVG icon disappears on front when Optimized Control Loading experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27342\\\">#27342<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro auto-updates are not working on multisite networks (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12615\\\">#12615<\\/a>)<\\/li>\\n<li>Fix: PHP error appears in the editor when using Loop Grid in an archive template<\\/li>\\n<li>Fix: UI glitch on Icon Position control in Paypal and Stripe Buttons widgets<\\/li>\\n<li>Fix: Icon Position control RTL issue in Hotspot widget<\\/li>\\n<li>Fix: Manual Selection &quot;Include By&quot; Query doesn\'t work with product categories<\\/li>\\n<\\/ul>\\n<h4>3.21.3 - 2024-05-20<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Loop Grid widget<\\/li>\\n<li>Fix: License expired affects the Display Conditions functionality in the front end<\\/li>\\n<\\/ul>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn\'t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Enqueuing non-existing Loop Template CSS file in Loop Item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24959\\\">#24959<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>New: Introducing Display Conditions for Elements - allowing users to customize content visibility based on specified criteria (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4246\\\">#4246<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21152\\\">#21152<\\/a>)<\\/li>\\n<li>New: Implemented Akismet Integration for enhanced spam protection and security in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11401\\\">#11401<\\/a>)<\\/li>\\n<li>New: Introducing Permissions functionality to Element Manager - providing users with enhanced control over access and management capabilities<\\/li>\\n<li>Tweak: Added styling option for dropdown indicator in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21907\\\">#21907<\\/a>)<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Implemented CSS logical properties in WordPress Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Reviews widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Countdown widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Updated <code>jquery.smartmenus.js<\\/code> version from 1.1.1 to 1.2.0<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21489\\\">#21489<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22368\\\">#22368<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23085\\\">#23085<\\/a>)<\\/li>\\n<li>Fix: History panel deprecation notices in console log<\\/li>\\n<li>Fix: Second Pro rollback installed the latest version instead of the specifically selected older version<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation in Menu Widget<\\/li>\\n<li>Fix: UX issues when using in-place editing in Menu widget<\\/li>\\n<li>Fix: Pagination with page reload is not working when used with the Taxonomy filter and Loop Grid widget in Archive template<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle becomes inaccessible in various scenarios cases in Loop Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">#21316<\\/a>)<\\/li>\\n<li>Fix: Can\'t edit page when using \'Content Tabs\' and \'Section\' options in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-20<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-06<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">#19553<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes character is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629\\\">#18629<\\/a>)<\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475]\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.29.2\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.8.1\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NDk1NTg4MjYsImV4cCI6MTc0OTY0NTIyNn0.skYJR7BhUDKPUUb03AI5cYN8oDnhMyBQ_Zs7Djgjja8\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NDk1NTg4MjYsImV4cCI6MTc0OTY0NTIyNn0.skYJR7BhUDKPUUb03AI5cYN8oDnhMyBQ_Zs7Djgjja8\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.8.1\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImlhdCI6MTc0OTU1ODgyNiwiZXhwIjoxNzQ5NjQ1MjI2fQ.7qYBPqJZmUfyNG9vOYPo0x6ezBD_EsUVAxsKjRPsYmw\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImlhdCI6MTc0OTU1ODgyNiwiZXhwIjoxNzQ5NjQ1MjI2fQ.7qYBPqJZmUfyNG9vOYPo0x6ezBD_EsUVAxsKjRPsYmw\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(326045, 'elementor_pro_remote_info_api_data_3.31.2', 'a:2:{s:7:\"timeout\";i:1757524337;s:5:\"value\";s:245880:\"{\"stable_version\":\"3.31.3\",\"last_updated\":\"2025-09-08 14:17:12\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:230161:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.31.3 - 2025-09-08<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in WordPress Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.31.2 - 2025-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Improved release version functionality<\\/li>\\n<\\/ul>\\n<h4>3.31.1 - 2025-08-06<\\/h4>\\n<ul>\\n<li>Tweak: Updated <code>form-data<\\/code> package version<\\/li>\\n<\\/ul>\\n<h4>3.31.0 - 2025-08-05<\\/h4>\\n<ul>\\n<li>New: Introducing Attributes - add custom HTML attributes to elements for advanced control - Editor V4<\\/li>\\n<li>Tweak: Optimized Custom Code styles by removing redundant RTL file<\\/li>\\n<li>Tweak: Improved performance by loading ribbon styles only when used in Call to Action and Price Table widgets<\\/li>\\n<li>Tweak: Improved semantic markup structure for header and footer documents<\\/li>\\n<li>Tweak: Reorganized design controls in Animated Headline widget<\\/li>\\n<li>Tweak: Reorganized design controls in Blockquote widget<\\/li>\\n<li>Tweak: Reorganized design controls in Countdown widget<\\/li>\\n<li>Tweak: Replaced SASS mixins and functions with native CSS logical properties<\\/li>\\n<li>Fix: Empty headers are rendered in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28167\\\">#28167<\\/a>)<\\/li>\\n<li>Fix: <code>TypeError<\\/code> bug in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.30.1 - 2025-07-22<\\/h4>\\n<ul>\\n<li>Security Fix: Improved content sanitization in multiple widgets<\\/li>\\n<li>Fix: UI issue in Hotspot widget when Optimized Markup experiment is enabled<\\/li>\\n<li>Fix: Taxonomy filter not working in the Editor when Optimized Markup experiment is enabled<\\/li>\\n<\\/ul>\\n<h4>3.30.0 - 2025-07-01<\\/h4>\\n<ul>\\n<li>New: Introduced Full Website Templates in the Cloud - export, manage, and reuse full site kits across all your websites from one place<\\/li>\\n<li>Tweak: Activated &quot;Optimized Markup&quot; feature on new sites<\\/li>\\n<li>Tweak: Activated &quot;Menu&quot; feature on new sites<\\/li>\\n<li>Tweak: Improved error handling for Theme Builder display conditions<\\/li>\\n<li>Tweak: Added styling controls to Post Excerpt widget<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> and <code>aria-label<\\/code> attributes Post Navigation widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Form widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Login widget<\\/li>\\n<li>Tweak: Arranged content as lists in Portfolio and Posts widgets<\\/li>\\n<li>Tweak: Added Box Shadow and Text Shadow controls in Countdown widget<\\/li>\\n<li>Tweak: Moved image resolution control to content tab in Price List widget<\\/li>\\n<li>Tweak: Renamed and reorganized style sections in Price List widget<\\/li>\\n<li>Tweak: Added conditional logic to controls in Price Table widget<\\/li>\\n<li>Tweak: Grouped layout controls under list section in Price List widget<\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.6<\\/li>\\n<li>Fix: Inline font icons support doesn\'t work in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24367\\\">#24367<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18343\\\">#18343<\\/a>)<\\/li>\\n<li>Fix: Page Title condition doesn\'t work on child pages in Widget Display Conditions<\\/li>\\n<li>Fix: Editor users with &quot;Access to edit content only&quot; are able to delete elements<\\/li>\\n<li>Fix: Links are not crawlable in Video Playlist widget<\\/li>\\n<li>Fix: Uses hardcoded admin fonts in Video Playlist widget<\\/li>\\n<li>Fix: Editor freezes when the Form widget is used with a high PHP upload size limit<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled in Slides widget<\\/li>\\n<li>Fix: Plugin dependency not enforced in Elementor Pro<\\/li>\\n<li>Fix: Console shows deprecation warning in Global Widgets<\\/li>\\n<\\/ul>\\n<h4>3.29.2 - 2025-06-04<\\/h4>\\n<ul>\\n<li>Tweak: Added selectors to Menu widget for compatibility with Optimized Markup experiment<\\/li>\\n<\\/ul>\\n<h4>3.29.1 - 2025-05-28<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Price Table widget<\\/li>\\n<\\/ul>\\n<h4>3.29.0 - 2025-05-19<\\/h4>\\n<ul>\\n<li>New: Introduced Cloud Templates - save, manage, and reuse your templates across all your sites from a single cloud library<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> attributes in Share Buttons widget<\\/li>\\n<li>Tweak: Improved accessibility by grouping content with <code>role=region<\\/code> in the Video Playlist widget<\\/li>\\n<li>Fix: Focus color is not applied correctly for accessibility in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24239\\\">#24239<\\/a>)<\\/li>\\n<li>Fix: Common scripts loaded late when using the Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.28.4 - 2025-05-05<\\/h4>\\n<ul>\\n<li>Fix: Empty results appeared on the frontend when using the Taxonomy Filter with the \'Avoid Duplicates\' option in Loop Grid widget<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled and the Optimized Markup experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.28.3 - 2025-04-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved sidebar navigation flow on the Elementor Home screen<\\/li>\\n<\\/ul>\\n<h4>3.28.2 - 2025-03-30<\\/h4>\\n<ul>\\n<li>Fix: Default Elementor animation shown for logged-out users when using an &quot;External URL&quot; source in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.28.1 - 2025-03-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline and Form widgets<\\/li>\\n<\\/ul>\\n<h4>3.28.0 - 2025-03-17<\\/h4>\\n<ul>\\n<li>Tweak: Ensured File Upload field styles are overridden by global styles in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11651\\\">#11651<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17223\\\">#17223<\\/a>)<\\/li>\\n<li>Tweak: Updated Scroll Snap description to clarify incompatibility with animations and motion effects<\\/li>\\n<li>Tweak: Prevented special characters from being encoded in the email subject field in Form widget<\\/li>\\n<li>Tweak: Loaded module styles within the module instead of registering them in <code>plugin.php<\\/code><\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.5<\\/li>\\n<li>Tweak: Improved keyboard accessibility for menus in Editor Top Bar<\\/li>\\n<li>Tweak: Made the edit button accessible in the Template widget<\\/li>\\n<li>Tweak: Optimized Form widget performance by caching field assets <code>using get_style_depends()<\\/code> and <code>get_script_depends()<\\/code> methods<\\/li>\\n<li>Tweak: Added Text Shadow control in Testimonial Carousel, Call to Action and Animated Headline widgets<\\/li>\\n<li>Fix: Button icon alignment breaks when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16077\\\">#16077<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16511\\\">#16511<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17692\\\">#17692<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17922\\\">#17922<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19253\\\">#19253<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19370\\\">#19370<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21236\\\">#21236<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21844\\\">#21844<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28080\\\">#28080<\\/a>)<\\/li>\\n<li>Fix: Dropdown caret color did not follow menu item color when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17500\\\">#17500<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18466\\\">#18466<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21664\\\">#21664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24929\\\">#24929<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28064\\\">#28064<\\/a>)<\\/li>\\n<li>Fix: Page doesn\'t scroll up when a coupon error notice appears in Checkout widget<\\/li>\\n<\\/ul>\\n<h4>3.27.7 - 2025-03-13<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.27.6 - 2025-03-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Template Condition<\\/li>\\n<\\/ul>\\n<h4>3.27.5 - 2025-03-03<\\/h4>\\n<ul>\\n<li>Fix: The <code>wp_trigger_error<\\/code> function causes the site to crash instead of triggering a warning when used with ACF text<\\/li>\\n<\\/ul>\\n<h4>3.27.4 - 2025-02-16<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Screenshots module<\\/li>\\n<li>Security Fix: Improved code security enforcement in Query control<\\/li>\\n<li>Fix: ACF <code>true_false<\\/code> field causing a fatal error when used as a dynamic tag with third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/30170\\\">#30170<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.27.3 - 2025-02-06<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Stripe Button widget<\\/li>\\n<\\/ul>\\n<h4>3.27.2 - 2025-02-03<\\/h4>\\n<ul>\\n<li>Fix: Value type configuration issue causing errors when using ACF<\\/li>\\n<li>Fix: Hide content on responsive breakpoint option is not working on WordPress Menu widget when Optimized Markup experiment is activated<\\/li>\\n<\\/ul>\\n<h4>3.27.1 - 2025-01-27<\\/h4>\\n<ul>\\n<li>Tweak: Increased the number of items allowed in Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<li>Security Fix: Improved code security enforcement in Global widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Admin settings<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Empty custom fields are missing in the Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<\\/ul>\\n<h4>3.27.0 - 2025-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Removed the <code>elementor-widget-container<\\/code> div from the Menu, Loop, Table of Contents, Form, and Hotspot widgets as part of the Optimized Markup experiment to improve HTML structure<\\/li>\\n<li>Tweak: Reduced DOM size by optimizing the submit button markup in Search widget<\\/li>\\n<li>Tweak: Moved style loading to the head instead of the footer to improve CLS<\\/li>\\n<li>Tweak: Enabled conditional loading of Swiper.js based on widget dependencies to reduce unnecessary assets and improve page load times<\\/li>\\n<li>Tweak: Standardized navigation elements like arrows and bullets across all carousel and slider widgets for improved accessibility<\\/li>\\n<li>Tweak: Improved accessibility when the submit button has only an icon and no text in Search widget<\\/li>\\n<li>Tweak: Removed <code>load_plugin_textdomain()<\\/code> function from Elementor Pro<\\/li>\\n<\\/ul>\\n<h4>3.26.3 - 2025-01-07<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Search widget<\\/li>\\n<li>Fix: Height issues cause slideshow thumbnails to display incorrectly in Media Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29663\\\">#29663<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.2 - 2024-12-22<\\/h4>\\n<ul>\\n<li>Fix: Menu items are not clickable in various scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29191\\\">#29191<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.1 - 2024-12-17<\\/h4>\\n<ul>\\n<li>Fix: Restore deprecated <code>Plugin::enqueue_styles()<\\/code> function to avoid errors with 3rd party plugins<\\/li>\\n<\\/ul>\\n<h4>3.26.0 - 2024-12-16<\\/h4>\\n<ul>\\n<li>New: Introducing dynamic content support for Off-canvas in Loop Grid widget templates - enabling seamless display of additional content dynamically (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29049\\\">#29049<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28935\\\">#28935<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7106\\\">#7106<\\/a>)<\\/li>\\n<li>New: AdBlock Detection trigger for Popups - display targeted popups for visitors using ad blockers<\\/li>\\n<li>New: Added Reload Page link action for Dynamic Tags<\\/li>\\n<li>Tweak: Added &quot;Space Between Dots&quot; control to Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2526\\\">#2526<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3277\\\">#3277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21697\\\">#21697<\\/a>)<\\/li>\\n<li>Tweak: Replaced hidden <code>elementor-screen-only<\\/code> div with <code>aria-label<\\/code> attributes<\\/li>\\n<li>Tweak: Removed <code>elementor-widget-container<\\/code> div from Elementor widgets as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Optimize popup styling by loading it only when necessary<\\/li>\\n<li>Tweak: Updated Gap between slides control to support only PX units in Carousel widget<\\/li>\\n<li>Tweak: Removed the dependency between the Tabs handler and the Menu handler<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> in Carousel widgets<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=carousel<\\/code> to carousel wrapper<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=slide<\\/code> to slide wrapper<\\/li>\\n<li>Tweak: Optimized carousel widgets markup as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Updated minimum required Safari version to 15.5<\\/li>\\n<li>Tweak: Facebook widgets are no longer supported on mobile due to Facebook functionality changes<\\/li>\\n<li>Fix: Motion Effects sticky feature is not working when Scroll Snap is enabled<\\/li>\\n<li>Fix: Custom Image Resolution option is not working in Gallery widget<\\/li>\\n<li>Fix: \'Reading Settings\' unexpectedly reduces the number of posts displayed when using the Archive with Pagination setting<\\/li>\\n<li>Fix: Step Form does not scroll to the top when the first field is not an input field in Form widget<\\/li>\\n<li>Fix: Display Condition feature is available without an active Elementor license in Floating Elements<\\/li>\\n<li>Fix: Background options of Flip Box in Loop Grid widget are not working when images are added using ACF Dynamic Tags<\\/li>\\n<li>Fix: Dropdown icon in the Select field of the Form widget is cut off when the Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Incompatibility between Form widget and WPML when using Nested Elements<\\/li>\\n<li>Fix: Performance issues when changing the title name in the Menu widget<\\/li>\\n<li>Fix: Warnings appear when Element Caching is set to Inactive in Carousel widgets<\\/li>\\n<li>Fix: Swiper styling missing from Lightbox inside Gallery widgets<\\/li>\\n<\\/ul>\\n<h4>3.25.5 - 2024-12-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Popup overlay shown for non-logged users even when disabled<\\/li>\\n<\\/ul>\\n<h4>3.25.4 - 2024-11-20<\\/h4>\\n<ul>\\n<li>Tweak: Improved Global Widget loading method to enhance performance<\\/li>\\n<\\/ul>\\n<h4>3.25.3 - 2024-11-13<\\/h4>\\n<ul>\\n<li>Fix: Nested Elements are activated even when the Container experiment is inactive<\\/li>\\n<\\/ul>\\n<h4>3.25.2 - 2024-11-03<\\/h4>\\n<ul>\\n<li>Fix: Styling issues affecting popup layout when using a Dynamic Tag to open the popup<\\/li>\\n<li>Fix: Image captions are not displaying for non-logged-in users in Media Carousel widget<\\/li>\\n<li>Fix: Custom Add to Cart widget with Quantity enabled causes critical error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29159\\\">#29159<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.25.1 - 2024-10-31<\\/h4>\\n<ul>\\n<li>Fix: Multiple Custom Add to Cart widgets on the same page are adding the same product<\\/li>\\n<\\/ul>\\n<h4>3.25.0 - 2024-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added pagination functionality to the Live Results in Search widget<\\/li>\\n<li>Tweak: Added Anchor Offset control to allow precise positioning when scrolling to anchor links on the page<\\/li>\\n<li>Tweak: Load motion effects styles only when they are in use<\\/li>\\n<li>Tweak: Load sticky styles only when they are in use<\\/li>\\n<li>Tweak: Load popup styles only when they are in use<\\/li>\\n<li>Tweak: Load theme builder styles only when they are in use<\\/li>\\n<li>Tweak: Load transition styles for Call to Action and Gallery widgets only when they are in use<\\/li>\\n<li>Tweak: Load styles for Form widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for WooCommerce widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Theme Elements widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Carousel widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Pricing widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Floating Elements separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Link in Bio widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load minified CSS in the Loop Builder\'s Call to Action button in the Editor<\\/li>\\n<li>Tweak: Removed &quot;Payments&quot; module styles<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Payapl widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Stripe widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Merged &quot;Form Submissions&quot; feature into the version and moved it to the Advanced tab<\\/li>\\n<li>Tweak: Merged &quot;Display Conditions&quot; into the version<\\/li>\\n<li>Fix: Missing translation string for the empty message in the Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27580\\\">#27580<\\/a>)<\\/li>\\n<li>Fix: Local Storage and Session Storage were being used even when popups were not in use (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7151\\\">#7151<\\/a>)<\\/li>\\n<li>Fix: Masonry layout is not working when pagination is set to &quot;Load More&quot; or &quot;Infinite Scroll&quot; in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23684\\\">#23684<\\/a>)<\\/li>\\n<li>Fix: Extra gap between widgets on the frontend when using Off-canvas widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27706\\\">#27706<\\/a>)<\\/li>\\n<li>Fix: Pagination and custom queries did not work when the Posts Widget was saved as a Global Widget or used via shortcode<\\/li>\\n<li>Fix: Lightbox videos are missing controls and displayed at the wrong size in Media Carousel widget<\\/li>\\n<li>Fix: Pagination options with Individual Pagination not working as expected in Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Justified or Masonry layouts for the Pro Gallery would not display images on the frontend when inserted via nested tabs<\\/li>\\n<li>Fix: Error issue in the Loop Grid widget when used in theme parts with the Taxonomy Filter<\\/li>\\n<li>Fix: Removed the focus ring after clicking to open the Off Canvas inside the Editor<\\/li>\\n<li>Fix: Background gradient colors from the dynamic color tag values are not rendering on the frontend<\\/li>\\n<li>Fix: Excessive database requests generated by the Loop Grid widget<\\/li>\\n<li>Fix: Colors from Dynamic Tags were not rendered on the frontend<\\/li>\\n<li>Fix: Display issue in the Menu widget caused by the \'Native Intersection Observer API<\\/li>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget<\\/li>\\n<li>Fix: Content Width control inside the Mega Menu is displaying an empty value<\\/li>\\n<\\/ul>\\n<h4>3.24.4 - 2024-10-09<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<\\/ul>\\n<h4>3.24.3 - 2024-10-01<\\/h4>\\n<ul>\\n<li>Fix: Floating Elements template not loading when Single Page template is set with All Singular condition<\\/li>\\n<li>Fix: Form field styles not loading properly in various scenarios<\\/li>\\n<\\/ul>\\n<h4>3.24.2 - 2024-09-18<\\/h4>\\n<ul>\\n<li>Fix: Icons not displaying when Inline SVG Icons experiment is active in Link In Bio widgets and Floating Elements<\\/li>\\n<\\/ul>\\n<h4>3.24.1 - 2024-09-12<\\/h4>\\n<ul>\\n<li>Fix: Widget styles not loading correctly on front causing alignment inconsistencies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28676\\\">#28676<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.24.0 - 2024-09-10<\\/h4>\\n<ul>\\n<li>New: Introducing support for Variable Fonts - allowing for more dynamic and flexible text styling (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6703\\\">#6703<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11333\\\">#11333<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19277\\\">#19277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25485\\\">#25485<\\/a>)<\\/li>\\n<li>Tweak: Added \'Structure\' indication for widgets with Display Conditions applied (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28027\\\">#28027<\\/a>)<\\/li>\\n<li>Tweak: Added a new option for setting the live search results width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28280\\\">#28280<\\/a>)<\\/li>\\n<li>Tweak: Improved Honeypot field functionality in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28480\\\">#28480<\\/a>)<\\/li>\\n<li>Tweak: Added options to \'Copy\', \'Paste\', and \'Clear\' Display Conditions in Context Menu<\\/li>\\n<li>Tweak: Improved performance of the Menu widget when using Dynamic Tags in the URL field<\\/li>\\n<li>Tweak: Improved performance when using Dynamic Tags in Nested Elements<\\/li>\\n<li>Tweak: Added the option for users to disable Akismet for specific Elementor forms<\\/li>\\n<li>Tweak: Adjusted URL structure when presenting the Search Archive page in Search widget<\\/li>\\n<li>Tweak: Added the \'Create Template\' button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the \'Loader\' animation while live results are loading in Search widget<\\/li>\\n<li>Tweak: Load share buttons compatibility styles only when they are in use<\\/li>\\n<li>Tweak: Load dialog styles only when they are in use<\\/li>\\n<li>Tweak: Load global widget styles only during Editor preview<\\/li>\\n<li>Tweak: Conditionally load widget styles only when the widgets are used<\\/li>\\n<li>Tweak: Load styles for CTA hover animations only when they are in use<\\/li>\\n<li>Tweak: Load notes styles only when the WordPress Toolbar is displayed<\\/li>\\n<li>Tweak: Split <code>animations.min.css<\\/code> into multiple CSS files and load them conditionally<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Stable status<\\/li>\\n<li>Tweak: Merged Taxonomy Filter feature into the version<\\/li>\\n<li>Tweak: Merged Search feature into the version<\\/li>\\n<li>Tweak: Added a note to \'Current Query\' explaining the impact of WordPress settings on pagination within Archives<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for the Off-Canvas widget<\\/li>\\n<li>Fix: Manual Selection option is not excluding sticky posts in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18689\\\">#18689<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23331\\\">#23331<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28179\\\">#28179<\\/a>)<\\/li>\\n<li>Fix: Template ID does not change according to the imported Loop Item (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21404\\\">#21404<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22202\\\">#22202<\\/a>)<\\/li>\\n<li>Fix: \'Editing Mode\' for the Off-canvas was not functioning correctly in certain scenarios<\\/li>\\n<li>Fix: Added definition to <code>clear_custom_image_sizes<\\/code> hook to prevent edge case issues<\\/li>\\n<li>Fix: Flickering issue with search result buttons when closing results using the keyboard escape key in Search widget<\\/li>\\n<li>Fix: Theme Style settings for buttons were overriding the text styling in Search widget<\\/li>\\n<li>Fix: Nesting menu inside another menu causes functionality issues in Menu widget<\\/li>\\n<li>Fix: Error when using array as custom fields value in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.23.3 - 2024-08-05<\\/h4>\\n<ul>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28194\\\">#28194<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.23.2 - 2024-07-29<\\/h4>\\n<ul>\\n<li>Fix: Horizontal scroll bar appearing on the page when using Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28087\\\">#28087<\\/a>)<\\/li>\\n<li>Fix: Dropdown area disappearing in certain scenarios in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.23.1 - 2024-07-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in link URL<\\/li>\\n<\\/ul>\\n<h4>3.23.0 - 2024-07-15<\\/h4>\\n<ul>\\n<li>New: Search Widget with Live Results - Display live search results as visitors type into the search box, enhancing user experience and engagement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27664\\\">#27664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24931\\\">#24931<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21459\\\">#21459<\\/a>)<\\/li>\\n<li>Tweak: Renamed <code>width<\\/code> to <code>Min width<\\/code> and added <code>Max width<\\/code> control to Hotspot tooltips (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18930\\\">#18930<\\/a>)<\\/li>\\n<li>Tweak: Applied a logical DOM order to the Mega Menu widget to improve accessibility<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for WordPress Menu widget<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for Menu widget<\\/li>\\n<li>Tweak: Added a bottom option to the Image Position control in Call to Action widget<\\/li>\\n<li>Fix: Missing version string in included CSS query string when Improved CSS Loading is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21879\\\">#21879<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23821\\\">#23821<\\/a>)<\\/li>\\n<li>Fix: Form submission icon message does not display correctly when Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Save and Close button position issues in the conditions screen in Theme Builder.<\\/li>\\n<li>Fix: Focus appears on the first element when using the mouse to open Off-Canvas <\\/li>\\n<li>Fix: Links to Elementor Settings are broken in various locations<\\/li>\\n<li>Fix: Conditions field not showing all relevant conditions in Theme Builder<\\/li>\\n<li>Fix: Off-Canvas flickering in sticky containers with exit animations triggered by sticky effects<\\/li>\\n<\\/ul>\\n<h4>3.22.1 - 2024-06-24<\\/h4>\\n<ul>\\n<li>Fix: Styling of Global widgets not loading when Element Caching experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27704\\\">#27704<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.22.0 - 2024-06-16<\\/h4>\\n<ul>\\n<li>New: Introducing Off-Canvas widget - create engaging and creative layers triggered by a link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6225\\\">#6225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21769\\\">#21769<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25770\\\">#25770<\\/a>)<\\/li>\\n<li>Tweak: Added option to remove \'User IP\' and \'User Agent\' from the form submissions metadata (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14285\\\">#14285<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>waypoints.js<\\/code> library with the native Intersection Observer API<\\/li>\\n<li>Tweak: Extended Alignment and Position capabilities in Form widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Flip Box widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Call to Action widget<\\/li>\\n<li>Tweak: Optimized Form widget to eliminate unnecessary markup when the button icon is empty<\\/li>\\n<li>Tweak: Optimized Posts widget to eliminate unnecessary markup when Load More button text is empty<\\/li>\\n<li>Tweak: Remove <code>placeholder<\\/code> arguments from URL controls<\\/li>\\n<li>Tweak: Implemented CSS logical properties to Icon Position in Form, Posts and Menu Cart widgets<\\/li>\\n<li>Tweak: Activated Display Conditions feature for existing sites<\\/li>\\n<li>Tweak: Activated Taxonomy Filter feature for existing sites<\\/li>\\n<li>Tweak: Added functionality to delay the running of the ready triggers on inner elements<\\/li>\\n<li>Fix: Icons are now part of the link in the Menu Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24298\\\">#24298<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25112\\\">#25112<\\/a>)<\\/li>\\n<li>Fix: <code>all: unset<\\/code> assigned to buttons cause focus issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24322\\\">#24322<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25448\\\">#25448<\\/a>)<\\/li>\\n<li>Fix: Menu cart SVG icon disappears on front when Optimized Control Loading experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27342\\\">#27342<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro auto-updates are not working on multisite networks (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12615\\\">#12615<\\/a>)<\\/li>\\n<li>Fix: PHP error appears in the editor when using Loop Grid in an archive template<\\/li>\\n<li>Fix: UI glitch on Icon Position control in Paypal and Stripe Buttons widgets<\\/li>\\n<li>Fix: Icon Position control RTL issue in Hotspot widget<\\/li>\\n<li>Fix: Manual Selection &quot;Include By&quot; Query doesn\'t work with product categories<\\/li>\\n<\\/ul>\\n<h4>3.21.3 - 2024-05-20<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Loop Grid widget<\\/li>\\n<li>Fix: License expired affects the Display Conditions functionality in the front end<\\/li>\\n<\\/ul>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn\'t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Enqueuing non-existing Loop Template CSS file in Loop Item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24959\\\">#24959<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>New: Introducing Display Conditions for Elements - allowing users to customize content visibility based on specified criteria (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4246\\\">#4246<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21152\\\">#21152<\\/a>)<\\/li>\\n<li>New: Implemented Akismet Integration for enhanced spam protection and security in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11401\\\">#11401<\\/a>)<\\/li>\\n<li>New: Introducing Permissions functionality to Element Manager - providing users with enhanced control over access and management capabilities<\\/li>\\n<li>Tweak: Added styling option for dropdown indicator in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21907\\\">#21907<\\/a>)<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Implemented CSS logical properties in WordPress Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Reviews widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Countdown widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Updated <code>jquery.smartmenus.js<\\/code> version from 1.1.1 to 1.2.0<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21489\\\">#21489<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22368\\\">#22368<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23085\\\">#23085<\\/a>)<\\/li>\\n<li>Fix: History panel deprecation notices in console log<\\/li>\\n<li>Fix: Second Pro rollback installed the latest version instead of the specifically selected older version<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation in Menu Widget<\\/li>\\n<li>Fix: UX issues when using in-place editing in Menu widget<\\/li>\\n<li>Fix: Pagination with page reload is not working when used with the Taxonomy filter and Loop Grid widget in Archive template<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle becomes inaccessible in various scenarios cases in Loop Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">#21316<\\/a>)<\\/li>\\n<li>Fix: Can\'t edit page when using \'Content Tabs\' and \'Section\' options in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-20<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-06<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">#19553<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes character is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629\\\">#18629<\\/a>)<\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475]\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.31.3\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.8.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NTc0ODExMzcsImV4cCI6MTc1NzU2NzUzN30.EqdeGEYzOmFnU91xBK2fEa21rVEB6xeIrt2r3ftk1rE\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NTc0ODExMzcsImV4cCI6MTc1NzU2NzUzN30.EqdeGEYzOmFnU91xBK2fEa21rVEB6xeIrt2r3ftk1rE\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.8.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImlhdCI6MTc1NzQ4MTEzNywiZXhwIjoxNzU3NTY3NTM3fQ.RNLnFjL6hYjkbdl_mtT_PafEwZLdB5O3-EdilP4OL2k\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImlhdCI6MTc1NzQ4MTEzNywiZXhwIjoxNzU3NTY3NTM3fQ.RNLnFjL6hYjkbdl_mtT_PafEwZLdB5O3-EdilP4OL2k\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(257154, 'wp_ba8391740b2bf2352e56459d5c3884e4', '1738148129', 'off'),
(269824, 'softaculous_pro_license', 'a:13:{s:7:\"license\";s:30:\"SOFTWP-67193-87775-75524-90331\";s:7:\"expires\";s:8:\"20250401\";s:4:\"type\";s:1:\"1\";s:8:\"type_txt\";s:7:\"Premium\";s:9:\"num_sites\";N;s:4:\"plan\";s:8:\"personal\";s:6:\"active\";i:1;s:10:\"licexpired\";N;s:4:\"thid\";N;s:6:\"status\";i:1;s:9:\"last_edit\";s:10:\"1741207295\";s:10:\"status_txt\";s:33:\"<font color=\"green\">Active</font>\";s:8:\"has_plid\";i:1;}', 'yes'),
(269823, 'loginizer_softwp_supgrade', 'a:4:{s:7:\"timeout\";i:3;s:10:\"next_check\";i:1744243738;s:10:\"softwp_lic\";s:30:\"SOFTWP-67193-87775-75524-90331\";s:10:\"reverified\";i:1;}', 'auto'),
(262431, '_transient_td_update_theme_latest_version_Newspaper', '1', 'on'),
(326006, 'wp_5fe6cc4cf0c81b1b16703e4db6f557da', '1756811145', 'off'),
(275453, 'wp_8182b6850c20e1e5d97b99c6ee011e25', '1751866586', 'off'),
(271406, 'wp_ad1266f0a418b473fe9b9dc0e66e1800', '1741842890', 'off'),
(280973, 'rewrite_rules', 'a:222:{s:13:\"tdc-review/?$\";s:30:\"index.php?post_type=tdc-review\";s:43:\"tdc-review/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=tdc-review&feed=$matches[1]\";s:38:\"tdc-review/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=tdc-review&feed=$matches[1]\";s:30:\"tdc-review/page/([0-9]{1,})/?$\";s:48:\"index.php?post_type=tdc-review&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:34:\"wpcode/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"wpcode/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"wpcode/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"wpcode/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"wpcode/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"wpcode/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"wpcode/([^/]+)/embed/?$\";s:39:\"index.php?wpcode=$matches[1]&embed=true\";s:27:\"wpcode/([^/]+)/trackback/?$\";s:33:\"index.php?wpcode=$matches[1]&tb=1\";s:35:\"wpcode/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?wpcode=$matches[1]&paged=$matches[2]\";s:42:\"wpcode/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?wpcode=$matches[1]&cpage=$matches[2]\";s:31:\"wpcode/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?wpcode=$matches[1]&page=$matches[2]\";s:23:\"wpcode/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"wpcode/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"wpcode/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"wpcode/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"wpcode/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"wpcode/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:52:\"wpcode_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?wpcode_type=$matches[1]&feed=$matches[2]\";s:47:\"wpcode_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?wpcode_type=$matches[1]&feed=$matches[2]\";s:28:\"wpcode_type/([^/]+)/embed/?$\";s:44:\"index.php?wpcode_type=$matches[1]&embed=true\";s:40:\"wpcode_type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?wpcode_type=$matches[1]&paged=$matches[2]\";s:22:\"wpcode_type/([^/]+)/?$\";s:33:\"index.php?wpcode_type=$matches[1]\";s:56:\"wpcode_location/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?wpcode_location=$matches[1]&feed=$matches[2]\";s:51:\"wpcode_location/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?wpcode_location=$matches[1]&feed=$matches[2]\";s:32:\"wpcode_location/([^/]+)/embed/?$\";s:48:\"index.php?wpcode_location=$matches[1]&embed=true\";s:44:\"wpcode_location/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?wpcode_location=$matches[1]&paged=$matches[2]\";s:26:\"wpcode_location/([^/]+)/?$\";s:37:\"index.php?wpcode_location=$matches[1]\";s:52:\"wpcode_tags/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?wpcode_tags=$matches[1]&feed=$matches[2]\";s:47:\"wpcode_tags/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?wpcode_tags=$matches[1]&feed=$matches[2]\";s:28:\"wpcode_tags/([^/]+)/embed/?$\";s:44:\"index.php?wpcode_tags=$matches[1]&embed=true\";s:40:\"wpcode_tags/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?wpcode_tags=$matches[1]&paged=$matches[2]\";s:22:\"wpcode_tags/([^/]+)/?$\";s:33:\"index.php?wpcode_tags=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:38:\"tdc-review/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"tdc-review/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"tdc-review/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"tdc-review/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"tdc-review/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"tdc-review/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"tdc-review/([^/]+)/embed/?$\";s:43:\"index.php?tdc-review=$matches[1]&embed=true\";s:31:\"tdc-review/([^/]+)/trackback/?$\";s:37:\"index.php?tdc-review=$matches[1]&tb=1\";s:51:\"tdc-review/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?tdc-review=$matches[1]&feed=$matches[2]\";s:46:\"tdc-review/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?tdc-review=$matches[1]&feed=$matches[2]\";s:39:\"tdc-review/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?tdc-review=$matches[1]&paged=$matches[2]\";s:46:\"tdc-review/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?tdc-review=$matches[1]&cpage=$matches[2]\";s:35:\"tdc-review/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?tdc-review=$matches[1]&page=$matches[2]\";s:27:\"tdc-review/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"tdc-review/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"tdc-review/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"tdc-review/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"tdc-review/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"tdc-review/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:60:\"tdc-review-criteria/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?tdc-review-criteria=$matches[1]&feed=$matches[2]\";s:55:\"tdc-review-criteria/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?tdc-review-criteria=$matches[1]&feed=$matches[2]\";s:36:\"tdc-review-criteria/([^/]+)/embed/?$\";s:52:\"index.php?tdc-review-criteria=$matches[1]&embed=true\";s:48:\"tdc-review-criteria/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?tdc-review-criteria=$matches[1]&paged=$matches[2]\";s:30:\"tdc-review-criteria/([^/]+)/?$\";s:41:\"index.php?tdc-review-criteria=$matches[1]\";s:44:\"tdc-review-email/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"tdc-review-email/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"tdc-review-email/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"tdc-review-email/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"tdc-review-email/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"tdc-review-email/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"tdc-review-email/([^/]+)/embed/?$\";s:49:\"index.php?tdc-review-email=$matches[1]&embed=true\";s:37:\"tdc-review-email/([^/]+)/trackback/?$\";s:43:\"index.php?tdc-review-email=$matches[1]&tb=1\";s:45:\"tdc-review-email/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?tdc-review-email=$matches[1]&paged=$matches[2]\";s:52:\"tdc-review-email/([^/]+)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?tdc-review-email=$matches[1]&cpage=$matches[2]\";s:41:\"tdc-review-email/([^/]+)(?:/([0-9]+))?/?$\";s:55:\"index.php?tdc-review-email=$matches[1]&page=$matches[2]\";s:33:\"tdc-review-email/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"tdc-review-email/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"tdc-review-email/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"tdc-review-email/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"tdc-review-email/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"tdc-review-email/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:39:\"tdb_templates/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"tdb_templates/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"tdb_templates/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"tdb_templates/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"tdb_templates/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"tdb_templates/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"tdb_templates/(.+?)/embed/?$\";s:46:\"index.php?tdb_templates=$matches[1]&embed=true\";s:32:\"tdb_templates/(.+?)/trackback/?$\";s:40:\"index.php?tdb_templates=$matches[1]&tb=1\";s:40:\"tdb_templates/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?tdb_templates=$matches[1]&paged=$matches[2]\";s:47:\"tdb_templates/(.+?)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?tdb_templates=$matches[1]&cpage=$matches[2]\";s:36:\"tdb_templates/(.+?)(?:/([0-9]+))?/?$\";s:52:\"index.php?tdb_templates=$matches[1]&page=$matches[2]\";s:49:\"tds_list/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?tds_list=$matches[1]&feed=$matches[2]\";s:44:\"tds_list/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?tds_list=$matches[1]&feed=$matches[2]\";s:25:\"tds_list/([^/]+)/embed/?$\";s:41:\"index.php?tds_list=$matches[1]&embed=true\";s:37:\"tds_list/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?tds_list=$matches[1]&paged=$matches[2]\";s:19:\"tds_list/([^/]+)/?$\";s:30:\"index.php?tds_list=$matches[1]\";s:37:\"tds_email/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"tds_email/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"tds_email/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"tds_email/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"tds_email/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"tds_email/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"tds_email/([^/]+)/embed/?$\";s:42:\"index.php?tds_email=$matches[1]&embed=true\";s:30:\"tds_email/([^/]+)/trackback/?$\";s:36:\"index.php?tds_email=$matches[1]&tb=1\";s:38:\"tds_email/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?tds_email=$matches[1]&paged=$matches[2]\";s:45:\"tds_email/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?tds_email=$matches[1]&cpage=$matches[2]\";s:34:\"tds_email/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?tds_email=$matches[1]&page=$matches[2]\";s:26:\"tds_email/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"tds_email/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"tds_email/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"tds_email/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"tds_email/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"tds_email/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"tds_locker/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"tds_locker/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"tds_locker/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"tds_locker/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"tds_locker/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"tds_locker/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"tds_locker/([^/]+)/embed/?$\";s:43:\"index.php?tds_locker=$matches[1]&embed=true\";s:31:\"tds_locker/([^/]+)/trackback/?$\";s:37:\"index.php?tds_locker=$matches[1]&tb=1\";s:39:\"tds_locker/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?tds_locker=$matches[1]&paged=$matches[2]\";s:46:\"tds_locker/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?tds_locker=$matches[1]&cpage=$matches[2]\";s:35:\"tds_locker/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?tds_locker=$matches[1]&page=$matches[2]\";s:27:\"tds_locker/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"tds_locker/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"tds_locker/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"tds_locker/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"tds_locker/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"tds_locker/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=32&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}', 'auto'),
(348358, '_site_transient_browser_89db729cfcdc129111f017b0e7ac324a', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"143.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'off'),
(348359, 'can_compress_scripts', '1', 'on'),
(348360, '_site_transient_timeout_community-events-d41d8cd98f00b204e9800998ecf8427e', '1765291678', 'off'),
(348361, '_site_transient_community-events-d41d8cd98f00b204e9800998ecf8427e', 'a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";b:0;}s:6:\"events\";a:0:{}}', 'off'),
(348362, '_site_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3', '1765256387', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(348363, '_site_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3', 'a:6:{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:\"Wed, 03 Dec 2025 22:28:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"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=7.0-alpha-61359\";s: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:65:\"\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:54:\"State of the Word 2025: Innovation Shaped by 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/news/2025/12/sotw-2025/\";s: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 Dec 2025 18:26:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{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: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: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=19447\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:354:\"State of the Word 2025 brought the WordPress community together for an afternoon that felt both reflective and forward-moving, blending stories of global growth with technical milestones and glimpses of the future. This year also marked the twentieth State of the Word since the first address in 2006, a milestone noted in the WordPress history [&#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:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:59:\"https://wordpress.org/news/files/2025/12/Telex-demo-776.mp4\";s:6:\"length\";s:8:\"29136831\";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:53:\"https://wordpress.org/news/files/2025/12/wapu-513.mp4\";s:6:\"length\";s:9:\"102323371\";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: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:36376:\"\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 title=\"State of the Word 2025\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/U_DF4-23C8Q?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p>State of the Word 2025 brought the WordPress community together for an afternoon that felt both reflective and forward-moving, blending stories of global growth with technical milestones and glimpses of the future. This year also marked the twentieth State of the Word since the first address in 2006, a milestone noted in the WordPress history book <a href=\"https://wordpress.org/book/2015/11/wordcamp-2006/\"><em>Milestones: The Story of WordPress</em></a> as the beginning of a tradition that has helped the project tell its own story.</p>\n\n\n\n<p>From the outset, the keynote carried a sense of momentum shaped by thousands of contributors, educators, students, and creators whose steady participation continues to define the open web. It was a reminder that WordPress is more than software. It is a community writing its future together.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>What we have is more than code. It’s momentum, it’s culture, and it’s a system that lets people learn by doing and lead by showing up.  — <a href=\"https://profiles.wordpress.org/4thhubbard/\">Mary Hubbard</a>, WordPress Executive Director</p>\n</blockquote>\n\n\n\n<p>Mary opened the evening by reflecting on her first full year as Executive Director, a year spent listening deeply and seeing firsthand how people across regions learn, contribute, and lead. Her remarks grounded the keynote in the lived reality of a community that grows because people invest in one another, teach openly, and build trust through contribution.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>I’ve met people using WordPress to unlock new careers. I’ve met contributors who started a single translation or forum post and are now leading major pieces of the project. In LatAm, Europe, and the States, I’ve seen students get access to WordPress tools and start building faster than we could have ever imagined. I’ve watched communities build in public, resolve disagreements in the open, and collaborate across languages and time zones.</p>\n</blockquote>\n\n\n\n<p>That reflection offered a clear reminder of what makes WordPress resilient through change: a culture of showing up, learning by doing, and supporting others along the way. The project moves forward because people choose to participate in ways both large and small, strengthening the foundation that has carried WordPress for more than two decades.</p>\n\n\n\n<p>With that foundation in place, the keynote moved through a series of stories and demonstrations that highlighted where WordPress stands today and where it is headed next — from a historic live release of WordPress 6.9 to expanding global education pathways, emerging AI capabilities, and deeper collaboration across the entire ecosystem.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress by the Numbers</h2>\n\n\n\n<p>Project Cofounder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> began with a wide-angle view of the project’s growth. WordPress powers over 43% of the web, with 60.5% of the CMS market. Shopify, its nearest competitor, holds 6.8%. Among the top 1,000 websites, WordPress’s share climbed to 49.4%, up 2.3% from the previous year.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-43.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"Globe graphic noting 43% of websites and 60.5% CMS market share\" class=\"wp-image-19500\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-43-scaled.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-43-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-43-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-43-scaled.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-43-scaled.jpg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>Multilingual usage continued its strong rise. Over 56% of WordPress sites now run in languages other than English. Japan stood out, with WordPress powering 58.5% of all Japanese websites and 83% of the CMS market. Japanese became the second most-used language on WordPress at 5.82%. Spanish followed, then German, French, and Brazilian Portuguese.</p>\n\n\n\n<p>The plugin ecosystem saw explosive growth. The directory surpassed 60,000 plugins, and plugin downloads were on pace to reach 2.1 billion by year-end. Over 1,500 themes have been released this year as well.</p>\n\n\n\n<p>Contributors also hit new highs. The 6.8 release included 921 contributors, the largest group yet. WordPress 6.8 saw 79.5 million downloads, up 13%, and WordPress 6.9 included contributions from 230 first-time contributors and more than 340 enhancements and fixes.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Release Moment to Remember</h2>\n\n\n\n<p>This year’s keynote delivered something WordPress had never attempted before: a live on-stage release of <a href=\"https://wordpress.org/download/releases/6-9/\">WordPress 6.9</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-gene.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"WordPress 6.9 Gene album cover art\" class=\"wp-image-19511\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-gene-scaled.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-gene-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-gene-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-gene-scaled.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-gene-scaled.jpg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>Mary set the moment up earlier in the program, calling WordPress 6.9 “fast, polished, and built for collaboration.” She explained that it reflected a year of intentional iteration, improved workflows, and deeper cross-team participation.&nbsp;</p>\n\n\n\n<p>Matt took the stage with some of the release leads, the release button in hand. The room counted down, and then WordPress 6.9 shipped live, instantly updating millions of sites around the world. It was both a celebration and a testament to the reliability and trust the WordPress community has built into its release processes. Shipping a major version of WordPress in real time, on stage, without drama, is something the early contributors could hardly have imagined.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/release-leads.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"Photo of WordPress release leads pressing the button to release 6.9\" class=\"wp-image-19457\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/release-leads-scaled.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/release-leads-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/release-leads-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/release-leads-scaled.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/release-leads-scaled.jpg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>That reflection connected back to WordPress’s origin story. Matt talked about discovering the <a href=\"https://en.wikipedia.org/wiki/WordPress#History\">B2</a> forums, asking questions, and eventually reaching the point where he could answer someone else’s. That transition from learner to contributor remains at the heart of the project today. Two decades later, WordPress has grown from those early interactions into a platform that can ship a major release in front of the world, powered by thousands of contributors building together.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress and the Future of AI</h2>\n\n\n\n<p>As the keynote shifted toward the future, Matt acknowledged what has become an essential truth of the moment: it would be impossible to talk about the next chapter of WordPress without talking about AI. He reminded the audience that in 2022, long before ChatGPT entered global conversation, he encouraged the community to “learn AI deeply.” The speed of change since then, he said, has exceeded every expectation, and WordPress has been preparing for it in ways both visible and behind the scenes.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-AI.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"Timeline of AI: 2022 ChatGPT launches, 2023 GPT-4 and Claude launches, 2024 Multimodel and video generation, 2025 AI everywhere\" class=\"wp-image-19510\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-AI-scaled.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-AI-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-AI-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-AI-scaled.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-AI-scaled.jpg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>Matt introduced one of the most important architectural developments of the year: the Abilities API and the MCP adapter. The Abilities API defines what WordPress can do in a structured way that AI systems can interpret, while the MCP adapter exposes those abilities through a shared protocol. This means AI agents — whether built by individuals, companies, or larger platforms — can understand and interact with WordPress safely and predictably. Instead of relying on one-off integrations or brittle interfaces, WordPress now participates in a broader ecosystem of tools that can query its capabilities and perform tasks using a standard, governed approach.</p>\n\n\n\n<p>Matt then highlighted how developers are already using AI in their everyday work through tools like Cursor, Claude Code, and next-generation CLIs. These tools can explore entire codebases, generate documentation, produce tests, refactor large components, and even coordinate sequences of WP-CLI commands. For many developers, they expand what a single person can accomplish in an afternoon. They don’t eliminate the need for human judgment — they amplify it.</p>\n\n\n\n<p>With that foundation laid, Matt turned the audience’s attention to <a href=\"https://telex.automattic.ai/\">Telex</a>, the experimental environment designed to turn natural-language prompts into Gutenberg Blocks. Telex has already moved beyond experimentation and into real use. Matt showed examples from community creator Nick Hamze, who uses Telex to power micro-business tools that represent practical, revenue-generating workflows that previously required custom engineering.</p>\n\n\n\n<figure class=\"wp-block-video\"><video height=\"2160\" style=\"aspect-ratio: 3840 / 2160;\" width=\"3840\" controls src=\"https://wordpress.org/news/files/2025/12/Telex-demo-776.mp4\"></video></figure>\n\n\n\n<p>Matt then widened the lens to show what companies across the ecosystem are building with AI. Hostinger’s Kodee can generate a complete WordPress site from a single description. Elementor AI demonstrated similarly rapid creation inside its own editor, producing full sections and layouts in seconds. WordPress.com showcased how its AI tools help users draft, rewrite, and refine content while keeping language aligned with the site’s voice. Yoast demonstrated how AI can support SEO workflows by generating structured suggestions and improving readability. Together, these examples illustrated that AI is not arriving in one place — it is arriving everywhere.</p>\n\n\n\n<p>Experimental browsers can navigate WP Admin autonomously, performing tasks such as clicking buttons, opening menus, changing settings, and performing multi-step tasks without requiring any custom plugins or APIs. This raised a key question that Matt encouraged the community to consider: Which AI capabilities should live inside WordPress itself, and which should remain external, operating through the browser or operating system?</p>\n\n\n\n<p>Matt closed the section by discussing WordPress-specific AI benchmarks and evaluation suites. These shared tests will measure how well AI systems understand and execute WordPress tasks, from enabling plugins to navigating WP Admin to modifying content and settings. The goal is to create a foundation where future AI tools behave predictably and responsibly across the entire ecosystem, giving creators confidence that intelligent tools understand the platform deeply.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Global Community Growing Together</h2>\n\n\n\n<p>Mary then returned to the stage to celebrate the ecosystem that supports WordPress&#8217;s growth. Across continents, diverse groups of people have hosted WordPress events, training new contributors and welcoming newcomers into the project. WordCamp growth in 2025 reflected that: more than 81 WordCamps across 39 countries, powered by over 5,000 volunteers and attended by nearly 100,000 people, with sixteen more events still underway.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wordcamps.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"\" class=\"wp-image-19503\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wordcamps-scaled.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wordcamps-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wordcamps-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wordcamps-scaled.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wordcamps-scaled.jpg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>Education played a major role in this community expansion. Learn.WordPress.org served over 1.5 million learners this year, with clearer pathways into more structured programs like <a href=\"https://wordpress.org/education/campus-connect/\">Campus Connect</a> and <a href=\"https://wordpress.org/education/credits/\">WordPress Credits</a>. This bridging was deliberate. Many learners arrive through tutorials or workshops but need clearer guidance on how to deepen their skills. By reshaping navigation and improving wayfinding across WordPress.org, the project began closing that gap.</p>\n\n\n\n<p>She spotlighted <a href=\"https://make.wordpress.org/community/2025/09/29/wordpress-and-higher-education-an-alliance-that-transforms/\">Costa Rica’s Universidad Fidélitas</a>, where WordPress moved beyond extracurricular interest into formal academic integration. Long before signing an agreement with the WordPress Foundation, their students were hosting WordCamp San José, forming student clubs, and treating WordPress as a crucial part of digital literacy and professional development.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-photo.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"\" class=\"wp-image-19505\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-photo-scaled.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-photo-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-photo-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-photo-scaled.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-photo-scaled.jpg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><figcaption class=\"wp-element-caption\">Students of the WordPress Fidélitas Club</figcaption></figure>\n\n\n\n<p>Wapuu appeared across events as a familiar companion and a cultural thread running through contributor tools and community projects. Its presence was a reminder that creativity and playfulness are as essential to open source as documentation or code.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wapuu.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"Various Wapuu artwork examples\" class=\"wp-image-19506\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wapuu-scaled.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wapuu-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wapuu-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wapuu-scaled.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wapuu-scaled.jpg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>Matt highlighted the story of <a href=\"https://events.wordpress.org/managua/2025/wordpress-youth-day/\">Youth Day in Managua, Nicaragua</a>. Seventy-five young people spent a full day building their first WordPress sites. Sessions were taught by teenagers, for teenagers. They learned to pick themes, customize layouts, create contact forms, and publish content. Contribution often starts with a simple moment of confidence, and those early sparks can shape entire careers.</p>\n\n\n\n<figure class=\"wp-block-video\"><video height=\"2160\" style=\"aspect-ratio: 3840 / 2160;\" width=\"3840\" controls src=\"https://wordpress.org/news/files/2025/12/wapu-513.mp4\"></video></figure>\n\n\n\n<p>Together, these moments illustrated a project expanding not just in numbers, but in depth, diversity, and global reach. WordPress is growing because communities are finding their own ways to embrace it.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s New in WordPress 6.9</h2>\n\n\n\n<p>Joining virtually, WordPress Lead Architect, <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a>, shifted the keynote from vision to practice. Matías offered a detailed walkthrough of what makes WordPress 6.9 one of the most refined, collaborative, and forward-looking releases the project has shipped in years. He returned to the four familiar lenses of creation — writing, designing, building, and developing — and showed how each evolved in this release cycle.</p>\n\n\n\n<p>He began with notes in the Block Editor, one of the most anticipated features. Notes allow collaborators to comment directly on individual blocks in a post or page. When a note is selected, the surrounding content subtly fades, helping contributors stay focused on context. Because notes are built on WordPress’s native comment system, they integrate seamlessly with existing communication workflows, including email notifications. Matías highlighted that notes development exemplified collaboration at its best, with contributors from various companies working together to bring the feature to life.</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\" title=\"WordPress 6.9 Feature Demo\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/vkYulcN0lbc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p>From there, he turned to refinements across the writing and design experience. Editor interactions feel smoother and more consistent. Patterns behave more predictably. Spacing and typography controls are clearer, more organized, and more intuitive. Together these capabilioties make the experience of writing and designing inside WordPress calmer, more reliable, and more empowering.</p>\n\n\n\n<p>Block bindings now provide a more intuitive, visual way to connect blocks to dynamic data sources. Users can switch or remove bindings with a single click, and developers can register additional sources to support custom workflows. This work lays the foundation for a future where dynamic data flows more naturally through blocks, enabling site creators to build richer interfaces without writing code.</p>\n\n\n\n<p>On the developer front, Matías focused on three foundational upgrades that represent major steps forward in how WordPress will evolve over the coming years.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The first was the <strong>Abilities API</strong>, a unified registry that describes what WordPress can do — across PHP, REST endpoints, the command palette, and future AI-driven interactions.</li>\n\n\n\n<li>The <strong>HTML API</strong> introduces new ways of working with and modifying HTML server-side. The API ensures safer, more reliable handling, lowering the barrier for theme and block developers who work with dynamic or structured markup.</li>\n\n\n\n<li>The <strong>Interactivity API</strong> delivers smoother, faster interactions without requiring heavy JavaScript frameworks. Improved routing, better state management, and clearer conventions help developers create rich, modern interfaces without leaving the WordPress philosophy of simplicity and flexibility.</li>\n</ul>\n\n\n\n<p>After Matías wrapped his presentation, Matt stepped back in to highlight several developments that build on the foundations of 6.9 and strengthen the overall WordPress ecosystem. He pointed first to the <a href=\"https://wordpress.org/plugins/plugin-check/\">Plugin Check Plugin</a>, a tool designed to help developers align with current WordPress standards and catch common issues early, making plugins more reliable for users and easier to maintain over time. Matt then spoke about ongoing progress in <a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a>, noting improvements to the <a href=\"https://wordpress.org/plugins/wordpress-importer/\">WordPress importer</a> that make it easier for people to bring their content into WordPress without disruption or loss, an important step toward ensuring the open web remains portable and resilient. He also highlighted advances across the <a href=\"https://playground.wordpress.net/\">Playground</a> ecosystem, including <a href=\"https://developer.wordpress.com/studio/\">WordPress Studio</a>, the Playground CLI, and an expanding set of Blueprints. These allow developers and learners to spin up complete WordPress environments in seconds, test ideas, and experiment without servers or configuration. Matt closed this portion by emphasizing work on safer updates, which help WordPress avoid partial installs and ensure that updates complete smoothly even in less predictable hosting conditions, reinforcing WordPress’s commitment to stability as the platform continues to grow.</p>\n\n\n\n<p>Matt emphasized that WordPress 6.9 is not defined by any single headline feature, but by a broad spectrum of refinements across the entire experience. It is a release that deepens reliability, expands capability, and sets the stage for future innovation.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Insights from the AI Panel</h2>\n\n\n\n<p>The keynote transitioned into a live AI panel moderated by Mary Hubbard. The panel brought together four perspectives from across the ecosystem: <a href=\"https://profiles.wordpress.org/isotropic/\">James LePage</a> (Automattic), <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> (Google), and <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a> (Fueled, FKA 10up), and Matt Mullenweg. Their conversation touched on the philosophy, practice, and future of AI inside WordPress — not as a distant trend, but as an active part of the project’s evolution.</p>\n\n\n\n<p>A central theme was AI’s ability to amplify human creativity. James LePage put it plainly:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>It’s not that we’re going to just add sparkle buttons everywhere. We’re going to do some crazy stuff here — things we’re going to build into the way you interact with creating content, with expressing yourself digitally. We want to give you more power, more control, and make you more effective at creating.</p>\n</blockquote>\n\n\n\n<p>Jeff Paul echoed this sentiment, emphasizing that AI should make developers more productive by handling repetitive work and freeing them to focus on higher-level decisions. Felix Arntz expanded the idea further, describing how Google sees AI as a way to make the web more accessible and intuitive, especially for new creators who may not have formal technical training.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"572\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/panel.jpg?resize=1024%2C572&#038;ssl=1\" alt=\"\" class=\"wp-image-19462\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/panel-scaled.jpg?resize=1024%2C572&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/panel-scaled.jpg?resize=300%2C168&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/panel-scaled.jpg?resize=768%2C429&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/panel-scaled.jpg?resize=1536%2C858&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/panel-scaled.jpg?resize=2048%2C1144&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><figcaption class=\"wp-element-caption\">From left to right: Mary Hubbard, Matt Mullenweg, Jeff Paul, Felix Arntz, James LePage</figcaption></figure>\n\n\n\n<p>Looking ahead, the panelists predicted deeper contextual integrations, AI-assisted debugging and scaffolding for developers, and workflows where agents can take on sequences of tasks while remaining directed by human decisions. They also highlighted the importance of standards, shared protocols, and privacy-focused design as essential components of WordPress’s long-term approach.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>The next 20 years looks like WordPress remaining what it is today, which is the center of the open web.</p>\n</blockquote>\n\n\n\n<p>The panel closed on a forward-looking but steady note. AI is accelerating, but WordPress is designing its foundations with flexibility and values that endure. The tools may change, but the commitment to openness, agency, and creative freedom remains the compass.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Questions That Push Us Forward</h2>\n\n\n\n<p>Matt introduced the Q&amp;A as one of his favorite parts of State of the Word because it reveals what people are imagining, struggling with, or eager to build.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-QandA.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"Q&amp;A\" class=\"wp-image-19512\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-QandA-scaled.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-QandA-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-QandA-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-QandA-scaled.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-QandA-scaled.jpg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>The first question addressed the growing interconnectedness of today’s web. What happens, a participant asked, when a major provider like Cloudflare goes down? As tools and agents rely more heavily on external services, failures can cascade. Matt acknowledged that outages are increasingly visible, but also argued that each one strengthens the system.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>&#8220;Every failure, every edge case, everything that you never imagined is just another opportunity to find that new edge case,” he said. Resilience is not avoidance of failure, but the ability to grow stronger after it.</p>\n</blockquote>\n\n\n\n<p>Another question focused on the longevity of web content. With platforms shutting down or links breaking over time, how can creators ensure their work endures? Matt pointed to the Internet Archive as one of the great stabilizers of the open web. He highlighted a <a href=\"https://wordpress.org/plugins/internet-archive-wayback-machine-link-fixer/\">new plugin</a> that automatically scans posts and replaces dead links with archived versions, helping preserve the historical fabric of the web even as individual services come and go.</p>\n\n\n\n<p>The next question turned to real-time collaboration inside WordPress. A participant asked how co-editing fits into the future of WordPress and how these tools might help creators work more confidently. Matt talked about how collaboration tools can support people who are just starting their creative journeys — whether they are entrepreneurs, students, or first-time site builders. He described real-time editing as part of a broader vision of WordPress “just doing the work for you” in high-pressure or early-stage creative moments.</p>\n\n\n\n<p>The final question considered long-term decision-making. Matt noted that predicting what will change is difficult, but identifying what will remain the same is much easier. For WordPress, he said, the invariant is clear: people will always want agency, openness, and the ability to publish on their own terms. These values guide decisions not only in the present, but across decades of future evolution.</p>\n\n\n\n<h2 class=\"wp-block-heading\">TBPN Podcast Appearance</h2>\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\" title=\"&#x1f534; CODE RED &#x1f534;, Dell Donates Size, Bun Acquired, AWS CEO Joins, Tae Kim Tells All\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/eBQh57HuJzk?start=10036&#038;feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p>After the Q&amp;A, the keynote shifted gears with a live crossover segment featuring TBPN (the Technology Business Programming Network), a tech-focused podcast. The segment introduced a lively, unscripted energy into the room.</p>\n\n\n\n<p>The hosts kicked things off by asking Matt what the “word of the year” should be. He chose “freedom”, connecting it directly to the core philosophy of open source. He described open source licenses as a kind of “bill of rights for software,” giving users inalienable rights that no company can revoke. In a world increasingly shaped by software platforms and digital ecosystems, these freedoms form the heart of what keeps the web open and accessible.</p>\n\n\n\n<p>Conversation then moved to <a href=\"https://www.beeper.com/\">Beeper</a>, the multi-network messaging client. Asked whether Beeper aims to “tear down walled gardens,” Matt rejected that framing. Instead, he offered a more collaborative metaphor: bringing gardens together. Most people have friends and colleagues scattered across WhatsApp, Instagram, LinkedIn, Messenger, and SMS. Beeper doesn’t replace those apps — it brings messages together into a unified interface..</p>\n\n\n\n<p>The conversation eventually returned to publishing. Matt referenced the same principle he noted earlier: the importance of identifying what won’t change. For WordPress, he said, that means doubling down on freedom, agency, and the ability to publish without gatekeepers. Even as AI evolves, even as platforms shift, even as new tools emerge, these are the values that will guide the project forward.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Building the Web We Believe In</h2>\n\n\n\n<p>As the keynote drew to a close, Matt returned to a message that had threaded through every section of the evening. The future of WordPress is not arriving from outside forces — it is being crafted, questioned, tested, and expanded by the people who show up. Contributors, students, educators, community organizers, designers, developers, business owners, and first-time site builders all play a role in shaping the platform.</p>\n\n\n\n<p>He spoke about the opportunities ahead: new tools that expand what creators can build, collaborative features that make teamwork feel natural, and AI systems that enhance creativity rather than diminish it. Across continents, generations, and skill levels, people are discovering WordPress as a path to learning, empowerment, and expression.</p>\n\n\n\n<p>The values that brought the project this far remain the ones that will carry it forward: freedom, participation, learning, and community. These aren’t abstract principles. They are lived every day in the decisions contributors make, the ideas they pursue, and the care they bring to the work.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Future Events</h3>\n\n\n\n<p>If you’re feeling inspired to revisit past moments from the project’s annual address, the <a href=\"https://www.youtube.com/playlist?list=PL1pJFUVKQ7ES1piZxljCvMTJCYpVBnwYU\">State of the Word YouTube playlist</a> offers a look back at years of community milestones and product progress. The excitement continues into 2026, with major WordPress events already on the horizon: <a href=\"https://asia.wordcamp.org/2026/\">WordCamp Asia</a> in Mumbai, India,<a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe</a> in Kraków, Poland, and <a href=\"https://us.wordcamp.org/2026/\">WordCamp US</a> in Phoenix. We hope to see you there as the community continues building what comes next.</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:\"19447\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\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:24:\"WordPress 6.9 “Gene”\";s:7:\"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://wordpress.org/news/2025/12/gene/\";s: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 Dec 2025 20:12: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19398\";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:495:\"WordPress 6.9, code-named \"Gene,\" brings major upgrades to how teams collaborate and create. The Notes feature introduces block-level commenting to streamline reviewing and polishing content, navigating across the entire dashboard with the Command Palette is now faster for power users, and the new Abilities API provides a standardized way to open the door for AI-powered and automated workflows. Combined with all the performance and accessibility improvements, 6.9 is one to write home about.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:79664:\"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"535\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/Release-Edition-Featured-Image-6.9.png?resize=1024%2C535&#038;ssl=1\" alt=\"WordPress 6.9 Release Edition Featured Image\" class=\"wp-image-19404\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/Release-Edition-Featured-Image-6.9-scaled.png?resize=1024%2C535&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/Release-Edition-Featured-Image-6.9-scaled.png?resize=300%2C157&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/Release-Edition-Featured-Image-6.9-scaled.png?resize=768%2C401&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/Release-Edition-Featured-Image-6.9-scaled.png?resize=1536%2C802&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/12/Release-Edition-Featured-Image-6.9-scaled.png?resize=2048%2C1070&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>Each WordPress release celebrates an artist who has made an indelible mark on the world of music. WordPress 6.9, code-named “Gene,” honors the American Jazz pianist Gene Harris.&nbsp;</p>\n\n\n\n<p>A piano veteran, self taught at the age of six, Harris infused mainstream jazz with elements of soul, blues, and gospel, creating a warm, signature sound that is both elegant and iconic. Harris’ bluesy jazz lived at the intersection of worlds, weaving a rich landscape of texture and mood, with a thread of soulfulness that ignited listeners.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Welcome to WordPress 6.9</h2>\n\n\n\n<p>WordPress 6.9 brings major upgrades to how teams collaborate and create. The new Notes feature introduces block-level commenting when writing posts and pages that streamlines reviews, while the expanded Command Palette makes it faster for power users to navigate and operate across the entire dashboard. The new Abilities API provides a standardized, machine-readable permissions system that opens the door for next generation AI-powered and automated workflows. This release also delivers notable performance improvements for faster page loads and adds several practical new blocks alongside a more visual drag and drop to help creators build richer, more dynamic content.</p>\n\n\n\n<p><a href=\"https://wordpress.org/wordpress-6.9.zip\">Download WordPress 6.9 &#8220;Gene&#8221;</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Introducing Notes: Seamless, Block-Level Collaboration</h2>\n\n\n\n<p><strong>Collaborate Smarter</strong> : Leave Feedback Right Where You&#8217;re Working</p>\n\n\n\n<p>With notes attached directly to blocks in the post editor, your team can stay aligned, track changes, and turn feedback into action all in one place. Whether you&#8217;re working on copy or refining design in your posts or pages, collaboration happens seamlessly on the canvas itself.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1360\" height=\"840\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/post-notes.png?resize=1360%2C840&#038;ssl=1\" alt=\"View of people interacting with notes in a post.\" class=\"wp-image-19428\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/post-notes.png?w=1360&amp;ssl=1 1360w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-notes.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-notes.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-notes.png?resize=768%2C474&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Command Palette Throughout the Dashboard</h2>\n\n\n\n<p><strong>Your tools are always at hand.</strong></p>\n\n\n\n<p>Access the Command Palette from any part of the dashboard, whether you&#8217;re writing your latest post, deep in design in the Site Editor, or browsing your plugins. Everything you need, just a few keystrokes away.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1360\" height=\"840\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/post-command-palette.png?resize=1360%2C840&#038;ssl=1\" alt=\"Command palette showing the ability to navigate across different parts of the site, including templates, Settings, and all posts.\" class=\"wp-image-19430\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/post-command-palette.png?w=1360&amp;ssl=1 1360w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-command-palette.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-command-palette.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-command-palette.png?resize=768%2C474&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Fit text to container</h2>\n\n\n\n<p><strong>Content that adapts.</strong></p>\n\n\n\n<p>There&#8217;s a new typography option for text-based blocks that&#8217;s been added to the Paragraph and Heading blocks. This new option automatically adjusts font size to fill its container perfectly, making it ideal for banners, callouts, and standout moments in your design.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1360\" height=\"840\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/post-fit-text.png?resize=1360%2C840&#038;ssl=1\" alt=\"&quot;Novem&quot; text selected and stretching across the interface.\" class=\"wp-image-19431\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/post-fit-text.png?w=1360&amp;ssl=1 1360w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-fit-text.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-fit-text.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/post-fit-text.png?resize=768%2C474&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">The Abilities API</h2>\n\n\n\n<p><strong>Unlocking the next generation of site interactions.</strong></p>\n\n\n\n<p>WordPress 6.9 lays the groundwork for the future of automation with the unified Abilities API. By creating a standardized registry for site functionality, developers can now register, validate, and execute actions consistently across any context—from PHP and REST endpoints to AI agents—paving the way for smarter, more connected WordPress experiences.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/abilities-api.png?resize=1024%2C632&#038;ssl=1\" alt=\"Abstract view of circles around a plugin icon with sparkles, indicating AI functionality.\" class=\"wp-image-19432\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/12/abilities-api.png?resize=1024%2C632&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/12/abilities-api.png?resize=300%2C185&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/12/abilities-api.png?resize=768%2C474&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/12/abilities-api.png?w=1360&amp;ssl=1 1360w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Accessibility Improvements</h2>\n\n\n\n<p>More than 30 accessibility fixes sharpen the core WordPress experience. These updates improve screen reader announcements, hide unnecessary CSS-generated content from assistive tech, fix cursor placement issues, and make sure typing focus stays put even when users click an autocomplete suggestion.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Performance enhancements</h2>\n\n\n\n<p>WordPress 6.9 delivers significant frontend performance enhancements, optimizing the site loading experience for visitors. 6.9 boasts an improved LCP (Largest Contentful Paint) through on-demand block styles for classic themes, minifying block theme styles, and increasing the limit for inline styles &#8211; removing blockages to page rendering and clearing the rendering path by deprioritizing non-critical scripts. This release comes with many more performance boosts, including optimized database queries, refined caching, improved spawning of WP Cron, and a new template enhancement output buffer that opens the door for more future optimizations.</p>\n\n\n\n<h3 class=\"wp-block-heading\">And much more</h3>\n\n\n\n<p>For a comprehensive overview of all the new features and enhancements in WordPress 6.9, please visit the feature-showcase website.</p>\n\n\n\n<p><a href=\"https://wordpress.org/download/releases/6-9\">Check out What&#8217;s New</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress 6.9</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a> is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, <a href=\"https://learn.wordpress.org/social-learning/\">interactive workshops</a> for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.</p>\n\n\n\n<p>Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6.9\">WordPress 6.9 Release Notes</a> for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.</p>\n\n\n\n<p>Explore the <a href=\"https://make.wordpress.org/core/wordpress-6-9-field-guide/\">WordPress 6.9 Field Guide</a>. Learn about the changes in this release with detailed developer notes to help you build with WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The 6.9 release squad</h2>\n\n\n\n<p>Every release comes to you from a dedicated team of enthusiastic contributors who help keep things on track and moving smoothly. The team that has led 6.9 is a cross-functional group of contributors who are always ready to champion ideas, remove blockers, and resolve issues.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a></li>\n\n\n\n<li>Release Coordination: <a href=\"https://profiles.wordpress.org/akshayar/\">Akshaya Rane</a>, <a href=\"https://profiles.wordpress.org/amykamala/\">Amy Kamala</a></li>\n\n\n\n<li>Tech Leads: <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li>Design Lead: <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco Vera</a></li>\n\n\n\n<li>Triage Leads: <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a></li>\n\n\n\n<li>Test Leads: <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a>, <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you, contributors</h2>\n\n\n\n<p>The mission of WordPress is to <a href=\"https://wordpress.org/about/\">democratize publishing</a> and embody the <a href=\"https://opensource.org/osd-annotated\">freedoms that come with open source</a>. A global and diverse community of people collaborating to strengthen the software supports this effort.</p>\n\n\n\n<p>WordPress 6.9 reflects the tireless efforts and passion of more than 900+ contributors in countries all over the world. This release also welcomed over 279 first-time contributors!</p>\n\n\n\n<p>Their collaboration delivered more than 340 enhancements and fixes, ensuring a stable release for all &#8211; a testament to the power and capability of the WordPress open source community.</p>\n\n\n\n<p class=\"has-small-font-size\"><a href=\"https://profiles.wordpress.org/o-o/\">2046</a> · <a href=\"https://profiles.wordpress.org/aakashverma1/\">Aakash Verma</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/aarti1318/\">Aarti Chauhan</a> · <a href=\"https://profiles.wordpress.org/thehercules/\">Aashish Sharma</a> · <a href=\"https://profiles.wordpress.org/aatospaja/\">aatospaja</a> · <a href=\"https://profiles.wordpress.org/abduremon/\">Abdur Rahman Emon</a> · <a href=\"https://profiles.wordpress.org/hurayraiit/\">Abu Hurayra</a> · <a href=\"https://profiles.wordpress.org/kawauso/\">Adam Harley (Kawauso)</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zieliński</a> · <a href=\"https://profiles.wordpress.org/adityab98/\">Aditya Bansode</a> · <a href=\"https://profiles.wordpress.org/b1ink0/\">Aditya Dhade</a> · <a href=\"https://profiles.wordpress.org/adityashah2411/\">aditya shah</a> · <a href=\"https://profiles.wordpress.org/iamadisingh/\">Aditya Singh</a> · <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a> · <a href=\"https://profiles.wordpress.org/agulbra/\">agulbra</a> · <a href=\"https://profiles.wordpress.org/elazzabi/\">Ahmed</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a> · <a href=\"https://profiles.wordpress.org/ajaxstardust/\">ajaxStardust</a> · <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a> · <a href=\"https://profiles.wordpress.org/akanshusingh/\">Akanshu Singh</a> · <a href=\"https://profiles.wordpress.org/akeda/\">Akeda Bagus</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/wpfy/\">Akramul Hasan</a> · <a href=\"https://profiles.wordpress.org/akshat2802/\">Akshat Kakkad</a> · <a href=\"https://profiles.wordpress.org/akshaydhere/\">Akshay Dhere</a> · <a href=\"https://profiles.wordpress.org/akshayar/\">Akshaya Rane</a> · <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a> · <a href=\"https://profiles.wordpress.org/alejandrogonzalvo/\">alejandrogonzalvo</a> · <a href=\"https://profiles.wordpress.org/alexcu21/\">Alex Cuadra</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexclassroom/\">Alex Lion (阿力獅)</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alexandrebuffet/\">Alexandre Buffet</a> · <a href=\"https://profiles.wordpress.org/alexus450/\">Alexei Samarschi</a> · <a href=\"https://profiles.wordpress.org/alexius08/\">Alexis Pandaan</a> · <a href=\"https://profiles.wordpress.org/alordiel/\">alordiel</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro G&#243;mez</a> · <a href=\"https://profiles.wordpress.org/alh0319/\">Amber Hinds</a> · <a href=\"https://profiles.wordpress.org/amin7/\">Amin</a> · <a href=\"https://profiles.wordpress.org/theaminuldev/\">Aminul Islam</a> · <a href=\"https://profiles.wordpress.org/aialvi/\">Aminul Islam Alvi</a> · <a href=\"https://profiles.wordpress.org/amitbhosale/\">Amit Bhosale</a> · <a href=\"https://profiles.wordpress.org/amykamala/\">Amy Kamala</a> · <a href=\"https://profiles.wordpress.org/anatolbroder/\">Anatol Broder</a> · <a href=\"https://profiles.wordpress.org/anlino/\">Anders Nor&#233;n</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/awetz583/\">Andrea Roenning</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/andrewhoyer/\">Andrew Hoyer</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/mymothersdaughter/\">Anita C</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitkumarshah/\">Ankit Kumar Shah</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antoniosejas/\">Antonio Sejas</a> · <a href=\"https://profiles.wordpress.org/anujrathore24/\">Anuj Singh</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/apmeyer/\">apmeyer</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/fliespl/\">Arkadiusz Rzadkowolski</a> · <a href=\"https://profiles.wordpress.org/armandovias/\">Armando</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/artpi/\">Artur Piszek</a> · <a href=\"https://profiles.wordpress.org/artz91/\">ArtZ91</a> · <a href=\"https://profiles.wordpress.org/asafm7/\">asafm7</a> · <a href=\"https://profiles.wordpress.org/asdofindia/\">asdofindia</a> · <a href=\"https://profiles.wordpress.org/ashfame/\">Ashish Kumar (Ashfame)</a> · <a href=\"https://profiles.wordpress.org/akashdev/\">Ashraful Haque Akash</a> · <a href=\"https://profiles.wordpress.org/askapache/\">askapache</a> · <a href=\"https://profiles.wordpress.org/aslamdoctor/\">Aslam Doctor</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/aut0poietic/\">aut0poietic</a> · <a href=\"https://profiles.wordpress.org/aksl95/\">Axel DUCORON</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azharderaiya/\">Azhar Deraiya</a> · <a href=\"https://profiles.wordpress.org/beryldlg/\">B&#233;ryl de La Grandi&#232;re</a> · <a href=\"https://profiles.wordpress.org/bartnv/\">bartnv</a> · <a href=\"https://profiles.wordpress.org/bchecketts/\">bchecketts</a> · <a href=\"https://profiles.wordpress.org/beee/\">Beee</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benazeer/\">Benazeer</a> · <a href=\"https://profiles.wordpress.org/rainbowgeek/\">Benjamin Denis</a> · <a href=\"https://profiles.wordpress.org/benjamin_zekavica/\">Benjamin Zekavica</a> · <a href=\"https://profiles.wordpress.org/bvl/\">Benny</a> · <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a> · <a href=\"https://profiles.wordpress.org/kau-boy/\">Bernhard Kau</a> · <a href=\"https://profiles.wordpress.org/bernhard reiter/\">Bernhard Reiter</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">bernhard-reiter</a> · <a href=\"https://profiles.wordpress.org/bgermann/\">bgermann</a> · <a href=\"https://profiles.wordpress.org/bhattaganesh/\">bhattaganesh</a> · <a href=\"https://profiles.wordpress.org/bhaveshdesai/\">Bhavesh Desai</a> · <a href=\"https://profiles.wordpress.org/bidbmak/\">BiDbMAK</a> · <a href=\"https://profiles.wordpress.org/mbigul/\">Bigul Malayi</a> · <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/rainynewt/\">Bishal Shrestha</a> · <a href=\"https://profiles.wordpress.org/bobbyleenoblestudios/\">bobbyleenoblestudios</a> · <a href=\"https://profiles.wordpress.org/bogdanungureanu/\">BogdanUngureanu</a> · <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/burlesonbrad/\">Brad Griffin</a> · <a href=\"https://profiles.wordpress.org/bradley2083/\">brad hogan</a> · <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> · <a href=\"https://profiles.wordpress.org/bradshawtm/\">bradshawtm</a> · <a href=\"https://profiles.wordpress.org/bhubbard/\">Brandon Hubbard</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/heybran/\">Brandon Zhang</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/brhodes/\">brhodes</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">Brian Haas</a> · <a href=\"https://profiles.wordpress.org/brumack/\">brumack</a> · <a href=\"https://profiles.wordpress.org/bschneidewind/\">Bryan Schneidewind</a> · <a href=\"https://profiles.wordpress.org/bshuchter/\">bshuchter</a> · <a href=\"https://profiles.wordpress.org/burnuser/\">burnuser</a> · <a href=\"https://profiles.wordpress.org/byteninjaa0/\">byteninjaa0</a> · <a href=\"https://profiles.wordpress.org/cedche99/\">C&#233;dric Chevillard</a> · <a href=\"https://profiles.wordpress.org/callumbw95/\">Callum Bridgford-Whittick</a> · <a href=\"https://profiles.wordpress.org/snicco/\">Calvin Alkan</a> · <a href=\"https://profiles.wordpress.org/karl94/\">Carlo Cannas</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos G. P.</a> · <a href=\"https://profiles.wordpress.org/carlsteffen/\">CarlSteffen</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/corazondejaguar/\">Carolina Romo</a> · <a href=\"https://profiles.wordpress.org/ciobanucatalin/\">Catalin Ciobanu</a> · <a href=\"https://profiles.wordpress.org/catgofire/\">catgofire</a> · <a href=\"https://profiles.wordpress.org/cbirdsong/\">cbirdsong</a> · <a href=\"https://profiles.wordpress.org/ccharel/\">ccharel</a> · <a href=\"https://profiles.wordpress.org/cbutlerjr/\">Chad Butler</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/cherrygot/\">Chakrapani Gautam</a> · <a href=\"https://profiles.wordpress.org/chihsuan/\">Chi-Hsuan Huang</a> · <a href=\"https://profiles.wordpress.org/chillifish/\">Chillifish</a> · <a href=\"https://profiles.wordpress.org/chloed/\">ChloeD</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/czarate/\">Chris Zarate</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/chrisdotdotdot/\">chrisdotdotdot</a> · <a href=\"https://profiles.wordpress.org/chrismattix/\">chrismattix</a> · <a href=\"https://profiles.wordpress.org/christinecooper/\">christinecooper</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/nyiriland/\">Christy Nyiri</a> · <a href=\"https://profiles.wordpress.org/cikrimcin/\">cikrimcin</a> · <a href=\"https://profiles.wordpress.org/butterflymedia/\">Ciprian Popescu</a> · <a href=\"https://profiles.wordpress.org/chrisvendiadvertisingcom/\">cjhaas</a> · <a href=\"https://profiles.wordpress.org/ckoerner/\">ckoerner</a> · <a href=\"https://profiles.wordpress.org/claimableperch/\">claimableperch</a> · <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a> · <a href=\"https://profiles.wordpress.org/codebuddy/\">codebuddy</a> · <a href=\"https://profiles.wordpress.org/coleatkinson1/\">coleatkinson1</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/colind/\">ColinD</a> · <a href=\"https://profiles.wordpress.org/ogrecooper/\">Cooper Dalrymple</a> · <a href=\"https://profiles.wordpress.org/coralietixeront/\">Coralie Tixeront</a> · <a href=\"https://profiles.wordpress.org/salzano/\">Corey Salzano</a> · <a href=\"https://profiles.wordpress.org/coreyw/\">Corey Worrell</a> · <a href=\"https://profiles.wordpress.org/cornwell/\">Cornwell</a> · <a href=\"https://profiles.wordpress.org/cr0ybot/\">Cory Hughart</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/cucocreative/\">cucocreative</a> · <a href=\"https://profiles.wordpress.org/cwhitmore/\">Cullen Whitmore</a> · <a href=\"https://profiles.wordpress.org/cyrille37/\">Cyrille37</a> · <a href=\"https://profiles.wordpress.org/daanvandenbergh/\">Daan van den Bergh</a> · <a href=\"https://profiles.wordpress.org/acketon/\">Dakota Chichester</a> · <a href=\"https://profiles.wordpress.org/damchtlv/\">damchtlv</a> · <a href=\"https://profiles.wordpress.org/damir-webthemer/\">Damir</a> · <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/dancameron/\">Dan Cameron</a> · <a href=\"https://profiles.wordpress.org/danielpw/\">Dan Waldschmidt</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/danieliser/\">Daniel Iser</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/daniellacatus/\">daniellacatus</a> · <a href=\"https://profiles.wordpress.org/danielmorell/\">danielmorell</a> · <a href=\"https://profiles.wordpress.org/dscqbus/\">Danny Schmarsel</a> · <a href=\"https://profiles.wordpress.org/dannyreaktiv/\">dannyreaktiv</a> · <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/dryanpress/\">Dave Ryan</a> · <a href=\"https://profiles.wordpress.org/daveguitaruno/\">daveguitaruno</a> · <a href=\"https://profiles.wordpress.org/davilera/\">David Aguilera</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">David Arenas</a> · <a href=\"https://profiles.wordpress.org/dartiss/\">David Artiss</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/justlevine/\">David Levine</a> · <a href=\"https://profiles.wordpress.org/davidperez/\">David Perez</a> · <a href=\"https://profiles.wordpress.org/djivad/\">David Riviera</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidb/\">DavidB</a> · <a href=\"https://profiles.wordpress.org/dawidadach/\">dawidadach</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a> · <a href=\"https://profiles.wordpress.org/debarghyabanerjee/\">DEBARGHYA BANERJEE</a> · <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/realloc/\">Dennis Ploetner</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dennysdionigi/\">Dennys Dionigi</a> · <a href=\"https://profiles.wordpress.org/densinakum/\">Densi Nakum</a> · <a href=\"https://profiles.wordpress.org/derekherman/\">derekherman</a> · <a href=\"https://profiles.wordpress.org/devasheeshkaul/\">Devasheesh Kaul</a> · <a href=\"https://profiles.wordpress.org/dhananjaykuber/\">Dhananjay Kuber</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruval04/\">Dhruval Shah</a> · <a href=\"https://profiles.wordpress.org/dhruvang21/\">Dhruvang21</a> · <a href=\"https://profiles.wordpress.org/dhruvik18/\">Dhruvik Malaviya</a> · <a href=\"https://profiles.wordpress.org/diebombe/\">diebombe</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dilip2615/\">Dilip Modhavadiya</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/divinenephron/\">divinenephron</a> · <a href=\"https://profiles.wordpress.org/djcowan/\">dj.cowan</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/dominiquepijnenburg/\">dominiquepijnenburg</a> · <a href=\"https://profiles.wordpress.org/donalirl/\">donalirl</a> · <a href=\"https://profiles.wordpress.org/doughamlin/\">doughamlin</a> · <a href=\"https://profiles.wordpress.org/dougmelvin/\">DougMelvin</a> · <a href=\"https://profiles.wordpress.org/drawcard/\">drawcard</a> · <a href=\"https://profiles.wordpress.org/dretzlaff/\">dretzlaff</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/drivingralle/\">Drivingralle</a> · <a href=\"https://profiles.wordpress.org/dsawyers/\">dsawyers</a> · <a href=\"https://profiles.wordpress.org/dustintechsmith/\">dustintechsmith</a> · <a href=\"https://profiles.wordpress.org/eclev91/\">eclev91</a> · <a href=\"https://profiles.wordpress.org/eduwass/\">eduwass</a> · <a href=\"https://profiles.wordpress.org/ehti/\">Ehti</a> · <a href=\"https://profiles.wordpress.org/elialum/\">elialum</a> · <a href=\"https://profiles.wordpress.org/eliezerspp/\">Eliezer Pe&#241;a</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/elvismdev/\">Elvis Morales</a> · <a href=\"https://profiles.wordpress.org/emaildano/\">emaildano</a> · <a href=\"https://profiles.wordpress.org/codex-m/\">Emerson Maningo</a> · <a href=\"https://profiles.wordpress.org/emlebrun/\">Emilie LEBRUN</a> · <a href=\"https://profiles.wordpress.org/emranahmed/\">Emran Ahmed</a> · <a href=\"https://profiles.wordpress.org/enaanfarhan/\">Enaan Farhan</a> · <a href=\"https://profiles.wordpress.org/lopo/\">Enrico Battocchi</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> · <a href=\"https://profiles.wordpress.org/epeicher/\">epeicher</a> · <a href=\"https://profiles.wordpress.org/ekazda/\">Eric</a> · <a href=\"https://profiles.wordpress.org/ericlewis/\">Eric Andrew Lewis</a> · <a href=\"https://profiles.wordpress.org/ethitter/\">Erick Hitter</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a> · <a href=\"https://profiles.wordpress.org/ejoling/\">Erik Joling</a> · <a href=\"https://profiles.wordpress.org/im3dabasia1/\">Eshaan Dabasiya</a> · <a href=\"https://profiles.wordpress.org/ethanscorey/\">ethanscorey</a> · <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a> · <a href=\"https://profiles.wordpress.org/etobiesen/\">Even Tobiesen</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a> · <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> · <a href=\"https://profiles.wordpress.org/fakhriaz/\">fakhriaz</a> · <a href=\"https://profiles.wordpress.org/falgunihdesai/\">Falguni Desai</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/ffffelix/\">Felix Renicks</a> · <a href=\"https://profiles.wordpress.org/fellyph/\">Fellyph Cintra</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/frantorres/\">Francisco Torres</a> · <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco Vera</a> · <a href=\"https://profiles.wordpress.org/frogdesk/\">FrogDesk Strategy</a> · <a href=\"https://profiles.wordpress.org/takahashi_fumiki/\">Fumiki Takahashi</a> · <a href=\"https://profiles.wordpress.org/gaeldenysiak/\">Gael Denysiak</a> · <a href=\"https://profiles.wordpress.org/gajendrasingh/\">Gajendra Singh</a> · <a href=\"https://profiles.wordpress.org/ecgan/\">Gan Eng Chin</a> · <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/guddu1315/\">Gaurang Dabhi</a> · <a href=\"https://profiles.wordpress.org/gautam23/\">Gautam Mehta</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a> · <a href=\"https://profiles.wordpress.org/stoyanovgs/\">Georgi Stoyanov</a> · <a href=\"https://profiles.wordpress.org/gernberg/\">gernberg</a> · <a href=\"https://profiles.wordpress.org/giuliorubelli/\">giuliorubelli</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/ingeniumed/\">Gopal Krishnan</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a> · <a href=\"https://profiles.wordpress.org/guido07111975/\">Guido</a> · <a href=\"https://profiles.wordpress.org/wido/\">Guido Scialfa</a> · <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a> · <a href=\"https://profiles.wordpress.org/gulamdastgir04/\">Gulamdastgir Momin</a> · <a href=\"https://profiles.wordpress.org/adrock42/\">H. Adam Lenz</a> · <a href=\"https://profiles.wordpress.org/kabir93/\">H. Kabir</a> · <a href=\"https://profiles.wordpress.org/hanimbarek/\">hanimbarek</a> · <a href=\"https://profiles.wordpress.org/hanneslsm/\">hanneslsm</a> · <a href=\"https://profiles.wordpress.org/hage/\">Hans-Gerd Gerhards</a> · <a href=\"https://profiles.wordpress.org/hardik2221/\">Hardik Raval</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/harshalkadu/\">Harshal Kadu</a> · <a href=\"https://profiles.wordpress.org/harshbhonsle08/\">harshbhonsle08</a> · <a href=\"https://profiles.wordpress.org/harshdeepgill/\">harshdeepgill</a> · <a href=\"https://profiles.wordpress.org/haruncpi/\">Harun</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/hideishi/\">Hidenori ISHIKAWA</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/panchalhimani711/\">Himani Panchal</a> · <a href=\"https://profiles.wordpress.org/abcd95/\">Himanshu Pathak</a> · <a href=\"https://profiles.wordpress.org/hiroshisato/\">Hiroshi Sato</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/hitendra-chopda/\">Hitendra Chopda</a> · <a href=\"https://profiles.wordpress.org/hiteshtalpada/\">Hitesh Talpada</a> · <a href=\"https://profiles.wordpress.org/hozefasmile/\">Hozefa Saleh</a> · <a href=\"https://profiles.wordpress.org/hrohh/\">Hrohh</a> · <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a> · <a href=\"https://profiles.wordpress.org/hugosolar/\">hugosolar</a> · <a href=\"https://profiles.wordpress.org/humanify/\">humanify</a> · <a href=\"https://profiles.wordpress.org/huubl/\">huubl</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/ignatiusjeroe/\">ignatiusjeroe</a> · <a href=\"https://profiles.wordpress.org/igorradovanov/\">Igor Radovanov</a> · <a href=\"https://profiles.wordpress.org/ikriv/\">ikriv</a> · <a href=\"https://profiles.wordpress.org/imokweb/\">imokweb</a> · <a href=\"https://profiles.wordpress.org/imranhasanraaz/\">Imran</a> · <a href=\"https://profiles.wordpress.org/indirabiswas27/\">Indira Biswas</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/iqbal1hossain/\">Iqbal Hossain</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/ishikaatxecurify/\">Ishika Bansal</a> · <a href=\"https://profiles.wordpress.org/ivanottinger/\">Ivan Ottinger</a> · <a href=\"https://profiles.wordpress.org/jabe/\">Jabe</a> · <a href=\"https://profiles.wordpress.org/jacobcassidy/\">Jacob Cassidy</a> · <a href=\"https://profiles.wordpress.org/jagirbahesh/\">Jagir Bahesh</a> · <a href=\"https://profiles.wordpress.org/jaiminp/\">Jaimin Prajapati</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a> · <a href=\"https://profiles.wordpress.org/jakeparis/\">jakeparis</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/isotropic/\">James LePage</a> · <a href=\"https://profiles.wordpress.org/jhmonroe/\">James Monroe</a> · <a href=\"https://profiles.wordpress.org/q0rban/\">James Sansbury</a> · <a href=\"https://profiles.wordpress.org/jamestitus299/\">James Titus</a> · <a href=\"https://profiles.wordpress.org/codente/\">Jamie</a> · <a href=\"https://profiles.wordpress.org/jamieburchell/\">Jamie Burchell</a> · <a href=\"https://profiles.wordpress.org/jamesmarsland/\">Jamie Marsland</a> · <a href=\"https://profiles.wordpress.org/janthiel/\">janthiel</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/jarekmorawski/\">jarekmorawski</a> · <a href=\"https://profiles.wordpress.org/jasalt/\">Jarkko Saltiola</a> · <a href=\"https://profiles.wordpress.org/jason_the_adams/\">Jason Adams</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/jasonsa19/\">Jason Sauerwald</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jonmcpartland/\">Jay McPartland</a> · <a href=\"https://profiles.wordpress.org/shovan_jaya/\">Jayaram</a> · <a href=\"https://profiles.wordpress.org/jdahir0789/\">Jaydip</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/krokodok/\">Jeff Chi</a> · <a href=\"https://profiles.wordpress.org/jeffmatson/\">Jeff Matson</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a> · <a href=\"https://profiles.wordpress.org/cheffheid/\">Jeffrey de Wit</a> · <a href=\"https://profiles.wordpress.org/jeffr0/\">Jeffro</a> · <a href=\"https://profiles.wordpress.org/jeflopodev/\">jeflopo</a> · <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a> · <a href=\"https://profiles.wordpress.org/jeremiahbratton/\">Jeremiah Bratton</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jkmassel/\">Jeremy Massel</a> · <a href=\"https://profiles.wordpress.org/slimndap/\">Jeroen Schmit</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a> · <a href=\"https://profiles.wordpress.org/jesin/\">Jesin A</a> · <a href=\"https://profiles.wordpress.org/jessedyck/\">jessedyck</a> · <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">Jigar Bhanushali</a> · <a href=\"https://profiles.wordpress.org/jigar9998/\">Jigar Panchal</a> · <a href=\"https://profiles.wordpress.org/jikamens/\">jikamens</a> · <a href=\"https://profiles.wordpress.org/jnweaver/\">jnweaver</a> · <a href=\"https://profiles.wordpress.org/jojo256/\">Joan Namunina</a> · <a href=\"https://profiles.wordpress.org/jobata/\">JoAnne Obata</a> · <a href=\"https://profiles.wordpress.org/jochent/\">JochenT</a> · <a href=\"https://profiles.wordpress.org/jodamo5/\">jodamo5</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/timse201/\">Johannes J&#252;lg</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/brandbrilliance/\">John Brand</a> · <a href=\"https://profiles.wordpress.org/johnny5/\">John Godley</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/mindctrl/\">John Parris</a> · <a href=\"https://profiles.wordpress.org/johnregan3/\">John Regan</a> · <a href=\"https://profiles.wordpress.org/johnvieth/\">JohnVieth</a> · <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a> · <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a> · <a href=\"https://profiles.wordpress.org/jrchamp/\">Jonathan Champ</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/n2erjo00/\">Joni Erkkil&#228;</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josvelasco/\">Jos Velasco</a> · <a href=\"https://profiles.wordpress.org/josephscott/\">Joseph Scott</a> · <a href=\"https://profiles.wordpress.org/jhabdas/\">Josh Habdas</a> · <a href=\"https://profiles.wordpress.org/verygoode/\">Joshua Goode</a> · <a href=\"https://profiles.wordpress.org/jrmd/\">jrmd</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juampick/\">Juan Cook</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/juliengardair/\">juliengardair</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a> · <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> · <a href=\"https://profiles.wordpress.org/itsroy69/\">Jyotirmoy Roy</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a> · <a href=\"https://profiles.wordpress.org/kaitohm/\">Kaito Hanamori</a> · <a href=\"https://profiles.wordpress.org/kakomap/\">Kakoma</a> · <a href=\"https://profiles.wordpress.org/kalpeshh/\">Kalpesh</a> · <a href=\"https://profiles.wordpress.org/karinchristen/\">Karin Christen</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/karthickmurugan/\">Karthick Murugan</a> · <a href=\"https://profiles.wordpress.org/karthikeya01/\">Karthikeya Bethu</a> · <a href=\"https://profiles.wordpress.org/kasparsd/\">Kaspars</a> · <a href=\"https://profiles.wordpress.org/codebykat/\">Kat Hagan</a> · <a href=\"https://profiles.wordpress.org/katinthehatsite/\">Kateryna K. a11n</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn Presner</a> · <a href=\"https://profiles.wordpress.org/katrinadtl/\">Katrina Massey</a> · <a href=\"https://profiles.wordpress.org/kausaralm/\">Kausar Alam</a> · <a href=\"https://profiles.wordpress.org/khushdoms/\">Kaushik Domadiya</a> · <a href=\"https://profiles.wordpress.org/onlykawshar/\">Kawshar Ahmed</a> · <a href=\"https://profiles.wordpress.org/kaygee79/\">kaygee79</a> · <a href=\"https://profiles.wordpress.org/mt8biz/\">Kazuto Takeshita</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a> · <a href=\"https://profiles.wordpress.org/tinypixel/\">Kelly Mears</a> · <a href=\"https://profiles.wordpress.org/kgagne/\">Ken Gagne</a> · <a href=\"https://profiles.wordpress.org/kerfred/\">Kerfred</a> · <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a> · <a href=\"https://profiles.wordpress.org/kesselb/\">kesselb</a> · <a href=\"https://profiles.wordpress.org/kevinlearynet/\">Kevin Leary</a> · <a href=\"https://profiles.wordpress.org/khoipro/\">Khoi Pro</a> · <a href=\"https://profiles.wordpress.org/khushipatel15/\">Khushi Patel</a> · <a href=\"https://profiles.wordpress.org/killerbishop/\">killerbishop</a> · <a href=\"https://profiles.wordpress.org/iamkingsleyf/\">Kingsley Felix</a> · <a href=\"https://profiles.wordpress.org/kirasong/\">Kira Schroder</a> · <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a> · <a href=\"https://profiles.wordpress.org/kitchin/\">kitchin</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/kkmuffme/\">kkmuffme</a> · <a href=\"https://profiles.wordpress.org/kleor/\">Kleor</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a> · <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a> · <a href=\"https://profiles.wordpress.org/kpapazov/\">kpapazov</a> · <a href=\"https://profiles.wordpress.org/kprocyszyn/\">kprocyszyn</a> · <a href=\"https://profiles.wordpress.org/krishaamer/\">krishaamer</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/kshaner/\">kshaner</a> · <a href=\"https://profiles.wordpress.org/kub1x/\">kub1x</a> · <a href=\"https://profiles.wordpress.org/kubiq/\">kubiq</a> · <a href=\"https://profiles.wordpress.org/kunalpuri123/\">kunalpuri123</a> · <a href=\"https://profiles.wordpress.org/kushsharma/\">Kush Sharma</a> · <a href=\"https://profiles.wordpress.org/kush123/\">Kushagra Goyal</a> · <a href=\"https://profiles.wordpress.org/lgadzhev/\">Lachezar Gadzhev</a> · <a href=\"https://profiles.wordpress.org/lakrisgubben/\">lakrisgubben</a> · <a href=\"https://profiles.wordpress.org/lakshyajeet/\">Lakshyajeet Singh Goyal</a> · <a href=\"https://profiles.wordpress.org/lalitkumawat/\">Lalit Kumawat</a> · <a href=\"https://profiles.wordpress.org/lancewillett/\">Lance Willett</a> · <a href=\"https://profiles.wordpress.org/newyorkerlaura/\">Laura Byrne</a> · <a href=\"https://profiles.wordpress.org/laurisaarni/\">Lauri Saarni</a> · <a href=\"https://profiles.wordpress.org/ldanielgiuliani/\">ldanielgiuliani</a> · <a href=\"https://profiles.wordpress.org/leewillis77/\">Lee Willis</a> · <a href=\"https://profiles.wordpress.org/leedxw/\">leedxw</a> · <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leonidasmilossis/\">Leonidas Milosis</a> · <a href=\"https://profiles.wordpress.org/levinbaria/\">Levin Baria</a> · <a href=\"https://profiles.wordpress.org/lgseo/\">lgseo</a> · <a href=\"https://profiles.wordpress.org/lilgames/\">LilGames</a> · <a href=\"https://profiles.wordpress.org/liviopv/\">liviopv</a> · <a href=\"https://profiles.wordpress.org/logiclink/\">logiclink</a> · <a href=\"https://profiles.wordpress.org/logicrays/\">LogicRays Technologies</a> · <a href=\"https://profiles.wordpress.org/lordandy1984/\">lordandy1984</a> · <a href=\"https://profiles.wordpress.org/lovor/\">Lovro Hrust</a> · <a href=\"https://profiles.wordpress.org/lucasms/\">Lucas Martins</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi Teschio</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukasfritzedev/\">LukasFritzeDev</a> · <a href=\"https://profiles.wordpress.org/wpfed/\">Lukasz</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/maccyd/\">maccyd</a> · <a href=\"https://profiles.wordpress.org/madhavishah01/\">Madhavi Shah</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/maikuolan/\">Maikuolan</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/manhatthien98/\">manhatthien98</a> · <a href=\"https://profiles.wordpress.org/sirlouen/\">Manuel Camargo</a> · <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a> · <a href=\"https://profiles.wordpress.org/maorb/\">maorb</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/marc4/\">Marc Armengou</a> · <a href=\"https://profiles.wordpress.org/pagelab/\">Marcio Duarte</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/leadclown/\">Marcus</a> · <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a> · <a href=\"https://profiles.wordpress.org/marian1/\">marian1</a> · <a href=\"https://profiles.wordpress.org/plari/\">Marie</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/mariohamann/\">mariohamann</a> · <a href=\"https://profiles.wordpress.org/marius84/\">mariushosting</a> · <a href=\"https://profiles.wordpress.org/bozzmedia/\">Marty</a> · <a href=\"https://profiles.wordpress.org/martythornley/\">MartyThornley</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> · <a href=\"https://profiles.wordpress.org/4thhubbard/\">Mary Hubbard</a> · <a href=\"https://profiles.wordpress.org/mat-lipe/\">Mat Lipe</a> · <a href=\"https://profiles.wordpress.org/mathiscode/\">mathiscode</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mattyrob/\">Matt Robinson</a> · <a href=\"https://profiles.wordpress.org/mattwest/\">Matt West</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/pfefferle/\">Matthias Pfefferle</a> · <a href=\"https://profiles.wordpress.org/mattryanwalker/\">mattryanwalker</a> · <a href=\"https://profiles.wordpress.org/maxschmeling/\">Max Schmeling</a> · <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a> · <a href=\"https://profiles.wordpress.org/mayanktripathi32/\">Mayank Tripathi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/faithcoder/\">Md Abdullah Al Arif</a> · <a href=\"https://profiles.wordpress.org/mabfahad/\">Md Abdullah Al Fahad</a> · <a href=\"https://profiles.wordpress.org/hmbashar/\">Md Abul Bashar</a> · <a href=\"https://profiles.wordpress.org/ismail0071/\">MD ISMAIL</a> · <a href=\"https://profiles.wordpress.org/kawsar007/\">MD Kawsar Chowdhury</a> · <a href=\"https://profiles.wordpress.org/masummollaalhaz/\">Md Masum Molla Alhaz</a> · <a href=\"https://profiles.wordpress.org/obiplabon/\">Md Obidullah (obiPlabon)</a> · <a href=\"https://profiles.wordpress.org/wprashed/\">Md Rashed Hossain</a> · <a href=\"https://profiles.wordpress.org/sabbir20/\">Md Sabbir Hossain</a> · <a href=\"https://profiles.wordpress.org/najmulsaju/\">Md. Najmul Islam</a> · <a href=\"https://profiles.wordpress.org/mehedi_csit/\">Md.Mehedi Hasan</a> · <a href=\"https://profiles.wordpress.org/mdmoreau/\">mdmoreau</a> · <a href=\"https://profiles.wordpress.org/mdviralsampat/\">mdviralsampat</a> · <a href=\"https://profiles.wordpress.org/immeet94/\">Meet Makadia</a> · <a href=\"https://profiles.wordpress.org/megane9988/\">megane9988</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/mfgmicha/\">Micha Krapp</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/michaelkeck/\">Michael Keck</a> · <a href=\"https://profiles.wordpress.org/mnelson4/\">Michael Nelson</a> · <a href=\"https://profiles.wordpress.org/xmic/\">Michael Sumner</a> · <a href=\"https://profiles.wordpress.org/michaelreetz/\">michaelreetz</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/marktimemedia/\">Michelle Schulp Hunt</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/migueluy/\">Miguel Lezama</a> · <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a> · <a href=\"https://profiles.wordpress.org/mobius5150/\">Mike</a> · <a href=\"https://profiles.wordpress.org/mikefitzman/\">Mike Fitzpatrick</a> · <a href=\"https://profiles.wordpress.org/mikehansenme/\">Mike Hansen</a> · <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley</a> · <a href=\"https://profiles.wordpress.org/mmcalister/\">Mike McAlister</a> · <a href=\"https://profiles.wordpress.org/ritterml/\">Mike Ritter</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/firestar300/\">Milan Ricoul</a> · <a href=\"https://profiles.wordpress.org/multidots1896/\">Minal Diwan</a> · <a href=\"https://profiles.wordpress.org/369work/\">Miroku</a> · <a href=\"https://profiles.wordpress.org/missveronicatv/\">missveronica</a> · <a href=\"https://profiles.wordpress.org/presstoke/\">Mitchell Austin</a> · <a href=\"https://profiles.wordpress.org/mkeck/\">mkeck</a> · <a href=\"https://profiles.wordpress.org/mlaetitia1986/\">mlaetitia1986</a> · <a href=\"https://profiles.wordpress.org/mleray/\">mleray</a> · <a href=\"https://profiles.wordpress.org/mleraygp/\">mleraygp</a> · <a href=\"https://profiles.wordpress.org/mobarak/\">Mobarak Ali</a> · <a href=\"https://profiles.wordpress.org/opurockey/\">Mohammad Rockeybul Alam</a> · <a href=\"https://profiles.wordpress.org/mohkatz/\">Mohammed Kateregga</a> · <a href=\"https://profiles.wordpress.org/mosescursor/\">Moses Cursor Ssebunya</a> · <a href=\"https://profiles.wordpress.org/mrwweb/\">mrwweb</a> · <a href=\"https://profiles.wordpress.org/mtg169/\">mtg169</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/mukulsingh27/\">Mukul Singh</a> · <a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a> · <a href=\"https://profiles.wordpress.org/sedmikrasky/\">N&#250;ria Nadal i Rovira</a> · <a href=\"https://profiles.wordpress.org/vyasnaman/\">Naman Vyas</a> · <a href=\"https://profiles.wordpress.org/nanisamireddy/\">NANI SAMIREDDY</a> · <a href=\"https://profiles.wordpress.org/narenin/\">Narendra Sishodiya</a> · <a href=\"https://profiles.wordpress.org/nareshbheda/\">Naresh Bheda</a> · <a href=\"https://profiles.wordpress.org/muddassirnasim/\">Nasim Miah</a> · <a href=\"https://profiles.wordpress.org/n8finch/\">Nate Finch</a> · <a href=\"https://profiles.wordpress.org/naveendwivedi/\">Naveen Dwivedi</a> · <a href=\"https://profiles.wordpress.org/navi161/\">Navneet Kaur</a> · <a href=\"https://profiles.wordpress.org/bugnumber9/\">Nazar Hotsa</a> · <a href=\"https://profiles.wordpress.org/nazmul111/\">Nazmul Hosen</a> · <a href=\"https://profiles.wordpress.org/greatislander/\">Ned Zimmerman</a> · <a href=\"https://profiles.wordpress.org/nexbridge/\">nexbridge</a> · <a href=\"https://profiles.wordpress.org/nextendweb/\">Nextendweb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/nickchomey/\">Nick</a> · <a href=\"https://profiles.wordpress.org/nickstarkloff/\">Nick</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a> · <a href=\"https://profiles.wordpress.org/nickbrazilian/\">nickbrazilian</a> · <a href=\"https://profiles.wordpress.org/nickjbedford/\">nickjbedford</a> · <a href=\"https://profiles.wordpress.org/nickpagz/\">nickpagz</a> · <a href=\"https://profiles.wordpress.org/nickwilmot/\">nickwilmot</a> · <a href=\"https://profiles.wordpress.org/nico23/\">Nico</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a> · <a href=\"https://profiles.wordpress.org/nigelnelles/\">nigelnelles</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/smushytaco/\">Nikan Radan</a> · <a href=\"https://profiles.wordpress.org/nikunj8866/\">Nikunj Hatkar</a> · <a href=\"https://profiles.wordpress.org/nimeshatxecurify/\">Nimesh</a> · <a href=\"https://profiles.wordpress.org/ninomiho/\">Nino Mihovilic</a> · <a href=\"https://profiles.wordpress.org/ninos-ego/\">Ninos</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/othernoel/\">Noel Santos</a> · <a href=\"https://profiles.wordpress.org/noruzzaman/\">Noruzzaman</a> · <a href=\"https://profiles.wordpress.org/nosilver4u/\">nosilver4u</a> · <a href=\"https://profiles.wordpress.org/oceantober/\">oceantober</a> · <a href=\"https://profiles.wordpress.org/oferlaor/\">oferlaor</a> · <a href=\"https://profiles.wordpress.org/okat/\">okat</a> · <a href=\"https://profiles.wordpress.org/yasunocco/\">Okawa Yasuno</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a> · <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a> · <a href=\"https://profiles.wordpress.org/gabertronic/\">Ophelia Rose</a> · <a href=\"https://profiles.wordpress.org/optimizingmatters/\">Optimizing Matters</a> · <a href=\"https://profiles.wordpress.org/owi/\">owi</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a> · <a href=\"https://profiles.wordpress.org/palak678/\">Palak Patel</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/parinpanjari/\">Parin Panjari</a> · <a href=\"https://profiles.wordpress.org/parthvataliya/\">Parth vataliya</a> · <a href=\"https://profiles.wordpress.org/techpartho/\">Partho Hore</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pateljaymin/\">Patel Jaymin</a> · <a href=\"https://profiles.wordpress.org/patricia70/\">Patricia BT</a> · <a href=\"https://profiles.wordpress.org/lumiblog/\">Patrick Lumumba</a> · <a href=\"https://profiles.wordpress.org/patpiwo/\">Patrick Piwowarczyk</a> · <a href=\"https://profiles.wordpress.org/pryley/\">Paul</a> · <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulbonneau/\">Paul Bonneau</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/paulstanos/\">paulstanos</a> · <a href=\"https://profiles.wordpress.org/pcarvalho/\">pcarvalho</a> · <a href=\"https://profiles.wordpress.org/pedrofigueroa1989/\">Pedro Figueroa</a> · <a href=\"https://profiles.wordpress.org/peroks/\">Per Egil Roksvaag</a> · <a href=\"https://profiles.wordpress.org/peteringersoll/\">Peter Ingersoll</a> · <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a> · <a href=\"https://profiles.wordpress.org/philipjohn/\">Philip John</a> · <a href=\"https://profiles.wordpress.org/philsola/\">Philip Sola</a> · <a href=\"https://profiles.wordpress.org/tyrannous/\">Philipp Bammes</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/piskvorky/\">piskvorky</a> · <a href=\"https://profiles.wordpress.org/poojabhimani/\">Pooja Bhimani</a> · <a href=\"https://profiles.wordpress.org/poojapadamad/\">poojapadamad</a> · <a href=\"https://profiles.wordpress.org/porg/\">porg</a> · <a href=\"https://profiles.wordpress.org/prab18hat/\">prab18hat</a> · <a href=\"https://profiles.wordpress.org/praful2111/\">Praful Patel</a> · <a href=\"https://profiles.wordpress.org/pranjalpratapsingh/\">Pranjal Pratap Singh</a> · <a href=\"https://profiles.wordpress.org/prasadkarmalkar/\">Prasad Karmalkar</a> · <a href=\"https://profiles.wordpress.org/prasadgupte/\">prasadgupte</a> · <a href=\"https://profiles.wordpress.org/pmbaldha/\">Prashant Baldha</a> · <a href=\"https://profiles.wordpress.org/pratiklondhe/\">Pratik Londhe</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/prettyboymp/\">prettyboymp</a> · <a href=\"https://profiles.wordpress.org/puggan/\">puggan</a> · <a href=\"https://profiles.wordpress.org/quentinr64600/\">quentinr64600</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/rafiq91/\">Rafiqul Islam</a> · <a href=\"https://profiles.wordpress.org/ralucastn/\">Raluca</a> · <a href=\"https://profiles.wordpress.org/superpoincare/\">Ramanan</a> · <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/rcorrales/\">Ramon Corrales</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/ravichudasama01/\">Ravi Chudasama</a> · <a href=\"https://profiles.wordpress.org/ravigadhiyawp/\">Ravi Gadhiya</a> · <a href=\"https://profiles.wordpress.org/rcrdortiz/\">rcrdortiz</a> · <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> · <a href=\"https://profiles.wordpress.org/rejaulalomkhan/\">Rejaul Alom Khan</a> · <a href=\"https://profiles.wordpress.org/tabrisrp/\">Remy Perona</a> · <a href=\"https://profiles.wordpress.org/espellcaste/\">Renato Alves</a> · <a href=\"https://profiles.wordpress.org/renishsurani/\">renishsurani</a> · <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a> · <a href=\"https://profiles.wordpress.org/rezwanshiblu1952/\">Rezwan Shiblu</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/riadev/\">riadev</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/rockfire/\">Richard Korthuis</a> · <a href=\"https://profiles.wordpress.org/riddhidave/\">Riddhi Dave</a> · <a href=\"https://profiles.wordpress.org/rinatkhaziev/\">Rinat</a> · <a href=\"https://profiles.wordpress.org/rinkalpagdar/\">Rinkal Pagdar</a> · <a href=\"https://profiles.wordpress.org/rishabhwp/\">Rishabh Gupta</a> · <a href=\"https://profiles.wordpress.org/rishavdutta/\">Rishav Dutta</a> · <a href=\"https://profiles.wordpress.org/rishit30g/\">Rishit Gupta</a> · <a href=\"https://profiles.wordpress.org/ristojovanovic/\">Risto Jovanovic</a> · <a href=\"https://profiles.wordpress.org/devrito/\">Ritoban</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/miqrogroove/\">Robert Chapin</a> · <a href=\"https://profiles.wordpress.org/robertghetau/\">Robert Ghetau</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robmcclel/\">Robmcclel</a> · <a href=\"https://profiles.wordpress.org/rodrigosprimo/\">Rodrigo Primo</a> · <a href=\"https://profiles.wordpress.org/roelof/\">roelof</a> · <a href=\"https://profiles.wordpress.org/rollybueno/\">Rolly Bueno</a> · <a href=\"https://profiles.wordpress.org/ronak44/\">Ronak prajapati</a> · <a href=\"https://profiles.wordpress.org/room34/\">room34</a> · <a href=\"https://profiles.wordpress.org/costasovo/\">Rostislav Woln&#253;</a> · <a href=\"https://profiles.wordpress.org/rotemg/\">Rotem Gelbart</a> · <a href=\"https://profiles.wordpress.org/rayhatron/\">Rufaro Madamombe</a> · <a href=\"https://profiles.wordpress.org/rutvikbhambhi2004/\">Rutvik Bhambhi</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/skierpage/\">S Page</a> · <a href=\"https://profiles.wordpress.org/soean/\">S&#246;ren W&#252;nsch</a> · <a href=\"https://profiles.wordpress.org/sabbir1991/\">Sabbir Ahmed</a> · <a href=\"https://profiles.wordpress.org/devsabbirahmed/\">Sabbir Sam</a> · <a href=\"https://profiles.wordpress.org/sachinrajcp123/\">SACHINRAJ CP</a> · <a href=\"https://profiles.wordpress.org/sahiljadhav1617/\">Sahil Jadhav</a> · <a href=\"https://profiles.wordpress.org/sainathpoojary/\">Sainath Poojary</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/sakibmoon/\">sakibmoon</a> · <a href=\"https://profiles.wordpress.org/samueljseay/\">Sam</a> · <a href=\"https://profiles.wordpress.org/sam_a/\">sam_a</a> · <a href=\"https://profiles.wordpress.org/samirmalpande/\">Samir Malpande</a> · <a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a> · <a href=\"https://profiles.wordpress.org/sjapaget/\">Samuel Paget</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/sandeepdahiya/\">Sandeep Dahiya</a> · <a href=\"https://profiles.wordpress.org/sandipsinh007/\">Sandip Sinh</a> · <a href=\"https://profiles.wordpress.org/ourvalley/\">Sandy McFadden</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/tinkerbelly/\">sarah semark</a> · <a href=\"https://profiles.wordpress.org/sarthaknagoshe2002/\">Sarthak Nagoshe</a> · <a href=\"https://profiles.wordpress.org/satishprajapati/\">Satish Prajapati</a> · <a href=\"https://profiles.wordpress.org/saurabhdhariwal/\">saurabh.dhariwal</a> · <a href=\"https://profiles.wordpress.org/saxonafletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/scholdstrom/\">scholdstrom</a> · <a href=\"https://profiles.wordpress.org/swb1192/\">Scott Buscemi</a> · <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a> · <a href=\"https://profiles.wordpress.org/seifradwane/\">Seif Radwane</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/smrubenstein/\">Seth Rubenstein</a> · <a href=\"https://profiles.wordpress.org/shsajalchowdhury/\">SH Sajal Chowdhury</a> · <a href=\"https://profiles.wordpress.org/shadialaghbari/\">Shadi G شادي جـ</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/shanemuir/\">Shane Muirhead</a> · <a href=\"https://profiles.wordpress.org/iamshashank/\">Shashank Jain</a> · <a href=\"https://profiles.wordpress.org/shekh0109/\">Shashank Shekhar</a> · <a href=\"https://profiles.wordpress.org/sajib1223/\">Shazzad Hossain Khan</a> · <a href=\"https://profiles.wordpress.org/designsimply/\">Sheri Grey</a> · <a href=\"https://profiles.wordpress.org/shiponkarmakar/\">Shipon Karmakar</a> · <a href=\"https://profiles.wordpress.org/shreya0shrivastava/\">Shreya Shrivastava</a> · <a href=\"https://profiles.wordpress.org/iamshubhamsp/\">Shubham Patil</a> · <a href=\"https://profiles.wordpress.org/shyamgadde/\">Shyamsundar Gadde</a> · <a href=\"https://profiles.wordpress.org/sidharthpandita/\">sidharthpandita</a> · <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a> · <a href=\"https://profiles.wordpress.org/shilpaashokan94/\">Silpa TA</a> · <a href=\"https://profiles.wordpress.org/simonefontana/\">simonefontana</a> · <a href=\"https://profiles.wordpress.org/slaffik/\">Slava Abakumov</a> · <a href=\"https://profiles.wordpress.org/smerriman/\">smerriman</a> · <a href=\"https://profiles.wordpress.org/snehapatil02/\">Sneha Patil</a> · <a href=\"https://profiles.wordpress.org/maia12345/\">Sophie Dimitrov</a> · <a href=\"https://profiles.wordpress.org/sourabhjain/\">Sourabh Jain</a> · <a href=\"https://profiles.wordpress.org/sourav08/\">Sourav Pahwa</a> · <a href=\"https://profiles.wordpress.org/soyebsalar01/\">Soyeb Salar</a> · <a href=\"https://profiles.wordpress.org/spenserhale/\">Spenser Hale</a> · <a href=\"https://profiles.wordpress.org/spstrap/\">spstrap</a> · <a href=\"https://profiles.wordpress.org/srikat/\">Sridhar Katakam</a> · <a href=\"https://profiles.wordpress.org/stankea/\">stankea</a> · <a href=\"https://profiles.wordpress.org/metodiew/\">Stanko Metodiev</a> · <a href=\"https://profiles.wordpress.org/staurand/\">staurand</a> · <a href=\"https://profiles.wordpress.org/hubersen/\">Stefan Pasch</a> · <a href=\"https://profiles.wordpress.org/stefanvelthuys/\">Stefan Velthuys</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/stephenharris/\">Stephen Harris</a> · <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a> · <a href=\"https://profiles.wordpress.org/strarsis/\">strarsis</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sudipatel007/\">Sudip Dadhaniya</a> · <a href=\"https://profiles.wordpress.org/sujansarkar/\">Sujan Sarkar</a> · <a href=\"https://profiles.wordpress.org/sukhendu2002/\">Sukhendu Sekhar Guria</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sunil25393/\">SunilPrajapati</a> · <a href=\"https://profiles.wordpress.org/sunnykasera/\">sunnykasera</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/supernovia/\">supernovia</a> · <a href=\"https://profiles.wordpress.org/suzukube/\">SuzuKube</a> · <a href=\"https://profiles.wordpress.org/svedish/\">svedish</a> · <a href=\"https://profiles.wordpress.org/lordspace/\">Svetoslav Marinov</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/syhussaini/\">syhussaini</a> · <a href=\"https://profiles.wordpress.org/schwipps/\">T4ng</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/iamtakashi/\">Takashi Irie</a> · <a href=\"https://profiles.wordpress.org/takuword/\">Takuro</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tatof/\">tatof</a> · <a href=\"https://profiles.wordpress.org/tecnogaming/\">tecnogaming</a> · <a href=\"https://profiles.wordpress.org/mecaota/\">Tetsuro Higuchi</a> · <a href=\"https://profiles.wordpress.org/tharsheblows/\">tharsheblows</a> · <a href=\"https://profiles.wordpress.org/thelmachido/\">thelmachido a11n</a> · <a href=\"https://profiles.wordpress.org/tsquez/\">ThemeAWESOME</a> · <a href=\"https://profiles.wordpress.org/themiked/\">theMikeD</a> · <a href=\"https://profiles.wordpress.org/kraftner/\">Thomas Kr&#228;ftner</a> · <a href=\"https://profiles.wordpress.org/tfrommen/\">Thorsten Frommen</a> · <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Kr&#252;ss</a> · <a href=\"https://profiles.wordpress.org/timhavinga/\">Tim Havinga</a> · <a href=\"https://profiles.wordpress.org/dontfeedthecode/\">Tim Sheehan</a> · <a href=\"https://profiles.wordpress.org/timotijhof/\">Timo Tijhof</a> · <a href=\"https://profiles.wordpress.org/spaceshipone/\">Timoth&#233;e Brosille</a> · <a href=\"https://profiles.wordpress.org/timotheemoulin/\">Timoth&#233;e Moulin</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tjarrett/\">TJarrett</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">Tobias B&#228;thge</a> · <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn &#8220;Tobi&#8221; Fjellner)</a> · <a href=\"https://profiles.wordpress.org/tomdevisser/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/wpsmith/\">Travis Smith</a> · <a href=\"https://profiles.wordpress.org/traxus/\">traxus</a> · <a href=\"https://profiles.wordpress.org/sllimrovert/\">Trevor Mills</a> · <a href=\"https://profiles.wordpress.org/tristanleboss/\">tristanleboss</a> · <a href=\"https://profiles.wordpress.org/areziaal/\">Troy Chaplin</a> · <a href=\"https://profiles.wordpress.org/truptikanzariya/\">Trupti Kanzariya</a> · <a href=\"https://profiles.wordpress.org/tsteel/\">tsteel</a> · <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a> · <a href=\"https://profiles.wordpress.org/tusharbharti/\">Tushar Bharti</a> · <a href=\"https://profiles.wordpress.org/tusharaddweb/\">Tushar Patel</a> · <a href=\"https://profiles.wordpress.org/tussendoor/\">Tussendoor B.V.</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umeshnevase/\">Umesh Nevase</a> · <a href=\"https://profiles.wordpress.org/umeshsinghin/\">Umesh Singh</a> · <a href=\"https://profiles.wordpress.org/unsalkorkmaz/\">Unsal Korkmaz</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">upadalavipul</a> · <a href=\"https://profiles.wordpress.org/utsavladani/\">Utsav Ladani</a> · <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a> · <a href=\"https://profiles.wordpress.org/valentingrenier/\">Valentin Grenier</a> · <a href=\"https://profiles.wordpress.org/tsimshatsui/\">Vape tsimshatsui</a> · <a href=\"https://profiles.wordpress.org/vbbp/\">vbbp</a> · <a href=\"https://profiles.wordpress.org/sheldorofazeroth/\">Vedansh Mishra</a> · <a href=\"https://profiles.wordpress.org/vevas/\">Vegard S.</a> · <a href=\"https://profiles.wordpress.org/vgnavada/\">vgnavada</a> · <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a> · <a href=\"https://profiles.wordpress.org/vidugupta/\">vidugupta</a> · <a href=\"https://profiles.wordpress.org/vijendrajat/\">Vijendra Jat</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vineet2003/\">Vinit</a> · <a href=\"https://profiles.wordpress.org/ghorivipul97/\">Vipul Ghori</a> · <a href=\"https://profiles.wordpress.org/vipulgupta003/\">Vipul Gupta</a> · <a href=\"https://profiles.wordpress.org/vipulpatil/\">Vipul Patil</a> · <a href=\"https://profiles.wordpress.org/vishitshah/\">Vishit Shah</a> · <a href=\"https://profiles.wordpress.org/vladimiraus/\">vladimiraus</a> · <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a> · <a href=\"https://profiles.wordpress.org/vrishabhsk/\">Vrishabh Jasani</a> · <a href=\"https://profiles.wordpress.org/walterebert/\">Walter Ebert</a> · <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a> · <a href=\"https://profiles.wordpress.org/websupporter/\">websupporter</a> · <a href=\"https://profiles.wordpress.org/webwrotter/\">webwrotter</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/widhy980/\">widhy980</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/wplmillet/\">wplmillet</a> · <a href=\"https://profiles.wordpress.org/xate/\">xate</a> · <a href=\"https://profiles.wordpress.org/xavilc/\">xavilc</a> · <a href=\"https://profiles.wordpress.org/xerpa43/\">xerpa43</a> · <a href=\"https://profiles.wordpress.org/xipasduarte/\">xipasduarte</a> · <a href=\"https://profiles.wordpress.org/yagniksangani/\">Yagnik Sangani</a> · <a href=\"https://profiles.wordpress.org/yashyadav247/\">Yash</a> · <a href=\"https://profiles.wordpress.org/getsyash/\">Yash B</a> · <a href=\"https://profiles.wordpress.org/yashjawale/\">Yash Jawale</a> · <a href=\"https://profiles.wordpress.org/yogeshbhutkar/\">Yogesh Bhutkar</a> · <a href=\"https://profiles.wordpress.org/yogieanamcara/\">YogieAnamCara</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> · <a href=\"https://profiles.wordpress.org/zeelthakkar/\">Zeel Thakkar</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a> · <a href=\"https://profiles.wordpress.org/lstraczynski/\">Łukasz Strączyński</a> · <a href=\"https://profiles.wordpress.org/haozi/\">耗子</a></p>\n\n\n\n<p>More than <a href=\"https://translate.wordpress.org/stats/\">71 locales have fully translated</a> WordPress 6.9 into their language. Community translators are working hard to ensure more translations are on their way. Thank you to everyone who helps make WordPress available in 200+ languages.</p>\n\n\n\n<p>Last but not least, thanks to the volunteers who contribute to the <a href=\"https://wordpress.org/support/forums/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Get involved</strong></h2>\n\n\n\n<p>Participation in WordPress goes far beyond coding. And learning more and getting involved is easy.&nbsp; Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and use <a href=\"https://make.wordpress.org/contribute/\">this interactive tool</a> to help you decide which is right for you.</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:\"19398\";s: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:75:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.9 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Nov 2025 15:33:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s: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:3;a:5:{s:4:\"data\";s:3:\"6.9\";s: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:\"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:5;a:5:{s:4:\"data\";s:18:\"release candidates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19373\";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:366:\"The third Release Candidate (“RC3”) for WordPress 6.9 is ready for download and testing! This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended that you evaluate RC3 on a test server and site. Reaching this phase [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Amy Kamala\";s: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:8039:\"\n<p>The third Release Candidate (“RC3”) for WordPress 6.9 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. <strong>Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, it’s recommended that you evaluate RC3 on a test server and site.</p>\n\n\n\n<p>Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.9 is the highest quality possible.</p>\n\n\n\n<p>You can test WordPress 6.9 RC3 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"></a><a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-6.9-beta2.zip\"></a><a href=\"https://wordpress.org/wordpress-6.9-RC3.zip\">RC3 version (zip)</a>. and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command: <br><code>wp core update --version=6.9-RC3</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href=\"https://playground.wordpress.net/?php=8.0&amp;wp=beta&amp;networking=no&amp;language=&amp;multisite=no&amp;random=y4q1rn85xn\">6.9 WordPress Playground instance</a> to test the software directly in your browser.&nbsp; No setup is required – just click and go!&nbsp;</td></tr></tbody></table></figure>\n\n\n\n<p>The scheduled final release date for WordPress 6.9 is <strong>December 2, 2025</strong>. The full <a href=\"https://make.wordpress.org/core/6-9/\">release schedule can be found here</a>. Your help testing RC versions is vital to making this release as stable and powerful as possible.</p>\n\n\n\n<p>Please continue checking the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-9/\">6.9-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 6.9 RC3?</h2>\n\n\n\n<p>Want to look deeper into the details and technical notes for this release? Take a look at the <a href=\"https://make.wordpress.org/core/2025/11/25/wordpress-6-9-field-guide\">WordPress 6.9 Field Guide</a>. For technical information related to issues addressed since <a href=\"https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-2\">RC2</a>, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.9?since=2025-11-18&amp;until=2025-11-25\">Gutenberg commits for 6.9</a> since November 18</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=11%2F18%2F2025..11%2F24%2F2025&amp;milestone=6.9&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=changetime&amp;col=type&amp;order=id\">Closed WordPress Core Trac tickets</a> since November 18</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can get involved with the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is crucial to the development of any software. It’s also a meaningful way for anyone to contribute.&nbsp;</p>\n\n\n\n<p>Your help testing the WordPress 6.9 RC3 prerelease is key to ensuring that the final release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. This <a href=\"https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/\">detailed guide</a> will walk you through testing features in WordPress 6.9. For those new to testing, follow <a href=\"https://make.wordpress.org/test/handbook/get-setup-for-testing/\">this general testing guide</a> for more details on getting set up.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta/RC area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general?&nbsp; Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\"></a><a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack</a>..</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.</p>\n\n\n\n<p>Thanks for continuing to test your themes and plugins with the WordPress 6.9 prereleases. If you haven’t yet, please conclude your testing and update the <em>“Tested up to”</em> version in your theme and plugin <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">readme files</a> to <code>6.9</code>.</p>\n\n\n\n<p>If you find compatibility issues, please post detailed information in the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Test on your hosting platforms</h3>\n\n\n\n<p>Web hosts provide vital infrastructure for supporting WordPress and its users. Testing on hosting systems helps inform the development process while ensuring that WordPress and hosting platforms are fully compatible, free of errors, optimized for the best possible user experience, and that updates roll out to customer sites without issue.</p>\n\n\n\n<p>Want to test WordPress on your hosting system? <a href=\"https://make.wordpress.org/hosting/test-results-getting-started/\">Get started with configuring distributed hosting tests here</a>.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Русский? 日本語? हिन्दी? বাংলা? मराठी? ಕನ್ನಡ?&nbsp;You can <a href=\"https://translate.wordpress.org/projects/wp/dev/\">help translate WordPress into more than 100 languages</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">An RC3 haiku</h2>\n\n\n\n<p><em>Some folks make money,</em></p>\n\n\n\n<p><em>some folks make time to travel,</em></p>\n\n\n\n<p><em>and we Make WordPress.</em></p>\n\n\n\n<p class=\"has-text-align-right\"><em>Props to </em><a href=\'https://profiles.wordpress.org/akshayar/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>akshayar</a>, <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a>, <a href=\'https://profiles.wordpress.org/westonruter/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>westonruter</a>, <a href=\'https://profiles.wordpress.org/ellatrix/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ellatrix</a>, <a href=\'https://profiles.wordpress.org/mobarak/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mobarak</a> <em>and</em> <a href=\'https://profiles.wordpress.org/tacoverdo/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>tacoverdo</a> <em>for proofreading and review.</em></p>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"19373\";s: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:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.9 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Nov 2025 15:26: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:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s: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:3;a:5:{s:4:\"data\";s:3:\"6.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:7:\"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=19350\";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:367:\"The second Release Candidate (“RC2”) for WordPress 6.9 is ready for download and testing! This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended that you evaluate RC2 on a test server and site. Reaching this phase [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Akshaya Rane\";s: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:10595:\"\n<p>The second Release Candidate (“RC2”) for WordPress 6.9 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>.<strong> Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, it’s recommended that you evaluate RC2 on a test server and site.</p>\n\n\n\n<p>Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.9 is the best it can be.</p>\n\n\n\n<p>You can test WordPress 6.9 RC2 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-6.9-RC2.zip\">RC2 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br><code>wp core update --version=6.9-RC2</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href=\"https://playground.wordpress.net/?php=8.0&amp;wp=beta&amp;networking=no&amp;language=&amp;multisite=no&amp;random=y4q1rn85xn\">6.9 RC2 WordPress Playground instance</a> to test the software directly in your browser without the need for a separate site or setup.</td></tr></tbody></table></figure>\n\n\n\n<p>The scheduled final release date for WordPress 6.9 is <strong>December 2, 2025</strong>. The full <a href=\"https://make.wordpress.org/core/6-9/\">release schedule can be found here</a>. Your help testing RC versions is vital to making this release as stable and powerful as possible.</p>\n\n\n\n<p>Please continue checking the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-9/\">6.9-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 6.9 RC2?</h2>\n\n\n\n<p>Get a recap of WordPress 6.9’s highlighted features in the <a href=\"https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/\">Beta 1 announcement</a>. For more technical information related to issues addressed since RC1, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.9?since=2025-11-11&amp;until=2025-11-18\">GitHub commits for 6.9</a> since November 11</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=11%2F11%2F2025..11%2F18%2F2025&amp;milestone=6.9&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=changetime&amp;col=type&amp;order=id\">Closed Trac tickets</a> since November 11</li>\n</ul>\n\n\n\n<p>Want to look deeper into the details and technical notes for this release? These recent posts cover some of the latest updates:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2025/11/15/notes-feature-in-wordpress-6-9/\" target=\"_blank\" rel=\"noreferrer noopener\">Notes Feature in 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/10/abilities-api-in-wordpress-6-9/\" target=\"_blank\" rel=\"noreferrer noopener\">Abilities API in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/18/wordpress-6-9-frontend-performance-field-guide/\">WordPress 6.9 Frontend Performance Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/interactivity-apis-client-navigation-improvements-in-wordpress-6-9/\" target=\"_blank\" rel=\"noreferrer noopener\">Interactivity API’s client navigation improvements in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/block-bindings-improvements-in-wordpress-6-9/\" target=\"_blank\" rel=\"noreferrer noopener\">Block Bindings improvements in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/changes-to-the-interactivity-api-in-wordpress-6-9/\" target=\"_blank\" rel=\"noreferrer noopener\">Changes to the Interactivity API in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/17/consistent-cache-keys-for-query-groups-in-wordpress-6-9/\">Consistent Cache Keys for Query Groups in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/11/dataviews-dataform-et-al-in-wordpress-6-9/\" target=\"_blank\" rel=\"noreferrer noopener\">DataViews, DataForm, et al. in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/preparing-the-post-editor-for-full-iframe-integration/\" target=\"_blank\" rel=\"noreferrer noopener\">Preparing the Post Editor for Full iframe Integration</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/theme-json-border-radius-presets-support-in-wordpress-6-9/\" target=\"_blank\" rel=\"noreferrer noopener\">Theme.json Border Radius Presets Support in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/heading-block-css-specificity-fix-in-wordpress-6-9/\" target=\"_blank\" rel=\"noreferrer noopener\">Heading Block CSS Specificity Fix in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/17/miscellaneous-developer-focused-changes-in-6-9/\">Miscellaneous Developer-focused Changes in 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/18/modernizing-utf-8-support-in-wordpress-6-9/\" data-type=\"link\" data-id=\"https://make.wordpress.org/core/2025/11/18/modernizing-utf-8-support-in-wordpress-6-9/\">Modernizing UTF-8 support in WordPress 6.9</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get involved in testing</h2>\n\n\n\n<p>Testing for issues is crucial to the development of any software. It’s also a meaningful way for anyone to contribute.&nbsp;</p>\n\n\n\n<p>Your help testing the WordPress 6.9 RC2 version is key to ensuring that the final release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. This <a href=\"https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/\">detailed guide</a> will walk you through testing features in WordPress 6.9. For those new to testing, follow <a href=\"https://make.wordpress.org/test/handbook/get-setup-for-testing/\">this general testing guide</a> for more details on getting set up.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report.&nbsp; You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.&nbsp;</p>\n\n\n\n<p>Curious about testing releases in general?&nbsp; Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the<a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Update your theme or plugin</h2>\n\n\n\n<p>For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.</p>\n\n\n\n<p>Thanks for continuing to test your themes and plugins with the WordPress 6.9 beta releases. If you haven’t yet, make sure to conclude your testing and update the <em>“Tested up to”</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin’s readme file</a> to 6.9.</p>\n\n\n\n<p>If you find compatibility issues, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Test on your hosting platforms</h2>\n\n\n\n<p>Web hosts provide vital infrastructure for supporting WordPress and its users. Testing on hosting systems helps inform the development process while ensuring that WordPress and hosting platforms are fully compatible, free of errors, optimized for the best possible user experience, and that updates roll out to customer sites without issue.</p>\n\n\n\n<p>Want to test WordPress on your hosting system? <a href=\"https://make.wordpress.org/hosting/test-results-getting-started/\">Get started with configuring distributed hosting tests here</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Русский? 日本語? हिन्दी? বাংলা? मराठी? ಕನ್ನಡ?&nbsp; You can<a href=\"https://translate.wordpress.org/projects/wp/dev/\"> help translate WordPress into more than 100 languages</a>. This release milestone (RC2) also marks the<a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\"> hard string freeze</a> point of the <a href=\"https://make.wordpress.org/core/2025/11/11/wordpress-6-9-release-candidate-phase/\">6.9 release cycle</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">An RC2 haiku</h2>\n\n\n\n<p>A calm hillside sighs,<br>Work of many now complete —<br>RC2 stays true.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Props to <a href=\'https://profiles.wordpress.org/amykamala/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>amykamala</a>, <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>, <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a>, <a href=\'https://profiles.wordpress.org/westonruter/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>westonruter</a> and <a href=\'https://profiles.wordpress.org/joedolson/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joedolson</a> for proofreading and review.</em></p>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"19350\";s: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:75:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.9 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Nov 2025 15:34: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:7:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s: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:3;a:5:{s:4:\"data\";s:3:\"6.9\";s: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:\"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:5;a:5:{s:4:\"data\";s:18:\"release candidates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19317\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:364:\"The first Release Candidate (“RC1”) for WordPress 6.9 is ready for download and testing! This version of the WordPress software is still under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended to evaluate RC1 on a test server and site. WordPress 6.9 RC1 [&#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:10:\"Amy Kamala\";s: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:9479:\"\n<p>The first Release Candidate (“RC1”) for WordPress 6.9 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is still under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended to evaluate RC1 on a test server and site.</p>\n\n\n\n<p>WordPress 6.9 RC1 can be tested using any of the following methods:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-6.9-RC1.zip\">RC1 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command: <br><code>wp core update --version=6.9-RC1</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href=\"https://playground.wordpress.net/?php=8.3&amp;wp=beta&amp;networking=no&amp;language=&amp;multisite=no&amp;random=y4q1rn88xn\" data-type=\"link\" data-id=\"https://playground.wordpress.net/?php=8.3&amp;wp=rc&amp;networking=no&amp;language=&amp;multisite=no&amp;random=y4q1rn88xn\">6.9 RC1 WordPress Playground instance</a> to test the software directly in your browser. No setup is required &#8211; just click and go! </td></tr></tbody></table></figure>\n\n\n\n<p>The scheduled final release date for WordPress 6.9 is <strong>December 2, 2025</strong>. The full <a href=\"https://make.wordpress.org/core/6-9/\">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible.</p>\n\n\n\n<p>Please continue checking the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-9/\">6.9-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 6.9 RC1?</h2>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/\">Beta 1 announcement</a> for details on WordPress 6.9.</p>\n\n\n\n<p>You can browse the technical details for all issues addressed since Beta 4 using these links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.9?since=2025-11-07&amp;until=2025-11-11\">Gutenberg commits for 6.9</a> since November 7, 2025</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/log/?revs=61183-61203\">Core commits for 6.9</a> since November 7, 2025</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=11%2F07%2F2025..11%2F11%2F2025&amp;milestone=6.9&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=changetime&amp;col=type&amp;order=id\">Closed Trac tickets</a> since November 7, 2025</li>\n</ul>\n\n\n\n<p>Want to know more about this release? Here are some highlights:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Site Editor improvements and Refined content creation\n<ul class=\"wp-block-list\">\n<li>Ability to hide blocks</li>\n\n\n\n<li>New blocks </li>\n\n\n\n<li>Notes on blocks</li>\n\n\n\n<li>Universal command palette in wp-admin</li>\n</ul>\n</li>\n\n\n\n<li>Developer updates\n<ul class=\"wp-block-list\">\n<li>Updates to dataviews and dataforms components</li>\n\n\n\n<li>New abilities API</li>\n\n\n\n<li>Updates to interactivity API </li>\n\n\n\n<li>Updates to block binding API</li>\n</ul>\n</li>\n\n\n\n<li>Performance Improvements\n<ul class=\"wp-block-list\">\n<li>Improved script and style handling</li>\n\n\n\n<li>Optimized queries and caching</li>\n\n\n\n<li>Added ability to handle “fetchpriority” in ES Modules and Import Maps</li>\n\n\n\n<li>Standardizing output buffering</li>\n</ul>\n</li>\n</ul>\n\n\n\n<p>The final release is on track for December 2nd. As always, a successful release depends on your confirmation during testing. So please download and test!</p>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is crucial to the development of any software. It’s also a meaningful way for anyone to contribute. </p>\n\n\n\n<p>Your help testing the WordPress 6.9 RC1 version is key to ensuring that the final release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. This <a href=\"https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/\">detailed guide</a> will walk you through testing features in WordPress 6.9.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Calls for testing</h4>\n\n\n\n<p>Thank you to everyone who helps test the following enhancements and bug fixes:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/test/2025/10/06/call-for-testing-accordion-block/\">Accordion Block</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2025/10/04/call-for-testing-ability-to-hide-blocks/\">Ability to Hide Blocks</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/ticket/64099\">Classic themes loading block styles on demand</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/ticket/64204\">Modified notes notifications</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/10/abilities-api-in-wordpress-6-9/\">Abilities API</a></li>\n</ul>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums, or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Thank you to everyone who helps with testing!</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.</p>\n\n\n\n<p>Thanks for continuing to test your themes and plugins with the WordPress 6.9 beta releases. With RC1, you’ll want to conclude your testing and update the <em>“Tested up to”</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin’s readme file</a> to 6.9. </p>\n\n\n\n<p>If you find compatibility issues, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Test on your hosting platforms</h3>\n\n\n\n<p>Web hosts provide vital infrastructure for supporting WordPress and its users. Testing on hosting systems helps inform the development process while ensuring that WordPress and hosting platforms are fully compatible, free of errors, optimized for the best possible user experience, and that updates roll out to customer sites without issue.</p>\n\n\n\n<p>Want to test WordPress on your hosting system? <a href=\"https://make.wordpress.org/hosting/test-results-getting-started/\">Get started with configuring distributed hosting tests here</a>. Thank you to all <a href=\"https://make.wordpress.org/hosting/test-results/\">web hosts who help test WordPress</a>!</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">An RC1 haiku</h2>\n\n\n\n<p><em>As the sun rises</em>,</p>\n\n\n\n<p><em>RC1 breaks its cocoon</em></p>\n\n\n\n<p><em>and emerges strong</em>.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Props to </em><a href=\'https://profiles.wordpress.org/akshayar/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>akshayar</a><em>, </em><a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a>, <a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a>, <a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a>, <a href=\'https://profiles.wordpress.org/westonruter/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>westonruter</a>, <a href=\'https://profiles.wordpress.org/ellatrix/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ellatrix</a>, <a href=\'https://profiles.wordpress.org/priethor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>priethor</a>, <a href=\'https://profiles.wordpress.org/krupajnanda/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>krupajnanda</a> <em>and</em> <a href=\'https://profiles.wordpress.org/cbravobernal/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbravobernal</a> <em>for proofreading and review.</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:\"19317\";s: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:72:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.9 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2025/11/wordpress-6-9-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Nov 2025 15:34:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s: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:3;a:5:{s:4:\"data\";s:3:\"6.9\";s: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:\"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:5;a:5:{s:4:\"data\";s:7:\"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=19263\";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:347:\"WordPress 6.9 Beta 3 is available for download and testing! This beta version of the WordPress software is still under development. Please don&#8217;t install, run, or test this version of WordPress on production or mission-critical websites. Instead, you can evaluate Beta 3 on a test server and site. WordPress 6.9 Beta 3 can be tested [&#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:10:\"Amy Kamala\";s: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:5454:\"\n<p>WordPress 6.9 Beta 3 is available for download and testing!</p>\n\n\n\n<p><strong>This beta version of the WordPress software is still under development</strong>. Please don&#8217;t install, run, or test this version of WordPress on production or mission-critical websites. Instead, you can evaluate Beta 3 on a test server and site.</p>\n\n\n\n<p>WordPress 6.9 Beta 3 can be tested using any of the following methods:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"> WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-6.9-beta3.zip\">Beta 3 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this<a href=\"https://make.wordpress.org/cli/\"> WP-CLI</a> command: <br><code>wp core update --version=6.9-beta3</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href=\"https://playground.wordpress.net/?php=8.0&amp;wp=beta&amp;networking=no&amp;language=&amp;multisite=no&amp;random=y4q1rn88xn\">6.9 Beta 3 WordPress Playground instance</a> to test the software directly in your browser.&nbsp; No setup is required – just click and go!&nbsp;</td></tr></tbody></table></figure>\n\n\n\n<p></p>\n\n\n\n<p>The final release of WordPress 6.9 is scheduled for <strong>December 2, 2025</strong>, and the <a href=\"https://make.wordpress.org/core/6-9/\">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Thank you to everyone who helps with testing!</p>\n\n\n\n<p>Please continue checking the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-9/\">6.9-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<p><strong>Find out what’s new in WordPress 6.9</strong>: Read the <a href=\"https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/\">Beta 1 announcement</a> for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to test this release</h2>\n\n\n\n<p>Your help testing the WordPress 6.9 Beta 3 version is key to ensuring that everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally as important. This <a href=\"https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/\">detailed guide</a> provides a walk through on testing features in WordPress 6.9.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums, or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the<a href=\"https://wordpress.slack.com/messages/core-test/\"> #core-test channel</a> on<a href=\"https://wordpress.slack.com/\"> Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Beta 3 updates and highlights</h2>\n\n\n\n<p>WordPress 6.9 Beta 3 contains more than 80 updates and fixes since the Beta 2 release.</p>\n\n\n\n<p>Each beta cycle focuses on bug fixes, and more are on the way with your testing! You can browse the technical details for all issues addressed since Beta 2 using these links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.9?since=2025-10-28&amp;until=2025-11-04\">Gutenberg commits for 6.9</a> since October 28, 2025</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F28%2F2025..11%2F04%2F2025&amp;milestone=6.9&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Core Trac tickets for 6.9</a> since October 28, 2025</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/wordpress-develop/compare/7dcb09c26a1d97c20dcceb866abbd0f3c128388b...81f755846c2d66ce7d21b01623f8163a9f7c6ef6\">Comparing commit changes in Core for 6.9</a> since October 28, 2025</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">A Beta 3 haiku</h2>\n\n\n\n<p><em>Code is poetry,</em></p>\n\n\n\n<p><em>and poetry is magic.</em></p>\n\n\n\n<p><em>So code is magic.</em></p>\n\n\n\n<p class=\"has-text-align-right\"><em>Props to </em><a href=\'https://profiles.wordpress.org/akshayar/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>akshayar</a> <em>, </em><a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a>, <a href=\'https://profiles.wordpress.org/krupajnanda/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>krupajnanda</a>, <a href=\'https://profiles.wordpress.org/mosescursor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mosescursor</a>,  <em>and</em> <a href=\'https://profiles.wordpress.org/westonruter/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>westonruter</a> <em>for proofreading and review.</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:\"19263\";s: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:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 6.9 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2025/10/wordpress-6-9-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Oct 2025 15:23:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6-9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:7:\"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=19253\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:334:\"WordPress 6.9 Beta 2 is now ready for testing! This beta version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites.&#160; Instead, you should evaluate Beta 2 on a test server and site. You can test WordPress 6.9 Beta 2 in [&#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:\"Akshaya Rane\";s: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:5125:\"\n<p>WordPress 6.9 Beta 2 is now ready for testing!</p>\n\n\n\n<p><strong>This beta version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites.&nbsp; Instead, you should evaluate Beta 2 on a test server and site.</p>\n\n\n\n<p>You can test WordPress 6.9 Beta 2 in any of the following ways:<br></p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"> WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-6.9-beta2.zip\">Beta 2 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this<a href=\"https://make.wordpress.org/cli/\"> WP-CLI</a> command: <br><code>wp core update --version=6.9-beta2</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href=\"https://playground.wordpress.net/?php=8.0&amp;wp=beta&amp;networking=no&amp;language=&amp;multisite=no&amp;random=y4q1rn88xn\">6.9 Beta 2 WordPress Playground instance</a> to test the software directly in your browser.&nbsp; No setup is required–just click and go!&nbsp;</td></tr></tbody></table></figure>\n\n\n\n<p>The scheduled final release date for WordPress 6.9 is <strong>December 2, 2025</strong>. &nbsp;The full <a href=\"https://make.wordpress.org/core/6-9/\">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Do check the<a href=\"https://make.wordpress.org/core/\"> Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-9/\">6.9-related posts</a> in the coming weeks for more information. Thank you to everyone who contributes by testing!&nbsp;</p>\n\n\n\n<p><strong>Catch up on what’s new in WordPress 6.9</strong>: Read the <a href=\"https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/\">Beta 1 announcement</a> for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to test this release</h2>\n\n\n\n<p>Your help testing the WordPress 6.9 Beta 2 version is key to ensuring everything in the release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important.&nbsp; This <a href=\"https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/\">detailed guide</a> will walk you through testing features in WordPress 6.9.</p>\n\n\n\n<p>If you encounter an issue, please report it to the<a href=\"https://wordpress.org/support/forum/alphabeta/\"> Alpha/Beta area</a> of the support forums or directly to<a href=\"https://core.trac.wordpress.org/newticket\"> WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of<a href=\"https://core.trac.wordpress.org/tickets/major\"> known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the<a href=\"https://make.wordpress.org/test/\"> testing initiatives in Make Core</a> and join the<a href=\"https://wordpress.slack.com/messages/core-test/\"> #core-test channel</a> on<a href=\"https://wordpress.slack.com/\"> Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Beta 2 updates and highlights</h2>\n\n\n\n<p>WordPress 6.9 Beta 2 contains more than 33 Editor updates and fixes since the Beta 1 release, including 28 tickets for WordPress core.</p>\n\n\n\n<p>Each beta cycle focuses on bug fixes; more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 1 using these links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.9?since=2025-10-22&amp;until=2025-10-28\">GitHub commits for 6.9</a> since October 21, 2025</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F22%2F2025..10%2F28%2F2025&amp;milestone=6.9&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets</a> since October 21, 2025</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">A Beta 2 haiku</h2>\n\n\n\n<p><em>Morning dew returns,</em></p>\n\n\n\n<p><em>Small fixes bloom in silence—</em></p>\n\n\n\n<p><em>Code finds its balance.</em></p>\n\n\n\n<p class=\"has-text-align-right\"><em>Props to <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a>, <a href=\'https://profiles.wordpress.org/wildworks/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>wildworks</a> , <a href=\'https://profiles.wordpress.org/krupajnanda/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>krupajnanda</a> &amp; <a href=\'https://profiles.wordpress.org/mosescursor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mosescursor</a></em> <em>for proofreading and review.</em></p>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"19253\";s: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: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:23:\"WordPress 6.8.3 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:59:\"https://wordpress.org/news/2025/09/wordpress-6-8-3-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:\"Tue, 30 Sep 2025 19:31:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{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:14:\"minor-releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19204\";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:372:\"WordPress 6.8.3 is now available! This is a security release that features two fixes. Because this is a security release, it is recommended that you update your sites immediately. You can download WordPress 6.8.3 from WordPress.org, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. If you have sites that support automatic [&#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:15:\"John Blackbourn\";s: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:4937:\"\n<p><strong>WordPress 6.8.3 is now available!</strong></p>\n\n\n\n<p>This is a security release that features two fixes.</p>\n\n\n\n<p>Because this is a security release,<strong> it is recommended that you update your sites immediately</strong>.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.8.3.zip\">download WordPress 6.8.3 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>The next major release will be <a href=\"https://make.wordpress.org/core/6-9/\">version 6.9</a>, which is planned for December 2nd, 2025.<br>For more information on WordPress 6.8.3, please visit the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-8-3/\">version page on the 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 would like to thank the following people for <a href=\"https://hackerone.com/wordpress?type=team\">responsibly reporting vulnerabilities</a>, and allowing them to be fixed in this release:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A data exposure issue where authenticated users could access some restricted content. Independently reported by <a href=\"https://hackerone.com/mnelson4\">Mike Nelson</a>, <a href=\"https://hackerone.com/hurayraiit\">Abu Hurayra</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, and <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>.</li>\n\n\n\n<li>A cross-site scripting (XSS) vulnerability requiring an authenticated user role that affects the nav menus. Reported by <a href=\"https://x.com/Savphill\">Phill Savage</a>.</li>\n</ul>\n\n\n\n<p>As a courtesy, these fixes have also been made available to all branches eligible to receive security fixes (currently through 4.7). As a reminder, <strong>only the most recent version of WordPress is actively supported</strong>.</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/johnbillion/\">John Blackbourn</a>.</p>\n\n\n\n<p>In addition to the security researchers and release squad members mentioned above, WordPress 6.8.3 would not have been possible without the contributions of the following people:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/hurayraiit\">Abu Hurayra</a>, <a href=\"https://profiles.wordpress.org/zieladam\">Adam Zieliński</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/andraganescu%20\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/ehtis\">Ehtisham Siddiqui</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/jonsurrell\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/mnelson4\">Michael Nelson</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/phillsav\">Phill</a>, <a href=\"https://profiles.wordpress.org/noisysocks\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</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://app.slack.com/client/T024MFP4J/C02RQBWTW\">#core</a> Slack channel. 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>Props to <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham Siddiqui</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a> for reviewing.</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:\"19204\";s: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: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:57:\"Portland Welcomes WordCamp US 2025: A Community Gathering\";s:7:\"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:63:\"https://wordpress.org/news/2025/08/portland-welcomes-wcus-2025/\";s: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 Aug 2025 03:03:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"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=19074\";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:405:\"A full house of attendees gathered in Portland, Oregon, for WordCamp US 2025, with thousands more tuning in online. Over four days, the flagship WordPress event brought together contributors, innovators, and community members for collaboration, inspiration, and discovery. WordPress is so unique because we&#8217;re not just a product; we&#8217;re a movement. Matt Mullenweg, WordPress Cofounder [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"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:65530:\"\n\n\n<p>A full house of attendees gathered in Portland, Oregon, for WordCamp US 2025, with thousands more tuning in online. Over four days, the flagship WordPress event brought together contributors, innovators, and community members for collaboration, inspiration, and discovery.</p>\n\n\n\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-6c531013 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-pullquote\"><blockquote><p>WordPress is so unique because we&#8217;re not just a product; we&#8217;re a movement.</p><cite>Matt Mullenweg, WordPress Cofounder</cite></blockquote></figure>\n</div>\n\n\n\n<p>The WordPress event began with a dedicated Contributor Day and continued with a Showcase Day and two days of sessions filled with talks, panels, workshops, and community celebrations. WordPress Cofounder Matt Mullenweg joined a diverse lineup of speakers, panelists, and workshop leaders who brought fresh perspectives to the open web from across the globe.</p>\n\n\n\n<p>Set against the vibrant backdrop of Portland — with its iconic bridges, coffee culture, and creative energy — the Sponsor Hall buzzed as companies across the WordPress ecosystem demoed new products, shared insights, and connected with attendees. Each day offered opportunities to refuel with local flavors and international favorites, turning mealtimes into lively hubs of networking and idea-sharing.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Global Gathering in Portland</h2>\n\n\n\n<p>WordCamp US is the annual gathering point for the WordPress community — where collaboration, creativity, and innovation intersect. This year in Portland, the event delivered an expansive program that reached every corner of the ecosystem.</p>\n\n\n\n<p>Here’s what attendees experienced:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Engaging Sessions Across Tracks</strong> – Keynotes, presentations, and discussions explored the evolving web and the role of open source in shaping it.</li>\n\n\n\n<li><strong>A Global Speaker Lineup</strong> – Voices from across continents brought local stories and global visions to the stage.</li>\n\n\n\n<li><strong>Wide-Ranging Topics</strong> – From AI in WordPress development to accessibility, design systems, content strategy, education, and case studies of WordPress at scale.</li>\n\n\n\n<li><strong>Hands-On Learning Opportunities</strong> – Workshops provided practical takeaways, empowering attendees to apply new skills immediately.</li>\n\n\n\n<li><strong>A Community Built on Collaboration</strong> – Whether contributing code, exploring business strategies, or sharing creative projects, attendees found space to learn, grow, and celebrate open source together.</li>\n</ul>\n\n\n\n<p>New contributors took their first steps into open source, seasoned developers explored cutting-edge AI integrations, and agencies and product teams shared strategies for scaling WordPress to meet modern needs. Beyond the technical, conversations around inclusivity, sustainability, and education underscored WordPress’s role as a tool for empowerment and positive change.</p>\n\n\n\n<p>In hallways, coffee lines, and evening meetups, attendees found the “hallway track” alive and well, spontaneous moments of connection that often became the most memorable part of the experience. Whether reconnecting with longtime collaborators or meeting someone new, these small interactions reinforced the heart of WordCamp US: a community that thrives on openness, generosity, and shared purpose.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributor Day: Collaboration at the Core</h2>\n\n\n\n<p>The conference opened on Tuesday, August 26, with a vibrant Contributor Day. Nearly 300 contributors filled the space, including more than 120 first-time participants who were onboarded across 19 teams. Developers, designers, translators, marketers, and community organizers worked side by side, representing WordPress expertise.</p>\n\n\n\n<p>Throughout the day, contributors tackled everything from improving accessibility and performance to refining documentation to enhancing translation tools. Beyond technical contributions, teams like Marketing and Community focused on outreach, mentoring, and shaping future-facing initiatives. Remote participants joined via dedicated channels, reinforcing the inclusive nature of WordPress’s global community. By day’s end, the collective energy was clear: WordPress continues to be built by and for everyone.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped has-black-background-color has-background wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;693701826fedd&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"693701826fedd\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19080\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19080\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018270365&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018270365\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19081\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19081\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5630-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69370182707be&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"69370182707be\" class=\"wp-block-image size-large wp-lightbox-container\"><img loading=\"lazy\" decoding=\"async\" width=\"1707\" height=\"2560\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19087\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?fit=683%2C1024&amp;ssl=1\" alt=\"\" class=\"wp-image-19087\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?w=1707&amp;ssl=1 1707w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?resize=200%2C300&amp;ssl=1 200w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?resize=683%2C1024&amp;ssl=1 683w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?resize=768%2C1152&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?resize=1024%2C1536&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8717-2-scaled.jpg?resize=1365%2C2048&amp;ssl=1 1365w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018270bdb&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018270bdb\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19084\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19084\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633022-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018271032&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018271032\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19082\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19082\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5634-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018271469&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018271469\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19085\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19085\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018271895&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018271895\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19086\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19086\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633226-1-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018271cc7&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018271cc7\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19090\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19090\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z633121-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018272118&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018272118\" class=\"wp-block-image size-large wp-lightbox-container\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1707\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19089\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?fit=1024%2C683&amp;ssl=1\" alt=\"\" class=\"wp-image-19089\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?w=2560&amp;ssl=1 2560w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018272528&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018272528\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19092\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19092\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8841-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;693701827291a&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"693701827291a\" class=\"wp-block-image size-large wp-lightbox-container\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1707\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19088\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?fit=1024%2C683&amp;ssl=1\" alt=\"\" class=\"wp-image-19088\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?w=2560&amp;ssl=1 2560w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8753-1-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018272d1b&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018272d1b\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19091\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19091\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8827-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018273107&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018273107\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19083\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19083\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p>The mix of experience in the room made this year especially notable. First-time contributors were paired with seasoned table leads who guided them through their first steps into open source contribution. Longtime contributors reconnected with their teams and advanced ongoing initiatives, while new voices added fresh perspectives and momentum. The spirit of mentorship was woven throughout, ensuring that Contributor Day was productive and welcoming.</p>\n\n\n\n<p>The results spoke for themselves:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Polyglots</strong> translated more than 12,000 strings, expanding WordPress’s accessibility worldwide.</li>\n\n\n\n<li>The <strong>Community team</strong> celebrated the approval of two brand-new local meetups.</li>\n\n\n\n<li>The <strong>Training team</strong> achieved its objective of updating outdated course thumbnails.</li>\n\n\n\n<li>The <strong>Core team</strong> worked through a live bug scrub, with 9 committers and 16 contributors collaborating on improvements.</li>\n\n\n\n<li>The <strong>Documentation team</strong> completed numerous content updates to keep resources fresh and reliable.</li>\n</ul>\n\n\n\n<p>Momentum carried through every table, with participants reporting measurable progress and a renewed sense of shared purpose. Contributor Day once again highlighted the unique power of collaboration in shaping the open web, proving that every contribution matters through code, translations, training, or community building.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Showcase Day: WordPress in Action</h2>\n\n\n\n<p>Wednesday, August 27, was the popular Showcase Day, spotlighting real-world innovation in WordPress. Initially expected to draw about 250 participants, Showcase Day welcomed more than 800 attendees — a powerful sign of how much energy and curiosity the community brought to Portland. The sessions demonstrated how WordPress powers meaningful work across industries from nonprofits to newsrooms, agencies to global enterprises, while staying true to open source values.</p>\n\n\n\n<p>The day opened with a keynote by Amy Sample Ward: <em>The Tech That Comes Next</em>. Drawing from their co-authored book with Afua Bruce, Amy highlighted the inequities embedded in today’s technologies — from dataset bias to accessibility gaps — and challenged attendees to rethink how tools are funded, built, and deployed. Their talk invited technologists, funders, and community leaders to imagine a more equitable digital future, rooted in collaboration and shared responsibility.</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\" title=\"WordCamp US 2025 - Amy Sample Ward &quot;The Tech That Comes Next&quot;\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/RKnM75GFZxw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p>From there, <a href=\"https://youtu.be/PGvh7fCOUk0\">Joeleen Kennedy</a> of Human Made shared how Full Site Editing (FSE) shapes the refresh of Wikimedia’s ongoing user experience. Her session <em>Modernizing at Scale</em> detailed how FSE is simplifying workflows, improving accessibility, and making the multilingual platform more sustainable for the long term. Attendees gained a behind-the-scenes look at how one of the world’s largest open knowledge platforms is leveraging WordPress innovation.</p>\n\n\n\n<p><a href=\"https://youtu.be/F4NEPcwGRCI\">Josh Bryant</a> took the stage to explore what happens when Gutenberg leaves the WP-Admin dashboard. His talk, <em>Reimagining WordPress Editing</em>, walked through embedding the block editor into a standalone React application to support Dow Jones’s newsroom workflows. From decoupling Gutenberg to managing custom data stores, the session showcased advanced techniques for scaling editorial tools while maintaining the flexibility of the WordPress ecosystem.</p>\n\n\n\n<p>Hands-on learning was a hallmark of Showcase Day, with Jamie Marsland’s workshop leading participants through building and launching their own professional portfolio sites — no coding required. Attendees left with a fully functioning site, demonstrating WordPress’s continued ability to empower anyone, anywhere, to publish online.</p>\n\n\n\n<p>In the afternoon, Jeffrey Paul’s session <em>Scalable, Ethical AI</em> addressed one of the most pressing topics in today’s digital world: how to integrate AI without sacrificing ownership, privacy, or open standards. Walking participants through practical use cases with ClassifAI and local LLMs, Paul emphasized how WordPress can help content creators harness AI while maintaining autonomy over their data.</p>\n\n\n\n<p>The day closed with a forward-looking community highlight: <a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a>. Panelists <a href=\"https://youtu.be/ARqM9U0ESvo\">Destiny Kanno, Andrés Parra, Javier Montes de Blas, Mauricio Barrantes, and Elineth Morera Campos</a> shared how this initiative brings WordPress into classrooms and universities worldwide. Student Andrés Parra received a scholarship to attend WordCamp. During the panel, Elineth also announced that Fidélitas University will begin offering its students a <a href=\"https://wordpress.org/news/2025/07/introducing-wordpress-credits-a-new-contribution-internship-program-for-university-students/\">WordPress Credits</a> program starting in October 2025, making it a mandatory addition sometime in 2026, enabling them to contribute directly to WordPress as part of their studies.</p>\n\n\n\n<p>By connecting students and educators with the open web, Campus Connect is building the next generation of contributors and innovators, ensuring that WordPress remains both a learning tool and a pathway to opportunity.</p>\n\n\n\n<p>Taken together, Showcase Day affirmed that WordPress is more than just a CMS — it is a platform for equitable technology, global collaboration, cutting-edge enterprise solutions, and the future of digital education. WordPress has the power to be both a platform and a community tool for education, equity, and innovation.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Presentation Days: Learning, Inspiration, and Connection</h2>\n\n\n\n<p>The first full day of sessions at WordCamp US 2025 opened with warm remarks from the organizing team, who reminded attendees: <em>“The most important thanks goes to all of you. The mix of new energy and veteran experience is what makes WordCamp so special, so thank you for being here.”</em> That spirit of gratitude and community carried throughout the event.</p>\n\n\n\n<p>The Sponsor Hall became a hub of activity, complete with raffles, the return of Career Corner, and even a Voodoo Donut Truck parked outside. Attendees lined up to test their luck at a claw machine stuffed with plush Wapuus, while others sought guidance at the Happiness Bar — a hands-on help desk for WordPress questions big and small. Between these activities, the steady buzz of conversations made it clear: the “hallway track” remained one of WordCamp’s most valuable experiences.</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\" title=\"WordCamp US - Danny Sullivan &quot;How (and why!) Google Search Keeps Evolving&quot;\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/ZF_sxLdfTbY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p>The program itself set a high bar. Danny Sullivan’s keynote shed light on how search has evolved to meet the needs of new generations, from 24/7 demand and mobile expectations to short-form video and AI. His session gave attendees a deeper understanding of how search intersects with publishing today and sparked conversations about how WordPress can continue adapting in an era where AI shapes discovery and content.</p>\n\n\n\n<p>From there, the schedule unfolded across multiple tracks. The Core AI panel — featuring <a href=\"https://youtu.be/v_0O6dQ4Q4E\">James LePage, Felix Arntz, and Jeffrey Paul</a> — offered a look into how AI tools are woven into WordPress core. Emphasizing ethics, transparency, and user empowerment, the panel painted a roadmap for how WordPress can adopt new technologies without compromising its open-source values.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"\" class=\"wp-image-19103\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Programming-Day-1-2.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p>Hands-on learning played a significant role throughout the conference. Ryan Welcher’s interactive <em>Block Developer Cookbook</em> drew a packed room as participants worked through community-selected code recipes built on the latest WordPress APIs. By the end, attendees left with working examples and practical strategies they could bring back to their projects.</p>\n\n\n\n<p>The program also highlighted diverse technical perspectives. <a href=\"https://youtu.be/vBjNqdacbh4\">Jemima Abu’s</a> session, <em>A PHP Developer’s Guide to ReactJS</em>, bridged the gap between classic and modern web development. At the same time, Adam Gazzaley’s keynote, <em>A New Era of Experiential Medicine – AI and the Brain</em>, invited attendees to consider the human side of technology, exploring how digital tools can advance health and well-being.</p>\n\n\n\n<p>The second day of presentations, Friday, August 29, opened with creativity and imagination. <a href=\"https://youtu.be/O7FPiFpRI3o\">John Maeda’s</a> keynote, <em>Cozy AI Cooking: WordCamp Edition</em>, used the metaphor of a kitchen to demystify AI, blending storytelling with technical insight to show how curiosity and care can guide builders in integrating AI into their work.</p>\n\n\n\n<p>Later in the day, <a href=\"https://youtu.be/ORnJTpjA-4w\">Tammie Lister’s</a> <em>The System is the Strategy</em> illustrated how design systems provide structure and scalability for growing WordPress projects. At the same time, Adam Silverstein’s Unlock Developer Superpowers with AI showcased new ways developers can use emerging tools to speed up workflows and problem-solving.</p>\n\n\n\n<p>Community stories also took center stage. In Creators around a Campfire, Anne McCarthy, Jamie Marsland, Christian Taylor, Mark Szymanski, and Michael Cunningham reflected on how YouTubers and content creators shape the WordPress ecosystem. Their session highlighted the role of storytelling and education in expanding WordPress’s reach to new audiences worldwide.</p>\n\n\n\n<p>The Sponsor Hall remained lively between sessions — with attendees meeting companies, testing demos, and swapping ideas that extended far beyond the conference halls. They also shared moments together at the arcade built for the event and added smiles, hugs, and laughter, which underscored the atmosphere: WordCamp US was as much about connection as code.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Together Into the Future</h2>\n\n\n\n<p>As the event drew to a close, WordPress Cofounder Matt Mullenweg took the stage to share the current state of WordPress and a vision for its future. He highlighted the growth in social media for WordPress with 124,726 new followers since last WCUS — and the WordPress.org website growing over 10% in users along with almost 20% in new users. </p>\n\n\n\n<p>Matt also spotlighted community initiatives shaping the future of open source education and diversity: WordPress Campus Connect, which has already reached 570 students across 11 events. Combined with the growth in overall events (77) which is a 32.76% increase over 2024. Each effort reinforced the message that WordPress is more than software; it is a global movement driven by people.</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\" title=\"WordCamp US 2025 - Ma.tt Mullenweg &quot;Keynote Address &amp; Q&amp;A&quot;\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/45HRzzc0waU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>\n</div></figure>\n\n\n\n<p>He concluded with a live Q&amp;A, fielding questions from the audience on the direction of WordPress, its role in an AI-driven web, and the importance of keeping the project open, inclusive, and adaptable. The final notes of the keynote carried into a closing party in downtown Portland, where attendees capped off the week with music, conversation, and the unmistakable joy of a community coming together.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Closing</h2>\n\n\n\n<p>WordCamp US 2025 once again demonstrated what makes the WordPress ecosystem extraordinary: a community committed to building tools, resources, and opportunities that empower people everywhere.</p>\n\n\n\n<p>This year also marked the debut of the <a href=\"https://airtable.com/appWF6hdXuEOFQMvV/shrV5RZIv0aJjjU00\">Open Horizons Scholarship</a>, which funded six recipients — two organizers, three volunteers, and one speaker — from five countries. A total of $14,670 supported their journeys to WCUS. The scholarship, which also supports participation at WordCamp Asia and WordCamp Europe, is designed to make flagship events more accessible to contributors worldwide.</p>\n\n\n\n<p>A heartfelt thank you goes to the organizers, volunteers, sponsors, and speakers who brought the Portland edition to life — and to every attendee who joined us in person or followed along online. We hope you leave with fresh ideas, meaningful connections, and renewed energy to help shape the future of the open web.</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped has-black-background-color has-background wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex\" style=\"border-width:20px\">\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018274651&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018274651\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"577\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19112\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948.jpg?resize=1024%2C577&#038;ssl=1\" alt=\"\" class=\"wp-image-19112\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=1024%2C577&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=1536%2C865&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_215948-scaled.jpg?resize=2048%2C1153&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button><figcaption class=\"wp-element-caption\">Gale Wallace</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018274abe&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018274abe\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19124\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997.jpeg?resize=1024%2C576&#038;ssl=1\" alt=\"\" class=\"wp-image-19124\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997-scaled.jpeg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997-scaled.jpeg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997-scaled.jpeg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997-scaled.jpeg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6997-scaled.jpeg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button><figcaption class=\"wp-element-caption\">Topher DeRosia</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018274ed7&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018274ed7\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19122\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014.jpeg?resize=1024%2C576&#038;ssl=1\" alt=\"\" class=\"wp-image-19122\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014-scaled.jpeg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014-scaled.jpeg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014-scaled.jpeg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014-scaled.jpeg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_7014-scaled.jpeg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button><figcaption class=\"wp-element-caption\">Topher DeRosia</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;69370182752f0&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"69370182752f0\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"577\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19107\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752.jpg?resize=1024%2C577&#038;ssl=1\" alt=\"\" class=\"wp-image-19107\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752-scaled.jpg?resize=1024%2C577&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752-scaled.jpg?resize=1536%2C865&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250826_101752-scaled.jpg?resize=2048%2C1153&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button><figcaption class=\"wp-element-caption\">Gale Wallace</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018275710&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018275710\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"675\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19108\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?resize=1024%2C675&#038;ssl=1\" alt=\"\" class=\"wp-image-19108\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?resize=1024%2C675&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?resize=300%2C198&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?resize=768%2C506&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?resize=1536%2C1012&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/20250825_113602.jpg?w=1764&amp;ssl=1 1764w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button><figcaption class=\"wp-element-caption\">Gale Wallace</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018275af3&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018275af3\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19113\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076.jpeg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19113\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076-scaled.jpeg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076-scaled.jpeg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076-scaled.jpeg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076-scaled.jpeg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC9076-scaled.jpeg?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018275efc&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018275efc\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"433\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19106\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809.jpeg?resize=1024%2C433&#038;ssl=1\" alt=\"\" class=\"wp-image-19106\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809-scaled.jpeg?resize=1024%2C433&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809-scaled.jpeg?resize=300%2C127&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809-scaled.jpeg?resize=768%2C325&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809-scaled.jpeg?resize=1536%2C650&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6809-scaled.jpeg?resize=2048%2C866&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button><figcaption class=\"wp-element-caption\">Topher DeRosia</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018276333&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018276333\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19110\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-19110\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?w=2048&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;693701827678c&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"693701827678c\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19119\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827.jpeg?resize=1024%2C576&#038;ssl=1\" alt=\"\" class=\"wp-image-19119\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827-scaled.jpeg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827-scaled.jpeg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827-scaled.jpeg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827-scaled.jpeg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_6827-scaled.jpeg?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button><figcaption class=\"wp-element-caption\">Topher DeRosia</figcaption></figure>\n\n\n\n<figure data-wp-context=\"{&quot;imageId&quot;:&quot;6937018276bda&quot;}\" data-wp-interactive=\"core/image\" data-wp-key=\"6937018276bda\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19133\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?resize=1024%2C576&#038;ssl=1\" alt=\"\" class=\"wp-image-19133\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG-20250829-WA0024.jpg?w=2048&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n			class=\"lightbox-trigger\"\n			type=\"button\"\n			aria-haspopup=\"dialog\"\n			aria-label=\"Enlarge\"\n			data-wp-init=\"callbacks.initTriggerButton\"\n			data-wp-on--click=\"actions.showLightbox\"\n			data-wp-style--right=\"state.imageButtonRight\"\n			data-wp-style--top=\"state.imageButtonTop\"\n		>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n				<path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n			</svg>\n		</button></figure>\n</figure>\n\n\n\n<p>Be sure to mark your calendars for the next global gatherings: <a href=\"https://asia.wordcamp.org/2026/\">WordCamp Asia 2026</a>&nbsp; in Mumbai, India, <a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe 2026</a>&nbsp; in Kraków, Poland, and WordCamp US 2026 in Phoenix, Arizona. We can’t wait to see you at the next chapter of the WordPress story.</p>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"19074\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"Portland, Are You Ready? The WCUS 2025 Schedule Has Arrived!\";s:7:\"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://wordpress.org/news/2025/08/portland-are-you-ready-the-wcus-2025-schedule-has-arrived/\";s: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 Aug 2025 20:03:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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: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:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s: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:4:\"WCUS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"WordCamps\";s:7:\"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=19004\";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:402:\"We’re excited to announce that the full schedule for WordCamp US 2025 has been published! From August 26–29 in Portland, Oregon, join web creators, innovators, and community leaders for four days of learning, collaboration, and inspiration. This year’s lineup brings together sessions on everything from cutting-edge AI to hands-on workshops, performance, accessibility, design, and the [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"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:5698:\"\n<p>We’re excited to announce that the full schedule for WordCamp US 2025 has been published! From August 26–29 in Portland, Oregon, join web creators, innovators, and community leaders for four days of learning, collaboration, and inspiration. This year’s lineup brings together sessions on everything from cutting-edge AI to hands-on workshops, performance, accessibility, design, and the future of WordPress.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader.png?resize=1024%2C576&#038;ssl=1\" alt=\"\" class=\"wp-image-19026\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader-scaled.png?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader-scaled.png?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader-scaled.png?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader-scaled.png?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/ScheduleHeader-scaled.png?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"has-text-align-center\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><strong>Check out the full schedule and start planning your WordCamp experience.</strong></p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link has-blue-1-background-color has-background wp-element-button\" href=\"https://us.wordcamp.org/2025/schedule/\">View The Schedule</a></div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">Contributor Day — Connect, Collaborate, and Give Back</h2>\n\n\n\n<p>Kicking off the week on Tuesday, August 26 is Contributor Day, it is your chance to roll up your sleeves and make a direct impact on WordPress. Whether you’re a seasoned developer, creative designer, translator, marketer, or simply passionate about open source, there’s a place for you to get involved. Join WordPress teams working on real projects, share your skills, and connect with people across the global community. Contributor Day is also a fantastic place for hiring managers or business owners to meet emerging talent and see contributors in action. Lunch is provided, and both in-person and select remote participation options are available. If you’ve ever wanted to help shape the future of WordPress, this is your moment!<br></p>\n\n\n\n<p>Read more: <a href=\"https://us.wordcamp.org/2025/schedule/#contributor-day\">Start planning your Contributor Day activities &gt;&gt;</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Showcase Day — See WordPress in Action</h2>\n\n\n\n<p>Showcase Day on Wednesday, August 27, shines a spotlight on what&#8217;s possible with WordPress. Get inspired by live demos, case studies, and actionable presentations from experts and innovators using WordPress in creative and impactful ways. You’ll see how changemakers, nonprofits, publishers, and agencies use WordPress to solve real-world problems, build new products, and drive the web forward. Highlights include hands-on workshops, technical talks, and practical sessions covering everything from design systems to modern AI. It’s a full day dedicated to celebrating the talent, creativity, and innovation of the WordPress community.</p>\n\n\n\n<p>Read more: <a href=\"https://us.wordcamp.org/2025/schedule/#showcase-day\">See where these inspirational showcases take you &gt;&gt;</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Conference Days — Learn, Connect, and Level Up</h2>\n\n\n\n<p>The main event days for Thursday and Friday, August 28-29, feature a robust mix of technical deep-dives, product masterclasses, and sessions designed for all experience levels. Whether you’re a developer, designer, business owner, or just starting out, you’ll find plenty to explore—from future-focused discussions on AI and performance to hands-on workshops and networking events that bring the community together.</p>\n\n\n\n<p><strong>Keynote Highlights:</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Amy Sample Ward, CEO of NTEN:</strong> The Tech That Comes Next: How Changemakers, Philanthropists, and Technologists Can Build an Equitable World. Featured Wednesday, August 27.</li>\n\n\n\n<li><strong>Danny Sullivan, from Google Search</strong>: Industry leader, featured Thursday, August 28.</li>\n\n\n\n<li><strong>Matt Mullenweg, Co-founder of WordPress:</strong> Featured Friday, August 29.</li>\n\n\n\n<li>More keynotes announcing soon!</li>\n</ul>\n\n\n\n<p>With dozens of sessions across multiple tracks, plus workshops and networking opportunities, WordCamp US is set to be an unforgettable experience. Don’t miss your chance to connect, share ideas, and help shape the future of the web.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center\"><strong>Check out the full schedule and start planning your WordCamp experience.</strong></p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link has-blue-1-background-color has-background wp-element-button\" href=\"https://us.wordcamp.org/2025/schedule/\">View The Schedule</a></div>\n</div>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"19004\";s: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\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 08 Dec 2025 16:59:46 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:37:\"Accept-Encoding, accept, content-type\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 03 Dec 2025 22:28:41 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}s:5:\"build\";i:1760618736;s:21:\"cache_expiration_time\";i:1765256387;s:23:\"__cache_expiration_time\";i:1765256387;}', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(348354, '_site_transient_timeout_php_check_d876ede602bb9ac9456a7d884ebdc1f3', '1765817336', 'off'),
(348355, '_site_transient_php_check_d876ede602bb9ac9456a7d884ebdc1f3', 'a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'off'),
(343016, 'robin_image_optimizer_review_flag', 'no', 'auto'),
(341222, 'themeisle_sdk_notifications', 'a:2:{s:17:\"last_notification\";a:2:{s:2:\"id\";s:33:\"robin_image_optimizer_logger_flag\";s:10:\"display_at\";i:1764049982;}s:24:\"last_notification_active\";i:1765213345;}', 'auto'),
(275486, 'elementor_landing_pages_activation', '0', 'auto'),
(276006, '_elementor_local_google_fonts', 'a:2:{s:6:\"roboto\";a:2:{s:3:\"url\";s:82:\"https://onlineincshop.com/wp-content/uploads/elementor/google-fonts/css/roboto.css\";s:7:\"version\";i:1742539874;}s:10:\"robotoslab\";a:2:{s:3:\"url\";s:86:\"https://onlineincshop.com/wp-content/uploads/elementor/google-fonts/css/robotoslab.css\";s:7:\"version\";i:1742539914;}}', 'auto'),
(324724, 'wp_dd8fbf3c4347304f970c05675dcd5c26', '1755162699', 'off'),
(324707, 'wp_90da20421d69bbe99e5d386cc28aaa02', '1755162709', 'off'),
(324730, 'wp_84202c2140cba239f698c174259f8194', '1755162699', 'off'),
(295337, 'wp_11304a786dfb710d4f2fef80fc4a2881', '1746973200', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(303056, 'elementor_pro_remote_info_api_data_3.28.4', 'a:2:{s:7:\"timeout\";i:1748972426;s:5:\"value\";s:241977:\"{\"stable_version\":\"3.29.1\",\"last_updated\":\"2025-05-28 09:48:15\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:226408:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.29.1 - 2025-05-28<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Price Table widget<\\/li>\\n<\\/ul>\\n<h4>3.29.0 - 2025-05-19<\\/h4>\\n<ul>\\n<li>New: Introduced Cloud Templates - save, manage, and reuse your templates across all your sites from a single cloud library<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> attributes in Share Buttons widget<\\/li>\\n<li>Tweak: Improved accessibility by grouping content with <code>role=region<\\/code> in the Video Playlist widget<\\/li>\\n<li>Fix: Focus color is not applied correctly for accessibility in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24239\\\">#24239<\\/a>)<\\/li>\\n<li>Fix: Common scripts loaded late when using the Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.28.4 - 2025-05-05<\\/h4>\\n<ul>\\n<li>Fix: Empty results appeared on the frontend when using the Taxonomy Filter with the \'Avoid Duplicates\' option in Loop Grid widget<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled and the Optimized Markup experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.28.3 - 2025-04-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved sidebar navigation flow on the Elementor Home screen<\\/li>\\n<\\/ul>\\n<h4>3.28.2 - 2025-03-30<\\/h4>\\n<ul>\\n<li>Fix: Default Elementor animation shown for logged-out users when using an &quot;External URL&quot; source in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.28.1 - 2025-03-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline and Form widgets<\\/li>\\n<\\/ul>\\n<h4>3.28.0 - 2025-03-17<\\/h4>\\n<ul>\\n<li>Tweak: Ensured File Upload field styles are overridden by global styles in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11651\\\">#11651<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17223\\\">#17223<\\/a>)<\\/li>\\n<li>Tweak: Updated Scroll Snap description to clarify incompatibility with animations and motion effects<\\/li>\\n<li>Tweak: Prevented special characters from being encoded in the email subject field in Form widget<\\/li>\\n<li>Tweak: Loaded module styles within the module instead of registering them in <code>plugin.php<\\/code><\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.5<\\/li>\\n<li>Tweak: Improved keyboard accessibility for menus in Editor Top Bar<\\/li>\\n<li>Tweak: Made the edit button accessible in the Template widget<\\/li>\\n<li>Tweak: Optimized Form widget performance by caching field assets <code>using get_style_depends()<\\/code> and <code>get_script_depends()<\\/code> methods<\\/li>\\n<li>Tweak: Added Text Shadow control in Testimonial Carousel, Call to Action and Animated Headline widgets<\\/li>\\n<li>Fix: Button icon alignment breaks when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16077\\\">#16077<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16511\\\">#16511<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17692\\\">#17692<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17922\\\">#17922<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19253\\\">#19253<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19370\\\">#19370<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21236\\\">#21236<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21844\\\">#21844<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28080\\\">#28080<\\/a>)<\\/li>\\n<li>Fix: Dropdown caret color did not follow menu item color when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17500\\\">#17500<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18466\\\">#18466<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21664\\\">#21664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24929\\\">#24929<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28064\\\">#28064<\\/a>)<\\/li>\\n<li>Fix: Page doesn\'t scroll up when a coupon error notice appears in Checkout widget<\\/li>\\n<\\/ul>\\n<h4>3.27.7 - 2025-03-13<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.27.6 - 2025-03-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Template Condition<\\/li>\\n<\\/ul>\\n<h4>3.27.5 - 2025-03-03<\\/h4>\\n<ul>\\n<li>Fix: The <code>wp_trigger_error<\\/code> function causes the site to crash instead of triggering a warning when used with ACF text<\\/li>\\n<\\/ul>\\n<h4>3.27.4 - 2025-02-16<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Screenshots module<\\/li>\\n<li>Security Fix: Improved code security enforcement in Query control<\\/li>\\n<li>Fix: ACF <code>true_false<\\/code> field causing a fatal error when used as a dynamic tag with third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/30170\\\">#30170<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.27.3 - 2025-02-06<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Stripe Button widget<\\/li>\\n<\\/ul>\\n<h4>3.27.2 - 2025-02-03<\\/h4>\\n<ul>\\n<li>Fix: Value type configuration issue causing errors when using ACF<\\/li>\\n<li>Fix: Hide content on responsive breakpoint option is not working on WordPress Menu widget when Optimized Markup experiment is activated<\\/li>\\n<\\/ul>\\n<h4>3.27.1 - 2025-01-27<\\/h4>\\n<ul>\\n<li>Tweak: Increased the number of items allowed in Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<li>Security Fix: Improved code security enforcement in Global widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Admin settings<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Empty custom fields are missing in the Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<\\/ul>\\n<h4>3.27.0 - 2025-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Removed the <code>elementor-widget-container<\\/code> div from the Menu, Loop, Table of Contents, Form, and Hotspot widgets as part of the Optimized Markup experiment to improve HTML structure<\\/li>\\n<li>Tweak: Reduced DOM size by optimizing the submit button markup in Search widget<\\/li>\\n<li>Tweak: Moved style loading to the head instead of the footer to improve CLS<\\/li>\\n<li>Tweak: Enabled conditional loading of Swiper.js based on widget dependencies to reduce unnecessary assets and improve page load times<\\/li>\\n<li>Tweak: Standardized navigation elements like arrows and bullets across all carousel and slider widgets for improved accessibility<\\/li>\\n<li>Tweak: Improved accessibility when the submit button has only an icon and no text in Search widget<\\/li>\\n<li>Tweak: Removed <code>load_plugin_textdomain()<\\/code> function from Elementor Pro<\\/li>\\n<\\/ul>\\n<h4>3.26.3 - 2025-01-07<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Search widget<\\/li>\\n<li>Fix: Height issues cause slideshow thumbnails to display incorrectly in Media Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29663\\\">#29663<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.2 - 2024-12-22<\\/h4>\\n<ul>\\n<li>Fix: Menu items are not clickable in various scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29191\\\">#29191<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.1 - 2024-12-17<\\/h4>\\n<ul>\\n<li>Fix: Restore deprecated <code>Plugin::enqueue_styles()<\\/code> function to avoid errors with 3rd party plugins<\\/li>\\n<\\/ul>\\n<h4>3.26.0 - 2024-12-16<\\/h4>\\n<ul>\\n<li>New: Introducing dynamic content support for Off-canvas in Loop Grid widget templates - enabling seamless display of additional content dynamically (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29049\\\">#29049<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28935\\\">#28935<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7106\\\">#7106<\\/a>)<\\/li>\\n<li>New: AdBlock Detection trigger for Popups - display targeted popups for visitors using ad blockers<\\/li>\\n<li>New: Added Reload Page link action for Dynamic Tags<\\/li>\\n<li>Tweak: Added &quot;Space Between Dots&quot; control to Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2526\\\">#2526<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3277\\\">#3277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21697\\\">#21697<\\/a>)<\\/li>\\n<li>Tweak: Replaced hidden <code>elementor-screen-only<\\/code> div with <code>aria-label<\\/code> attributes<\\/li>\\n<li>Tweak: Removed <code>elementor-widget-container<\\/code> div from Elementor widgets as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Optimize popup styling by loading it only when necessary<\\/li>\\n<li>Tweak: Updated Gap between slides control to support only PX units in Carousel widget<\\/li>\\n<li>Tweak: Removed the dependency between the Tabs handler and the Menu handler<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> in Carousel widgets<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=carousel<\\/code> to carousel wrapper<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=slide<\\/code> to slide wrapper<\\/li>\\n<li>Tweak: Optimized carousel widgets markup as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Updated minimum required Safari version to 15.5<\\/li>\\n<li>Tweak: Facebook widgets are no longer supported on mobile due to Facebook functionality changes<\\/li>\\n<li>Fix: Motion Effects sticky feature is not working when Scroll Snap is enabled<\\/li>\\n<li>Fix: Custom Image Resolution option is not working in Gallery widget<\\/li>\\n<li>Fix: \'Reading Settings\' unexpectedly reduces the number of posts displayed when using the Archive with Pagination setting<\\/li>\\n<li>Fix: Step Form does not scroll to the top when the first field is not an input field in Form widget<\\/li>\\n<li>Fix: Display Condition feature is available without an active Elementor license in Floating Elements<\\/li>\\n<li>Fix: Background options of Flip Box in Loop Grid widget are not working when images are added using ACF Dynamic Tags<\\/li>\\n<li>Fix: Dropdown icon in the Select field of the Form widget is cut off when the Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Incompatibility between Form widget and WPML when using Nested Elements<\\/li>\\n<li>Fix: Performance issues when changing the title name in the Menu widget<\\/li>\\n<li>Fix: Warnings appear when Element Caching is set to Inactive in Carousel widgets<\\/li>\\n<li>Fix: Swiper styling missing from Lightbox inside Gallery widgets<\\/li>\\n<\\/ul>\\n<h4>3.25.5 - 2024-12-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Popup overlay shown for non-logged users even when disabled<\\/li>\\n<\\/ul>\\n<h4>3.25.4 - 2024-11-20<\\/h4>\\n<ul>\\n<li>Tweak: Improved Global Widget loading method to enhance performance<\\/li>\\n<\\/ul>\\n<h4>3.25.3 - 2024-11-13<\\/h4>\\n<ul>\\n<li>Fix: Nested Elements are activated even when the Container experiment is inactive<\\/li>\\n<\\/ul>\\n<h4>3.25.2 - 2024-11-03<\\/h4>\\n<ul>\\n<li>Fix: Styling issues affecting popup layout when using a Dynamic Tag to open the popup<\\/li>\\n<li>Fix: Image captions are not displaying for non-logged-in users in Media Carousel widget<\\/li>\\n<li>Fix: Custom Add to Cart widget with Quantity enabled causes critical error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29159\\\">#29159<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.25.1 - 2024-10-31<\\/h4>\\n<ul>\\n<li>Fix: Multiple Custom Add to Cart widgets on the same page are adding the same product<\\/li>\\n<\\/ul>\\n<h4>3.25.0 - 2024-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added pagination functionality to the Live Results in Search widget<\\/li>\\n<li>Tweak: Added Anchor Offset control to allow precise positioning when scrolling to anchor links on the page<\\/li>\\n<li>Tweak: Load motion effects styles only when they are in use<\\/li>\\n<li>Tweak: Load sticky styles only when they are in use<\\/li>\\n<li>Tweak: Load popup styles only when they are in use<\\/li>\\n<li>Tweak: Load theme builder styles only when they are in use<\\/li>\\n<li>Tweak: Load transition styles for Call to Action and Gallery widgets only when they are in use<\\/li>\\n<li>Tweak: Load styles for Form widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for WooCommerce widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Theme Elements widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Carousel widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Pricing widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Floating Elements separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Link in Bio widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load minified CSS in the Loop Builder\'s Call to Action button in the Editor<\\/li>\\n<li>Tweak: Removed &quot;Payments&quot; module styles<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Payapl widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Stripe widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Merged &quot;Form Submissions&quot; feature into the version and moved it to the Advanced tab<\\/li>\\n<li>Tweak: Merged &quot;Display Conditions&quot; into the version<\\/li>\\n<li>Fix: Missing translation string for the empty message in the Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27580\\\">#27580<\\/a>)<\\/li>\\n<li>Fix: Local Storage and Session Storage were being used even when popups were not in use (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7151\\\">#7151<\\/a>)<\\/li>\\n<li>Fix: Masonry layout is not working when pagination is set to &quot;Load More&quot; or &quot;Infinite Scroll&quot; in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23684\\\">#23684<\\/a>)<\\/li>\\n<li>Fix: Extra gap between widgets on the frontend when using Off-canvas widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27706\\\">#27706<\\/a>)<\\/li>\\n<li>Fix: Pagination and custom queries did not work when the Posts Widget was saved as a Global Widget or used via shortcode<\\/li>\\n<li>Fix: Lightbox videos are missing controls and displayed at the wrong size in Media Carousel widget<\\/li>\\n<li>Fix: Pagination options with Individual Pagination not working as expected in Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Justified or Masonry layouts for the Pro Gallery would not display images on the frontend when inserted via nested tabs<\\/li>\\n<li>Fix: Error issue in the Loop Grid widget when used in theme parts with the Taxonomy Filter<\\/li>\\n<li>Fix: Removed the focus ring after clicking to open the Off Canvas inside the Editor<\\/li>\\n<li>Fix: Background gradient colors from the dynamic color tag values are not rendering on the frontend<\\/li>\\n<li>Fix: Excessive database requests generated by the Loop Grid widget<\\/li>\\n<li>Fix: Colors from Dynamic Tags were not rendered on the frontend<\\/li>\\n<li>Fix: Display issue in the Menu widget caused by the \'Native Intersection Observer API<\\/li>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget<\\/li>\\n<li>Fix: Content Width control inside the Mega Menu is displaying an empty value<\\/li>\\n<\\/ul>\\n<h4>3.24.4 - 2024-10-09<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<\\/ul>\\n<h4>3.24.3 - 2024-10-01<\\/h4>\\n<ul>\\n<li>Fix: Floating Elements template not loading when Single Page template is set with All Singular condition<\\/li>\\n<li>Fix: Form field styles not loading properly in various scenarios<\\/li>\\n<\\/ul>\\n<h4>3.24.2 - 2024-09-18<\\/h4>\\n<ul>\\n<li>Fix: Icons not displaying when Inline SVG Icons experiment is active in Link In Bio widgets and Floating Elements<\\/li>\\n<\\/ul>\\n<h4>3.24.1 - 2024-09-12<\\/h4>\\n<ul>\\n<li>Fix: Widget styles not loading correctly on front causing alignment inconsistencies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28676\\\">#28676<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.24.0 - 2024-09-10<\\/h4>\\n<ul>\\n<li>New: Introducing support for Variable Fonts - allowing for more dynamic and flexible text styling (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6703\\\">#6703<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11333\\\">#11333<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19277\\\">#19277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25485\\\">#25485<\\/a>)<\\/li>\\n<li>Tweak: Added \'Structure\' indication for widgets with Display Conditions applied (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28027\\\">#28027<\\/a>)<\\/li>\\n<li>Tweak: Added a new option for setting the live search results width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28280\\\">#28280<\\/a>)<\\/li>\\n<li>Tweak: Improved Honeypot field functionality in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28480\\\">#28480<\\/a>)<\\/li>\\n<li>Tweak: Added options to \'Copy\', \'Paste\', and \'Clear\' Display Conditions in Context Menu<\\/li>\\n<li>Tweak: Improved performance of the Menu widget when using Dynamic Tags in the URL field<\\/li>\\n<li>Tweak: Improved performance when using Dynamic Tags in Nested Elements<\\/li>\\n<li>Tweak: Added the option for users to disable Akismet for specific Elementor forms<\\/li>\\n<li>Tweak: Adjusted URL structure when presenting the Search Archive page in Search widget<\\/li>\\n<li>Tweak: Added the \'Create Template\' button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the \'Loader\' animation while live results are loading in Search widget<\\/li>\\n<li>Tweak: Load share buttons compatibility styles only when they are in use<\\/li>\\n<li>Tweak: Load dialog styles only when they are in use<\\/li>\\n<li>Tweak: Load global widget styles only during Editor preview<\\/li>\\n<li>Tweak: Conditionally load widget styles only when the widgets are used<\\/li>\\n<li>Tweak: Load styles for CTA hover animations only when they are in use<\\/li>\\n<li>Tweak: Load notes styles only when the WordPress Toolbar is displayed<\\/li>\\n<li>Tweak: Split <code>animations.min.css<\\/code> into multiple CSS files and load them conditionally<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Stable status<\\/li>\\n<li>Tweak: Merged Taxonomy Filter feature into the version<\\/li>\\n<li>Tweak: Merged Search feature into the version<\\/li>\\n<li>Tweak: Added a note to \'Current Query\' explaining the impact of WordPress settings on pagination within Archives<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for the Off-Canvas widget<\\/li>\\n<li>Fix: Manual Selection option is not excluding sticky posts in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18689\\\">#18689<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23331\\\">#23331<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28179\\\">#28179<\\/a>)<\\/li>\\n<li>Fix: Template ID does not change according to the imported Loop Item (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21404\\\">#21404<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22202\\\">#22202<\\/a>)<\\/li>\\n<li>Fix: \'Editing Mode\' for the Off-canvas was not functioning correctly in certain scenarios<\\/li>\\n<li>Fix: Added definition to <code>clear_custom_image_sizes<\\/code> hook to prevent edge case issues<\\/li>\\n<li>Fix: Flickering issue with search result buttons when closing results using the keyboard escape key in Search widget<\\/li>\\n<li>Fix: Theme Style settings for buttons were overriding the text styling in Search widget<\\/li>\\n<li>Fix: Nesting menu inside another menu causes functionality issues in Menu widget<\\/li>\\n<li>Fix: Error when using array as custom fields value in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.23.3 - 2024-08-05<\\/h4>\\n<ul>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28194\\\">#28194<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.23.2 - 2024-07-29<\\/h4>\\n<ul>\\n<li>Fix: Horizontal scroll bar appearing on the page when using Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28087\\\">#28087<\\/a>)<\\/li>\\n<li>Fix: Dropdown area disappearing in certain scenarios in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.23.1 - 2024-07-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in link URL<\\/li>\\n<\\/ul>\\n<h4>3.23.0 - 2024-07-15<\\/h4>\\n<ul>\\n<li>New: Search Widget with Live Results - Display live search results as visitors type into the search box, enhancing user experience and engagement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27664\\\">#27664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24931\\\">#24931<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21459\\\">#21459<\\/a>)<\\/li>\\n<li>Tweak: Renamed <code>width<\\/code> to <code>Min width<\\/code> and added <code>Max width<\\/code> control to Hotspot tooltips (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18930\\\">#18930<\\/a>)<\\/li>\\n<li>Tweak: Applied a logical DOM order to the Mega Menu widget to improve accessibility<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for WordPress Menu widget<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for Menu widget<\\/li>\\n<li>Tweak: Added a bottom option to the Image Position control in Call to Action widget<\\/li>\\n<li>Fix: Missing version string in included CSS query string when Improved CSS Loading is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21879\\\">#21879<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23821\\\">#23821<\\/a>)<\\/li>\\n<li>Fix: Form submission icon message does not display correctly when Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Save and Close button position issues in the conditions screen in Theme Builder.<\\/li>\\n<li>Fix: Focus appears on the first element when using the mouse to open Off-Canvas <\\/li>\\n<li>Fix: Links to Elementor Settings are broken in various locations<\\/li>\\n<li>Fix: Conditions field not showing all relevant conditions in Theme Builder<\\/li>\\n<li>Fix: Off-Canvas flickering in sticky containers with exit animations triggered by sticky effects<\\/li>\\n<\\/ul>\\n<h4>3.22.1 - 2024-06-24<\\/h4>\\n<ul>\\n<li>Fix: Styling of Global widgets not loading when Element Caching experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27704\\\">#27704<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.22.0 - 2024-06-16<\\/h4>\\n<ul>\\n<li>New: Introducing Off-Canvas widget - create engaging and creative layers triggered by a link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6225\\\">#6225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21769\\\">#21769<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25770\\\">#25770<\\/a>)<\\/li>\\n<li>Tweak: Added option to remove \'User IP\' and \'User Agent\' from the form submissions metadata (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14285\\\">#14285<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>waypoints.js<\\/code> library with the native Intersection Observer API<\\/li>\\n<li>Tweak: Extended Alignment and Position capabilities in Form widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Flip Box widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Call to Action widget<\\/li>\\n<li>Tweak: Optimized Form widget to eliminate unnecessary markup when the button icon is empty<\\/li>\\n<li>Tweak: Optimized Posts widget to eliminate unnecessary markup when Load More button text is empty<\\/li>\\n<li>Tweak: Remove <code>placeholder<\\/code> arguments from URL controls<\\/li>\\n<li>Tweak: Implemented CSS logical properties to Icon Position in Form, Posts and Menu Cart widgets<\\/li>\\n<li>Tweak: Activated Display Conditions feature for existing sites<\\/li>\\n<li>Tweak: Activated Taxonomy Filter feature for existing sites<\\/li>\\n<li>Tweak: Added functionality to delay the running of the ready triggers on inner elements<\\/li>\\n<li>Fix: Icons are now part of the link in the Menu Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24298\\\">#24298<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25112\\\">#25112<\\/a>)<\\/li>\\n<li>Fix: <code>all: unset<\\/code> assigned to buttons cause focus issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24322\\\">#24322<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25448\\\">#25448<\\/a>)<\\/li>\\n<li>Fix: Menu cart SVG icon disappears on front when Optimized Control Loading experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27342\\\">#27342<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro auto-updates are not working on multisite networks (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12615\\\">#12615<\\/a>)<\\/li>\\n<li>Fix: PHP error appears in the editor when using Loop Grid in an archive template<\\/li>\\n<li>Fix: UI glitch on Icon Position control in Paypal and Stripe Buttons widgets<\\/li>\\n<li>Fix: Icon Position control RTL issue in Hotspot widget<\\/li>\\n<li>Fix: Manual Selection &quot;Include By&quot; Query doesn\'t work with product categories<\\/li>\\n<\\/ul>\\n<h4>3.21.3 - 2024-05-20<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Loop Grid widget<\\/li>\\n<li>Fix: License expired affects the Display Conditions functionality in the front end<\\/li>\\n<\\/ul>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn\'t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Enqueuing non-existing Loop Template CSS file in Loop Item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24959\\\">#24959<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>New: Introducing Display Conditions for Elements - allowing users to customize content visibility based on specified criteria (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4246\\\">#4246<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21152\\\">#21152<\\/a>)<\\/li>\\n<li>New: Implemented Akismet Integration for enhanced spam protection and security in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11401\\\">#11401<\\/a>)<\\/li>\\n<li>New: Introducing Permissions functionality to Element Manager - providing users with enhanced control over access and management capabilities<\\/li>\\n<li>Tweak: Added styling option for dropdown indicator in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21907\\\">#21907<\\/a>)<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Implemented CSS logical properties in WordPress Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Reviews widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Countdown widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Updated <code>jquery.smartmenus.js<\\/code> version from 1.1.1 to 1.2.0<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21489\\\">#21489<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22368\\\">#22368<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23085\\\">#23085<\\/a>)<\\/li>\\n<li>Fix: History panel deprecation notices in console log<\\/li>\\n<li>Fix: Second Pro rollback installed the latest version instead of the specifically selected older version<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation in Menu Widget<\\/li>\\n<li>Fix: UX issues when using in-place editing in Menu widget<\\/li>\\n<li>Fix: Pagination with page reload is not working when used with the Taxonomy filter and Loop Grid widget in Archive template<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle becomes inaccessible in various scenarios cases in Loop Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">#21316<\\/a>)<\\/li>\\n<li>Fix: Can\'t edit page when using \'Content Tabs\' and \'Section\' options in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-20<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-06<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">#19553<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes character is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629\\\">#18629<\\/a>)<\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475]\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.29.1\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.8.1\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NDg5Mjg4ODgsImV4cCI6MTc0OTAxNTI4OH0.cLIPZMvqGID0XHmG-9qWnJf0DCyb4VKU9IrTw1ve4MA\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NDg5Mjg4ODgsImV4cCI6MTc0OTAxNTI4OH0.cLIPZMvqGID0XHmG-9qWnJf0DCyb4VKU9IrTw1ve4MA\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.8.1\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImlhdCI6MTc0ODkyODg4OCwiZXhwIjoxNzQ5MDE1Mjg4fQ.c2poTLqoIPpa-lWpwL0fuTjS264bmu947gZpAuxCDs4\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImlhdCI6MTc0ODkyODg4OCwiZXhwIjoxNzQ5MDE1Mjg4fQ.c2poTLqoIPpa-lWpwL0fuTjS264bmu947gZpAuxCDs4\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(323182, 'wpseo_llmstxt', 'a:7:{s:23:\"llms_txt_selection_mode\";s:4:\"auto\";s:13:\"about_us_page\";i:0;s:12:\"contact_page\";i:0;s:10:\"terms_page\";i:0;s:19:\"privacy_policy_page\";i:0;s:9:\"shop_page\";i:0;s:20:\"other_included_pages\";a:0:{}}', 'auto'),
(303288, 'frm_form_state_key', 'DG6fJ7cPg54i9oOEBix7nYKFRfXTvmzi1cZgvnCujU8=', 'off'),
(299931, 'wp_ab221840768fc69fd0929c228321c94b', '1748247222', 'off'),
(347680, 'category_children', 'a:0:{}', 'auto');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(323195, 'elementor_pro_remote_info_api_data_3.30.1', 'a:2:{s:7:\"timeout\";i:1754671299;s:5:\"value\";s:245537:\"{\"stable_version\":\"3.31.0\",\"last_updated\":\"2025-08-05 13:43:11\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:229840:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.31.0 - 2025-08-05<\\/h4>\\n<ul>\\n<li>New: Introducing Attributes - add custom HTML attributes to elements for advanced control - Editor V4<\\/li>\\n<li>Tweak: Optimized Custom Code styles by removing redundant RTL file<\\/li>\\n<li>Tweak: Improved performance by loading ribbon styles only when used in Call to Action and Price Table widgets<\\/li>\\n<li>Tweak: Improved semantic markup structure for header and footer documents<\\/li>\\n<li>Tweak: Reorganized design controls in Animated Headline widget<\\/li>\\n<li>Tweak: Reorganized design controls in Blockquote widget<\\/li>\\n<li>Tweak: Reorganized design controls in Countdown widget<\\/li>\\n<li>Tweak: Replaced SASS mixins and functions with native CSS logical properties<\\/li>\\n<li>Fix: Empty headers are rendered in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28167\\\">#28167<\\/a>)<\\/li>\\n<li>Fix: <code>TypeError<\\/code> bug in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.30.1 - 2025-07-22<\\/h4>\\n<ul>\\n<li>Security Fix: Improved content sanitization in multiple widgets<\\/li>\\n<li>Fix: UI issue in Hotspot widget when Optimized Markup experiment is enabled<\\/li>\\n<li>Fix: Taxonomy filter not working in the Editor when Optimized Markup experiment is enabled<\\/li>\\n<\\/ul>\\n<h4>3.30.0 - 2025-07-01<\\/h4>\\n<ul>\\n<li>New: Introduced Full Website Templates in the Cloud - export, manage, and reuse full site kits across all your websites from one place<\\/li>\\n<li>Tweak: Activated &quot;Optimized Markup&quot; feature on new sites<\\/li>\\n<li>Tweak: Activated &quot;Menu&quot; feature on new sites<\\/li>\\n<li>Tweak: Improved error handling for Theme Builder display conditions<\\/li>\\n<li>Tweak: Added styling controls to Post Excerpt widget<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> and <code>aria-label<\\/code> attributes Post Navigation widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Form widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Login widget<\\/li>\\n<li>Tweak: Arranged content as lists in Portfolio and Posts widgets<\\/li>\\n<li>Tweak: Added Box Shadow and Text Shadow controls in Countdown widget<\\/li>\\n<li>Tweak: Moved image resolution control to content tab in Price List widget<\\/li>\\n<li>Tweak: Renamed and reorganized style sections in Price List widget<\\/li>\\n<li>Tweak: Added conditional logic to controls in Price Table widget<\\/li>\\n<li>Tweak: Grouped layout controls under list section in Price List widget<\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.6<\\/li>\\n<li>Fix: Inline font icons support doesn\'t work in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24367\\\">#24367<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18343\\\">#18343<\\/a>)<\\/li>\\n<li>Fix: Page Title condition doesn\'t work on child pages in Widget Display Conditions<\\/li>\\n<li>Fix: Editor users with &quot;Access to edit content only&quot; are able to delete elements<\\/li>\\n<li>Fix: Links are not crawlable in Video Playlist widget<\\/li>\\n<li>Fix: Uses hardcoded admin fonts in Video Playlist widget<\\/li>\\n<li>Fix: Editor freezes when the Form widget is used with a high PHP upload size limit<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled in Slides widget<\\/li>\\n<li>Fix: Plugin dependency not enforced in Elementor Pro<\\/li>\\n<li>Fix: Console shows deprecation warning in Global Widgets<\\/li>\\n<\\/ul>\\n<h4>3.29.2 - 2025-06-04<\\/h4>\\n<ul>\\n<li>Tweak: Added selectors to Menu widget for compatibility with Optimized Markup experiment<\\/li>\\n<\\/ul>\\n<h4>3.29.1 - 2025-05-28<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Price Table widget<\\/li>\\n<\\/ul>\\n<h4>3.29.0 - 2025-05-19<\\/h4>\\n<ul>\\n<li>New: Introduced Cloud Templates - save, manage, and reuse your templates across all your sites from a single cloud library<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> attributes in Share Buttons widget<\\/li>\\n<li>Tweak: Improved accessibility by grouping content with <code>role=region<\\/code> in the Video Playlist widget<\\/li>\\n<li>Fix: Focus color is not applied correctly for accessibility in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24239\\\">#24239<\\/a>)<\\/li>\\n<li>Fix: Common scripts loaded late when using the Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.28.4 - 2025-05-05<\\/h4>\\n<ul>\\n<li>Fix: Empty results appeared on the frontend when using the Taxonomy Filter with the \'Avoid Duplicates\' option in Loop Grid widget<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled and the Optimized Markup experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.28.3 - 2025-04-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved sidebar navigation flow on the Elementor Home screen<\\/li>\\n<\\/ul>\\n<h4>3.28.2 - 2025-03-30<\\/h4>\\n<ul>\\n<li>Fix: Default Elementor animation shown for logged-out users when using an &quot;External URL&quot; source in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.28.1 - 2025-03-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline and Form widgets<\\/li>\\n<\\/ul>\\n<h4>3.28.0 - 2025-03-17<\\/h4>\\n<ul>\\n<li>Tweak: Ensured File Upload field styles are overridden by global styles in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11651\\\">#11651<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17223\\\">#17223<\\/a>)<\\/li>\\n<li>Tweak: Updated Scroll Snap description to clarify incompatibility with animations and motion effects<\\/li>\\n<li>Tweak: Prevented special characters from being encoded in the email subject field in Form widget<\\/li>\\n<li>Tweak: Loaded module styles within the module instead of registering them in <code>plugin.php<\\/code><\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.5<\\/li>\\n<li>Tweak: Improved keyboard accessibility for menus in Editor Top Bar<\\/li>\\n<li>Tweak: Made the edit button accessible in the Template widget<\\/li>\\n<li>Tweak: Optimized Form widget performance by caching field assets <code>using get_style_depends()<\\/code> and <code>get_script_depends()<\\/code> methods<\\/li>\\n<li>Tweak: Added Text Shadow control in Testimonial Carousel, Call to Action and Animated Headline widgets<\\/li>\\n<li>Fix: Button icon alignment breaks when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16077\\\">#16077<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16511\\\">#16511<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17692\\\">#17692<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17922\\\">#17922<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19253\\\">#19253<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19370\\\">#19370<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21236\\\">#21236<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21844\\\">#21844<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28080\\\">#28080<\\/a>)<\\/li>\\n<li>Fix: Dropdown caret color did not follow menu item color when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17500\\\">#17500<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18466\\\">#18466<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21664\\\">#21664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24929\\\">#24929<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28064\\\">#28064<\\/a>)<\\/li>\\n<li>Fix: Page doesn\'t scroll up when a coupon error notice appears in Checkout widget<\\/li>\\n<\\/ul>\\n<h4>3.27.7 - 2025-03-13<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.27.6 - 2025-03-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Template Condition<\\/li>\\n<\\/ul>\\n<h4>3.27.5 - 2025-03-03<\\/h4>\\n<ul>\\n<li>Fix: The <code>wp_trigger_error<\\/code> function causes the site to crash instead of triggering a warning when used with ACF text<\\/li>\\n<\\/ul>\\n<h4>3.27.4 - 2025-02-16<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Screenshots module<\\/li>\\n<li>Security Fix: Improved code security enforcement in Query control<\\/li>\\n<li>Fix: ACF <code>true_false<\\/code> field causing a fatal error when used as a dynamic tag with third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/30170\\\">#30170<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.27.3 - 2025-02-06<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Stripe Button widget<\\/li>\\n<\\/ul>\\n<h4>3.27.2 - 2025-02-03<\\/h4>\\n<ul>\\n<li>Fix: Value type configuration issue causing errors when using ACF<\\/li>\\n<li>Fix: Hide content on responsive breakpoint option is not working on WordPress Menu widget when Optimized Markup experiment is activated<\\/li>\\n<\\/ul>\\n<h4>3.27.1 - 2025-01-27<\\/h4>\\n<ul>\\n<li>Tweak: Increased the number of items allowed in Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<li>Security Fix: Improved code security enforcement in Global widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Admin settings<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Empty custom fields are missing in the Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<\\/ul>\\n<h4>3.27.0 - 2025-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Removed the <code>elementor-widget-container<\\/code> div from the Menu, Loop, Table of Contents, Form, and Hotspot widgets as part of the Optimized Markup experiment to improve HTML structure<\\/li>\\n<li>Tweak: Reduced DOM size by optimizing the submit button markup in Search widget<\\/li>\\n<li>Tweak: Moved style loading to the head instead of the footer to improve CLS<\\/li>\\n<li>Tweak: Enabled conditional loading of Swiper.js based on widget dependencies to reduce unnecessary assets and improve page load times<\\/li>\\n<li>Tweak: Standardized navigation elements like arrows and bullets across all carousel and slider widgets for improved accessibility<\\/li>\\n<li>Tweak: Improved accessibility when the submit button has only an icon and no text in Search widget<\\/li>\\n<li>Tweak: Removed <code>load_plugin_textdomain()<\\/code> function from Elementor Pro<\\/li>\\n<\\/ul>\\n<h4>3.26.3 - 2025-01-07<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Search widget<\\/li>\\n<li>Fix: Height issues cause slideshow thumbnails to display incorrectly in Media Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29663\\\">#29663<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.2 - 2024-12-22<\\/h4>\\n<ul>\\n<li>Fix: Menu items are not clickable in various scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29191\\\">#29191<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.1 - 2024-12-17<\\/h4>\\n<ul>\\n<li>Fix: Restore deprecated <code>Plugin::enqueue_styles()<\\/code> function to avoid errors with 3rd party plugins<\\/li>\\n<\\/ul>\\n<h4>3.26.0 - 2024-12-16<\\/h4>\\n<ul>\\n<li>New: Introducing dynamic content support for Off-canvas in Loop Grid widget templates - enabling seamless display of additional content dynamically (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29049\\\">#29049<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28935\\\">#28935<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7106\\\">#7106<\\/a>)<\\/li>\\n<li>New: AdBlock Detection trigger for Popups - display targeted popups for visitors using ad blockers<\\/li>\\n<li>New: Added Reload Page link action for Dynamic Tags<\\/li>\\n<li>Tweak: Added &quot;Space Between Dots&quot; control to Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2526\\\">#2526<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3277\\\">#3277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21697\\\">#21697<\\/a>)<\\/li>\\n<li>Tweak: Replaced hidden <code>elementor-screen-only<\\/code> div with <code>aria-label<\\/code> attributes<\\/li>\\n<li>Tweak: Removed <code>elementor-widget-container<\\/code> div from Elementor widgets as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Optimize popup styling by loading it only when necessary<\\/li>\\n<li>Tweak: Updated Gap between slides control to support only PX units in Carousel widget<\\/li>\\n<li>Tweak: Removed the dependency between the Tabs handler and the Menu handler<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> in Carousel widgets<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=carousel<\\/code> to carousel wrapper<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=slide<\\/code> to slide wrapper<\\/li>\\n<li>Tweak: Optimized carousel widgets markup as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Updated minimum required Safari version to 15.5<\\/li>\\n<li>Tweak: Facebook widgets are no longer supported on mobile due to Facebook functionality changes<\\/li>\\n<li>Fix: Motion Effects sticky feature is not working when Scroll Snap is enabled<\\/li>\\n<li>Fix: Custom Image Resolution option is not working in Gallery widget<\\/li>\\n<li>Fix: \'Reading Settings\' unexpectedly reduces the number of posts displayed when using the Archive with Pagination setting<\\/li>\\n<li>Fix: Step Form does not scroll to the top when the first field is not an input field in Form widget<\\/li>\\n<li>Fix: Display Condition feature is available without an active Elementor license in Floating Elements<\\/li>\\n<li>Fix: Background options of Flip Box in Loop Grid widget are not working when images are added using ACF Dynamic Tags<\\/li>\\n<li>Fix: Dropdown icon in the Select field of the Form widget is cut off when the Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Incompatibility between Form widget and WPML when using Nested Elements<\\/li>\\n<li>Fix: Performance issues when changing the title name in the Menu widget<\\/li>\\n<li>Fix: Warnings appear when Element Caching is set to Inactive in Carousel widgets<\\/li>\\n<li>Fix: Swiper styling missing from Lightbox inside Gallery widgets<\\/li>\\n<\\/ul>\\n<h4>3.25.5 - 2024-12-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Popup overlay shown for non-logged users even when disabled<\\/li>\\n<\\/ul>\\n<h4>3.25.4 - 2024-11-20<\\/h4>\\n<ul>\\n<li>Tweak: Improved Global Widget loading method to enhance performance<\\/li>\\n<\\/ul>\\n<h4>3.25.3 - 2024-11-13<\\/h4>\\n<ul>\\n<li>Fix: Nested Elements are activated even when the Container experiment is inactive<\\/li>\\n<\\/ul>\\n<h4>3.25.2 - 2024-11-03<\\/h4>\\n<ul>\\n<li>Fix: Styling issues affecting popup layout when using a Dynamic Tag to open the popup<\\/li>\\n<li>Fix: Image captions are not displaying for non-logged-in users in Media Carousel widget<\\/li>\\n<li>Fix: Custom Add to Cart widget with Quantity enabled causes critical error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29159\\\">#29159<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.25.1 - 2024-10-31<\\/h4>\\n<ul>\\n<li>Fix: Multiple Custom Add to Cart widgets on the same page are adding the same product<\\/li>\\n<\\/ul>\\n<h4>3.25.0 - 2024-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added pagination functionality to the Live Results in Search widget<\\/li>\\n<li>Tweak: Added Anchor Offset control to allow precise positioning when scrolling to anchor links on the page<\\/li>\\n<li>Tweak: Load motion effects styles only when they are in use<\\/li>\\n<li>Tweak: Load sticky styles only when they are in use<\\/li>\\n<li>Tweak: Load popup styles only when they are in use<\\/li>\\n<li>Tweak: Load theme builder styles only when they are in use<\\/li>\\n<li>Tweak: Load transition styles for Call to Action and Gallery widgets only when they are in use<\\/li>\\n<li>Tweak: Load styles for Form widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for WooCommerce widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Theme Elements widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Carousel widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Pricing widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Floating Elements separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Link in Bio widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load minified CSS in the Loop Builder\'s Call to Action button in the Editor<\\/li>\\n<li>Tweak: Removed &quot;Payments&quot; module styles<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Payapl widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Stripe widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Merged &quot;Form Submissions&quot; feature into the version and moved it to the Advanced tab<\\/li>\\n<li>Tweak: Merged &quot;Display Conditions&quot; into the version<\\/li>\\n<li>Fix: Missing translation string for the empty message in the Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27580\\\">#27580<\\/a>)<\\/li>\\n<li>Fix: Local Storage and Session Storage were being used even when popups were not in use (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7151\\\">#7151<\\/a>)<\\/li>\\n<li>Fix: Masonry layout is not working when pagination is set to &quot;Load More&quot; or &quot;Infinite Scroll&quot; in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23684\\\">#23684<\\/a>)<\\/li>\\n<li>Fix: Extra gap between widgets on the frontend when using Off-canvas widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27706\\\">#27706<\\/a>)<\\/li>\\n<li>Fix: Pagination and custom queries did not work when the Posts Widget was saved as a Global Widget or used via shortcode<\\/li>\\n<li>Fix: Lightbox videos are missing controls and displayed at the wrong size in Media Carousel widget<\\/li>\\n<li>Fix: Pagination options with Individual Pagination not working as expected in Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Justified or Masonry layouts for the Pro Gallery would not display images on the frontend when inserted via nested tabs<\\/li>\\n<li>Fix: Error issue in the Loop Grid widget when used in theme parts with the Taxonomy Filter<\\/li>\\n<li>Fix: Removed the focus ring after clicking to open the Off Canvas inside the Editor<\\/li>\\n<li>Fix: Background gradient colors from the dynamic color tag values are not rendering on the frontend<\\/li>\\n<li>Fix: Excessive database requests generated by the Loop Grid widget<\\/li>\\n<li>Fix: Colors from Dynamic Tags were not rendered on the frontend<\\/li>\\n<li>Fix: Display issue in the Menu widget caused by the \'Native Intersection Observer API<\\/li>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget<\\/li>\\n<li>Fix: Content Width control inside the Mega Menu is displaying an empty value<\\/li>\\n<\\/ul>\\n<h4>3.24.4 - 2024-10-09<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<\\/ul>\\n<h4>3.24.3 - 2024-10-01<\\/h4>\\n<ul>\\n<li>Fix: Floating Elements template not loading when Single Page template is set with All Singular condition<\\/li>\\n<li>Fix: Form field styles not loading properly in various scenarios<\\/li>\\n<\\/ul>\\n<h4>3.24.2 - 2024-09-18<\\/h4>\\n<ul>\\n<li>Fix: Icons not displaying when Inline SVG Icons experiment is active in Link In Bio widgets and Floating Elements<\\/li>\\n<\\/ul>\\n<h4>3.24.1 - 2024-09-12<\\/h4>\\n<ul>\\n<li>Fix: Widget styles not loading correctly on front causing alignment inconsistencies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28676\\\">#28676<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.24.0 - 2024-09-10<\\/h4>\\n<ul>\\n<li>New: Introducing support for Variable Fonts - allowing for more dynamic and flexible text styling (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6703\\\">#6703<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11333\\\">#11333<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19277\\\">#19277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25485\\\">#25485<\\/a>)<\\/li>\\n<li>Tweak: Added \'Structure\' indication for widgets with Display Conditions applied (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28027\\\">#28027<\\/a>)<\\/li>\\n<li>Tweak: Added a new option for setting the live search results width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28280\\\">#28280<\\/a>)<\\/li>\\n<li>Tweak: Improved Honeypot field functionality in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28480\\\">#28480<\\/a>)<\\/li>\\n<li>Tweak: Added options to \'Copy\', \'Paste\', and \'Clear\' Display Conditions in Context Menu<\\/li>\\n<li>Tweak: Improved performance of the Menu widget when using Dynamic Tags in the URL field<\\/li>\\n<li>Tweak: Improved performance when using Dynamic Tags in Nested Elements<\\/li>\\n<li>Tweak: Added the option for users to disable Akismet for specific Elementor forms<\\/li>\\n<li>Tweak: Adjusted URL structure when presenting the Search Archive page in Search widget<\\/li>\\n<li>Tweak: Added the \'Create Template\' button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the \'Loader\' animation while live results are loading in Search widget<\\/li>\\n<li>Tweak: Load share buttons compatibility styles only when they are in use<\\/li>\\n<li>Tweak: Load dialog styles only when they are in use<\\/li>\\n<li>Tweak: Load global widget styles only during Editor preview<\\/li>\\n<li>Tweak: Conditionally load widget styles only when the widgets are used<\\/li>\\n<li>Tweak: Load styles for CTA hover animations only when they are in use<\\/li>\\n<li>Tweak: Load notes styles only when the WordPress Toolbar is displayed<\\/li>\\n<li>Tweak: Split <code>animations.min.css<\\/code> into multiple CSS files and load them conditionally<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Stable status<\\/li>\\n<li>Tweak: Merged Taxonomy Filter feature into the version<\\/li>\\n<li>Tweak: Merged Search feature into the version<\\/li>\\n<li>Tweak: Added a note to \'Current Query\' explaining the impact of WordPress settings on pagination within Archives<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for the Off-Canvas widget<\\/li>\\n<li>Fix: Manual Selection option is not excluding sticky posts in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18689\\\">#18689<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23331\\\">#23331<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28179\\\">#28179<\\/a>)<\\/li>\\n<li>Fix: Template ID does not change according to the imported Loop Item (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21404\\\">#21404<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22202\\\">#22202<\\/a>)<\\/li>\\n<li>Fix: \'Editing Mode\' for the Off-canvas was not functioning correctly in certain scenarios<\\/li>\\n<li>Fix: Added definition to <code>clear_custom_image_sizes<\\/code> hook to prevent edge case issues<\\/li>\\n<li>Fix: Flickering issue with search result buttons when closing results using the keyboard escape key in Search widget<\\/li>\\n<li>Fix: Theme Style settings for buttons were overriding the text styling in Search widget<\\/li>\\n<li>Fix: Nesting menu inside another menu causes functionality issues in Menu widget<\\/li>\\n<li>Fix: Error when using array as custom fields value in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.23.3 - 2024-08-05<\\/h4>\\n<ul>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28194\\\">#28194<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.23.2 - 2024-07-29<\\/h4>\\n<ul>\\n<li>Fix: Horizontal scroll bar appearing on the page when using Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28087\\\">#28087<\\/a>)<\\/li>\\n<li>Fix: Dropdown area disappearing in certain scenarios in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.23.1 - 2024-07-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in link URL<\\/li>\\n<\\/ul>\\n<h4>3.23.0 - 2024-07-15<\\/h4>\\n<ul>\\n<li>New: Search Widget with Live Results - Display live search results as visitors type into the search box, enhancing user experience and engagement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27664\\\">#27664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24931\\\">#24931<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21459\\\">#21459<\\/a>)<\\/li>\\n<li>Tweak: Renamed <code>width<\\/code> to <code>Min width<\\/code> and added <code>Max width<\\/code> control to Hotspot tooltips (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18930\\\">#18930<\\/a>)<\\/li>\\n<li>Tweak: Applied a logical DOM order to the Mega Menu widget to improve accessibility<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for WordPress Menu widget<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for Menu widget<\\/li>\\n<li>Tweak: Added a bottom option to the Image Position control in Call to Action widget<\\/li>\\n<li>Fix: Missing version string in included CSS query string when Improved CSS Loading is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21879\\\">#21879<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23821\\\">#23821<\\/a>)<\\/li>\\n<li>Fix: Form submission icon message does not display correctly when Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Save and Close button position issues in the conditions screen in Theme Builder.<\\/li>\\n<li>Fix: Focus appears on the first element when using the mouse to open Off-Canvas <\\/li>\\n<li>Fix: Links to Elementor Settings are broken in various locations<\\/li>\\n<li>Fix: Conditions field not showing all relevant conditions in Theme Builder<\\/li>\\n<li>Fix: Off-Canvas flickering in sticky containers with exit animations triggered by sticky effects<\\/li>\\n<\\/ul>\\n<h4>3.22.1 - 2024-06-24<\\/h4>\\n<ul>\\n<li>Fix: Styling of Global widgets not loading when Element Caching experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27704\\\">#27704<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.22.0 - 2024-06-16<\\/h4>\\n<ul>\\n<li>New: Introducing Off-Canvas widget - create engaging and creative layers triggered by a link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6225\\\">#6225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21769\\\">#21769<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25770\\\">#25770<\\/a>)<\\/li>\\n<li>Tweak: Added option to remove \'User IP\' and \'User Agent\' from the form submissions metadata (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14285\\\">#14285<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>waypoints.js<\\/code> library with the native Intersection Observer API<\\/li>\\n<li>Tweak: Extended Alignment and Position capabilities in Form widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Flip Box widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Call to Action widget<\\/li>\\n<li>Tweak: Optimized Form widget to eliminate unnecessary markup when the button icon is empty<\\/li>\\n<li>Tweak: Optimized Posts widget to eliminate unnecessary markup when Load More button text is empty<\\/li>\\n<li>Tweak: Remove <code>placeholder<\\/code> arguments from URL controls<\\/li>\\n<li>Tweak: Implemented CSS logical properties to Icon Position in Form, Posts and Menu Cart widgets<\\/li>\\n<li>Tweak: Activated Display Conditions feature for existing sites<\\/li>\\n<li>Tweak: Activated Taxonomy Filter feature for existing sites<\\/li>\\n<li>Tweak: Added functionality to delay the running of the ready triggers on inner elements<\\/li>\\n<li>Fix: Icons are now part of the link in the Menu Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24298\\\">#24298<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25112\\\">#25112<\\/a>)<\\/li>\\n<li>Fix: <code>all: unset<\\/code> assigned to buttons cause focus issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24322\\\">#24322<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25448\\\">#25448<\\/a>)<\\/li>\\n<li>Fix: Menu cart SVG icon disappears on front when Optimized Control Loading experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27342\\\">#27342<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro auto-updates are not working on multisite networks (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12615\\\">#12615<\\/a>)<\\/li>\\n<li>Fix: PHP error appears in the editor when using Loop Grid in an archive template<\\/li>\\n<li>Fix: UI glitch on Icon Position control in Paypal and Stripe Buttons widgets<\\/li>\\n<li>Fix: Icon Position control RTL issue in Hotspot widget<\\/li>\\n<li>Fix: Manual Selection &quot;Include By&quot; Query doesn\'t work with product categories<\\/li>\\n<\\/ul>\\n<h4>3.21.3 - 2024-05-20<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Loop Grid widget<\\/li>\\n<li>Fix: License expired affects the Display Conditions functionality in the front end<\\/li>\\n<\\/ul>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn\'t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Enqueuing non-existing Loop Template CSS file in Loop Item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24959\\\">#24959<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>New: Introducing Display Conditions for Elements - allowing users to customize content visibility based on specified criteria (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4246\\\">#4246<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21152\\\">#21152<\\/a>)<\\/li>\\n<li>New: Implemented Akismet Integration for enhanced spam protection and security in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11401\\\">#11401<\\/a>)<\\/li>\\n<li>New: Introducing Permissions functionality to Element Manager - providing users with enhanced control over access and management capabilities<\\/li>\\n<li>Tweak: Added styling option for dropdown indicator in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21907\\\">#21907<\\/a>)<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Implemented CSS logical properties in WordPress Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Reviews widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Countdown widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Updated <code>jquery.smartmenus.js<\\/code> version from 1.1.1 to 1.2.0<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21489\\\">#21489<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22368\\\">#22368<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23085\\\">#23085<\\/a>)<\\/li>\\n<li>Fix: History panel deprecation notices in console log<\\/li>\\n<li>Fix: Second Pro rollback installed the latest version instead of the specifically selected older version<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation in Menu Widget<\\/li>\\n<li>Fix: UX issues when using in-place editing in Menu widget<\\/li>\\n<li>Fix: Pagination with page reload is not working when used with the Taxonomy filter and Loop Grid widget in Archive template<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle becomes inaccessible in various scenarios cases in Loop Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">#21316<\\/a>)<\\/li>\\n<li>Fix: Can\'t edit page when using \'Content Tabs\' and \'Section\' options in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-20<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-06<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">#19553<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes character is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629\\\">#18629<\\/a>)<\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475]\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.31.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.8.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NTQ2Mjc5MDksImV4cCI6MTc1NDcxNDMwOX0.3VDKYyBvA2CIY8IuE0XuDQF4NmE355sfb24Q5010Nkw\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImRvd25sb2FkX2JldGEiOmZhbHNlLCJmaWxlX2tleSI6IjEiLCJpYXQiOjE3NTQ2Mjc5MDksImV4cCI6MTc1NDcxNDMwOX0.3VDKYyBvA2CIY8IuE0XuDQF4NmE355sfb24Q5010Nkw\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.8.2\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImlhdCI6MTc1NDYyNzkwOSwiZXhwIjoxNzU0NzE0MzA5fQ.j3BE4jGvqN9UlAQjhxmkPXNeB8gdQ1nwf8x1fqwFHtU\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiYWN0aXZhdGVkIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9vbmxpbmVpbmNzaG9wLmNvbSIsImlhdCI6MTc1NDYyNzkwOSwiZXhwIjoxNzU0NzE0MzA5fQ.j3BE4jGvqN9UlAQjhxmkPXNeB8gdQ1nwf8x1fqwFHtU\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(319047, 'wp_7fefeda83f8c82068e8ccda5c9738aa8', '1753443873', 'off'),
(348348, '_transient_wp_core_block_css_files', 'a:2:{s:7:\"version\";s:3:\"6.9\";s:5:\"files\";a:584:{i:0;s:31:\"accordion-heading/style-rtl.css\";i:1;s:35:\"accordion-heading/style-rtl.min.css\";i:2;s:27:\"accordion-heading/style.css\";i:3;s:31:\"accordion-heading/style.min.css\";i:4;s:28:\"accordion-item/style-rtl.css\";i:5;s:32:\"accordion-item/style-rtl.min.css\";i:6;s:24:\"accordion-item/style.css\";i:7;s:28:\"accordion-item/style.min.css\";i:8;s:29:\"accordion-panel/style-rtl.css\";i:9;s:33:\"accordion-panel/style-rtl.min.css\";i:10;s:25:\"accordion-panel/style.css\";i:11;s:29:\"accordion-panel/style.min.css\";i:12;s:23:\"accordion/style-rtl.css\";i:13;s:27:\"accordion/style-rtl.min.css\";i:14;s:19:\"accordion/style.css\";i:15;s:23:\"accordion/style.min.css\";i:16;s:23:\"archives/editor-rtl.css\";i:17;s:27:\"archives/editor-rtl.min.css\";i:18;s:19:\"archives/editor.css\";i:19;s:23:\"archives/editor.min.css\";i:20;s:22:\"archives/style-rtl.css\";i:21;s:26:\"archives/style-rtl.min.css\";i:22;s:18:\"archives/style.css\";i:23;s:22:\"archives/style.min.css\";i:24;s:20:\"audio/editor-rtl.css\";i:25;s:24:\"audio/editor-rtl.min.css\";i:26;s:16:\"audio/editor.css\";i:27;s:20:\"audio/editor.min.css\";i:28;s:19:\"audio/style-rtl.css\";i:29;s:23:\"audio/style-rtl.min.css\";i:30;s:15:\"audio/style.css\";i:31;s:19:\"audio/style.min.css\";i:32;s:19:\"audio/theme-rtl.css\";i:33;s:23:\"audio/theme-rtl.min.css\";i:34;s:15:\"audio/theme.css\";i:35;s:19:\"audio/theme.min.css\";i:36;s:21:\"avatar/editor-rtl.css\";i:37;s:25:\"avatar/editor-rtl.min.css\";i:38;s:17:\"avatar/editor.css\";i:39;s:21:\"avatar/editor.min.css\";i:40;s:20:\"avatar/style-rtl.css\";i:41;s:24:\"avatar/style-rtl.min.css\";i:42;s:16:\"avatar/style.css\";i:43;s:20:\"avatar/style.min.css\";i:44;s:21:\"button/editor-rtl.css\";i:45;s:25:\"button/editor-rtl.min.css\";i:46;s:17:\"button/editor.css\";i:47;s:21:\"button/editor.min.css\";i:48;s:20:\"button/style-rtl.css\";i:49;s:24:\"button/style-rtl.min.css\";i:50;s:16:\"button/style.css\";i:51;s:20:\"button/style.min.css\";i:52;s:22:\"buttons/editor-rtl.css\";i:53;s:26:\"buttons/editor-rtl.min.css\";i:54;s:18:\"buttons/editor.css\";i:55;s:22:\"buttons/editor.min.css\";i:56;s:21:\"buttons/style-rtl.css\";i:57;s:25:\"buttons/style-rtl.min.css\";i:58;s:17:\"buttons/style.css\";i:59;s:21:\"buttons/style.min.css\";i:60;s:22:\"calendar/style-rtl.css\";i:61;s:26:\"calendar/style-rtl.min.css\";i:62;s:18:\"calendar/style.css\";i:63;s:22:\"calendar/style.min.css\";i:64;s:25:\"categories/editor-rtl.css\";i:65;s:29:\"categories/editor-rtl.min.css\";i:66;s:21:\"categories/editor.css\";i:67;s:25:\"categories/editor.min.css\";i:68;s:24:\"categories/style-rtl.css\";i:69;s:28:\"categories/style-rtl.min.css\";i:70;s:20:\"categories/style.css\";i:71;s:24:\"categories/style.min.css\";i:72;s:19:\"code/editor-rtl.css\";i:73;s:23:\"code/editor-rtl.min.css\";i:74;s:15:\"code/editor.css\";i:75;s:19:\"code/editor.min.css\";i:76;s:18:\"code/style-rtl.css\";i:77;s:22:\"code/style-rtl.min.css\";i:78;s:14:\"code/style.css\";i:79;s:18:\"code/style.min.css\";i:80;s:18:\"code/theme-rtl.css\";i:81;s:22:\"code/theme-rtl.min.css\";i:82;s:14:\"code/theme.css\";i:83;s:18:\"code/theme.min.css\";i:84;s:22:\"columns/editor-rtl.css\";i:85;s:26:\"columns/editor-rtl.min.css\";i:86;s:18:\"columns/editor.css\";i:87;s:22:\"columns/editor.min.css\";i:88;s:21:\"columns/style-rtl.css\";i:89;s:25:\"columns/style-rtl.min.css\";i:90;s:17:\"columns/style.css\";i:91;s:21:\"columns/style.min.css\";i:92;s:33:\"comment-author-name/style-rtl.css\";i:93;s:37:\"comment-author-name/style-rtl.min.css\";i:94;s:29:\"comment-author-name/style.css\";i:95;s:33:\"comment-author-name/style.min.css\";i:96;s:29:\"comment-content/style-rtl.css\";i:97;s:33:\"comment-content/style-rtl.min.css\";i:98;s:25:\"comment-content/style.css\";i:99;s:29:\"comment-content/style.min.css\";i:100;s:26:\"comment-date/style-rtl.css\";i:101;s:30:\"comment-date/style-rtl.min.css\";i:102;s:22:\"comment-date/style.css\";i:103;s:26:\"comment-date/style.min.css\";i:104;s:31:\"comment-edit-link/style-rtl.css\";i:105;s:35:\"comment-edit-link/style-rtl.min.css\";i:106;s:27:\"comment-edit-link/style.css\";i:107;s:31:\"comment-edit-link/style.min.css\";i:108;s:32:\"comment-reply-link/style-rtl.css\";i:109;s:36:\"comment-reply-link/style-rtl.min.css\";i:110;s:28:\"comment-reply-link/style.css\";i:111;s:32:\"comment-reply-link/style.min.css\";i:112;s:30:\"comment-template/style-rtl.css\";i:113;s:34:\"comment-template/style-rtl.min.css\";i:114;s:26:\"comment-template/style.css\";i:115;s:30:\"comment-template/style.min.css\";i:116;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:117;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:118;s:38:\"comments-pagination-numbers/editor.css\";i:119;s:42:\"comments-pagination-numbers/editor.min.css\";i:120;s:34:\"comments-pagination/editor-rtl.css\";i:121;s:38:\"comments-pagination/editor-rtl.min.css\";i:122;s:30:\"comments-pagination/editor.css\";i:123;s:34:\"comments-pagination/editor.min.css\";i:124;s:33:\"comments-pagination/style-rtl.css\";i:125;s:37:\"comments-pagination/style-rtl.min.css\";i:126;s:29:\"comments-pagination/style.css\";i:127;s:33:\"comments-pagination/style.min.css\";i:128;s:29:\"comments-title/editor-rtl.css\";i:129;s:33:\"comments-title/editor-rtl.min.css\";i:130;s:25:\"comments-title/editor.css\";i:131;s:29:\"comments-title/editor.min.css\";i:132;s:23:\"comments/editor-rtl.css\";i:133;s:27:\"comments/editor-rtl.min.css\";i:134;s:19:\"comments/editor.css\";i:135;s:23:\"comments/editor.min.css\";i:136;s:22:\"comments/style-rtl.css\";i:137;s:26:\"comments/style-rtl.min.css\";i:138;s:18:\"comments/style.css\";i:139;s:22:\"comments/style.min.css\";i:140;s:20:\"cover/editor-rtl.css\";i:141;s:24:\"cover/editor-rtl.min.css\";i:142;s:16:\"cover/editor.css\";i:143;s:20:\"cover/editor.min.css\";i:144;s:19:\"cover/style-rtl.css\";i:145;s:23:\"cover/style-rtl.min.css\";i:146;s:15:\"cover/style.css\";i:147;s:19:\"cover/style.min.css\";i:148;s:22:\"details/editor-rtl.css\";i:149;s:26:\"details/editor-rtl.min.css\";i:150;s:18:\"details/editor.css\";i:151;s:22:\"details/editor.min.css\";i:152;s:21:\"details/style-rtl.css\";i:153;s:25:\"details/style-rtl.min.css\";i:154;s:17:\"details/style.css\";i:155;s:21:\"details/style.min.css\";i:156;s:20:\"embed/editor-rtl.css\";i:157;s:24:\"embed/editor-rtl.min.css\";i:158;s:16:\"embed/editor.css\";i:159;s:20:\"embed/editor.min.css\";i:160;s:19:\"embed/style-rtl.css\";i:161;s:23:\"embed/style-rtl.min.css\";i:162;s:15:\"embed/style.css\";i:163;s:19:\"embed/style.min.css\";i:164;s:19:\"embed/theme-rtl.css\";i:165;s:23:\"embed/theme-rtl.min.css\";i:166;s:15:\"embed/theme.css\";i:167;s:19:\"embed/theme.min.css\";i:168;s:19:\"file/editor-rtl.css\";i:169;s:23:\"file/editor-rtl.min.css\";i:170;s:15:\"file/editor.css\";i:171;s:19:\"file/editor.min.css\";i:172;s:18:\"file/style-rtl.css\";i:173;s:22:\"file/style-rtl.min.css\";i:174;s:14:\"file/style.css\";i:175;s:18:\"file/style.min.css\";i:176;s:23:\"footnotes/style-rtl.css\";i:177;s:27:\"footnotes/style-rtl.min.css\";i:178;s:19:\"footnotes/style.css\";i:179;s:23:\"footnotes/style.min.css\";i:180;s:23:\"freeform/editor-rtl.css\";i:181;s:27:\"freeform/editor-rtl.min.css\";i:182;s:19:\"freeform/editor.css\";i:183;s:23:\"freeform/editor.min.css\";i:184;s:22:\"gallery/editor-rtl.css\";i:185;s:26:\"gallery/editor-rtl.min.css\";i:186;s:18:\"gallery/editor.css\";i:187;s:22:\"gallery/editor.min.css\";i:188;s:21:\"gallery/style-rtl.css\";i:189;s:25:\"gallery/style-rtl.min.css\";i:190;s:17:\"gallery/style.css\";i:191;s:21:\"gallery/style.min.css\";i:192;s:21:\"gallery/theme-rtl.css\";i:193;s:25:\"gallery/theme-rtl.min.css\";i:194;s:17:\"gallery/theme.css\";i:195;s:21:\"gallery/theme.min.css\";i:196;s:20:\"group/editor-rtl.css\";i:197;s:24:\"group/editor-rtl.min.css\";i:198;s:16:\"group/editor.css\";i:199;s:20:\"group/editor.min.css\";i:200;s:19:\"group/style-rtl.css\";i:201;s:23:\"group/style-rtl.min.css\";i:202;s:15:\"group/style.css\";i:203;s:19:\"group/style.min.css\";i:204;s:19:\"group/theme-rtl.css\";i:205;s:23:\"group/theme-rtl.min.css\";i:206;s:15:\"group/theme.css\";i:207;s:19:\"group/theme.min.css\";i:208;s:21:\"heading/style-rtl.css\";i:209;s:25:\"heading/style-rtl.min.css\";i:210;s:17:\"heading/style.css\";i:211;s:21:\"heading/style.min.css\";i:212;s:19:\"html/editor-rtl.css\";i:213;s:23:\"html/editor-rtl.min.css\";i:214;s:15:\"html/editor.css\";i:215;s:19:\"html/editor.min.css\";i:216;s:20:\"image/editor-rtl.css\";i:217;s:24:\"image/editor-rtl.min.css\";i:218;s:16:\"image/editor.css\";i:219;s:20:\"image/editor.min.css\";i:220;s:19:\"image/style-rtl.css\";i:221;s:23:\"image/style-rtl.min.css\";i:222;s:15:\"image/style.css\";i:223;s:19:\"image/style.min.css\";i:224;s:19:\"image/theme-rtl.css\";i:225;s:23:\"image/theme-rtl.min.css\";i:226;s:15:\"image/theme.css\";i:227;s:19:\"image/theme.min.css\";i:228;s:29:\"latest-comments/style-rtl.css\";i:229;s:33:\"latest-comments/style-rtl.min.css\";i:230;s:25:\"latest-comments/style.css\";i:231;s:29:\"latest-comments/style.min.css\";i:232;s:27:\"latest-posts/editor-rtl.css\";i:233;s:31:\"latest-posts/editor-rtl.min.css\";i:234;s:23:\"latest-posts/editor.css\";i:235;s:27:\"latest-posts/editor.min.css\";i:236;s:26:\"latest-posts/style-rtl.css\";i:237;s:30:\"latest-posts/style-rtl.min.css\";i:238;s:22:\"latest-posts/style.css\";i:239;s:26:\"latest-posts/style.min.css\";i:240;s:18:\"list/style-rtl.css\";i:241;s:22:\"list/style-rtl.min.css\";i:242;s:14:\"list/style.css\";i:243;s:18:\"list/style.min.css\";i:244;s:22:\"loginout/style-rtl.css\";i:245;s:26:\"loginout/style-rtl.min.css\";i:246;s:18:\"loginout/style.css\";i:247;s:22:\"loginout/style.min.css\";i:248;s:19:\"math/editor-rtl.css\";i:249;s:23:\"math/editor-rtl.min.css\";i:250;s:15:\"math/editor.css\";i:251;s:19:\"math/editor.min.css\";i:252;s:18:\"math/style-rtl.css\";i:253;s:22:\"math/style-rtl.min.css\";i:254;s:14:\"math/style.css\";i:255;s:18:\"math/style.min.css\";i:256;s:25:\"media-text/editor-rtl.css\";i:257;s:29:\"media-text/editor-rtl.min.css\";i:258;s:21:\"media-text/editor.css\";i:259;s:25:\"media-text/editor.min.css\";i:260;s:24:\"media-text/style-rtl.css\";i:261;s:28:\"media-text/style-rtl.min.css\";i:262;s:20:\"media-text/style.css\";i:263;s:24:\"media-text/style.min.css\";i:264;s:19:\"more/editor-rtl.css\";i:265;s:23:\"more/editor-rtl.min.css\";i:266;s:15:\"more/editor.css\";i:267;s:19:\"more/editor.min.css\";i:268;s:30:\"navigation-link/editor-rtl.css\";i:269;s:34:\"navigation-link/editor-rtl.min.css\";i:270;s:26:\"navigation-link/editor.css\";i:271;s:30:\"navigation-link/editor.min.css\";i:272;s:29:\"navigation-link/style-rtl.css\";i:273;s:33:\"navigation-link/style-rtl.min.css\";i:274;s:25:\"navigation-link/style.css\";i:275;s:29:\"navigation-link/style.min.css\";i:276;s:33:\"navigation-submenu/editor-rtl.css\";i:277;s:37:\"navigation-submenu/editor-rtl.min.css\";i:278;s:29:\"navigation-submenu/editor.css\";i:279;s:33:\"navigation-submenu/editor.min.css\";i:280;s:25:\"navigation/editor-rtl.css\";i:281;s:29:\"navigation/editor-rtl.min.css\";i:282;s:21:\"navigation/editor.css\";i:283;s:25:\"navigation/editor.min.css\";i:284;s:24:\"navigation/style-rtl.css\";i:285;s:28:\"navigation/style-rtl.min.css\";i:286;s:20:\"navigation/style.css\";i:287;s:24:\"navigation/style.min.css\";i:288;s:23:\"nextpage/editor-rtl.css\";i:289;s:27:\"nextpage/editor-rtl.min.css\";i:290;s:19:\"nextpage/editor.css\";i:291;s:23:\"nextpage/editor.min.css\";i:292;s:24:\"page-list/editor-rtl.css\";i:293;s:28:\"page-list/editor-rtl.min.css\";i:294;s:20:\"page-list/editor.css\";i:295;s:24:\"page-list/editor.min.css\";i:296;s:23:\"page-list/style-rtl.css\";i:297;s:27:\"page-list/style-rtl.min.css\";i:298;s:19:\"page-list/style.css\";i:299;s:23:\"page-list/style.min.css\";i:300;s:24:\"paragraph/editor-rtl.css\";i:301;s:28:\"paragraph/editor-rtl.min.css\";i:302;s:20:\"paragraph/editor.css\";i:303;s:24:\"paragraph/editor.min.css\";i:304;s:23:\"paragraph/style-rtl.css\";i:305;s:27:\"paragraph/style-rtl.min.css\";i:306;s:19:\"paragraph/style.css\";i:307;s:23:\"paragraph/style.min.css\";i:308;s:35:\"post-author-biography/style-rtl.css\";i:309;s:39:\"post-author-biography/style-rtl.min.css\";i:310;s:31:\"post-author-biography/style.css\";i:311;s:35:\"post-author-biography/style.min.css\";i:312;s:30:\"post-author-name/style-rtl.css\";i:313;s:34:\"post-author-name/style-rtl.min.css\";i:314;s:26:\"post-author-name/style.css\";i:315;s:30:\"post-author-name/style.min.css\";i:316;s:25:\"post-author/style-rtl.css\";i:317;s:29:\"post-author/style-rtl.min.css\";i:318;s:21:\"post-author/style.css\";i:319;s:25:\"post-author/style.min.css\";i:320;s:33:\"post-comments-count/style-rtl.css\";i:321;s:37:\"post-comments-count/style-rtl.min.css\";i:322;s:29:\"post-comments-count/style.css\";i:323;s:33:\"post-comments-count/style.min.css\";i:324;s:33:\"post-comments-form/editor-rtl.css\";i:325;s:37:\"post-comments-form/editor-rtl.min.css\";i:326;s:29:\"post-comments-form/editor.css\";i:327;s:33:\"post-comments-form/editor.min.css\";i:328;s:32:\"post-comments-form/style-rtl.css\";i:329;s:36:\"post-comments-form/style-rtl.min.css\";i:330;s:28:\"post-comments-form/style.css\";i:331;s:32:\"post-comments-form/style.min.css\";i:332;s:32:\"post-comments-link/style-rtl.css\";i:333;s:36:\"post-comments-link/style-rtl.min.css\";i:334;s:28:\"post-comments-link/style.css\";i:335;s:32:\"post-comments-link/style.min.css\";i:336;s:26:\"post-content/style-rtl.css\";i:337;s:30:\"post-content/style-rtl.min.css\";i:338;s:22:\"post-content/style.css\";i:339;s:26:\"post-content/style.min.css\";i:340;s:23:\"post-date/style-rtl.css\";i:341;s:27:\"post-date/style-rtl.min.css\";i:342;s:19:\"post-date/style.css\";i:343;s:23:\"post-date/style.min.css\";i:344;s:27:\"post-excerpt/editor-rtl.css\";i:345;s:31:\"post-excerpt/editor-rtl.min.css\";i:346;s:23:\"post-excerpt/editor.css\";i:347;s:27:\"post-excerpt/editor.min.css\";i:348;s:26:\"post-excerpt/style-rtl.css\";i:349;s:30:\"post-excerpt/style-rtl.min.css\";i:350;s:22:\"post-excerpt/style.css\";i:351;s:26:\"post-excerpt/style.min.css\";i:352;s:34:\"post-featured-image/editor-rtl.css\";i:353;s:38:\"post-featured-image/editor-rtl.min.css\";i:354;s:30:\"post-featured-image/editor.css\";i:355;s:34:\"post-featured-image/editor.min.css\";i:356;s:33:\"post-featured-image/style-rtl.css\";i:357;s:37:\"post-featured-image/style-rtl.min.css\";i:358;s:29:\"post-featured-image/style.css\";i:359;s:33:\"post-featured-image/style.min.css\";i:360;s:34:\"post-navigation-link/style-rtl.css\";i:361;s:38:\"post-navigation-link/style-rtl.min.css\";i:362;s:30:\"post-navigation-link/style.css\";i:363;s:34:\"post-navigation-link/style.min.css\";i:364;s:27:\"post-template/style-rtl.css\";i:365;s:31:\"post-template/style-rtl.min.css\";i:366;s:23:\"post-template/style.css\";i:367;s:27:\"post-template/style.min.css\";i:368;s:24:\"post-terms/style-rtl.css\";i:369;s:28:\"post-terms/style-rtl.min.css\";i:370;s:20:\"post-terms/style.css\";i:371;s:24:\"post-terms/style.min.css\";i:372;s:31:\"post-time-to-read/style-rtl.css\";i:373;s:35:\"post-time-to-read/style-rtl.min.css\";i:374;s:27:\"post-time-to-read/style.css\";i:375;s:31:\"post-time-to-read/style.min.css\";i:376;s:24:\"post-title/style-rtl.css\";i:377;s:28:\"post-title/style-rtl.min.css\";i:378;s:20:\"post-title/style.css\";i:379;s:24:\"post-title/style.min.css\";i:380;s:26:\"preformatted/style-rtl.css\";i:381;s:30:\"preformatted/style-rtl.min.css\";i:382;s:22:\"preformatted/style.css\";i:383;s:26:\"preformatted/style.min.css\";i:384;s:24:\"pullquote/editor-rtl.css\";i:385;s:28:\"pullquote/editor-rtl.min.css\";i:386;s:20:\"pullquote/editor.css\";i:387;s:24:\"pullquote/editor.min.css\";i:388;s:23:\"pullquote/style-rtl.css\";i:389;s:27:\"pullquote/style-rtl.min.css\";i:390;s:19:\"pullquote/style.css\";i:391;s:23:\"pullquote/style.min.css\";i:392;s:23:\"pullquote/theme-rtl.css\";i:393;s:27:\"pullquote/theme-rtl.min.css\";i:394;s:19:\"pullquote/theme.css\";i:395;s:23:\"pullquote/theme.min.css\";i:396;s:39:\"query-pagination-numbers/editor-rtl.css\";i:397;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:398;s:35:\"query-pagination-numbers/editor.css\";i:399;s:39:\"query-pagination-numbers/editor.min.css\";i:400;s:31:\"query-pagination/editor-rtl.css\";i:401;s:35:\"query-pagination/editor-rtl.min.css\";i:402;s:27:\"query-pagination/editor.css\";i:403;s:31:\"query-pagination/editor.min.css\";i:404;s:30:\"query-pagination/style-rtl.css\";i:405;s:34:\"query-pagination/style-rtl.min.css\";i:406;s:26:\"query-pagination/style.css\";i:407;s:30:\"query-pagination/style.min.css\";i:408;s:25:\"query-title/style-rtl.css\";i:409;s:29:\"query-title/style-rtl.min.css\";i:410;s:21:\"query-title/style.css\";i:411;s:25:\"query-title/style.min.css\";i:412;s:25:\"query-total/style-rtl.css\";i:413;s:29:\"query-total/style-rtl.min.css\";i:414;s:21:\"query-total/style.css\";i:415;s:25:\"query-total/style.min.css\";i:416;s:20:\"query/editor-rtl.css\";i:417;s:24:\"query/editor-rtl.min.css\";i:418;s:16:\"query/editor.css\";i:419;s:20:\"query/editor.min.css\";i:420;s:19:\"quote/style-rtl.css\";i:421;s:23:\"quote/style-rtl.min.css\";i:422;s:15:\"quote/style.css\";i:423;s:19:\"quote/style.min.css\";i:424;s:19:\"quote/theme-rtl.css\";i:425;s:23:\"quote/theme-rtl.min.css\";i:426;s:15:\"quote/theme.css\";i:427;s:19:\"quote/theme.min.css\";i:428;s:23:\"read-more/style-rtl.css\";i:429;s:27:\"read-more/style-rtl.min.css\";i:430;s:19:\"read-more/style.css\";i:431;s:23:\"read-more/style.min.css\";i:432;s:18:\"rss/editor-rtl.css\";i:433;s:22:\"rss/editor-rtl.min.css\";i:434;s:14:\"rss/editor.css\";i:435;s:18:\"rss/editor.min.css\";i:436;s:17:\"rss/style-rtl.css\";i:437;s:21:\"rss/style-rtl.min.css\";i:438;s:13:\"rss/style.css\";i:439;s:17:\"rss/style.min.css\";i:440;s:21:\"search/editor-rtl.css\";i:441;s:25:\"search/editor-rtl.min.css\";i:442;s:17:\"search/editor.css\";i:443;s:21:\"search/editor.min.css\";i:444;s:20:\"search/style-rtl.css\";i:445;s:24:\"search/style-rtl.min.css\";i:446;s:16:\"search/style.css\";i:447;s:20:\"search/style.min.css\";i:448;s:20:\"search/theme-rtl.css\";i:449;s:24:\"search/theme-rtl.min.css\";i:450;s:16:\"search/theme.css\";i:451;s:20:\"search/theme.min.css\";i:452;s:24:\"separator/editor-rtl.css\";i:453;s:28:\"separator/editor-rtl.min.css\";i:454;s:20:\"separator/editor.css\";i:455;s:24:\"separator/editor.min.css\";i:456;s:23:\"separator/style-rtl.css\";i:457;s:27:\"separator/style-rtl.min.css\";i:458;s:19:\"separator/style.css\";i:459;s:23:\"separator/style.min.css\";i:460;s:23:\"separator/theme-rtl.css\";i:461;s:27:\"separator/theme-rtl.min.css\";i:462;s:19:\"separator/theme.css\";i:463;s:23:\"separator/theme.min.css\";i:464;s:24:\"shortcode/editor-rtl.css\";i:465;s:28:\"shortcode/editor-rtl.min.css\";i:466;s:20:\"shortcode/editor.css\";i:467;s:24:\"shortcode/editor.min.css\";i:468;s:24:\"site-logo/editor-rtl.css\";i:469;s:28:\"site-logo/editor-rtl.min.css\";i:470;s:20:\"site-logo/editor.css\";i:471;s:24:\"site-logo/editor.min.css\";i:472;s:23:\"site-logo/style-rtl.css\";i:473;s:27:\"site-logo/style-rtl.min.css\";i:474;s:19:\"site-logo/style.css\";i:475;s:23:\"site-logo/style.min.css\";i:476;s:27:\"site-tagline/editor-rtl.css\";i:477;s:31:\"site-tagline/editor-rtl.min.css\";i:478;s:23:\"site-tagline/editor.css\";i:479;s:27:\"site-tagline/editor.min.css\";i:480;s:26:\"site-tagline/style-rtl.css\";i:481;s:30:\"site-tagline/style-rtl.min.css\";i:482;s:22:\"site-tagline/style.css\";i:483;s:26:\"site-tagline/style.min.css\";i:484;s:25:\"site-title/editor-rtl.css\";i:485;s:29:\"site-title/editor-rtl.min.css\";i:486;s:21:\"site-title/editor.css\";i:487;s:25:\"site-title/editor.min.css\";i:488;s:24:\"site-title/style-rtl.css\";i:489;s:28:\"site-title/style-rtl.min.css\";i:490;s:20:\"site-title/style.css\";i:491;s:24:\"site-title/style.min.css\";i:492;s:26:\"social-link/editor-rtl.css\";i:493;s:30:\"social-link/editor-rtl.min.css\";i:494;s:22:\"social-link/editor.css\";i:495;s:26:\"social-link/editor.min.css\";i:496;s:27:\"social-links/editor-rtl.css\";i:497;s:31:\"social-links/editor-rtl.min.css\";i:498;s:23:\"social-links/editor.css\";i:499;s:27:\"social-links/editor.min.css\";i:500;s:26:\"social-links/style-rtl.css\";i:501;s:30:\"social-links/style-rtl.min.css\";i:502;s:22:\"social-links/style.css\";i:503;s:26:\"social-links/style.min.css\";i:504;s:21:\"spacer/editor-rtl.css\";i:505;s:25:\"spacer/editor-rtl.min.css\";i:506;s:17:\"spacer/editor.css\";i:507;s:21:\"spacer/editor.min.css\";i:508;s:20:\"spacer/style-rtl.css\";i:509;s:24:\"spacer/style-rtl.min.css\";i:510;s:16:\"spacer/style.css\";i:511;s:20:\"spacer/style.min.css\";i:512;s:20:\"table/editor-rtl.css\";i:513;s:24:\"table/editor-rtl.min.css\";i:514;s:16:\"table/editor.css\";i:515;s:20:\"table/editor.min.css\";i:516;s:19:\"table/style-rtl.css\";i:517;s:23:\"table/style-rtl.min.css\";i:518;s:15:\"table/style.css\";i:519;s:19:\"table/style.min.css\";i:520;s:19:\"table/theme-rtl.css\";i:521;s:23:\"table/theme-rtl.min.css\";i:522;s:15:\"table/theme.css\";i:523;s:19:\"table/theme.min.css\";i:524;s:24:\"tag-cloud/editor-rtl.css\";i:525;s:28:\"tag-cloud/editor-rtl.min.css\";i:526;s:20:\"tag-cloud/editor.css\";i:527;s:24:\"tag-cloud/editor.min.css\";i:528;s:23:\"tag-cloud/style-rtl.css\";i:529;s:27:\"tag-cloud/style-rtl.min.css\";i:530;s:19:\"tag-cloud/style.css\";i:531;s:23:\"tag-cloud/style.min.css\";i:532;s:28:\"template-part/editor-rtl.css\";i:533;s:32:\"template-part/editor-rtl.min.css\";i:534;s:24:\"template-part/editor.css\";i:535;s:28:\"template-part/editor.min.css\";i:536;s:27:\"template-part/theme-rtl.css\";i:537;s:31:\"template-part/theme-rtl.min.css\";i:538;s:23:\"template-part/theme.css\";i:539;s:27:\"template-part/theme.min.css\";i:540;s:24:\"term-count/style-rtl.css\";i:541;s:28:\"term-count/style-rtl.min.css\";i:542;s:20:\"term-count/style.css\";i:543;s:24:\"term-count/style.min.css\";i:544;s:30:\"term-description/style-rtl.css\";i:545;s:34:\"term-description/style-rtl.min.css\";i:546;s:26:\"term-description/style.css\";i:547;s:30:\"term-description/style.min.css\";i:548;s:23:\"term-name/style-rtl.css\";i:549;s:27:\"term-name/style-rtl.min.css\";i:550;s:19:\"term-name/style.css\";i:551;s:23:\"term-name/style.min.css\";i:552;s:28:\"term-template/editor-rtl.css\";i:553;s:32:\"term-template/editor-rtl.min.css\";i:554;s:24:\"term-template/editor.css\";i:555;s:28:\"term-template/editor.min.css\";i:556;s:27:\"term-template/style-rtl.css\";i:557;s:31:\"term-template/style-rtl.min.css\";i:558;s:23:\"term-template/style.css\";i:559;s:27:\"term-template/style.min.css\";i:560;s:27:\"text-columns/editor-rtl.css\";i:561;s:31:\"text-columns/editor-rtl.min.css\";i:562;s:23:\"text-columns/editor.css\";i:563;s:27:\"text-columns/editor.min.css\";i:564;s:26:\"text-columns/style-rtl.css\";i:565;s:30:\"text-columns/style-rtl.min.css\";i:566;s:22:\"text-columns/style.css\";i:567;s:26:\"text-columns/style.min.css\";i:568;s:19:\"verse/style-rtl.css\";i:569;s:23:\"verse/style-rtl.min.css\";i:570;s:15:\"verse/style.css\";i:571;s:19:\"verse/style.min.css\";i:572;s:20:\"video/editor-rtl.css\";i:573;s:24:\"video/editor-rtl.min.css\";i:574;s:16:\"video/editor.css\";i:575;s:20:\"video/editor.min.css\";i:576;s:19:\"video/style-rtl.css\";i:577;s:23:\"video/style-rtl.min.css\";i:578;s:15:\"video/style.css\";i:579;s:19:\"video/style.min.css\";i:580;s:19:\"video/theme-rtl.css\";i:581;s:23:\"video/theme-rtl.min.css\";i:582;s:15:\"video/theme.css\";i:583;s:19:\"video/theme.min.css\";}}', 'on'),
(348356, 'wp_notes_notify', '1', 'on'),
(348364, '_site_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1765256387', 'off'),
(348365, '_site_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3', '1765213187', 'off'),
(348366, '_site_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1765256390', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(348367, '_site_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9', 'a:6:{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:112:\"\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\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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Matt: Happy Birthday Kinsey\";s:7:\"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=150776\";s:7:\"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:32:\"https://ma.tt/2025/12/kinsey-70/\";s: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:3384:\"<p>Yesterday I had the great honor and privilege of attending a colleague’s 70<sup>th</sup> birthday party. You may not have heard his name before, but <a href=\"https://kinsey.nyc/\">Kinsey Wilson</a> has been at the center of shaping journalism with a movie-worthy career that started at the bottom as a crime reporter in Chicago, and has taken him to the highest echelons at NPR, the New York Times, and, most recently, we’ve been lucky to have him at Automattic.</p>\n\n\n\n<p>Kinsey brings a journalistic curiosity and passion for finding truth, paired with a deep optimism and creativity for seeing around the corner for how technology can transform how we consume and produce media.</p>\n\n\n\n<p>While <a href=\"https://en.wikipedia.org/wiki/Kinsey_Wilson\">his Wikipedia page</a> or <a href=\"https://kinsey.nyc/about/\">biography</a> provides appetizers to some of what he&#8217;s done, Kinsey has led such a rich and beautiful life that any attempt to summarize it ends up being criminally reductive. The best you can hope for is to give a taste of his person through vignettes.</p>\n\n\n\n<p>A beautiful snippet from the montage of accolades at his birthday was how Kinsey was someone you’d follow into battle. I’ve learned so much from seeing the empathy, candor, and integrity he brings to every team he leads, which engenders an incredible loyalty I&#8217;ve rarely seen in my career. When he left NPR, 62 colleagues made <a href=\"https://web.archive.org/web/20141107124059/http://www.infinitekinsey.com/playlist/\">an “Infinite Kinsey” website of accolades</a>. </p>\n\n\n\n<p>That sort of thing is rare, and it’s been an honor and a privilege to work alongside him to democratize publishing.</p>\n\n\n\n<p>One of those colleagues, <a href=\"https://elisehu.com/\">Elise Hu</a>, introduced us while he was at the New York Times and while my intention when I first met him was to get more WordPress at the Times, my imagination was sparked by thinking of how he could bring his experience to help shape WordPress and Automattic, hence my pivot into recruiting him.</p>\n\n\n\n<p>Kinsey&#8217;s impact on journalism (and podcasting!) at NPR and New York Times is easy to understand, but less well-known is how he came into Automattic and got deep into understanding WordPress and seeing it as a platform that could enable the newsrooms and journalists to accomplish their mission in a more efficient way with the project he leads, <a href=\"https://newspack.com/\">Newspack</a>. </p>\n\n\n\n<p>He’s a fierce steward of the <a href=\"https://en.wikipedia.org/wiki/Fourth_Estate\">Fourth Estate</a>. </p>\n\n\n\n<p>Newspack and its team’s close relationship to customers invents solutions on top of WordPress that delight its users and percolate and influence everything we do at <a href=\"https://automattic.com/\">Automattic</a>. They&#8217;re one of the teams that sets the bar for others in the company.</p>\n\n\n\n<p>To Kinsey, I’ll leave you with a quote from one of my other inspirations, Charlie Munger, who at the <a href=\"https://www.wsj.com/finance/investing/charlie-munger-life-final-years-berkshire-7c20c18e\">tender age of 99 shared a wish with a visitor</a>, <em>“Oh, to be 86 again.”</em></p>\n\n\n\n<p>I’ll try not to be too tech-bro optimist and say that 70 is the new 40, but I look forward to seeing the ripples that you have on the future of publishing for many years to come. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 07 Dec 2025 21:37: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Matt: Self-driving\";s:7:\"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=150768\";s:7:\"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/2025/12/self-driving/\";s: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:1455:\"<p>There has been some lovely writing about self-driving this week, first in the New York Times where <a href=\"https://www.nytimes.com/2025/12/02/opinion/self-driving-cars.html\">Jonathan Slotkin makes the medical case for autonomous vehicles</a>. But I was really taken by <a href=\"https://www.economist.com/finance-and-economics/2025/11/27/self-driving-cars-will-transform-urban-economies\">The Economist&#8217;s look at how self-driving cars will transform urban economies</a>. It&#8217;s behind a paywall. I enjoyed how they thought about the second-order effects of self-driving.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>America is home to 1m taxi and bus drivers, as well as over 3m truck drivers—adding up to 3% of the working population. Other potential losers are less obvious. Without car accidents there will, for instance, be less demand for personal-injury lawyers. If people stop buying cars, dealers and used-car salesmen will go. </p>\n</blockquote>\n\n\n\n<p><span style=\"margin: 0px; padding: 0px;\">It&#8217;s fascinating to think a few chess moves down the line, for example, fewer personal-injury lawyers funding politicians might lead to some form of <a href=\"https://en.wikipedia.org/wiki/Tort_reform\" target=\"_blank\">Tort Reform</a>, an area of society that, like gun control, has centrist changes most Americans would agree with, but has been captured by special intere</span>sts.</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, 06 Dec 2025 23:54:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Matt: AI Native\";s:7:\"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=150762\";s:7:\"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:32:\"https://ma.tt/2025/12/ai-native/\";s: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:126:\"<p>James LePage has a great write-up, <a href=\"https://j.cv/sotw-2025/\">SOTW 2025:The Year WordPress Became AI-Native</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, 06 Dec 2025 05:47:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Gutenberg Times: State of the Word,  WordPress 6.9 “Gene”, Playground Year-Review —  Weekend Edition #352\";s:7:\"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=43310\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://gutenbergtimes.com/state-of-the-word-wordpress-6-9-gene-playground-year-review-weekend-edition-352/\";s: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:29812:\"<p>Hi there, </p>\n\n\n\n<p>How did the upgrade to WordPress 6.9 go for you and those around you? Did anything break? Or are you waiting for 6.9.1 to come out? </p>\n\n\n\n<p>Once in a while I get a question on how I keep up with the fast progress and the vast range of updates in Gutenberg and WordPress Core. Here is one source of information I am grateful for: Contributors working on the Gutenberg project started posting their so-called <a href=\"https://github.com/WordPress/gutenberg/issues?q=is%3Aissue%20state%3Aopen%20label%3A%22%5BType%5D%20Iteration%22\">&#8220;Iteration for WordPress 7.0&#8221;</a> issues on GitHub. I bookmarked this list and once in a while I will check up on the progress, especially when I get lost in the weeds of single PRs and need to align again on big picture goals. It&#8217;s not a comprehensive list, though. </p>\n\n\n\n<p>From the conversations at State of the Word 2025, I learned that the community is embracing the educational initiatives of Campus Connect and WordPress Credits. Seeing more generations stream into the ecosystem warms this perpetual community organizer&#8217;s heart.  Equally exciting is the foundational work the AI Team has accomplished to ready the ecosystem for the era of Artificialle Interlligence (AI) when LLMs and helper agents elevate research, publishing and amplification for people. </p>\n\n\n\n<p>What did stand out for you after watching the State of the Word video? Email me or leave a comment. </p>\n\n\n\n<p>Below is another walk-through of the buzz around block editor, plugins and Playground. Enjoy, and have a wonderful weekend. </p>\n\n\n\n<p>Yours, <img alt=\"💕\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\n\n\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><a href=\"https://wordpress.org/news/2025/12/gene/\"><strong>WordPress 6.9 &#8220;Gene&#8221;</strong></a> was released during State of the Word 2025, with most of the release leads present at the in-person event. You can <a href=\"https://youtu.be/U_DF4-23C8Q?si=3Y2KdtWyKasFJD7p&amp;t=2495\">revisit the moment on YouTube</a>  41:35  minutes into the recording, with the demonstration of the major features by Matias Ventura. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-43463\" height=\"341\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/12/Release-Edition-Featured-Image-6.9-scaled-1.webp?resize=652%2C341&#038;ssl=1\" width=\"652\" /></figure>\n</div></div>\n\n\n\n<p><strong>Nicholas Garofalo</strong> wrote <a href=\"https://wordpress.org/news/2025/12/sotw-2025/\"><strong>State of the Word 2025: Innovation Shaped by Community</strong></a>. Matt Mullenweg and Mary Hubbard, our Executive Director, delivered WordPress&#8217;s yearly update, which included an exciting live launch of WordPress 6.9. The keynote dug into how we&#8217;re mixing in AI with features like the Abilities API and MCP adapter, highlighted the awesome growth of our global community across 81 WordCamps, and showed off cool tools like Telex that help you create AI-powered blocks. Some major highlights were new collaboration features, upgraded developer APIs, and more ways to connect learners around the globe to opportunities on the open web.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Rae Morey,</strong> The Repository, reports on the annual keynote in detail in her post <a href=\"https://www.therepository.email/state-of-the-word-2025-ai-education-and-a-community-holding-steady-through-a-rollercoaster-year\"><strong>State of the Word 2025: AI, Education, and a Community Holding Steady Through a “Rollercoaster” Year</strong></a>. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>You can watch the entire <strong><a href=\"https://youtu.be/U_DF4-23C8Q?si=3Y2KdtWyKasFJD7p&amp;t=2495\">State of the Word</a></strong> event on YouTube. </p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\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\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>James Le Page</strong> elaborated in <a href=\"https://j.cv/sotw-2025/\"><strong>SOTW 2025:The Year WordPress Became AI-Native</strong></a> how WordPress delivered four foundational AI components in version 6.9, six months after forming its first dedicated AI team. The Abilities API creates unified registries for AI agents, while the WP AI Client provides provider-agnostic LLM interfaces. The MCP Adapter exposes capabilities externally, and the AI Experiments Plugin demonstrates practical implementations. Looking ahead, version 7.0 will introduce client-side abilities and a Workflows API for chaining actions, positioning WordPress to remain central as AI reshapes content consumption and creation across the open web.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><img alt=\"🔥\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f525.png\" style=\"height: 1em;\" /> Save the Date! <strong>January 13, 7pm UTC</strong> Join  James LePage and Jamie Marsland for a hallway hangout on all things WordPress AI. If you are interested, <a href=\"https://x.com/pootlepress/status/1996927536865906896\">comment on the tweet</a> or ping Jamie Marsland. </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://x.com/pootlepress/status/1996927536865906896\"><img alt=\"\" class=\"wp-image-43458\" height=\"365\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/12/Jamie-James-WordPress-AI.jpeg?resize=652%2C365&#038;ssl=1\" width=\"652\" /></a></figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In <strong><a href=\"https://www.youtube.com/watch?v=ysRLeRGOZko&amp;t=1s\">WordPress 6.9 Is Out! The Main Features You Need to Know</a></strong>, Karol Kroll gives you a walk-through of the new version on his YouTube channel. </p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\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\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Maddy Osma</strong>n reported on <a href=\"https://wordpress.com/blog/2025/12/02/wordpress-6-9-for-site-owners/\"><strong>What’s New for Bloggers, Creators, and Site Owners</strong></a> in WordPress 6.9. and highlights collaboration tools like block-level notes and hide-show toggles, new creative blocks including Accordion and Term Query for enriched storytelling, plus performance improvements loading styles on demand. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his post <a href=\"https://make.wordpress.org/core/2025/12/01/ability-to-hide-blocks/\"><strong>Ability to Hide Blocks in WordPress 6.9</strong></a>, <strong>Aki Hamano</strong>, sponsored triage co-release lead, shared more detail about this new WordPress features and how to disable it. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Rhys Wynne</strong> discussed the release of <a href=\"https://dwinrhys.com/2025/12/03/wordpress-6-9-released-what-new-features-are-there/\"><strong>WordPress 6.9</strong></a>, noting it contains more visible features compared to version 6.8. He highlights three key improvements: the Notes,; the Accordion block, and the Command Palette. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On the Hostinger Blog, <strong>Bud Kraus</strong> explained the <strong><a href=\"https://www.hostinger.com/blog/wordpress-6-9\">many features of WordPress 6.9</a></strong>, highlighting Notes, Accordion and Terms Query blocks and the Command Palette. Kraus emphasizes developer enhancements like the Abilities API, improved Block Bindings, and removal of legacy Internet Explorer code. He notes this release marks the official start of Phase Three collaboration features while balancing practical user improvements.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Carlo Daniele</strong> reported on the latest WordPress release for Kinsta. In <a href=\"https://kinsta.com/blog/wordpress-6-9/\"><strong>New features, new blocks, new APIs: here is what’s new in WordPress 6.9</strong></a>, he discusses key features like the Command Palette, Notes, and new blocks. He also covers updates for developers, including the streaming block parser, custom Social Link icons, the Abilities API, Block Bindings, and improvements to the Interactivity API and DataViews.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Earlier this week, I worked on the release of Gutenberg 22.2. You can read my release post on the Make Blog: <a href=\"https://make.wordpress.org/core/2025/12/03/whats-new-in-gutenberg-22-2-dec3/\"><strong>What’s new in Gutenberg 22.2 (03 December)?</strong></a>. The highlights are: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2025/12/03/whats-new-in-gutenberg-22-2-dec3/#cover-block-video-embeds\">Cover block video embeds</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/12/03/whats-new-in-gutenberg-22-2-dec3/#breadcrumbs-block-enhancements\">Breadcrumbs block enhancements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/12/03/whats-new-in-gutenberg-22-2-dec3/#styling-options-for-the-math-block\">Styling options for the Math block.</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/12/03/whats-new-in-gutenberg-22-2-dec3/#other-notable-highlights\">Other Notable Highlights</a>, like Button block pseudo-state styling and DataViews upgrades.</li>\n</ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://make.wordpress.org/core/2025/12/03/whats-new-in-gutenberg-22-2-dec3/\"><img alt=\"Use video from YouTube for your cover background. \" class=\"wp-image-43446\" height=\"416\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/12/gb-22-2-embed-1.png?resize=652%2C416&#038;ssl=1\" width=\"652\" /></a></figure>\n\n\n\n<p><strong>JC Palmes</strong>, principal technical manager at WebDevStudios,  joined me for the <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-125-wordpress-6-9-gutenberg-22-1-and-gutenberg-22-2/\"><strong>Gutenberg Changelog episode #125</strong></a>, and we talked through the last two Gutenberg plugin releases. </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-125-wordpress-6-9-gutenberg-22-1-and-gutenberg-22-2/\"><img alt=\"Gutenberg Changelog 125 with JC Palmes and host Birgit Pauli-Haack\" class=\"wp-image-43283\" height=\"186\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-28-at-18.19.29.png?resize=652%2C186&#038;ssl=1\" width=\"652\" /></a></figure>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p><img alt=\"🎙\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-125-wordpress-6-9-gutenberg-22-1-and-gutenberg-22-2/\">Gutenberg Changelog #125 – WordPress 6.9, Gutenberg 22.1 and Gutenberg 22.2</a> with <strong>JC Palmes</strong>, WebDev Studios</p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-no-vertical-margin\"><img alt=\"Gutenberg Changelog 125 with JC Palmes and host Birgit Pauli-Haack\" class=\"wp-image-43283\" height=\"186\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-28-at-18.19.29.png?resize=652%2C186&#038;ssl=1\" width=\"652\" /></figure>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins and Tools for #nocode site builders</h2>\n\n\n\n<p><strong>Bernhard Kau</strong>, a PHP developer from Berlin and community organizer, started an <a href=\"https://kau-boys.com/category/advent-calendar\">Advent Calendar</a> to showcase recommended plugins. The Dec. 3 edition featured <a href=\"https://kau-boys.com/4252/advent-calendar/block-editor-reverse-columns-on-mobile-a-small-block-options-plugin\"><strong>Block Editor: Reverse Columns on Mobile – a small block options plugin</strong></a>. He likes it for its ability to solve mobile layout issues with just 250 lines of code, managing columns, group blocks, and media-text arrangements. Instead of needing to add custom CSS classes manually, the plugin uses simple checkboxes to order image and text correctly on mobile and supports RTL languages and various flex layouts. While some believe fewer plugins are better, Kau prefers targeted solutions that do exactly what he would code himself, making features easy for content editors on no-code sites without overcomplicating the functionality. If you need a guide through the forest of plugins in the WordPress ecosystem you should follow Bernhard Kau&#8217;s blog. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jake Spurlock</strong> <a href=\"https://jakespurlock.com/2025/12/placeholders-ad-wireframing/\"><strong>released Placeholders, a WordPress plugin</strong></a> that simplifies wireframing ad layouts by offering fourteen Gutenberg blocks for common IAB advertising sizes. Each block shows clean wireframe-style placeholders with accurate dimensions, customizable colors, and alignment options, all without needing an actual ad setup. This free plugin empowers designers and developers to create mock placements for design phases, client presentations, and layout testing. Future updates may add custom sizes, layout templates, and ad management features. The <a href=\"https://wordpress.org/plugins/placeholders/\">plugin is available</a> on the WordPress repository.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Joop Laan</strong> has created a new plugin called <strong><a href=\"https://wordpress.org/plugins/inline-context/?preview=1\">Inline Context</a></strong>. It adds expandable tooltip popovers to your content for easy definitions, references, and clarifications without interrupting reading. You can highlight text, provide rich-text explanations, and categorize notes with custom icons and colors. This plugin is great for editorial sites, documentation, and research platforms. It&#8217;s fully keyboard-accessible and ready for translation. Laan also offers a <a href=\"https://wordpress.org/plugins/inline-context/?preview=1\">live preview of the plugin in Playground</a> to see it in action.</p>\n\n\n<div class=\"ng-block-aedb82f1e04bc39d wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #fdfcea; border-radius: 12px;\"><div class=\"ng-block-d0202d6bc7fd1a3e wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" rel=\"noreferrer noopener\" target=\"_blank\">&#8220;Keeping up with Gutenberg &#8211; Index 2025&#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. 2024 on. Updated by yours truly. </p></div></div></div></div>\n\n<div class=\"ng-block-d1017e43bc22f622 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>The previous years are also available: <br /><strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/\"><strong>2024</strong></a></p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\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>Last month, <strong>JuanMa Garrido</strong> and <strong>Jonathan Bossenger</strong> invited user to the <a href=\"https://wordpress.tv/2025/12/02/developer-hours-wordpress-6-9-block-bindings-interactivity-api/\"><strong>Developer Hours: WordPress 6.9 Block Bindings &amp; Interactivity API</strong></a>. The recording is now available on WordPress TV. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><strong>Ronald Huereca</strong> discusses the <a href=\"https://dlxplugins.com/tutorials/how-to-manage-the-admin-wide-command-palette-in-wordpress-6-9/\">Admin-Wide Command Palette</a> which now operates in the entire admin area with CMD/CTRL-K. He shows how to disable the palette selectively using the wp-core-commands script handle, enable it on the frontend, and create custom commands using React hooks and registerPlugin. Huereca includes code snippets for different contexts—block editor only, admin excluding editor, or both—and suggests using separate script endpoints for new commands in existing block plugins to prevent iframe issues.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><strong>Brian Coords</strong> shared a tutorial on <a href=\"https://www.briancoords.com/building-a-woo-product-category-image-block-with-wordpress-6-9/\"><strong>creating a Woo Product Category Image Block with WordPress 6.9</strong></a>, using the Block Bindings API and a new Terms Query Loop to show product category images without custom blocks. The method registers bindings using PHP on the server to get term meta thumbnails and uses JavaScript for the editor preview through WooCommerce&#8217;s data package. A block variation allows for easy insertion. Coords mentions this solves issues where taxonomy term images aren&#8217;t standard in WordPress, but he notes the increasing clutter in the block inserter due to more specialized variations.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://www.briancoords.com/building-a-woo-product-category-image-block-with-wordpress-6-9/\"><img alt=\"\" class=\"wp-image-43444\" height=\"344\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/12/Screenshot-2025-12-06-at-10.04.14.png?resize=652%2C344&#038;ssl=1\" width=\"652\" /></a></figure>\n\n\n\n<p><strong>Felix Arntz</strong> <a href=\"https://www.linkedin.com/posts/felixarntz_many-people-have-asked-me-over-the-past-few-activity-7400592023696867328-xeDW?utm_source=share&amp;utm_medium=member_desktop&amp;rcm=ACoAAAAkKaoBHI9qqM4OcmXfJb1QeGFMlLI6W4o\">address on LinkedIn</a> frequently asked question, on how he built the Gutenberg-like UI in his <a href=\"https://wordpress.org/plugins/ai-services/\">AI Services</a> plugin for WordPress. In a new npm package called<a href=\"https://www.npmjs.com/package/wp-interface\"> <strong>wp-interface</strong></a> he provided an abstracted solution anyone can use to get started integrating it into their plugins. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On his livestream, <strong>Jonathan Bossenger</strong> tested WordPress 6.9 and showed <strong><a href=\"https://www.youtube.com/watch?v=TKG11gdQEoo\">how to use its Block Bindings updates in a custom plugin</a></strong>. He explored custom post types and meta fields, worked with block bindings, and updated custom fields. Watch him solve debugging issues, add a year field, and improve a custom plugin.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\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\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>In his blog post <a href=\"https://alex.kirk.at/2025/11/29/wordpress-development-without-a-computer/\"><strong>WordPress Development Without a Computer</strong></a>, <strong>Alex Kirk</strong>, long time WordPress contributor, outlines how he envisions AI-assisted fixes on the fly on a WordPress site. &#8220;With AI coding assistants that run in the browser—like Claude Code, OpenAI Codex, GitHub Copilot Workspace, or similar tools—combined with WordPress Playground for testing, you can now do WordPress plugin development without a computer.&#8221; Kirk provides a step-by-step instructions on how to make it possible today.  </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his livestream, <strong>JuanMa Garrido</strong> discussed the <strong><a href=\"https://www.youtube.com/watch?v=hlbT0fnIe8E\">Interactivity Router</a></strong> package, highlighting its ability to load content without full page reloads. He demonstrated client-side navigation in query loop blocks and interactive lightbox behavior. The session included enabling client-side navigation, performance comparisons, and practical API documentation examples.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://www.youtube.com/watch?v=hlbT0fnIe8E\"><img alt=\"\" class=\"wp-image-43455\" height=\"335\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/12/JuanMa-Garrido-interactivity-router.jpeg?resize=600%2C335&#038;ssl=1\" width=\"600\" /></a></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"what-s-new-in-playground\">What&#8217;s new in Playground</h3>\n\n\n\n<p>In this <a href=\"https://make.wordpress.org/playground/2025/12/03/wordpress-playground-2025-year-in-review/\">2025 Year in Review</a>, Playground architect <strong>Adam Zieliński</strong> lists transformative achievements including supporting ninety-nine percent of WordPress plugins, running PHPMyAdmin and Laravel alongside substantial performance gains through OpCache and concurrent workers. New PHP extensions like XDebug enable modern debugging workflows while state-of-the-art MySQL emulation powers comprehensive database management. Developer tools now include file browsers, Blueprint editors, and one-click Gutenberg branch previews. </p>\n\n\n\n<p>The community contributed translations across six languages, earned forty-eight contributor badges, and demonstrated Playground at WordCamps globally, establishing it as essential infrastructure for testing, teaching, and building WordPress.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://playground.wordpress.com\"><img alt=\"Playground default screen. \" class=\"wp-image-43442\" height=\"350\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/12/Screenshot-2025-12-06-at-09.49.53.png?resize=652%2C350&#038;ssl=1\" width=\"652\" /></a></figure>\n\n\n<div class=\"ng-block-2ee1af7b81a5404f wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #f8f8f8; border-radius: 8px;\"><div class=\"ng-block-3fff23d5dd8b4c53 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review.</p></div></div></div></div>\n\n<div class=\"ng-block-7c72536d6ae34d6e wp-block-newsletterglue-image ng-block size-full is-resized\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;\"><a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\"><img alt=\"\" class=\"wp-image-42874 ng-image\" height=\"45\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2025-11-15-at-12.06.44.png?resize=196%2C45&#038;ssl=1\" style=\"border-style: none; border-color: transparent;\" width=\"196\" /></a></div></div></div></div>\n\n<div class=\"ng-block-6fd2eef106234e63 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience.</p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n<div class=\"ng-block-d7ca894f9871e6ab wp-block-newsletterglue-separator ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; color: #666666;\"><hr style=\"background-color: transparent; color: transparent; margin: 0; border: 0; border-top: 1px solid #666666; width: 560px; height: 0;\" /></div></div></div></div>\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\"><div class=\"ng-block-0776cd96142caac2 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 14px; font-family: Helvetica; line-height: 0.2; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong>Featured Image: </strong></p></div></div></div></div></div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-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, 06 Dec 2025 03:38:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt: Unifi 5G\";s:7:\"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=150758\";s:7:\"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:31:\"https://ma.tt/2025/12/unifi-5g/\";s: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:1187:\"<p>One of my favorite hobbies is home networking and wifi, and once you go down that rabbit hole one of the best companies you can follow is <a href=\"https://ui.com/\">Unifi</a>. They&#8217;re such a cool company in so many ways, from having a <a href=\"https://ir.ui.com/company/board-of-directors\">4-person board of directors</a>, as a public stock. You can clearly tell they delight in bringing great design to hardware, in a Apple-like attention to detail. </p>\n\n\n\n<p>They ship such cool products regularly, across an entire ecosystem that spans cameras to access control, it&#8217;s hard to describe everything they can cover, and they&#8217;ll even have random stuff that integrates into their system like EV charging or digital signage. I get as excited when they ship a new generation of hardware as I do for an iPhone launch.</p>\n\n\n\n<p>But what&#8217;s exciting is that they just launched <a href=\"https://blog.ui.com/article/introducing-unifi-5g\">5G bridging, with some fun devices that connect everything</a>. I imagine someday I&#8217;ll have a Unifi puck hooked up to Starlink, providing amazing routing and connectivity anywhere in the world, powered by some PoE battery.</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, 05 Dec 2025 05:34:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:5;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WordPress.org blog: State of the Word 2025: Innovation Shaped by Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19447\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/news/2025/12/sotw-2025/\";s: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:28824:\"<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\n</div></figure>\n\n\n\n<p>State of the Word 2025 brought the WordPress community together for an afternoon that felt both reflective and forward-moving, blending stories of global growth with technical milestones and glimpses of the future. This year also marked the twentieth State of the Word since the first address in 2006, a milestone noted in the WordPress history book <a href=\"https://wordpress.org/book/2015/11/wordcamp-2006/\"><em>Milestones: The Story of WordPress</em></a> as the beginning of a tradition that has helped the project tell its own story.</p>\n\n\n\n<p>From the outset, the keynote carried a sense of momentum shaped by thousands of contributors, educators, students, and creators whose steady participation continues to define the open web. It was a reminder that WordPress is more than software. It is a community writing its future together.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>What we have is more than code. It’s momentum, it’s culture, and it’s a system that lets people learn by doing and lead by showing up.  — <a href=\"https://profiles.wordpress.org/4thhubbard/\">Mary Hubbard</a>, WordPress Executive Director</p>\n</blockquote>\n\n\n\n<p>Mary opened the evening by reflecting on her first full year as Executive Director, a year spent listening deeply and seeing firsthand how people across regions learn, contribute, and lead. Her remarks grounded the keynote in the lived reality of a community that grows because people invest in one another, teach openly, and build trust through contribution.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>I’ve met people using WordPress to unlock new careers. I’ve met contributors who started a single translation or forum post and are now leading major pieces of the project. In LatAm, Europe, and the States, I’ve seen students get access to WordPress tools and start building faster than we could have ever imagined. I’ve watched communities build in public, resolve disagreements in the open, and collaborate across languages and time zones.</p>\n</blockquote>\n\n\n\n<p>That reflection offered a clear reminder of what makes WordPress resilient through change: a culture of showing up, learning by doing, and supporting others along the way. The project moves forward because people choose to participate in ways both large and small, strengthening the foundation that has carried WordPress for more than two decades.</p>\n\n\n\n<p>With that foundation in place, the keynote moved through a series of stories and demonstrations that highlighted where WordPress stands today and where it is headed next — from a historic live release of WordPress 6.9 to expanding global education pathways, emerging AI capabilities, and deeper collaboration across the entire ecosystem.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress by the Numbers</h2>\n\n\n\n<p>Project Cofounder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> began with a wide-angle view of the project’s growth. WordPress powers over 43% of the web, with 60.5% of the CMS market. Shopify, its nearest competitor, holds 6.8%. Among the top 1,000 websites, WordPress’s share climbed to 49.4%, up 2.3% from the previous year.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Globe graphic noting 43% of websites and 60.5% CMS market share\" class=\"wp-image-19500\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-43.jpg?resize=1024%2C576&#038;ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p>Multilingual usage continued its strong rise. Over 56% of WordPress sites now run in languages other than English. Japan stood out, with WordPress powering 58.5% of all Japanese websites and 83% of the CMS market. Japanese became the second most-used language on WordPress at 5.82%. Spanish followed, then German, French, and Brazilian Portuguese.</p>\n\n\n\n<p>The plugin ecosystem saw explosive growth. The directory surpassed 60,000 plugins, and plugin downloads were on pace to reach 2.1 billion by year-end. Over 1,500 themes have been released this year as well.</p>\n\n\n\n<p>Contributors also hit new highs. The 6.8 release included 921 contributors, the largest group yet. WordPress 6.8 saw 79.5 million downloads, up 13%, and WordPress 6.9 included contributions from 230 first-time contributors and more than 340 enhancements and fixes.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Release Moment to Remember</h2>\n\n\n\n<p>This year’s keynote delivered something WordPress had never attempted before: a live on-stage release of <a href=\"https://wordpress.org/download/releases/6-9/\">WordPress 6.9</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"WordPress 6.9 Gene album cover art\" class=\"wp-image-19511\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-gene.jpg?resize=1024%2C576&#038;ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p>Mary set the moment up earlier in the program, calling WordPress 6.9 “fast, polished, and built for collaboration.” She explained that it reflected a year of intentional iteration, improved workflows, and deeper cross-team participation. </p>\n\n\n\n<p>Matt took the stage with some of the release leads, the release button in hand. The room counted down, and then WordPress 6.9 shipped live, instantly updating millions of sites around the world. It was both a celebration and a testament to the reliability and trust the WordPress community has built into its release processes. Shipping a major version of WordPress in real time, on stage, without drama, is something the early contributors could hardly have imagined.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Photo of WordPress release leads pressing the button to release 6.9\" class=\"wp-image-19457\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/release-leads.jpg?resize=1024%2C576&#038;ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p>That reflection connected back to WordPress’s origin story. Matt talked about discovering the <a href=\"https://en.wikipedia.org/wiki/WordPress#History\">B2</a> forums, asking questions, and eventually reaching the point where he could answer someone else’s. That transition from learner to contributor remains at the heart of the project today. Two decades later, WordPress has grown from those early interactions into a platform that can ship a major release in front of the world, powered by thousands of contributors building together.</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress and the Future of AI</h2>\n\n\n\n<p>As the keynote shifted toward the future, Matt acknowledged what has become an essential truth of the moment: it would be impossible to talk about the next chapter of WordPress without talking about AI. He reminded the audience that in 2022, long before ChatGPT entered global conversation, he encouraged the community to “learn AI deeply.” The speed of change since then, he said, has exceeded every expectation, and WordPress has been preparing for it in ways both visible and behind the scenes.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Timeline of AI: 2022 ChatGPT launches, 2023 GPT-4 and Claude launches, 2024 Multimodel and video generation, 2025 AI everywhere\" class=\"wp-image-19510\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-AI.jpg?resize=1024%2C576&#038;ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p>Matt introduced one of the most important architectural developments of the year: the Abilities API and the MCP adapter. The Abilities API defines what WordPress can do in a structured way that AI systems can interpret, while the MCP adapter exposes those abilities through a shared protocol. This means AI agents — whether built by individuals, companies, or larger platforms — can understand and interact with WordPress safely and predictably. Instead of relying on one-off integrations or brittle interfaces, WordPress now participates in a broader ecosystem of tools that can query its capabilities and perform tasks using a standard, governed approach.</p>\n\n\n\n<p>Matt then highlighted how developers are already using AI in their everyday work through tools like Cursor, Claude Code, and next-generation CLIs. These tools can explore entire codebases, generate documentation, produce tests, refactor large components, and even coordinate sequences of WP-CLI commands. For many developers, they expand what a single person can accomplish in an afternoon. They don’t eliminate the need for human judgment — they amplify it.</p>\n\n\n\n<p>With that foundation laid, Matt turned the audience’s attention to <a href=\"https://telex.automattic.ai/\">Telex</a>, the experimental environment designed to turn natural-language prompts into Gutenberg Blocks. Telex has already moved beyond experimentation and into real use. Matt showed examples from community creator Nick Hamze, who uses Telex to power micro-business tools that represent practical, revenue-generating workflows that previously required custom engineering.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls=\"controls\" height=\"2160\" src=\"https://wordpress.org/news/files/2025/12/Telex-demo-776.mp4\" width=\"3840\"></video></figure>\n\n\n\n<p>Matt then widened the lens to show what companies across the ecosystem are building with AI. Hostinger’s Kodee can generate a complete WordPress site from a single description. Elementor AI demonstrated similarly rapid creation inside its own editor, producing full sections and layouts in seconds. WordPress.com showcased how its AI tools help users draft, rewrite, and refine content while keeping language aligned with the site’s voice. Yoast demonstrated how AI can support SEO workflows by generating structured suggestions and improving readability. Together, these examples illustrated that AI is not arriving in one place — it is arriving everywhere.</p>\n\n\n\n<p>Experimental browsers can navigate WP Admin autonomously, performing tasks such as clicking buttons, opening menus, changing settings, and performing multi-step tasks without requiring any custom plugins or APIs. This raised a key question that Matt encouraged the community to consider: Which AI capabilities should live inside WordPress itself, and which should remain external, operating through the browser or operating system?</p>\n\n\n\n<p>Matt closed the section by discussing WordPress-specific AI benchmarks and evaluation suites. These shared tests will measure how well AI systems understand and execute WordPress tasks, from enabling plugins to navigating WP Admin to modifying content and settings. The goal is to create a foundation where future AI tools behave predictably and responsibly across the entire ecosystem, giving creators confidence that intelligent tools understand the platform deeply.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Global Community Growing Together</h2>\n\n\n\n<p>Mary then returned to the stage to celebrate the ecosystem that supports WordPress&#8217;s growth. Across continents, diverse groups of people have hosted WordPress events, training new contributors and welcoming newcomers into the project. WordCamp growth in 2025 reflected that: more than 81 WordCamps across 39 countries, powered by over 5,000 volunteers and attended by nearly 100,000 people, with sixteen more events still underway.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-19503\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wordcamps.jpg?resize=1024%2C576&#038;ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p>Education played a major role in this community expansion. Learn.WordPress.org served over 1.5 million learners this year, with clearer pathways into more structured programs like <a href=\"https://wordpress.org/education/campus-connect/\">Campus Connect</a> and <a href=\"https://wordpress.org/education/credits/\">WordPress Credits</a>. This bridging was deliberate. Many learners arrive through tutorials or workshops but need clearer guidance on how to deepen their skills. By reshaping navigation and improving wayfinding across WordPress.org, the project began closing that gap.</p>\n\n\n\n<p>She spotlighted <a href=\"https://make.wordpress.org/community/2025/09/29/wordpress-and-higher-education-an-alliance-that-transforms/\">Costa Rica’s Universidad Fidélitas</a>, where WordPress moved beyond extracurricular interest into formal academic integration. Long before signing an agreement with the WordPress Foundation, their students were hosting WordCamp San José, forming student clubs, and treating WordPress as a crucial part of digital literacy and professional development.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-19505\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-photo.jpg?resize=1024%2C576&#038;ssl=1\" width=\"1024\" /><figcaption class=\"wp-element-caption\">Students of the WordPress Fidélitas Club</figcaption></figure>\n\n\n\n<p>Wapuu appeared across events as a familiar companion and a cultural thread running through contributor tools and community projects. Its presence was a reminder that creativity and playfulness are as essential to open source as documentation or code.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Various Wapuu artwork examples\" class=\"wp-image-19506\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-wapuu.jpg?resize=1024%2C576&#038;ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p>Matt highlighted the story of <a href=\"https://events.wordpress.org/managua/2025/wordpress-youth-day/\">Youth Day in Managua, Nicaragua</a>. Seventy-five young people spent a full day building their first WordPress sites. Sessions were taught by teenagers, for teenagers. They learned to pick themes, customize layouts, create contact forms, and publish content. Contribution often starts with a simple moment of confidence, and those early sparks can shape entire careers.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls=\"controls\" height=\"2160\" src=\"https://wordpress.org/news/files/2025/12/wapu-513.mp4\" width=\"3840\"></video></figure>\n\n\n\n<p>Together, these moments illustrated a project expanding not just in numbers, but in depth, diversity, and global reach. WordPress is growing because communities are finding their own ways to embrace it.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s New in WordPress 6.9</h2>\n\n\n\n<p>Joining virtually, WordPress Lead Architect, <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a>, shifted the keynote from vision to practice. Matías offered a detailed walkthrough of what makes WordPress 6.9 one of the most refined, collaborative, and forward-looking releases the project has shipped in years. He returned to the four familiar lenses of creation — writing, designing, building, and developing — and showed how each evolved in this release cycle.</p>\n\n\n\n<p>He began with notes in the Block Editor, one of the most anticipated features. Notes allow collaborators to comment directly on individual blocks in a post or page. When a note is selected, the surrounding content subtly fades, helping contributors stay focused on context. Because notes are built on WordPress’s native comment system, they integrate seamlessly with existing communication workflows, including email notifications. Matías highlighted that notes development exemplified collaboration at its best, with contributors from various companies working together to bring the feature to life.</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\n</div></figure>\n\n\n\n<p>From there, he turned to refinements across the writing and design experience. Editor interactions feel smoother and more consistent. Patterns behave more predictably. Spacing and typography controls are clearer, more organized, and more intuitive. Together these capabilioties make the experience of writing and designing inside WordPress calmer, more reliable, and more empowering.</p>\n\n\n\n<p>Block bindings now provide a more intuitive, visual way to connect blocks to dynamic data sources. Users can switch or remove bindings with a single click, and developers can register additional sources to support custom workflows. This work lays the foundation for a future where dynamic data flows more naturally through blocks, enabling site creators to build richer interfaces without writing code.</p>\n\n\n\n<p>On the developer front, Matías focused on three foundational upgrades that represent major steps forward in how WordPress will evolve over the coming years.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The first was the <strong>Abilities API</strong>, a unified registry that describes what WordPress can do — across PHP, REST endpoints, the command palette, and future AI-driven interactions.</li>\n\n\n\n<li>The <strong>HTML API</strong> introduces new ways of working with and modifying HTML server-side. The API ensures safer, more reliable handling, lowering the barrier for theme and block developers who work with dynamic or structured markup.</li>\n\n\n\n<li>The <strong>Interactivity API</strong> delivers smoother, faster interactions without requiring heavy JavaScript frameworks. Improved routing, better state management, and clearer conventions help developers create rich, modern interfaces without leaving the WordPress philosophy of simplicity and flexibility.</li>\n</ul>\n\n\n\n<p>After Matías wrapped his presentation, Matt stepped back in to highlight several developments that build on the foundations of 6.9 and strengthen the overall WordPress ecosystem. He pointed first to the <a href=\"https://wordpress.org/plugins/plugin-check/\">Plugin Check Plugin</a>, a tool designed to help developers align with current WordPress standards and catch common issues early, making plugins more reliable for users and easier to maintain over time. Matt then spoke about ongoing progress in <a href=\"https://wordpress.org/data-liberation/\">Data Liberation</a>, noting improvements to the <a href=\"https://wordpress.org/plugins/wordpress-importer/\">WordPress importer</a> that make it easier for people to bring their content into WordPress without disruption or loss, an important step toward ensuring the open web remains portable and resilient. He also highlighted advances across the <a href=\"https://playground.wordpress.net/\">Playground</a> ecosystem, including <a href=\"https://developer.wordpress.com/studio/\">WordPress Studio</a>, the Playground CLI, and an expanding set of Blueprints. These allow developers and learners to spin up complete WordPress environments in seconds, test ideas, and experiment without servers or configuration. Matt closed this portion by emphasizing work on safer updates, which help WordPress avoid partial installs and ensure that updates complete smoothly even in less predictable hosting conditions, reinforcing WordPress’s commitment to stability as the platform continues to grow.</p>\n\n\n\n<p>Matt emphasized that WordPress 6.9 is not defined by any single headline feature, but by a broad spectrum of refinements across the entire experience. It is a release that deepens reliability, expands capability, and sets the stage for future innovation.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Insights from the AI Panel</h2>\n\n\n\n<p>The keynote transitioned into a live AI panel moderated by Mary Hubbard. The panel brought together four perspectives from across the ecosystem: <a href=\"https://profiles.wordpress.org/isotropic/\">James LePage</a> (Automattic), <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> (Google), and <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a> (Fueled, FKA 10up), and Matt Mullenweg. Their conversation touched on the philosophy, practice, and future of AI inside WordPress — not as a distant trend, but as an active part of the project’s evolution.</p>\n\n\n\n<p>A central theme was AI’s ability to amplify human creativity. James LePage put it plainly:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>It’s not that we’re going to just add sparkle buttons everywhere. We’re going to do some crazy stuff here — things we’re going to build into the way you interact with creating content, with expressing yourself digitally. We want to give you more power, more control, and make you more effective at creating.</p>\n</blockquote>\n\n\n\n<p>Jeff Paul echoed this sentiment, emphasizing that AI should make developers more productive by handling repetitive work and freeing them to focus on higher-level decisions. Felix Arntz expanded the idea further, describing how Google sees AI as a way to make the web more accessible and intuitive, especially for new creators who may not have formal technical training.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-19462\" height=\"572\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/panel.jpg?resize=1024%2C572&#038;ssl=1\" width=\"1024\" /><figcaption class=\"wp-element-caption\">From left to right: Mary Hubbard, Matt Mullenweg, Jeff Paul, Felix Arntz, James LePage</figcaption></figure>\n\n\n\n<p>Looking ahead, the panelists predicted deeper contextual integrations, AI-assisted debugging and scaffolding for developers, and workflows where agents can take on sequences of tasks while remaining directed by human decisions. They also highlighted the importance of standards, shared protocols, and privacy-focused design as essential components of WordPress’s long-term approach.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>The next 20 years looks like WordPress remaining what it is today, which is the center of the open web.</p>\n</blockquote>\n\n\n\n<p>The panel closed on a forward-looking but steady note. AI is accelerating, but WordPress is designing its foundations with flexibility and values that endure. The tools may change, but the commitment to openness, agency, and creative freedom remains the compass.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Questions That Push Us Forward</h2>\n\n\n\n<p>Matt introduced the Q&amp;A as one of his favorite parts of State of the Word because it reveals what people are imagining, struggling with, or eager to build.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Q&amp;A\" class=\"wp-image-19512\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/State-of-the-Word-2025-QandA.jpg?resize=1024%2C576&#038;ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p>The first question addressed the growing interconnectedness of today’s web. What happens, a participant asked, when a major provider like Cloudflare goes down? As tools and agents rely more heavily on external services, failures can cascade. Matt acknowledged that outages are increasingly visible, but also argued that each one strengthens the system.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>&#8220;Every failure, every edge case, everything that you never imagined is just another opportunity to find that new edge case,” he said. Resilience is not avoidance of failure, but the ability to grow stronger after it.</p>\n</blockquote>\n\n\n\n<p>Another question focused on the longevity of web content. With platforms shutting down or links breaking over time, how can creators ensure their work endures? Matt pointed to the Internet Archive as one of the great stabilizers of the open web. He highlighted a <a href=\"https://wordpress.org/plugins/internet-archive-wayback-machine-link-fixer/\">new plugin</a> that automatically scans posts and replaces dead links with archived versions, helping preserve the historical fabric of the web even as individual services come and go.</p>\n\n\n\n<p>The next question turned to real-time collaboration inside WordPress. A participant asked how co-editing fits into the future of WordPress and how these tools might help creators work more confidently. Matt talked about how collaboration tools can support people who are just starting their creative journeys — whether they are entrepreneurs, students, or first-time site builders. He described real-time editing as part of a broader vision of WordPress “just doing the work for you” in high-pressure or early-stage creative moments.</p>\n\n\n\n<p>The final question considered long-term decision-making. Matt noted that predicting what will change is difficult, but identifying what will remain the same is much easier. For WordPress, he said, the invariant is clear: people will always want agency, openness, and the ability to publish on their own terms. These values guide decisions not only in the present, but across decades of future evolution.</p>\n\n\n\n<h2 class=\"wp-block-heading\">TBPN Podcast Appearance</h2>\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\n</div></figure>\n\n\n\n<p>After the Q&amp;A, the keynote shifted gears with a live crossover segment featuring TBPN (the Technology Business Programming Network), a tech-focused podcast. The segment introduced a lively, unscripted energy into the room.</p>\n\n\n\n<p>The hosts kicked things off by asking Matt what the “word of the year” should be. He chose “freedom”, connecting it directly to the core philosophy of open source. He described open source licenses as a kind of “bill of rights for software,” giving users inalienable rights that no company can revoke. In a world increasingly shaped by software platforms and digital ecosystems, these freedoms form the heart of what keeps the web open and accessible.</p>\n\n\n\n<p>Conversation then moved to <a href=\"https://www.beeper.com/\">Beeper</a>, the multi-network messaging client. Asked whether Beeper aims to “tear down walled gardens,” Matt rejected that framing. Instead, he offered a more collaborative metaphor: bringing gardens together. Most people have friends and colleagues scattered across WhatsApp, Instagram, LinkedIn, Messenger, and SMS. Beeper doesn’t replace those apps — it brings messages together into a unified interface..</p>\n\n\n\n<p>The conversation eventually returned to publishing. Matt referenced the same principle he noted earlier: the importance of identifying what won’t change. For WordPress, he said, that means doubling down on freedom, agency, and the ability to publish without gatekeepers. Even as AI evolves, even as platforms shift, even as new tools emerge, these are the values that will guide the project forward.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Building the Web We Believe In</h2>\n\n\n\n<p>As the keynote drew to a close, Matt returned to a message that had threaded through every section of the evening. The future of WordPress is not arriving from outside forces — it is being crafted, questioned, tested, and expanded by the people who show up. Contributors, students, educators, community organizers, designers, developers, business owners, and first-time site builders all play a role in shaping the platform.</p>\n\n\n\n<p>He spoke about the opportunities ahead: new tools that expand what creators can build, collaborative features that make teamwork feel natural, and AI systems that enhance creativity rather than diminish it. Across continents, generations, and skill levels, people are discovering WordPress as a path to learning, empowerment, and expression.</p>\n\n\n\n<p>The values that brought the project this far remain the ones that will carry it forward: freedom, participation, learning, and community. These aren’t abstract principles. They are lived every day in the decisions contributors make, the ideas they pursue, and the care they bring to the work.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Future Events</h3>\n\n\n\n<p>If you’re feeling inspired to revisit past moments from the project’s annual address, the <a href=\"https://www.youtube.com/playlist?list=PL1pJFUVKQ7ES1piZxljCvMTJCYpVBnwYU\">State of the Word YouTube playlist</a> offers a look back at years of community milestones and product progress. The excitement continues into 2026, with major WordPress events already on the horizon: <a href=\"https://asia.wordcamp.org/2026/\">WordCamp Asia</a> in Mumbai, India,<a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe</a> in Kraków, Poland, and <a href=\"https://us.wordcamp.org/2026/\">WordCamp US</a> in Phoenix. We hope to see you there as the community continues building what comes next.</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 Dec 2025 18:26:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:6;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"WPTavern: #196 – Topher DeRosia on How Public Contributions Shape Careers 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:48:\"https://wptavern.com/?post_type=podcast&p=201513\";s:7:\"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:102:\"https://wptavern.com/podcast/196-topher-derosia-on-how-public-contributions-shape-careers-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:51892:\"<details>Transcript<div>\n<p>[00:00:19] <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 public contributions can shape careers in 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/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Topher DeRosia. Topher is a web developer with over 30 years of experience, and he&#8217;s been deeply involved in the WordPress community for the past 15 years. He&#8217;s attended nearly 80 WordCamps around the world, contributed to projects like HeroPress, and has made it his mission to highlight the power and value of open source and remote work, especially in the WordPress ecosystem.</p>\n\n\n\n<p>In this episode, Topher joins me to talk about the value of working in public, and how sharing your work openly can create unexpected and lasting opportunities. Whether that&#8217;s boosting your career, finding a sense of purpose, or building connections across the globe.</p>\n\n\n\n<p>We start with Topher&#8217;s personal journey, discovering the WordPress community and the profound impact it has had on his life and family. The conversation explores what makes open source communities, like WordPress, so unique, and while working transparently can lead to moments of serendipity and even job offers from people who have seen your contributions many years before.</p>\n\n\n\n<p>Topher shares stories about giving back, the motivation that comes from helping others, and the long-term satisfaction that comes from being generous with your time and expertise.</p>\n\n\n\n<p>We also discussed the tension between the philanthropic and commercial aspects of WordPress, and how individuals and companies navigate that balance.</p>\n\n\n\n<p>Towards the end, Topher reflects on building a body of work over time, trusting in the slow and organic process instead of seeking instant influencer success. He explains why he still chooses to create and share resources for free, motivated by the hope of helping the next person just starting out.</p>\n\n\n\n<p>If you&#8217;ve ever wondered about the power of sharing your work, finding meaning in open communities, or how to make a difference over the long term, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Topher DeRosia.</p>\n\n\n\n<p>I am joined on the podcast by Topher DeRosia. Hello.</p>\n\n\n\n<p>[00:03:19] <strong>Topher DeRosia:</strong> Hello there.</p>\n\n\n\n<p>[00:03:20] <strong>Nathan Wrigley:</strong> It&#8217;s very nice to chat to Topher. We&#8217;ve done this before. We&#8217;ve had many chats online, but I just want to pay a special thanks to Topher for reasons I won&#8217;t bore the audience with, Topher has sort of joined me at extremely late notice, like minutes of notice.</p>\n\n\n\n<p>We had a bit of back and forth yesterday about topics that we may cover, and the one that&#8217;s going to be covered today is the one that we decided. But he wasn&#8217;t expecting this, and so he&#8217;s arrived and I&#8217;m extremely grateful. So firstly, my deepest thanks for carving out a bit of your day unexpectedly.</p>\n\n\n\n<p>[00:03:50] <strong>Topher DeRosia:</strong> You&#8217;re very welcome. This is always fun, and fit my day perfectly.</p>\n\n\n\n<p>[00:03:53] <strong>Nathan Wrigley:</strong> Yeah, okay. Thank you. So what we decided to talk about was, and I&#8217;ll encapsulate it in a sentence that Topher wrote to me, and then we&#8217;ll just sort of get into it and see where we go. Topher said, he&#8217;d like to talk about the value of doing things in public, and how this can come back to you later as a way of potentially, I don&#8217;t know, boosting your career or just offering some guiding light to the community and what have you.</p>\n\n\n\n<p>So first of all, in order to give us some idea, I&#8217;m sure that there are people who know you, having listened to the things that you&#8217;ve done or consumed the HeroPress website or what have you. Will you just give us a little potted bio of yourself related to, I guess the WordPress community, makes most sense in this context?</p>\n\n\n\n<p>[00:04:30] <strong>Topher DeRosia:</strong> Sure. I have been a web developer for 30 years, which is old, but I got into WordPress about 15 years ago and I did not know there was a community for several years. And Brian Richards said to me, hey, we should do a WordCamp. And I said, what&#8217;s a WordCamp? And then of course, my life changed forever after.</p>\n\n\n\n<p>Oh, you know what? We started with a meetup, but like 2 weeks later he said we should do a WordCamp. And he said, we should do it this summer. And we were talking, like we were talking in June. So we went from never hearing of it before, to having a WordCamp suddenly. And I&#8217;ve been in, all in on the community ever since. I&#8217;ve been to nearly 80 WordCamps, all over the world. I&#8217;ve been making stuff, building stuff, meeting people ever since.</p>\n\n\n\n<p>[00:05:12] <strong>Nathan Wrigley:</strong> Wow.</p>\n\n\n\n<p>[00:05:13] <strong>Topher DeRosia:</strong> It&#8217;s pretty great.</p>\n\n\n\n<p>[00:05:13] <strong>Nathan Wrigley:</strong> Yeah, 80. Gosh, that&#8217;s profound. I mean, I don&#8217;t consider myself to have a high attendee account, but 80, that really is remarkable.</p>\n\n\n\n<p>So I think it&#8217;s fair to say that the profundity of the effect of discovering that community is pretty important in your life. You know, it&#8217;s had a material impact in every way.</p>\n\n\n\n<p>[00:05:31] <strong>Topher DeRosia:</strong> Hugely. My wife got into the community. My children, both my kids have spoken at WordCamp US. My wife has spoken. My kids have friends in other countries that I don&#8217;t know because of the WordPress community. Every parent has that fear of, what if something happened to us? What would happen to the kids? And we have family that would take care of them, you know? It&#8217;s nice to know we also have that backup where there are people all over the world who would say, hey, we got room, come on.</p>\n\n\n\n<p>[00:05:55] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s pretty amazing. I joined the WordPress community, so I&#8217;d been involved in lots of open source projects, things like Magento and Drupal and things like that. And I know that Drupal has, there&#8217;s definitely stuff in the Drupal space that you can attend. But I never did.</p>\n\n\n\n<p>And to be honest with you, I didn&#8217;t know that that stuff existed until after the fact. And then in about 2014, something like that, I discovered WordPress. And just like you, I had no conception that it was more than some downloadable bit of software. Honestly didn&#8217;t even know that it was done by volunteers. I just had probably some assumption that there was an organization or a company behind it that in some way monetised it and made it free and what have you.</p>\n\n\n\n<p>And then just got this intuition, I guess, with social networks, the way that they were at that time, you could find groups and discover that there were all these ancillary groups of people doing things with WordPress, you know, groups focusing around page builders and groups focusing around plugins.</p>\n\n\n\n<p>And then for me to discover that there were actual events that you could attend was, just like you, really remarkable. And I attended the first one and I kind of thought, oh, we&#8217;ll just see how this goes. I&#8217;m a bit of an awkward character in person, so I sort of stood around at the back. But it didn&#8217;t take me long to sort of be welcomed in. And just like you, completely changed my life. And ever since then, a sizable proportion of my free time has been devoted to curious WordPress things. It&#8217;s amazing.</p>\n\n\n\n<p>I can&#8217;t quite work out what it is about a project like WordPress that inculcates that, fosters that, makes that possible. Because I imagine if you attended, I don&#8217;t know, a Cisco networking conference or something like that, it&#8217;s not going to have the same feel. So I don&#8217;t know if you want to speak to that for a little bit, why you think the community works.</p>\n\n\n\n<p>[00:07:36] <strong>Topher DeRosia:</strong> Yeah. I have two thoughts about it. One is that I think it&#8217;s absolutely because of the people. And it may be chance that the right people found WordPress and got together at the same time. But to that point, that it&#8217;s the people, I recently went to two non WordPress conferences in one week.</p>\n\n\n\n<p>I went to one for higher education in technology. The people who attended were from universities and colleges, and they were looking for ways to manage web stuff on their entire campus. So do you offer a blog to all 24,000 students, you know? That kind of thing. It was my first time there, but I saw a number of people who were greeting each other and not having seen each other since last year, and the year before, and the year before. And it was very much like a WordCamp. And people talked about how this group is so wonderful and they wait all year long to come back here. And I thought, oh, okay, so this is WordCamp.</p>\n\n\n\n<p>And then while I was there, I met somebody who worked at Umbraco, which is an open source .net based CMS. And they&#8217;ve been around for 20, more than 20 years, but it&#8217;s a very small community, like 0.01% of the market share. And I told her, you know, who I am, what I do, and she&#8217;s like, oh, we would love to have you come to our conference this weekend in Chicago. Can I pay you to come? I was like, oh wow, sure.</p>\n\n\n\n<p>So I went and it was about a hundred people and it was WordCamp. Everybody there loved the software, loved the community, everybody was friends. It was the same. And expanding just a little more, HeroPress says it&#8217;s about people leveraging WordPress to make their lives better. But in actuality, what it is, is open source and remote work combined. It allows people in Malaysia to pick up software and compete on a relatively equal basis with somebody in New York. And in our world, that&#8217;s WordPress. But it&#8217;s exactly the same with every open source remote work option, Drupal, Umbraco, anything.</p>\n\n\n\n<p>[00:09:45] <strong>Nathan Wrigley:</strong> Maybe open source then is, forgive me, the secret sauce. Maybe that&#8217;s the component, the bit that binds those communities together in a way that perhaps, I don&#8217;t know, something where a proprietary thing or something was locked down, or profit was the whole point, maybe that is the bit. The fact that there&#8217;s a bunch of people gathering together in a kind of philanthropic way. You know, there&#8217;s no expectation that my attendance will definitely lead to finance, let&#8217;s put it that way.</p>\n\n\n\n<p>Like I said, I don&#8217;t really have much experience outside the WordPress world, and so my assumption was that there was something a little bit unique. But from what you&#8217;ve said, this same exact thing is happening probably a thousand times over throughout the globe, but your expectation there is that the open source component is the bit, the bit that unlocks it.</p>\n\n\n\n<p>[00:10:32] <strong>Topher DeRosia:</strong> Yeah, I agree. WordPress has the advantage of a very large user base, which is good and bad. There are certainly more wonderful people in it than if there were fewer. But at that scale, you are just as likely to have really terrible people. I know people that have left the WordPress community because they&#8217;ve been treated horrendously, abused, and it breaks my heart. And I want to say, oh, WordPress is different, you won&#8217;t find that here, but you will. It&#8217;s too big a community to not have that.</p>\n\n\n\n<p>[00:11:01] <strong>Nathan Wrigley:</strong> I wonder what it is then about that sort of spirit of giving back that creates some kind of, I don&#8217;t know, hive mind, for want of a better word. You know, there&#8217;s just this ethic that you&#8217;re all combined on this slightly higher purpose. So in the case of WordPress, and you mentioned Drupal and you mentioned the other CMS with the small market share, the principle there is that you&#8217;re working on something, and I guess publishing is the point. You are enabling people who may or may not have a voice to get on the internet and do something, publish something, write something, put images, videos or what have you.</p>\n\n\n\n<p>There is some kind of higher calling there. It&#8217;s very hard to sort of grasp that, and to really understand it. But do you know what I mean? You&#8217;re doing something which, at the end of your days, you can look back and say, there was something there. There was something meaningful, there was something significant and important. And that feeling, that thing, whatever that thing is, is important, and enough to propel people to give up hours and weeks of their lives to do this.</p>\n\n\n\n<p>[00:12:04] <strong>Topher DeRosia:</strong> I think most people enjoy making other people, I don&#8217;t know, so many things, more successful, happier, more stable. And there are open source projects that will shrivel up and die because no one ever says thank you. People work on a project for years and years and they think, you know what? Nobody cares. I&#8217;m going to go play Frisbee.</p>\n\n\n\n<p>But I think the WordPress community is large enough, and we have these events that everybody goes to, that you run into people who have been impacted by the work you do.</p>\n\n\n\n<p>There&#8217;s a, boy, can&#8217;t remember his first name. Heisel. He&#8217;s Dutch but lived in England and now he lives in Malta or something. Anyway, I met him for the first time at WordCamp London and he walked up to me and said, hey, I need to shake your hand. I said, okay. He said, a few years ago I lost my job and I didn&#8217;t know what I was going to do and I needed to support my family, and I got on OS Training and learned WordPress from your videos, and now I support my family with WordPress. I about broke down in tears right there.</p>\n\n\n\n<p>And that kind of thing happens to lots and lots of people. People who say, you know what? This plugin you wrote, it changed my life. I make a living with this now. I support my family.</p>\n\n\n\n<p>[00:13:19] <strong>Nathan Wrigley:</strong> Do you know what&#8217;s kind of interesting there is that, I guess you did none of it with the expectation of that person wandering up. You know, it&#8217;s not like, Topher, you sat down and thought, the more thanks I get, the more I&#8217;m going to do. There isn&#8217;t that kind of expectation. But it certainly helps, doesn&#8217;t it? When somebody does come up and express those thoughts to you. I bet you that carried you through the next days, weeks, or months. You know, the capacity to drag that out of your brain.</p>\n\n\n\n<p>[00:13:42] <strong>Topher DeRosia:</strong> It still is. That was years ago.</p>\n\n\n\n<p>[00:13:43] <strong>Nathan Wrigley:</strong> Yeah, yeah. Isn&#8217;t that interesting?</p>\n\n\n\n<p>[00:13:45] <strong>Topher DeRosia:</strong> I do think though that you don&#8217;t do it for the thanks, but it&#8217;s a lot easier to do if you think it matters. When people say thank you, it feels good, but it lets you know that what I&#8217;m doing matters. It&#8217;s making a difference. It&#8217;s making somebody&#8217;s life better. It&#8217;s making the world better. That&#8217;s a huge motivator.</p>\n\n\n\n<p>[00:14:04] <strong>Nathan Wrigley:</strong> That&#8217;s the big thing. So this is a curious question, right? And it&#8217;s not really related to WordPress. Did you have those same intuitions at an early age? Was there some part of you can remember even as, I don&#8217;t know, let&#8217;s say a 15-year-old or 17-year-old or something like that. Where you had already made the leap that life is better when you are being helpful? Or did you learn that later?</p>\n\n\n\n<p>Because I kind of have the intuition that quite a few people in our community probably figured that out at some point fairly early on. And it enables them, I&#8217;m obviously not suggesting that people who didn&#8217;t make that intuition early on can&#8217;t join the community or what have you. But I&#8217;m surrounded by people who seem to have this almost bottomless capacity to give. And I&#8217;m always struck by how did that begin for them? Where did that start for them? So because I&#8217;ve got you on the line, I&#8217;m asking you directly.</p>\n\n\n\n<p>[00:14:58] <strong>Topher DeRosia:</strong> When I was in college, I just randomly became interested in motivations. What makes people do things? What makes somebody mean all the time? What makes somebody happy all the time? What makes somebody be kind?</p>\n\n\n\n<p>And I thought through the process of how gratitude is an influencer. If you say to somebody, thank you for what you&#8217;re doing, it makes them feel good. It makes them want to do it more. If they&#8217;re, you know, working at a food pantry and you say, hey, thank you for what you&#8217;re doing, it&#8217;s changing lives, just feeding children. It makes them want to do that more. If that person at a food pantry were faced every day with angry people who abused them verbally and stuff like that, they&#8217;d be a lot less inclined to do that.</p>\n\n\n\n<p>[00:15:37] <strong>Nathan Wrigley:</strong> Yeah. I listened to a podcast not that long ago, and I actually can&#8217;t remember which one it was because I listened to several in this line. But essentially it was trying to peel back the latest studies in what causes some people to be happy. And I am not going to explain this and have the expectation that everything I say is true, nor that this is the limit of that. But a fairly reliable indicator of happiness, whatever that means, but on a fairly profound level, happiness can be boiled down to these two things, apparently.</p>\n\n\n\n<p>One of them is that you are giving of your time. So it may be that you are, as you say, working in a soup kitchen. Or that you are doing something in the community. Or you are just putting into your children or what have you. There is a real connection apparently between the capacity to give something from which you expect nothing in return. Humans apparently find great, deep satisfaction from that.</p>\n\n\n\n<p>And the other one is friendship. If you have people that you regard as friends, on a deep level. So obviously acquaintances, we can all have many, many thousands of those, especially online nowadays. But it&#8217;s that core little group of really impactful, meaningful people who in the time of crisis, you know are going to have your back.</p>\n\n\n\n<p>Those two things apparently are a real predictor of one&#8217;s happiness. And both of them seem to stray into our community, you know? Although it&#8217;s an online thing, you&#8217;re still giving your time, and you know that in a fairly ephemeral way that you maybe can never grasp, people will be benefiting from that. And also you make friends. So there you go, it&#8217;s the root to happiness.</p>\n\n\n\n<p>[00:17:19] <strong>Topher DeRosia:</strong> It is.</p>\n\n\n\n<p>[00:17:20] <strong>Nathan Wrigley:</strong> So all of that, having said all of that, you have this wealth of experience in the community. You&#8217;ve done so many projects in the community. And as I said at the top of the show, the thing that you wanted to talk about was, not just the mere fact of doing things in the community, but about the fact that you are doing things in the community in a sort of public way, and how that can sort of impact in the future. So just tell us a little bit about why you wanted to get into that, or maybe some anecdotal evidence of how that&#8217;s helped you.</p>\n\n\n\n<p>[00:17:50] <strong>Topher DeRosia:</strong> Very little of it in my life has been deliberate. I&#8217;ve done some things and then later thought, oh, wow, I didn&#8217;t realise that this would be the consequence. I made videos for OS Training for a lot of years, they&#8217;re behind a paywall, they paid me by the video. I wasn&#8217;t thinking, oh, I&#8217;m going to go teach the world. It was a client, I made videos.</p>\n\n\n\n<p>And years later, Brin Wilson from WinningWP got a hold of me on Post Status and said, hey, I want to start a YouTube channel. Would you make videos for me? I said, sure, but why me? He said, well, I&#8217;ve seen your work. You&#8217;ve done this, you have given evidence to the world that you know what you&#8217;re doing. And that was a good contract. And I got it because I had previously done something else.</p>\n\n\n\n<p>With HeroPress, I didn&#8217;t set out to become a relatively known person. I was just doing it. But I remember the first time I talked to a stranger from India and introduced myself and they said, oh, of course we know you. I said, what do you mean of course? You live 5,000 miles away from me. How on earth would you know me? And, boy, it is just stuff like that.</p>\n\n\n\n<p>I have some plugins on wordpress.org. I think cumulatively they have 12 installs. They&#8217;re not big plugins, but they&#8217;re there. And people look and say, oh, Topher knows how to make plugins.</p>\n\n\n\n<p>I contribute to the photos project. And people who aren&#8217;t necessarily contributors don&#8217;t necessarily understand the different kinds of contribution. They just see my name on the contributor list like, oh, Topher builds WordPress because I take a lot of photos or something. But just the fact that I&#8217;m out there doing that makes a difference.</p>\n\n\n\n<p>I&#8217;ve been blogging for years. I did blogs in the GoDaddy Garage back in the day, I wrote on OS Training, I wrote all over the place. And recently I thought, boy, I wish I had had all that on my own site.</p>\n\n\n\n<p>And then it occurred to me that WordPress does a lot of RSS, and so does YouTube. And so I built a site called topher.how. Found everything I&#8217;ve ever done and just used WP All Import and pulled it all into one place. So now at topher.how you can see stuff I&#8217;ve done decades ago, and it&#8217;s nice. It&#8217;s a place to say, look, here&#8217;s stuff I did. But I have gotten, no, you know, I&#8217;m not going to say I&#8217;ve gotten jobs, I&#8217;ve gotten consideration, interviews, interest because people who know who I am, because I did something once long ago.</p>\n\n\n\n<p>[00:20:11] <strong>Nathan Wrigley:</strong> Yeah, I guess the interview phase, to get yourself over the line, you&#8217;ve still got to sort of show your metal, haven&#8217;t you? But that whole thing of just being represented by your past, it&#8217;s really curious. We live in a world which is so dominated by, I don&#8217;t know, the financial motivation for this, that, and the other.</p>\n\n\n\n<p>It is curious when nowadays you can have a legacy which is not the CV, it&#8217;s not the line items on the CV. It can be much more ephemeral stuff. Things that you did, videos that you made, blogs that you contributed to.</p>\n\n\n\n<p>The people out there making the decisions about who&#8217;s going to get those jobs, well, you have proved that that kind of history of being online definitely works, and in unexpected ways. It&#8217;s not like there&#8217;s always a through line between, okay, I&#8217;m going to make these YouTube videos so that in a few years time I&#8217;ll have this credible body of evidence that will make it so that anybody can employ me. It&#8217;s much more ephemeral than that. It&#8217;s more, I&#8217;m doing this video because I think itll be helpful, and then serendipitously that then leads to something in the future.</p>\n\n\n\n<p>[00:21:14] <strong>Topher DeRosia:</strong> Yeah, very much so. Before we started recording, you mentioned my background here. It&#8217;s a piece of fabric on a photo stand. And I bought it just the other day because, you know, I&#8217;ve been making videos for years, I&#8217;ve never appeared on camera. Always been a screencast. And I recently got a client that said, well, we want you on camera. And so I got this thing.</p>\n\n\n\n<p>But the interesting part is that the client is a company in Bangladesh. And I know them quite well, they know me quite well because of stuff we&#8217;ve done together in the past in the WordPress community. And when they needed videos, they came to me, because they know me and they know that&#8217;s what I do. That wouldn&#8217;t happen if I hadn&#8217;t been out doing stuff years ago. What are the chances I would know somebody, me in Michigan, I would know somebody in Bangladesh?</p>\n\n\n\n<p>[00:22:01] <strong>Nathan Wrigley:</strong> Right. Right, I mean, the world of 50 years ago, it&#8217;s tending to zero basically, you know, unless you&#8217;d been on plane or somebody had been on a plane in the opposite direction and you&#8217;d met where you are. The opportunities afforded are amazing, and it&#8217;s that kind of long tail that you&#8217;ve got as well. That I suppose is going to be hard for somebody that&#8217;s younger to listen to because, you know, they kind of see this mountain that they&#8217;ve got to climb and this great body of work that they&#8217;ve got to build up over decades. I guess that&#8217;s, it&#8217;s not all about that either, it&#8217;s about sort of just chipping away at it and doing things piecemeal.</p>\n\n\n\n<p>[00:22:31] <strong>Topher DeRosia:</strong> I have a funny story about that. Early in my WordPress career, I got to know Pippen Williamson. You may remember him.</p>\n\n\n\n<p>[00:22:39] <strong>Nathan Wrigley:</strong> Yeah. I do.</p>\n\n\n\n<p>[00:22:39] <strong>Topher DeRosia:</strong> And he was very well known in the WordPress community. I got to know a few people who were very well known. I was like, man, that&#8217;s cool, everybody knows these people. Wonder if people will ever know me? We were talking about it, he and I, and he quickly urged me, do not seek to be known because that will only lead to tears. If you&#8217;re doing it for the wrong reason, then it will just turn out badly.</p>\n\n\n\n<p>And so I thought, well, you know, maybe in 10 years. Well, here we are. And I didn&#8217;t set out to be known. I&#8217;ve never bought a banner ad saying, look at Topher. I just went to WordCamp and spoke. I wrote blog posts, I made videos. I shook a lot of hands. I listened to a lot of stories.</p>\n\n\n\n<p>[00:23:18] <strong>Nathan Wrigley:</strong> It&#8217;s about sort of spreading the network organically really, isn&#8217;t it? Which I suppose in a sense leads to, okay, rather than the word fame, I&#8217;m going to use the word notoriety because I think they&#8217;ve got two very different endpoints. But the idea of seeking fame is tied up with, you know, you just want random people to know you because they know you, and that&#8217;s the kind of end game, you know? Oh, you are famous because you&#8217;re famous, that sort of flavor to it.</p>\n\n\n\n<p>Whereas notoriety for me has much more, there&#8217;s a body, a corpus of work behind you that leads to that understanding that, okay, that&#8217;s Topher. I know Topher because he did this, this, this, and this. It&#8217;s not famous because they&#8217;re famous. It&#8217;s more, there&#8217;s the guy who made those videos that I watched. Or there&#8217;s the guy that wrote that blog that I read all the time. That kind of thing. And so it&#8217;s not fame for fame sake, it&#8217;s accidental fame more, if you know what I mean?</p>\n\n\n\n<p>[00:24:10] <strong>Topher DeRosia:</strong> Yeah. I heard the term not too long ago that I like called community known.</p>\n\n\n\n<p>[00:24:14] <strong>Nathan Wrigley:</strong> Okay. That&#8217;s nice.</p>\n\n\n\n<p>[00:24:15] <strong>Topher DeRosia:</strong> Within a community, you you could say famous, very well known. Outside that community, people do not care and have no idea who you are.</p>\n\n\n\n<p>[00:24:22] <strong>Nathan Wrigley:</strong> That&#8217;s right. Yeah, it&#8217;s curious, inside of our community, there&#8217;s this one person whose name kind of precedes all others, and it would be Matt Mullenweg. But I&#8217;m willing to bet that if Matt was walking down the street, more or less anywhere, that his life is just the same as yours and mine. Nobody&#8217;s going to know who he is unless randomly they happen to be a WordPresser. But he&#8217;s fairly thin on the ground. You know, it&#8217;s not like he&#8217;s Scarlett Johansson or George Clooney or something like that, where that fame is probably quite an oppressive thing in their life. You know, the capacity to just walk down the street.</p>\n\n\n\n<p>So yeah, anyway, the point being that you&#8217;ve done stuff over time without the intention of it being this fame for being famous. It&#8217;s more about being community known, as you said. But that has had amazing consequences.</p>\n\n\n\n<p>And that kind of leads me to this next thing. I wonder, this question comes up all the time, but I do wonder if it&#8217;s more material now than it ever has been. I wonder if the community can always cope with the commercial pressure that is being born by the community?</p>\n\n\n\n<p>So for example, you know, you up to events and there&#8217;s a lot of people trying to sell you things. And maybe WordCamps from 15 years ago would&#8217;ve felt very much more a room full of like-minded individuals. Whereas now if you go to WordCamps, maybe there&#8217;s more of a feeling of, okay, that bit over there is more commercial, that bit over there is less commercial. But there&#8217;s always that kind of commercial angle.</p>\n\n\n\n<p>I don&#8217;t really know where I&#8217;m going with that, but the commercial side of things, I don&#8217;t know if you&#8217;ve got a feeling on, or a intuition on that?</p>\n\n\n\n<p>[00:25:54] <strong>Topher DeRosia:</strong> Sort of. Something I&#8217;ve noticed over the years is that it&#8217;s entirely possible to write a plugin, start selling it, have it be successful, build a business, hire people, maybe get a relatively large business, maybe hundreds of employees. And it feels good, it looks good, it&#8217;s great, it&#8217;s wonderful until it starts going, or getting hard. And then people who never thought this would happen start having to make difficult decisions that hurt people.</p>\n\n\n\n<p>If things aren&#8217;t going well, we need to let some people go. Maybe we need to let a lot of people go. Maybe we need to reorganise, whatever. And people look at this golden company, the pinnacle of WordPress, open source, love, family, peace, blah, blah, blah, and they&#8217;re letting people go. And you think, what? They&#8217;re just another business. They were just in it for the money. And they&#8217;re not, but it can feel that way when you&#8217;ve been let go.</p>\n\n\n\n<p>And at some point it has to be about the money. If you&#8217;re building a plugin because you love it and you&#8217;re selling it because people need it, that&#8217;s cool. If you&#8217;re running a business and people are depending on you for their livelihoods, you have to make the decisions. You have to do some hard things sometimes. And it&#8217;s never going to be comfortable. And at some point it&#8217;s going to look like you&#8217;re just another company. I&#8217;ve never been in this position, but I think it can be incredibly difficult to maintain a culture that we associate with the stereotype of WordPress community, in a full on company.</p>\n\n\n\n<p>[00:27:27] <strong>Nathan Wrigley:</strong> Yeah, I do know exactly what you mean. I think we, let&#8217;s say for example, let&#8217;s go back to Cisco. I used that example a minute ago. Let&#8217;s say that I work for Cisco. It&#8217;s pretty obvious what the goal there is. The goal is to ship loads of units of networking hardware all over the world, and then next year ship more than we ship this year and innovate more and.</p>\n\n\n\n<p>[00:27:45] <strong>Topher DeRosia:</strong> And you have investors that are going to hold your feet to the fire.</p>\n\n\n\n<p>[00:27:47] <strong>Nathan Wrigley:</strong> Right. Okay, so make money, make the investors happy, make the shareholders happy, and so on. That is so straightforward a bargain. But we in our community have this extra layer underpinning it of this philanthropic bit, which forms the basis of it. It&#8217;s literally the bedrock of it.</p>\n\n\n\n<p>And so that whole thing is propping everything else up on top of it, which I genuinely don&#8217;t know how the shifting sands of that all work. We&#8217;ve managed to get through 22 years plus, of that building up slowly over time, there being arguments here, there and everywhere. Minor arguments, some bigger arguments. We&#8217;ve somehow worked it through.</p>\n\n\n\n<p>But I don&#8217;t suppose that will ever get perfectly resolved. It&#8217;s going to be just part of the understanding that if you&#8217;re in open source, there&#8217;s a commercial bit. And if you can&#8217;t cope with that, well, that&#8217;s something you&#8217;re going to have to think about and look at. But also there&#8217;s going to be this whole philanthropic side, and that has to carry on and has to be funded, and figured out, and made important and advertised and all of that. I don&#8217;t have the brain to figure all that out, but it&#8217;s part of the jigsaw puzzle.</p>\n\n\n\n<p>[00:28:52] <strong>Topher DeRosia:</strong> Yeah. It&#8217;s truly something I&#8217;ve never had to deal with, and I hope I don&#8217;t, the scales of money. I had a job once when I was very young. We&#8217;re at home, we were newly married and money was tight, and we were talking about where to get $20 for groceries and things like that.</p>\n\n\n\n<p>And at work I was allocating hardware for new employees and, oh, let&#8217;s pick up two or three extra computers at $4,000 each because we might need them. That scale of money is, it&#8217;s something I&#8217;ve tried to be aware of.</p>\n\n\n\n<p>I look at a WordPress plugin company that has employees and I think, oh man, you have so much more money than I do, so much more. And maybe they do, but they also have so many more bills than I do. Just because they have several employees, and they&#8217;re doing well and things look great on Black Friday, doesn&#8217;t mean that they&#8217;re super wealthy or anything.</p>\n\n\n\n<p>[00:29:42] <strong>Nathan Wrigley:</strong> Yeah. I genuinely struggle with this component. I don&#8217;t think I&#8217;ll ever resolve it. I&#8217;m just aware that it exists. I&#8217;m aware that there&#8217;s people who are very polemic about it. There are people on the far this side, and there&#8217;s people on the opposite side who maybe are kind of struggling to shout across the gap. But then there&#8217;s people sitting in the middle who are somehow managing to figure it all out, or at least be sanguine about it, and not worrying too much about it. Time will tell. In the year 2026, I&#8217;m sure that it won&#8217;t get figured out, but it will probably carry on.</p>\n\n\n\n<p>I&#8217;ve got every hope that WordPress is exciting enough to carry on and that people will continue to use it. So I don&#8217;t worry too much about that. It&#8217;s just more whether or not the two sides of the argument, in an increasingly polemic world, whether the commercial side of WordPress and the non-commercial side of WordPress can figure out some way to walk upon the same path.</p>\n\n\n\n<p>[00:30:28] <strong>Topher DeRosia:</strong> There&#8217;s an element to WordPress that I think will carry on, even if it looks like WordPress is starting to fail. And that&#8217;s going to be the earliest people, the smallest contributors. Things have been really shaken up in WordPress in the last year or two, and I have friends who&#8217;ve left the community. And business is getting bigger and WordPress itself is changing. Gutenberg is a big thing now and AI is moving in and all that. So much is changing.</p>\n\n\n\n<p>And I have people say, why do you stay? Why do you keep doing WordPress? Specifically, why do I keep doing HeroPress? And I think my experience tells me that there will always be a 17-year-old picking up a computer at the library for the first time and discovering WordPress and starting a new life. And I want to be there for that person.</p>\n\n\n\n<p>[00:31:18] <strong>Nathan Wrigley:</strong> Yeah. So it&#8217;s going back to the 17-year-old you as well. You know, that bit that we had earlier where you figured out you had this intuition that there were some things in life which mattered more.</p>\n\n\n\n<p>One of the things that I think is really, like it&#8217;s so difficult to square this argument though, the whole thing where you see incredible wealth being generated by WordPress and you see incredible endeavors being put into WordPress by people who are really struggling to make ends meet. And I simply don&#8217;t have the capacity to figure out the solution to that. I cannot square that circle. But that is such a bit of cognitive dissonance that so much wealth is generated, on the one hand, and yet so much of the foundational work is created by people who may be struggling to put food on the table and what have you. And that is really challenging.</p>\n\n\n\n<p>[00:32:12] <strong>Topher DeRosia:</strong> Yeah, it is challenging. I don&#8217;t think it&#8217;ll ever be solved. I think it&#8217;s a universal problem of humanity. But similar to other areas, I think WordPress does better than other communities. There have been a bunch of discussions in the past about inclusivity, diversity in the WordPress community. And even people who point out the problems and say, look, we messed up here, this is bad, we need to change it, will say WordPress is probably the best of the IT world. There are problems. It&#8217;s bad. There are things we need to change, but we&#8217;re way ahead.</p>\n\n\n\n<p>[00:32:47] <strong>Nathan Wrigley:</strong> Okay, so that&#8217;s a really, sorry to interrupt. I got really caught up in what you just said then. I wasn&#8217;t expecting that to hit me quite as hard as it did. That was really interesting. That sort of sanguine approach to it. It&#8217;s never going to be perfect. We&#8217;re probably going to have division and factional fighting, I&#8217;m going to do air quotes around the word fighting, but you know what I mean, like infighting and what have you. But we do all right. Given how it could be, it&#8217;s okay. These things are just a part of the evolution of it. It&#8217;s a journey, not a destination. Yeah, that was interesting.</p>\n\n\n\n<p>[00:33:18] <strong>Topher DeRosia:</strong> We do have to take care though to not rest on our laurels, as it were. To say, oh, you know what? It&#8217;s okay, we&#8217;re better than everybody else, and so we don&#8217;t need to work on it. As soon as we do that, then we will not be better than everybody else.</p>\n\n\n\n<p>[00:33:30] <strong>Nathan Wrigley:</strong> And it&#8217;s curious because I think the people that I end up talking to when I attend things like WordCamps have that intuition. I think some, on some innate level, they get the bit that you just said. They know that it&#8217;s not perfect. And they know that work needs to be done. And they&#8217;re there for that thing. They want to fight the good fight, and make it so that this platform is available to the 17-year-old that you just described, so that they can pick this stuff up and publish their own stuff online, and have their own voice, and create their own identity and all of that. And it&#8217;s, yeah, really interesting.</p>\n\n\n\n<p>I think I have one more question. So we were talking about the impact of you doing stuff in the open. You obviously did all of that stuff in the open. You did everything, you put everything online, you got HeroPress and all of that kind of stuff. Would you still advocate that in the year 2025, 2026? Do you still think that&#8217;s probably the best way forward?</p>\n\n\n\n<p>The reason I&#8217;m asking that is because we see so much out there in the world, beguiling stuff. TikTok, YouTube, all these people getting YouTube famous, making giant amounts of money and all of that kind stuff. They&#8217;re doing it kind of purposefully in order to gain wealth. So it&#8217;s less that philanthropic side.</p>\n\n\n\n<p>If you could replay your life, would you do that? Is there any part of you which thinks you&#8217;d go down that route of being the kind of influencer, or are you happy that your life would replay in, if you were the youngster that you were many, many years ago and you were now that youngster, would you still do it the same way, do you think?</p>\n\n\n\n<p>[00:35:00] <strong>Topher DeRosia:</strong> I think I would. A couple years ago I did a video tip of the week on HeroPress. It was a video on YouTube. And people would say to me, you know what? It&#8217;s good that you offer this free stuff. You should put something behind a paywall and make money off it. And I think, oh, you know, that&#8217;d be cool. I could make money and pay the bills. But then I think, anything I put behind a paywall is not going to be able to help a 17-year-old who&#8217;s making a dollar a week. And that&#8217;s where my heart is. And I struggle.</p>\n\n\n\n<p>I&#8217;m doing a project right now that I would love to tell you about. Over the years, I&#8217;ve done support a lot. And I, early on, made a rule, if I get asked a question more than three times, I&#8217;m making documentation. And so I can just say, oh, here, go check this out. And over the years I&#8217;ve had many clients come back to me three months after I built a site and say, you know, you taught me how to use the WordPress admin and I don&#8217;t remember, can you show me again?</p>\n\n\n\n<p>So, I don&#8217;t know, a year ago I thought, I&#8217;m going to make a course for beginners, and it&#8217;s going to have videos that are one minute long about how to make a link, how to put in a picture, how to edit your form. Stuff that we all take for granted every day. But somebody who just got a website three months ago and used it once, they don&#8217;t remember.</p>\n\n\n\n<p>So I started down that road. I got MemberPress, I set up a site, and I made a list of videos to make. I was going to sell it to my clients as part of, you know, you bought a website, for an extra X dollars, here&#8217;s all this documentation you can have. A WordPresser at that educational conference said to me, I want to sponsor you to make those videos. You pick the topic, but do it on our hosting platform, just so that our name is there.</p>\n\n\n\n<p>And she gave me some money to do it. And she said, I want you to put them on your own YouTube channel. I didn&#8217;t have one. All these years, I didn&#8217;t have my own YouTube channel for my own videos. I want you to put them on your own YouTube channel, and once you get 2000 subscribers, I will pay you for every video you make. Just to put them on my own YouTube channel. I get to pick the topics. It&#8217;s just to get their name out. And I thought, wow, okay.</p>\n\n\n\n<p>So I pivoted, rather than make a course behind a paywall, I am doing this thing, but they&#8217;re all going on YouTube. And I started three weeks ago, and I&#8217;m putting up a video Monday, Wednesday, Friday, and I have 57 subscribers.</p>\n\n\n\n<p>[00:37:19] <strong>Nathan Wrigley:</strong> There&#8217;s a little road to go. That&#8217;s so nice.</p>\n\n\n\n<p>[00:37:23] <strong>Topher DeRosia:</strong> But this goes back to doing stuff in public so that it&#8217;s more significant later. Maybe in a year or two or five, I&#8217;ll have thousands of subscribers. And life experience has shown me that I need to not assume that I&#8217;m going to have thousands of subscribers within a month. That&#8217;s not how this works. You do stuff now, you build your foundation and you grow it. And eventually it gets big.</p>\n\n\n\n<p>HeroPress happened that way. You know, I did a few essays, and I did a few more and I did a few more. And then one day I thought, oh, I have 200 essays, and now I have 300. I never set a goal of how many or anything like that. I just did one at a time, and then suddenly there&#8217;s this big site full of stuff.</p>\n\n\n\n<p>And so that&#8217;s my current project is to make these videos, helping people figure out how to use WordPress. It&#8217;s not going to be just the beginners, it&#8217;s going to be, well, have a heart for beginners in any area, so I&#8217;m going to do some beginning programming stuff. I&#8217;ve built some cool stuff like WP Podcasts, aggregates podcasts. It wasn&#8217;t hard. It&#8217;s WP All Import, pulling them into the posts type. It&#8217;s not that big a deal. But I can make a 10 minute video on how I did that, and some developer&#8217;s going to go, wow, I never realised you can do this kind of stuff. So I&#8217;m pretty excited about it.</p>\n\n\n\n<p>[00:38:40] <strong>Nathan Wrigley:</strong> Yeah, your life seems to represent that kind of long term approach, and I can completely empathise with that. Obviously my thing is podcasting, and I have the same sort of story that I just began it and kept doing it and kept doing it, and people obviously, you know, found that there was something there for them, or they didn&#8217;t.</p>\n\n\n\n<p>But there was something that kept that propelled. And now I look back and there&#8217;s a few episodes that I can look back to and, it&#8217;s pretty amazing what that brought in its train. Most of it completely unexpected, most of it never intended, and now podcasting in the WordPress space is kind of what I do.</p>\n\n\n\n<p>And it just goes to show, if you do things with the right intention, and you do things for the long game, there is a way to make it work. You know, obviously you&#8217;ve got to keep the wolf from the door, and if you live in a part of the world where it&#8217;s incredibly important that you earn lots of money in order to just meet the bare essentials, then you&#8217;ve obviously got to take care of that at the beginning. But then after that, there&#8217;s these opportunities on top of that to sort of grow who you are, grow the community that we&#8217;re in. And maybe in the long term, over 2, 3, 5, 10, in your case, probably approaching 20 years in the WordPress space, it has an impact. It&#8217;s slowly but surely. Slow and steady wins the game, as they say.</p>\n\n\n\n<p>[00:39:57] <strong>Topher DeRosia:</strong> It does, yep.</p>\n\n\n\n<p>[00:39:58] <strong>Nathan Wrigley:</strong> In which case, I will say thank you for that conversation. It was very unexpected and really, really powerful in some regard there. You really made me think on a couple of occasions as we were chatting there, and I really appreciate that.</p>\n\n\n\n<p>So, Topher, where can we find you if somebody wants to see some of the stuff? You&#8217;ve already mentioned one. It&#8217;s probably topher.how. I don&#8217;t know if that&#8217;s the one you want to drop again.</p>\n\n\n\n<p>[00:40:17] <strong>Topher DeRosia:</strong> Yeah, let&#8217;s say topher.how. But if you search Google for Topher1Kenobi, you&#8217;ll find me pretty much everywhere.</p>\n\n\n\n<p>[00:40:24] <strong>Nathan Wrigley:</strong> Love that.</p>\n\n\n\n<p>[00:40:25] <strong>Topher DeRosia:</strong> I&#8217;ve never found anyone else use that name.</p>\n\n\n\n<p>[00:40:26] <strong>Nathan Wrigley:</strong> And it&#8217;s the number one, like the numeral one.</p>\n\n\n\n<p>[00:40:29] <strong>Topher DeRosia:</strong> Yeah.</p>\n\n\n\n<p>[00:40:30] <strong>Nathan Wrigley:</strong> Not the wan.</p>\n\n\n\n<p>[00:40:31] <strong>Topher DeRosia:</strong> My personal blog is at topher1kenobi.com. There&#8217;s HeroPress. I did an episode the other day with Christos Paloukas, and he said, hey, send me your links.</p>\n\n\n\n<p>[00:40:40] <strong>Nathan Wrigley:</strong> An essay.</p>\n\n\n\n<p>[00:40:40] <strong>Topher DeRosia:</strong> I sent him 15 links.</p>\n\n\n\n<p>[00:40:44] <strong>Nathan Wrigley:</strong> Do that to me as well. Whatever you do send me, then I will put them into the show notes. wptavern.com, search for the episode with Topher. It&#8217;s T-O-P-H-E-R. If you just look for that, you&#8217;ll probably find it. And thank you so much for chatting to me today. It was very pleasurable. Thank you.</p>\n\n\n\n<p>[00:40:59] <strong>Topher DeRosia:</strong> Yeah, I had a really good time too. Thanks.</p>\n</div></details>\n\n\n\n<p>On the podcast today we have <a href=\"https://topher.how\">Topher DeRosia</a>.</p>\n\n\n\n<p>Topher is a web developer with over 30 years of experience, and he’s been deeply involved in the WordPress community for the past 15 years. He’s attended nearly 80 WordCamps around the world, contributed to projects like HeroPress, and has made it his mission to highlight the power and value of open source and remote work, especially in the WordPress ecosystem.</p>\n\n\n\n<p>In this episode, Topher joins me to talk about the value of working in public, and how sharing your work openly can create unexpected and lasting opportunities, whether that’s boosting your career, finding a sense of purpose, or building connections across the globe.</p>\n\n\n\n<p>We start with Topher’s personal journey, discovering the WordPress community and the profound impact it had on his life and family. The conversation explores what makes open source communities, like WordPress, so unique, and why working transparently can lead to moments of serendipity, and even job offers from people who have seen your contributions many years before.</p>\n\n\n\n<p>Topher shares stories about giving back, the motivation that comes from helping others, and the long-term satisfaction that comes from being generous with your time and expertise.</p>\n\n\n\n<p>We also discuss the tension between the philanthropic and commercial aspects of WordPress, and how individuals and companies navigate that balance.</p>\n\n\n\n<p>Towards the end, Topher reflects on building a body of work over time, trusting in the slow and organic process instead of seeking instant ‘influencer’ success. He explains why he still chooses to create and share resources for free, motivated by the hope of helping the next person just starting out.</p>\n\n\n\n<p>If you’ve ever wondered about the power of sharing your work, finding meaning in open communities, or how to make a difference over the long term, 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://topher.how\">Topher.How</a></p>\n\n\n\n<p><a href=\"https://mediaforge.pro\">Media Forge Productions</a></p>\n\n\n\n<p><a href=\"https://heropress.com\">HeroPress</a></p>\n\n\n\n<p><a href=\"https://heropress.com\">Hallway Chats</a></p>\n\n\n\n<p><a href=\"https://heropress.com\">WP Photos Info</a></p>\n\n\n\n<p><a href=\"https://wp-wallpaper.com\">WP Wallpaper</a></p>\n\n\n\n<p><a href=\"https://topher1kenobe.com\">topher1kenobe.com</a></p>\n\n\n\n<p><a href=\"https://www.youtube.com/@topher1kenobe\">YouTube</a></p>\n\n\n\n<p><a href=\"https://www.linkedin.com/in/topher1kenobe/\">LinkedIn</a></p>\n\n\n\n<p><a href=\"https://fosstodon.org/@topher1kenobe\">Mastodon</a></p>\n\n\n\n<p><a href=\"https://bsky.app/profile/topher1kenobe.bsky.social\">Bluesky</a></p>\n\n\n\n<p><a href=\"https://www.facebook.com/topher1kenobe\">Facebook</a></p>\n\n\n\n<p><a href=\"https://www.last.fm/user/topher1kenobe\">Last.fm</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, 03 Dec 2025 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:7;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"Open Channels FM: Empowering WordPress Accessibility with Community, Practical Tools, Education, and Real-World Impact\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=112396\";s:7:\"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:122:\"https://openchannels.fm/empowering-wordpress-accessibility-with-community-practical-tools-education-and-real-world-impact/\";s: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:364:\"In this episode, host Anne Bovelett sits down with Troy Chaplin, a well-known figure in the WordPress community and an advocate for web accessibility. Together, they dive into the importance of accessibility in web development, sharing personal stories about what sparked their passion for the topic and how it has influenced their careers. You’ll hear [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Dec 2025 10:12:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:8;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: 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:23:\"https://ma.tt/?p=150742\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ma.tt/2025/12/state-of-the-word-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:461:\"<p>Though the stream didn&#8217;t work as we hoped, the recording of this year&#8217;s <a href=\"https://wordpress.org/state-of-the-word/\">State of the Word</a>, which in many ways was our best one yet, <a href=\"https://www.youtube.com/watch?v=U_DF4-23C8Q\">is up now</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\n</div></figure>\";s: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 Dec 2025 07:54:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:9;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WordPress.org blog: WordPress 6.9 “Gene”\";s:7:\"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=19398\";s:7:\"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://wordpress.org/news/2025/12/gene/\";s: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:76602:\"<figure class=\"wp-block-image size-large\"><img alt=\"WordPress 6.9 Release Edition Featured Image\" class=\"wp-image-19404\" height=\"535\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/Release-Edition-Featured-Image-6.9.png?resize=1024%2C535&#038;ssl=1\" width=\"1024\" /></figure>\n\n\n\n<p>Each WordPress release celebrates an artist who has made an indelible mark on the world of music. WordPress 6.9, code-named “Gene,” honors the American Jazz pianist Gene Harris. </p>\n\n\n\n<p>A piano veteran, self taught at the age of six, Harris infused mainstream jazz with elements of soul, blues, and gospel, creating a warm, signature sound that is both elegant and iconic. Harris’ bluesy jazz lived at the intersection of worlds, weaving a rich landscape of texture and mood, with a thread of soulfulness that ignited listeners.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Welcome to WordPress 6.9</h2>\n\n\n\n<p>WordPress 6.9 brings major upgrades to how teams collaborate and create. The new Notes feature introduces block-level commenting when writing posts and pages that streamlines reviews, while the expanded Command Palette makes it faster for power users to navigate and operate across the entire dashboard. The new Abilities API provides a standardized, machine-readable permissions system that opens the door for next generation AI-powered and automated workflows. This release also delivers notable performance improvements for faster page loads and adds several practical new blocks alongside a more visual drag and drop to help creators build richer, more dynamic content.</p>\n\n\n\n<p><a href=\"https://wordpress.org/wordpress-6.9.zip\">Download WordPress 6.9 &#8220;Gene&#8221;</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Introducing Notes: Seamless, Block-Level Collaboration</h2>\n\n\n\n<p><strong>Collaborate Smarter</strong> : Leave Feedback Right Where You&#8217;re Working</p>\n\n\n\n<p>With notes attached directly to blocks in the post editor, your team can stay aligned, track changes, and turn feedback into action all in one place. Whether you&#8217;re working on copy or refining design in your posts or pages, collaboration happens seamlessly on the canvas itself.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"View of people interacting with notes in a post.\" class=\"wp-image-19428\" height=\"840\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/post-notes.png?resize=1360%2C840&#038;ssl=1\" width=\"1360\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Command Palette Throughout the Dashboard</h2>\n\n\n\n<p><strong>Your tools are always at hand.</strong></p>\n\n\n\n<p>Access the Command Palette from any part of the dashboard, whether you&#8217;re writing your latest post, deep in design in the Site Editor, or browsing your plugins. Everything you need, just a few keystrokes away.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"Command palette showing the ability to navigate across different parts of the site, including templates, Settings, and all posts.\" class=\"wp-image-19430\" height=\"840\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/post-command-palette.png?resize=1360%2C840&#038;ssl=1\" width=\"1360\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Fit text to container</h2>\n\n\n\n<p><strong>Content that adapts.</strong></p>\n\n\n\n<p>There&#8217;s a new typography option for text-based blocks that&#8217;s been added to the Paragraph and Heading blocks. This new option automatically adjusts font size to fill its container perfectly, making it ideal for banners, callouts, and standout moments in your design.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"&quot;Novem&quot; text selected and stretching across the interface.\" class=\"wp-image-19431\" height=\"840\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/post-fit-text.png?resize=1360%2C840&#038;ssl=1\" width=\"1360\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">The Abilities API</h2>\n\n\n\n<p><strong>Unlocking the next generation of site interactions.</strong></p>\n\n\n\n<p>WordPress 6.9 lays the groundwork for the future of automation with the unified Abilities API. By creating a standardized registry for site functionality, developers can now register, validate, and execute actions consistently across any context—from PHP and REST endpoints to AI agents—paving the way for smarter, more connected WordPress experiences.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Abstract view of circles around a plugin icon with sparkles, indicating AI functionality.\" class=\"wp-image-19432\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/12/abilities-api.png?resize=1024%2C632&#038;ssl=1\" width=\"1024\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Accessibility Improvements</h2>\n\n\n\n<p>More than 30 accessibility fixes sharpen the core WordPress experience. These updates improve screen reader announcements, hide unnecessary CSS-generated content from assistive tech, fix cursor placement issues, and make sure typing focus stays put even when users click an autocomplete suggestion.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Performance enhancements</h2>\n\n\n\n<p>WordPress 6.9 delivers significant frontend performance enhancements, optimizing the site loading experience for visitors. 6.9 boasts an improved LCP (Largest Contentful Paint) through on-demand block styles for classic themes, minifying block theme styles, and increasing the limit for inline styles &#8211; removing blockages to page rendering and clearing the rendering path by deprioritizing non-critical scripts. This release comes with many more performance boosts, including optimized database queries, refined caching, improved spawning of WP Cron, and a new template enhancement output buffer that opens the door for more future optimizations.</p>\n\n\n\n<h3 class=\"wp-block-heading\">And much more</h3>\n\n\n\n<p>For a comprehensive overview of all the new features and enhancements in WordPress 6.9, please visit the feature-showcase website.</p>\n\n\n\n<p><a href=\"https://wordpress.org/download/releases/6-9\">Check out What&#8217;s New</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress 6.9</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a> is a free resource for new and experienced WordPress users. Learn is stocked with how-to videos on using various features in WordPress, <a href=\"https://learn.wordpress.org/social-learning/\">interactive workshops</a> for exploring topics in-depth, and lesson plans for diving deep into specific areas of WordPress.</p>\n\n\n\n<p>Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6.9\">WordPress 6.9 Release Notes</a> for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.</p>\n\n\n\n<p>Explore the <a href=\"https://make.wordpress.org/core/wordpress-6-9-field-guide/\">WordPress 6.9 Field Guide</a>. Learn about the changes in this release with detailed developer notes to help you build with WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The 6.9 release squad</h2>\n\n\n\n<p>Every release comes to you from a dedicated team of enthusiastic contributors who help keep things on track and moving smoothly. The team that has led 6.9 is a cross-functional group of contributors who are always ready to champion ideas, remove blockers, and resolve issues.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a></li>\n\n\n\n<li>Release Coordination: <a href=\"https://profiles.wordpress.org/akshayar/\">Akshaya Rane</a>, <a href=\"https://profiles.wordpress.org/amykamala/\">Amy Kamala</a></li>\n\n\n\n<li>Tech Leads: <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li>Design Lead: <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco Vera</a></li>\n\n\n\n<li>Triage Leads: <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a></li>\n\n\n\n<li>Test Leads: <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a>, <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you, contributors</h2>\n\n\n\n<p>The mission of WordPress is to <a href=\"https://wordpress.org/about/\">democratize publishing</a> and embody the <a href=\"https://opensource.org/osd-annotated\">freedoms that come with open source</a>. A global and diverse community of people collaborating to strengthen the software supports this effort.</p>\n\n\n\n<p>WordPress 6.9 reflects the tireless efforts and passion of more than 900+ contributors in countries all over the world. This release also welcomed over 279 first-time contributors!</p>\n\n\n\n<p>Their collaboration delivered more than 340 enhancements and fixes, ensuring a stable release for all &#8211; a testament to the power and capability of the WordPress open source community.</p>\n\n\n\n<p class=\"has-small-font-size\"><a href=\"https://profiles.wordpress.org/o-o/\">2046</a> · <a href=\"https://profiles.wordpress.org/aakashverma1/\">Aakash Verma</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/aarti1318/\">Aarti Chauhan</a> · <a href=\"https://profiles.wordpress.org/thehercules/\">Aashish Sharma</a> · <a href=\"https://profiles.wordpress.org/aatospaja/\">aatospaja</a> · <a href=\"https://profiles.wordpress.org/abduremon/\">Abdur Rahman Emon</a> · <a href=\"https://profiles.wordpress.org/hurayraiit/\">Abu Hurayra</a> · <a href=\"https://profiles.wordpress.org/kawauso/\">Adam Harley (Kawauso)</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zieliński</a> · <a href=\"https://profiles.wordpress.org/adityab98/\">Aditya Bansode</a> · <a href=\"https://profiles.wordpress.org/b1ink0/\">Aditya Dhade</a> · <a href=\"https://profiles.wordpress.org/adityashah2411/\">aditya shah</a> · <a href=\"https://profiles.wordpress.org/iamadisingh/\">Aditya Singh</a> · <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a> · <a href=\"https://profiles.wordpress.org/agulbra/\">agulbra</a> · <a href=\"https://profiles.wordpress.org/elazzabi/\">Ahmed</a> · <a href=\"https://profiles.wordpress.org/ajaxstardust/\">ajaxStardust</a> · <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a> · <a href=\"https://profiles.wordpress.org/akanshusingh/\">Akanshu Singh</a> · <a href=\"https://profiles.wordpress.org/akeda/\">Akeda Bagus</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/wpfy/\">Akramul Hasan</a> · <a href=\"https://profiles.wordpress.org/akshat2802/\">Akshat Kakkad</a> · <a href=\"https://profiles.wordpress.org/akshaydhere/\">Akshay Dhere</a> · <a href=\"https://profiles.wordpress.org/akshayar/\">Akshaya Rane</a> · <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a> · <a href=\"https://profiles.wordpress.org/alejandrogonzalvo/\">alejandrogonzalvo</a> · <a href=\"https://profiles.wordpress.org/alexcu21/\">Alex Cuadra</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexclassroom/\">Alex Lion (阿力獅)</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alexandrebuffet/\">Alexandre Buffet</a> · <a href=\"https://profiles.wordpress.org/alexus450/\">Alexei Samarschi</a> · <a href=\"https://profiles.wordpress.org/alexius08/\">Alexis Pandaan</a> · <a href=\"https://profiles.wordpress.org/alordiel/\">alordiel</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro G&#243;mez</a> · <a href=\"https://profiles.wordpress.org/alh0319/\">Amber Hinds</a> · <a href=\"https://profiles.wordpress.org/amin7/\">Amin</a> · <a href=\"https://profiles.wordpress.org/theaminuldev/\">Aminul Islam</a> · <a href=\"https://profiles.wordpress.org/aialvi/\">Aminul Islam Alvi</a> · <a href=\"https://profiles.wordpress.org/amitbhosale/\">Amit Bhosale</a> · <a href=\"https://profiles.wordpress.org/amykamala/\">Amy Kamala</a> · <a href=\"https://profiles.wordpress.org/anatolbroder/\">Anatol Broder</a> · <a href=\"https://profiles.wordpress.org/anlino/\">Anders Nor&#233;n</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/awetz583/\">Andrea Roenning</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/andrewhoyer/\">Andrew Hoyer</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/mymothersdaughter/\">Anita C</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitkumarshah/\">Ankit Kumar Shah</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antoniosejas/\">Antonio Sejas</a> · <a href=\"https://profiles.wordpress.org/anujrathore24/\">Anuj Singh</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/apmeyer/\">apmeyer</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/fliespl/\">Arkadiusz Rzadkowolski</a> · <a href=\"https://profiles.wordpress.org/armandovias/\">Armando</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/artpi/\">Artur Piszek</a> · <a href=\"https://profiles.wordpress.org/artz91/\">ArtZ91</a> · <a href=\"https://profiles.wordpress.org/asafm7/\">asafm7</a> · <a href=\"https://profiles.wordpress.org/asdofindia/\">asdofindia</a> · <a href=\"https://profiles.wordpress.org/ashfame/\">Ashish Kumar (Ashfame)</a> · <a href=\"https://profiles.wordpress.org/akashdev/\">Ashraful Haque Akash</a> · <a href=\"https://profiles.wordpress.org/askapache/\">askapache</a> · <a href=\"https://profiles.wordpress.org/aslamdoctor/\">Aslam Doctor</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/aut0poietic/\">aut0poietic</a> · <a href=\"https://profiles.wordpress.org/aksl95/\">Axel DUCORON</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azharderaiya/\">Azhar Deraiya</a> · <a href=\"https://profiles.wordpress.org/beryldlg/\">B&#233;ryl de La Grandi&#232;re</a> · <a href=\"https://profiles.wordpress.org/bartnv/\">bartnv</a> · <a href=\"https://profiles.wordpress.org/bchecketts/\">bchecketts</a> · <a href=\"https://profiles.wordpress.org/beee/\">Beee</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benazeer/\">Benazeer</a> · <a href=\"https://profiles.wordpress.org/rainbowgeek/\">Benjamin Denis</a> · <a href=\"https://profiles.wordpress.org/benjamin_zekavica/\">Benjamin Zekavica</a> · <a href=\"https://profiles.wordpress.org/bvl/\">Benny</a> · <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a> · <a href=\"https://profiles.wordpress.org/kau-boy/\">Bernhard Kau</a> · <a href=\"https://profiles.wordpress.org/bernhard reiter/\">Bernhard Reiter</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">bernhard-reiter</a> · <a href=\"https://profiles.wordpress.org/bgermann/\">bgermann</a> · <a href=\"https://profiles.wordpress.org/bhattaganesh/\">bhattaganesh</a> · <a href=\"https://profiles.wordpress.org/bhaveshdesai/\">Bhavesh Desai</a> · <a href=\"https://profiles.wordpress.org/bidbmak/\">BiDbMAK</a> · <a href=\"https://profiles.wordpress.org/mbigul/\">Bigul Malayi</a> · <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/rainynewt/\">Bishal Shrestha</a> · <a href=\"https://profiles.wordpress.org/bobbyleenoblestudios/\">bobbyleenoblestudios</a> · <a href=\"https://profiles.wordpress.org/bogdanungureanu/\">BogdanUngureanu</a> · <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/burlesonbrad/\">Brad Griffin</a> · <a href=\"https://profiles.wordpress.org/bradley2083/\">brad hogan</a> · <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> · <a href=\"https://profiles.wordpress.org/bradshawtm/\">bradshawtm</a> · <a href=\"https://profiles.wordpress.org/bhubbard/\">Brandon Hubbard</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/heybran/\">Brandon Zhang</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/brhodes/\">brhodes</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">Brian Haas</a> · <a href=\"https://profiles.wordpress.org/brumack/\">brumack</a> · <a href=\"https://profiles.wordpress.org/bschneidewind/\">Bryan Schneidewind</a> · <a href=\"https://profiles.wordpress.org/bshuchter/\">bshuchter</a> · <a href=\"https://profiles.wordpress.org/burnuser/\">burnuser</a> · <a href=\"https://profiles.wordpress.org/byteninjaa0/\">byteninjaa0</a> · <a href=\"https://profiles.wordpress.org/cedche99/\">C&#233;dric Chevillard</a> · <a href=\"https://profiles.wordpress.org/callumbw95/\">Callum Bridgford-Whittick</a> · <a href=\"https://profiles.wordpress.org/snicco/\">Calvin Alkan</a> · <a href=\"https://profiles.wordpress.org/karl94/\">Carlo Cannas</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos G. P.</a> · <a href=\"https://profiles.wordpress.org/carlsteffen/\">CarlSteffen</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/corazondejaguar/\">Carolina Romo</a> · <a href=\"https://profiles.wordpress.org/ciobanucatalin/\">Catalin Ciobanu</a> · <a href=\"https://profiles.wordpress.org/catgofire/\">catgofire</a> · <a href=\"https://profiles.wordpress.org/cbirdsong/\">cbirdsong</a> · <a href=\"https://profiles.wordpress.org/ccharel/\">ccharel</a> · <a href=\"https://profiles.wordpress.org/cbutlerjr/\">Chad Butler</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/cherrygot/\">Chakrapani Gautam</a> · <a href=\"https://profiles.wordpress.org/chihsuan/\">Chi-Hsuan Huang</a> · <a href=\"https://profiles.wordpress.org/chillifish/\">Chillifish</a> · <a href=\"https://profiles.wordpress.org/chloed/\">ChloeD</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/czarate/\">Chris Zarate</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/chrisdotdotdot/\">chrisdotdotdot</a> · <a href=\"https://profiles.wordpress.org/chrismattix/\">chrismattix</a> · <a href=\"https://profiles.wordpress.org/christinecooper/\">christinecooper</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/nyiriland/\">Christy Nyiri</a> · <a href=\"https://profiles.wordpress.org/cikrimcin/\">cikrimcin</a> · <a href=\"https://profiles.wordpress.org/butterflymedia/\">Ciprian Popescu</a> · <a href=\"https://profiles.wordpress.org/chrisvendiadvertisingcom/\">cjhaas</a> · <a href=\"https://profiles.wordpress.org/ckoerner/\">ckoerner</a> · <a href=\"https://profiles.wordpress.org/claimableperch/\">claimableperch</a> · <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a> · <a href=\"https://profiles.wordpress.org/codebuddy/\">codebuddy</a> · <a href=\"https://profiles.wordpress.org/coleatkinson1/\">coleatkinson1</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/colind/\">ColinD</a> · <a href=\"https://profiles.wordpress.org/ogrecooper/\">Cooper Dalrymple</a> · <a href=\"https://profiles.wordpress.org/coralietixeront/\">Coralie Tixeront</a> · <a href=\"https://profiles.wordpress.org/salzano/\">Corey Salzano</a> · <a href=\"https://profiles.wordpress.org/coreyw/\">Corey Worrell</a> · <a href=\"https://profiles.wordpress.org/cornwell/\">Cornwell</a> · <a href=\"https://profiles.wordpress.org/cr0ybot/\">Cory Hughart</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/cucocreative/\">cucocreative</a> · <a href=\"https://profiles.wordpress.org/cwhitmore/\">Cullen Whitmore</a> · <a href=\"https://profiles.wordpress.org/cyrille37/\">Cyrille37</a> · <a href=\"https://profiles.wordpress.org/daanvandenbergh/\">Daan van den Bergh</a> · <a href=\"https://profiles.wordpress.org/acketon/\">Dakota Chichester</a> · <a href=\"https://profiles.wordpress.org/damchtlv/\">damchtlv</a> · <a href=\"https://profiles.wordpress.org/damir-webthemer/\">Damir</a> · <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/dancameron/\">Dan Cameron</a> · <a href=\"https://profiles.wordpress.org/danielpw/\">Dan Waldschmidt</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/danieliser/\">Daniel Iser</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/daniellacatus/\">daniellacatus</a> · <a href=\"https://profiles.wordpress.org/danielmorell/\">danielmorell</a> · <a href=\"https://profiles.wordpress.org/dscqbus/\">Danny Schmarsel</a> · <a href=\"https://profiles.wordpress.org/dannyreaktiv/\">dannyreaktiv</a> · <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/dryanpress/\">Dave Ryan</a> · <a href=\"https://profiles.wordpress.org/daveguitaruno/\">daveguitaruno</a> · <a href=\"https://profiles.wordpress.org/davilera/\">David Aguilera</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">David Arenas</a> · <a href=\"https://profiles.wordpress.org/dartiss/\">David Artiss</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/justlevine/\">David Levine</a> · <a href=\"https://profiles.wordpress.org/davidperez/\">David Perez</a> · <a href=\"https://profiles.wordpress.org/djivad/\">David Riviera</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidb/\">DavidB</a> · <a href=\"https://profiles.wordpress.org/dawidadach/\">dawidadach</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a> · <a href=\"https://profiles.wordpress.org/debarghyabanerjee/\">DEBARGHYA BANERJEE</a> · <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/realloc/\">Dennis Ploetner</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dennysdionigi/\">Dennys Dionigi</a> · <a href=\"https://profiles.wordpress.org/densinakum/\">Densi Nakum</a> · <a href=\"https://profiles.wordpress.org/derekherman/\">derekherman</a> · <a href=\"https://profiles.wordpress.org/devasheeshkaul/\">Devasheesh Kaul</a> · <a href=\"https://profiles.wordpress.org/dhananjaykuber/\">Dhananjay Kuber</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruval04/\">Dhruval Shah</a> · <a href=\"https://profiles.wordpress.org/dhruvang21/\">Dhruvang21</a> · <a href=\"https://profiles.wordpress.org/dhruvik18/\">Dhruvik Malaviya</a> · <a href=\"https://profiles.wordpress.org/diebombe/\">diebombe</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dilip2615/\">Dilip Modhavadiya</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/divinenephron/\">divinenephron</a> · <a href=\"https://profiles.wordpress.org/djcowan/\">dj.cowan</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/dominiquepijnenburg/\">dominiquepijnenburg</a> · <a href=\"https://profiles.wordpress.org/donalirl/\">donalirl</a> · <a href=\"https://profiles.wordpress.org/doughamlin/\">doughamlin</a> · <a href=\"https://profiles.wordpress.org/dougmelvin/\">DougMelvin</a> · <a href=\"https://profiles.wordpress.org/drawcard/\">drawcard</a> · <a href=\"https://profiles.wordpress.org/dretzlaff/\">dretzlaff</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/drivingralle/\">Drivingralle</a> · <a href=\"https://profiles.wordpress.org/dsawyers/\">dsawyers</a> · <a href=\"https://profiles.wordpress.org/dustintechsmith/\">dustintechsmith</a> · <a href=\"https://profiles.wordpress.org/eclev91/\">eclev91</a> · <a href=\"https://profiles.wordpress.org/eduwass/\">eduwass</a> · <a href=\"https://profiles.wordpress.org/ehti/\">Ehti</a> · <a href=\"https://profiles.wordpress.org/elialum/\">elialum</a> · <a href=\"https://profiles.wordpress.org/eliezerspp/\">Eliezer Pe&#241;a</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/elvismdev/\">Elvis Morales</a> · <a href=\"https://profiles.wordpress.org/emaildano/\">emaildano</a> · <a href=\"https://profiles.wordpress.org/codex-m/\">Emerson Maningo</a> · <a href=\"https://profiles.wordpress.org/emlebrun/\">Emilie LEBRUN</a> · <a href=\"https://profiles.wordpress.org/emranahmed/\">Emran Ahmed</a> · <a href=\"https://profiles.wordpress.org/enaanfarhan/\">Enaan Farhan</a> · <a href=\"https://profiles.wordpress.org/lopo/\">Enrico Battocchi</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> · <a href=\"https://profiles.wordpress.org/epeicher/\">epeicher</a> · <a href=\"https://profiles.wordpress.org/ekazda/\">Eric</a> · <a href=\"https://profiles.wordpress.org/ericlewis/\">Eric Andrew Lewis</a> · <a href=\"https://profiles.wordpress.org/ethitter/\">Erick Hitter</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a> · <a href=\"https://profiles.wordpress.org/ejoling/\">Erik Joling</a> · <a href=\"https://profiles.wordpress.org/im3dabasia1/\">Eshaan Dabasiya</a> · <a href=\"https://profiles.wordpress.org/ethanscorey/\">ethanscorey</a> · <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a> · <a href=\"https://profiles.wordpress.org/etobiesen/\">Even Tobiesen</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian Kägy</a> · <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> · <a href=\"https://profiles.wordpress.org/fakhriaz/\">fakhriaz</a> · <a href=\"https://profiles.wordpress.org/falgunihdesai/\">Falguni Desai</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/ffffelix/\">Felix Renicks</a> · <a href=\"https://profiles.wordpress.org/fellyph/\">Fellyph Cintra</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco Vera</a> · <a href=\"https://profiles.wordpress.org/frogdesk/\">FrogDesk Strategy</a> · <a href=\"https://profiles.wordpress.org/takahashi_fumiki/\">Fumiki Takahashi</a> · <a href=\"https://profiles.wordpress.org/gaeldenysiak/\">Gael Denysiak</a> · <a href=\"https://profiles.wordpress.org/gajendrasingh/\">Gajendra Singh</a> · <a href=\"https://profiles.wordpress.org/ecgan/\">Gan Eng Chin</a> · <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/guddu1315/\">Gaurang Dabhi</a> · <a href=\"https://profiles.wordpress.org/gautam23/\">Gautam Mehta</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a> · <a href=\"https://profiles.wordpress.org/stoyanovgs/\">Georgi Stoyanov</a> · <a href=\"https://profiles.wordpress.org/gernberg/\">gernberg</a> · <a href=\"https://profiles.wordpress.org/giuliorubelli/\">giuliorubelli</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/ingeniumed/\">Gopal Krishnan</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a> · <a href=\"https://profiles.wordpress.org/guido07111975/\">Guido</a> · <a href=\"https://profiles.wordpress.org/wido/\">Guido Scialfa</a> · <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a> · <a href=\"https://profiles.wordpress.org/gulamdastgir04/\">Gulamdastgir Momin</a> · <a href=\"https://profiles.wordpress.org/adrock42/\">H. Adam Lenz</a> · <a href=\"https://profiles.wordpress.org/kabir93/\">H. Kabir</a> · <a href=\"https://profiles.wordpress.org/hanimbarek/\">hanimbarek</a> · <a href=\"https://profiles.wordpress.org/hanneslsm/\">hanneslsm</a> · <a href=\"https://profiles.wordpress.org/hage/\">Hans-Gerd Gerhards</a> · <a href=\"https://profiles.wordpress.org/hardik2221/\">Hardik Raval</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/harshalkadu/\">Harshal Kadu</a> · <a href=\"https://profiles.wordpress.org/harshbhonsle08/\">harshbhonsle08</a> · <a href=\"https://profiles.wordpress.org/harshdeepgill/\">harshdeepgill</a> · <a href=\"https://profiles.wordpress.org/haruncpi/\">Harun</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/hideishi/\">Hidenori ISHIKAWA</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/panchalhimani711/\">Himani Panchal</a> · <a href=\"https://profiles.wordpress.org/abcd95/\">Himanshu Pathak</a> · <a href=\"https://profiles.wordpress.org/hiroshisato/\">Hiroshi Sato</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/hitendra-chopda/\">Hitendra Chopda</a> · <a href=\"https://profiles.wordpress.org/hiteshtalpada/\">Hitesh Talpada</a> · <a href=\"https://profiles.wordpress.org/hozefasmile/\">Hozefa Saleh</a> · <a href=\"https://profiles.wordpress.org/hrohh/\">Hrohh</a> · <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a> · <a href=\"https://profiles.wordpress.org/hugosolar/\">hugosolar</a> · <a href=\"https://profiles.wordpress.org/humanify/\">humanify</a> · <a href=\"https://profiles.wordpress.org/huubl/\">huubl</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/ignatiusjeroe/\">ignatiusjeroe</a> · <a href=\"https://profiles.wordpress.org/igorradovanov/\">Igor Radovanov</a> · <a href=\"https://profiles.wordpress.org/ikriv/\">ikriv</a> · <a href=\"https://profiles.wordpress.org/imokweb/\">imokweb</a> · <a href=\"https://profiles.wordpress.org/imranhasanraaz/\">Imran</a> · <a href=\"https://profiles.wordpress.org/indirabiswas27/\">Indira Biswas</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/iqbal1hossain/\">Iqbal Hossain</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/ishikaatxecurify/\">Ishika Bansal</a> · <a href=\"https://profiles.wordpress.org/ivanottinger/\">Ivan Ottinger</a> · <a href=\"https://profiles.wordpress.org/jabe/\">Jabe</a> · <a href=\"https://profiles.wordpress.org/jacobcassidy/\">Jacob Cassidy</a> · <a href=\"https://profiles.wordpress.org/jagirbahesh/\">Jagir Bahesh</a> · <a href=\"https://profiles.wordpress.org/jaiminp/\">Jaimin Prajapati</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a> · <a href=\"https://profiles.wordpress.org/jakeparis/\">jakeparis</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/isotropic/\">James LePage</a> · <a href=\"https://profiles.wordpress.org/jhmonroe/\">James Monroe</a> · <a href=\"https://profiles.wordpress.org/q0rban/\">James Sansbury</a> · <a href=\"https://profiles.wordpress.org/jamestitus299/\">James Titus</a> · <a href=\"https://profiles.wordpress.org/codente/\">Jamie</a> · <a href=\"https://profiles.wordpress.org/jamieburchell/\">Jamie Burchell</a> · <a href=\"https://profiles.wordpress.org/jamesmarsland/\">Jamie Marsland</a> · <a href=\"https://profiles.wordpress.org/janthiel/\">janthiel</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/jarekmorawski/\">jarekmorawski</a> · <a href=\"https://profiles.wordpress.org/jasalt/\">Jarkko Saltiola</a> · <a href=\"https://profiles.wordpress.org/jason_the_adams/\">Jason Adams</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/jasonsa19/\">Jason Sauerwald</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jonmcpartland/\">Jay McPartland</a> · <a href=\"https://profiles.wordpress.org/shovan_jaya/\">Jayaram</a> · <a href=\"https://profiles.wordpress.org/jdahir0789/\">Jaydip</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/krokodok/\">Jeff Chi</a> · <a href=\"https://profiles.wordpress.org/jeffmatson/\">Jeff Matson</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a> · <a href=\"https://profiles.wordpress.org/cheffheid/\">Jeffrey de Wit</a> · <a href=\"https://profiles.wordpress.org/jeffr0/\">Jeffro</a> · <a href=\"https://profiles.wordpress.org/jeflopodev/\">jeflopo</a> · <a href=\"https://profiles.wordpress.org/jdy68/\">Jenny Dupuy</a> · <a href=\"https://profiles.wordpress.org/jeremiahbratton/\">Jeremiah Bratton</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jkmassel/\">Jeremy Massel</a> · <a href=\"https://profiles.wordpress.org/slimndap/\">Jeroen Schmit</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a> · <a href=\"https://profiles.wordpress.org/jesin/\">Jesin A</a> · <a href=\"https://profiles.wordpress.org/jessedyck/\">jessedyck</a> · <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">Jigar Bhanushali</a> · <a href=\"https://profiles.wordpress.org/jigar9998/\">Jigar Panchal</a> · <a href=\"https://profiles.wordpress.org/jikamens/\">jikamens</a> · <a href=\"https://profiles.wordpress.org/jnweaver/\">jnweaver</a> · <a href=\"https://profiles.wordpress.org/jojo256/\">Joan Namunina</a> · <a href=\"https://profiles.wordpress.org/jobata/\">JoAnne Obata</a> · <a href=\"https://profiles.wordpress.org/jochent/\">JochenT</a> · <a href=\"https://profiles.wordpress.org/jodamo5/\">jodamo5</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/timse201/\">Johannes J&#252;lg</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/brandbrilliance/\">John Brand</a> · <a href=\"https://profiles.wordpress.org/johnny5/\">John Godley</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/mindctrl/\">John Parris</a> · <a href=\"https://profiles.wordpress.org/johnregan3/\">John Regan</a> · <a href=\"https://profiles.wordpress.org/johnvieth/\">JohnVieth</a> · <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a> · <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a> · <a href=\"https://profiles.wordpress.org/jrchamp/\">Jonathan Champ</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/n2erjo00/\">Joni Erkkil&#228;</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josvelasco/\">Jos Velasco</a> · <a href=\"https://profiles.wordpress.org/josephscott/\">Joseph Scott</a> · <a href=\"https://profiles.wordpress.org/jhabdas/\">Josh Habdas</a> · <a href=\"https://profiles.wordpress.org/verygoode/\">Joshua Goode</a> · <a href=\"https://profiles.wordpress.org/jrmd/\">jrmd</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juampick/\">Juan Cook</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/juliengardair/\">juliengardair</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a> · <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> · <a href=\"https://profiles.wordpress.org/itsroy69/\">Jyotirmoy Roy</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a> · <a href=\"https://profiles.wordpress.org/kaitohm/\">Kaito Hanamori</a> · <a href=\"https://profiles.wordpress.org/kakomap/\">Kakoma</a> · <a href=\"https://profiles.wordpress.org/kalpeshh/\">Kalpesh</a> · <a href=\"https://profiles.wordpress.org/karinchristen/\">Karin Christen</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/karthickmurugan/\">Karthick Murugan</a> · <a href=\"https://profiles.wordpress.org/karthikeya01/\">Karthikeya Bethu</a> · <a href=\"https://profiles.wordpress.org/kasparsd/\">Kaspars</a> · <a href=\"https://profiles.wordpress.org/codebykat/\">Kat Hagan</a> · <a href=\"https://profiles.wordpress.org/katinthehatsite/\">Kateryna K. a11n</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn Presner</a> · <a href=\"https://profiles.wordpress.org/katrinadtl/\">Katrina Massey</a> · <a href=\"https://profiles.wordpress.org/kausaralm/\">Kausar Alam</a> · <a href=\"https://profiles.wordpress.org/khushdoms/\">Kaushik Domadiya</a> · <a href=\"https://profiles.wordpress.org/onlykawshar/\">Kawshar Ahmed</a> · <a href=\"https://profiles.wordpress.org/kaygee79/\">kaygee79</a> · <a href=\"https://profiles.wordpress.org/mt8biz/\">Kazuto Takeshita</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a> · <a href=\"https://profiles.wordpress.org/tinypixel/\">Kelly Mears</a> · <a href=\"https://profiles.wordpress.org/kgagne/\">Ken Gagne</a> · <a href=\"https://profiles.wordpress.org/kerfred/\">Kerfred</a> · <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a> · <a href=\"https://profiles.wordpress.org/kesselb/\">kesselb</a> · <a href=\"https://profiles.wordpress.org/kevinlearynet/\">Kevin Leary</a> · <a href=\"https://profiles.wordpress.org/khoipro/\">Khoi Pro</a> · <a href=\"https://profiles.wordpress.org/khushipatel15/\">Khushi Patel</a> · <a href=\"https://profiles.wordpress.org/killerbishop/\">killerbishop</a> · <a href=\"https://profiles.wordpress.org/iamkingsleyf/\">Kingsley Felix</a> · <a href=\"https://profiles.wordpress.org/kirasong/\">Kira Schroder</a> · <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a> · <a href=\"https://profiles.wordpress.org/kitchin/\">kitchin</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/kkmuffme/\">kkmuffme</a> · <a href=\"https://profiles.wordpress.org/kleor/\">Kleor</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a> · <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a> · <a href=\"https://profiles.wordpress.org/kpapazov/\">kpapazov</a> · <a href=\"https://profiles.wordpress.org/kprocyszyn/\">kprocyszyn</a> · <a href=\"https://profiles.wordpress.org/krishaamer/\">krishaamer</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/kshaner/\">kshaner</a> · <a href=\"https://profiles.wordpress.org/kub1x/\">kub1x</a> · <a href=\"https://profiles.wordpress.org/kubiq/\">kubiq</a> · <a href=\"https://profiles.wordpress.org/kunalpuri123/\">kunalpuri123</a> · <a href=\"https://profiles.wordpress.org/kushsharma/\">Kush Sharma</a> · <a href=\"https://profiles.wordpress.org/kush123/\">Kushagra Goyal</a> · <a href=\"https://profiles.wordpress.org/lgadzhev/\">Lachezar Gadzhev</a> · <a href=\"https://profiles.wordpress.org/lakrisgubben/\">lakrisgubben</a> · <a href=\"https://profiles.wordpress.org/lakshyajeet/\">Lakshyajeet Singh Goyal</a> · <a href=\"https://profiles.wordpress.org/lalitkumawat/\">Lalit Kumawat</a> · <a href=\"https://profiles.wordpress.org/lancewillett/\">Lance Willett</a> · <a href=\"https://profiles.wordpress.org/newyorkerlaura/\">Laura Byrne</a> · <a href=\"https://profiles.wordpress.org/laurisaarni/\">Lauri Saarni</a> · <a href=\"https://profiles.wordpress.org/ldanielgiuliani/\">ldanielgiuliani</a> · <a href=\"https://profiles.wordpress.org/leewillis77/\">Lee Willis</a> · <a href=\"https://profiles.wordpress.org/leedxw/\">leedxw</a> · <a href=\"https://profiles.wordpress.org/leemon/\">leemon</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leonidasmilossis/\">Leonidas Milosis</a> · <a href=\"https://profiles.wordpress.org/levinbaria/\">Levin Baria</a> · <a href=\"https://profiles.wordpress.org/lgseo/\">lgseo</a> · <a href=\"https://profiles.wordpress.org/lilgames/\">LilGames</a> · <a href=\"https://profiles.wordpress.org/liviopv/\">liviopv</a> · <a href=\"https://profiles.wordpress.org/logiclink/\">logiclink</a> · <a href=\"https://profiles.wordpress.org/logicrays/\">LogicRays Technologies</a> · <a href=\"https://profiles.wordpress.org/lordandy1984/\">lordandy1984</a> · <a href=\"https://profiles.wordpress.org/lovor/\">Lovro Hrust</a> · <a href=\"https://profiles.wordpress.org/lucasms/\">Lucas Martins</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi Teschio</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukasfritzedev/\">LukasFritzeDev</a> · <a href=\"https://profiles.wordpress.org/wpfed/\">Lukasz</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/maccyd/\">maccyd</a> · <a href=\"https://profiles.wordpress.org/madhavishah01/\">Madhavi Shah</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/maikuolan/\">Maikuolan</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/manhatthien98/\">manhatthien98</a> · <a href=\"https://profiles.wordpress.org/sirlouen/\">Manuel Camargo</a> · <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a> · <a href=\"https://profiles.wordpress.org/maorb/\">maorb</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/marc4/\">Marc Armengou</a> · <a href=\"https://profiles.wordpress.org/pagelab/\">Marcio Duarte</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/leadclown/\">Marcus</a> · <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a> · <a href=\"https://profiles.wordpress.org/marian1/\">marian1</a> · <a href=\"https://profiles.wordpress.org/plari/\">Marie</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/mariohamann/\">mariohamann</a> · <a href=\"https://profiles.wordpress.org/marius84/\">mariushosting</a> · <a href=\"https://profiles.wordpress.org/bozzmedia/\">Marty</a> · <a href=\"https://profiles.wordpress.org/martythornley/\">MartyThornley</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> · <a href=\"https://profiles.wordpress.org/4thhubbard/\">Mary Hubbard</a> · <a href=\"https://profiles.wordpress.org/mat-lipe/\">Mat Lipe</a> · <a href=\"https://profiles.wordpress.org/mathiscode/\">mathiscode</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mattyrob/\">Matt Robinson</a> · <a href=\"https://profiles.wordpress.org/mattwest/\">Matt West</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/pfefferle/\">Matthias Pfefferle</a> · <a href=\"https://profiles.wordpress.org/mattryanwalker/\">mattryanwalker</a> · <a href=\"https://profiles.wordpress.org/maxschmeling/\">Max Schmeling</a> · <a href=\"https://profiles.wordpress.org/maxpertici/\">Maxime Pertici</a> · <a href=\"https://profiles.wordpress.org/mayanktripathi32/\">Mayank Tripathi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/faithcoder/\">Md Abdullah Al Arif</a> · <a href=\"https://profiles.wordpress.org/mabfahad/\">Md Abdullah Al Fahad</a> · <a href=\"https://profiles.wordpress.org/hmbashar/\">Md Abul Bashar</a> · <a href=\"https://profiles.wordpress.org/ismail0071/\">MD ISMAIL</a> · <a href=\"https://profiles.wordpress.org/kawsar007/\">MD Kawsar Chowdhury</a> · <a href=\"https://profiles.wordpress.org/masummollaalhaz/\">Md Masum Molla Alhaz</a> · <a href=\"https://profiles.wordpress.org/obiplabon/\">Md Obidullah (obiPlabon)</a> · <a href=\"https://profiles.wordpress.org/wprashed/\">Md Rashed Hossain</a> · <a href=\"https://profiles.wordpress.org/sabbir20/\">Md Sabbir Hossain</a> · <a href=\"https://profiles.wordpress.org/najmulsaju/\">Md. Najmul Islam</a> · <a href=\"https://profiles.wordpress.org/mehedi_csit/\">Md.Mehedi Hasan</a> · <a href=\"https://profiles.wordpress.org/mdmoreau/\">mdmoreau</a> · <a href=\"https://profiles.wordpress.org/mdviralsampat/\">mdviralsampat</a> · <a href=\"https://profiles.wordpress.org/immeet94/\">Meet Makadia</a> · <a href=\"https://profiles.wordpress.org/megane9988/\">megane9988</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/mfgmicha/\">Micha Krapp</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/michaelkeck/\">Michael Keck</a> · <a href=\"https://profiles.wordpress.org/mnelson4/\">Michael Nelson</a> · <a href=\"https://profiles.wordpress.org/xmic/\">Michael Sumner</a> · <a href=\"https://profiles.wordpress.org/michaelreetz/\">michaelreetz</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/marktimemedia/\">Michelle Schulp Hunt</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/migueluy/\">Miguel Lezama</a> · <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a> · <a href=\"https://profiles.wordpress.org/mobius5150/\">Mike</a> · <a href=\"https://profiles.wordpress.org/mikefitzman/\">Mike Fitzpatrick</a> · <a href=\"https://profiles.wordpress.org/mikehansenme/\">Mike Hansen</a> · <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley</a> · <a href=\"https://profiles.wordpress.org/mmcalister/\">Mike McAlister</a> · <a href=\"https://profiles.wordpress.org/ritterml/\">Mike Ritter</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/firestar300/\">Milan Ricoul</a> · <a href=\"https://profiles.wordpress.org/multidots1896/\">Minal Diwan</a> · <a href=\"https://profiles.wordpress.org/369work/\">Miroku</a> · <a href=\"https://profiles.wordpress.org/missveronicatv/\">missveronica</a> · <a href=\"https://profiles.wordpress.org/presstoke/\">Mitchell Austin</a> · <a href=\"https://profiles.wordpress.org/mkeck/\">mkeck</a> · <a href=\"https://profiles.wordpress.org/mlaetitia1986/\">mlaetitia1986</a> · <a href=\"https://profiles.wordpress.org/mleray/\">mleray</a> · <a href=\"https://profiles.wordpress.org/mleraygp/\">mleraygp</a> · <a href=\"https://profiles.wordpress.org/mobarak/\">Mobarak Ali</a> · <a href=\"https://profiles.wordpress.org/opurockey/\">Mohammad Rockeybul Alam</a> · <a href=\"https://profiles.wordpress.org/mohkatz/\">Mohammed Kateregga</a> · <a href=\"https://profiles.wordpress.org/mosescursor/\">Moses Cursor Ssebunya</a> · <a href=\"https://profiles.wordpress.org/mrwweb/\">mrwweb</a> · <a href=\"https://profiles.wordpress.org/mtg169/\">mtg169</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/mukulsingh27/\">Mukul Singh</a> · <a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a> · <a href=\"https://profiles.wordpress.org/sedmikrasky/\">N&#250;ria Nadal i Rovira</a> · <a href=\"https://profiles.wordpress.org/vyasnaman/\">Naman Vyas</a> · <a href=\"https://profiles.wordpress.org/nanisamireddy/\">NANI SAMIREDDY</a> · <a href=\"https://profiles.wordpress.org/narenin/\">Narendra Sishodiya</a> · <a href=\"https://profiles.wordpress.org/nareshbheda/\">Naresh Bheda</a> · <a href=\"https://profiles.wordpress.org/muddassirnasim/\">Nasim Miah</a> · <a href=\"https://profiles.wordpress.org/n8finch/\">Nate Finch</a> · <a href=\"https://profiles.wordpress.org/naveendwivedi/\">Naveen Dwivedi</a> · <a href=\"https://profiles.wordpress.org/navi161/\">Navneet Kaur</a> · <a href=\"https://profiles.wordpress.org/bugnumber9/\">Nazar Hotsa</a> · <a href=\"https://profiles.wordpress.org/nazmul111/\">Nazmul Hosen</a> · <a href=\"https://profiles.wordpress.org/greatislander/\">Ned Zimmerman</a> · <a href=\"https://profiles.wordpress.org/nexbridge/\">nexbridge</a> · <a href=\"https://profiles.wordpress.org/nextendweb/\">Nextendweb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/nickchomey/\">Nick</a> · <a href=\"https://profiles.wordpress.org/nickstarkloff/\">Nick</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a> · <a href=\"https://profiles.wordpress.org/nickbrazilian/\">nickbrazilian</a> · <a href=\"https://profiles.wordpress.org/nickjbedford/\">nickjbedford</a> · <a href=\"https://profiles.wordpress.org/nickpagz/\">nickpagz</a> · <a href=\"https://profiles.wordpress.org/nickwilmot/\">nickwilmot</a> · <a href=\"https://profiles.wordpress.org/nico23/\">Nico</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a> · <a href=\"https://profiles.wordpress.org/nigelnelles/\">nigelnelles</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/smushytaco/\">Nikan Radan</a> · <a href=\"https://profiles.wordpress.org/nikunj8866/\">Nikunj Hatkar</a> · <a href=\"https://profiles.wordpress.org/nimeshatxecurify/\">Nimesh</a> · <a href=\"https://profiles.wordpress.org/ninomiho/\">Nino Mihovilic</a> · <a href=\"https://profiles.wordpress.org/ninos-ego/\">Ninos</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/othernoel/\">Noel Santos</a> · <a href=\"https://profiles.wordpress.org/noruzzaman/\">Noruzzaman</a> · <a href=\"https://profiles.wordpress.org/nosilver4u/\">nosilver4u</a> · <a href=\"https://profiles.wordpress.org/oceantober/\">oceantober</a> · <a href=\"https://profiles.wordpress.org/oferlaor/\">oferlaor</a> · <a href=\"https://profiles.wordpress.org/okat/\">okat</a> · <a href=\"https://profiles.wordpress.org/yasunocco/\">Okawa Yasuno</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a> · <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a> · <a href=\"https://profiles.wordpress.org/gabertronic/\">Ophelia Rose</a> · <a href=\"https://profiles.wordpress.org/optimizingmatters/\">Optimizing Matters</a> · <a href=\"https://profiles.wordpress.org/owi/\">owi</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a> · <a href=\"https://profiles.wordpress.org/palak678/\">Palak Patel</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/parinpanjari/\">Parin Panjari</a> · <a href=\"https://profiles.wordpress.org/parthvataliya/\">Parth vataliya</a> · <a href=\"https://profiles.wordpress.org/techpartho/\">Partho Hore</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pateljaymin/\">Patel Jaymin</a> · <a href=\"https://profiles.wordpress.org/patricia70/\">Patricia BT</a> · <a href=\"https://profiles.wordpress.org/lumiblog/\">Patrick Lumumba</a> · <a href=\"https://profiles.wordpress.org/patpiwo/\">Patrick Piwowarczyk</a> · <a href=\"https://profiles.wordpress.org/pryley/\">Paul</a> · <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulbonneau/\">Paul Bonneau</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/paulstanos/\">paulstanos</a> · <a href=\"https://profiles.wordpress.org/pcarvalho/\">pcarvalho</a> · <a href=\"https://profiles.wordpress.org/pedrofigueroa1989/\">Pedro Figueroa</a> · <a href=\"https://profiles.wordpress.org/peroks/\">Per Egil Roksvaag</a> · <a href=\"https://profiles.wordpress.org/peteringersoll/\">Peter Ingersoll</a> · <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a> · <a href=\"https://profiles.wordpress.org/philipjohn/\">Philip John</a> · <a href=\"https://profiles.wordpress.org/philsola/\">Philip Sola</a> · <a href=\"https://profiles.wordpress.org/tyrannous/\">Philipp Bammes</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/piskvorky/\">piskvorky</a> · <a href=\"https://profiles.wordpress.org/poojabhimani/\">Pooja Bhimani</a> · <a href=\"https://profiles.wordpress.org/poojapadamad/\">poojapadamad</a> · <a href=\"https://profiles.wordpress.org/porg/\">porg</a> · <a href=\"https://profiles.wordpress.org/prab18hat/\">prab18hat</a> · <a href=\"https://profiles.wordpress.org/praful2111/\">Praful Patel</a> · <a href=\"https://profiles.wordpress.org/pranjalpratapsingh/\">Pranjal Pratap Singh</a> · <a href=\"https://profiles.wordpress.org/prasadkarmalkar/\">Prasad Karmalkar</a> · <a href=\"https://profiles.wordpress.org/prasadgupte/\">prasadgupte</a> · <a href=\"https://profiles.wordpress.org/pmbaldha/\">Prashant Baldha</a> · <a href=\"https://profiles.wordpress.org/pratiklondhe/\">Pratik Londhe</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/prettyboymp/\">prettyboymp</a> · <a href=\"https://profiles.wordpress.org/puggan/\">puggan</a> · <a href=\"https://profiles.wordpress.org/quentinr64600/\">quentinr64600</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/rafiq91/\">Rafiqul Islam</a> · <a href=\"https://profiles.wordpress.org/ralucastn/\">Raluca</a> · <a href=\"https://profiles.wordpress.org/superpoincare/\">Ramanan</a> · <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/rcorrales/\">Ramon Corrales</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/ravichudasama01/\">Ravi Chudasama</a> · <a href=\"https://profiles.wordpress.org/ravigadhiyawp/\">Ravi Gadhiya</a> · <a href=\"https://profiles.wordpress.org/rcrdortiz/\">rcrdortiz</a> · <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> · <a href=\"https://profiles.wordpress.org/rejaulalomkhan/\">Rejaul Alom Khan</a> · <a href=\"https://profiles.wordpress.org/tabrisrp/\">Remy Perona</a> · <a href=\"https://profiles.wordpress.org/espellcaste/\">Renato Alves</a> · <a href=\"https://profiles.wordpress.org/renishsurani/\">renishsurani</a> · <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a> · <a href=\"https://profiles.wordpress.org/rezwanshiblu1952/\">Rezwan Shiblu</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/riadev/\">riadev</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/rockfire/\">Richard Korthuis</a> · <a href=\"https://profiles.wordpress.org/riddhidave/\">Riddhi Dave</a> · <a href=\"https://profiles.wordpress.org/rinatkhaziev/\">Rinat</a> · <a href=\"https://profiles.wordpress.org/rinkalpagdar/\">Rinkal Pagdar</a> · <a href=\"https://profiles.wordpress.org/rishabhwp/\">Rishabh Gupta</a> · <a href=\"https://profiles.wordpress.org/rishavdutta/\">Rishav Dutta</a> · <a href=\"https://profiles.wordpress.org/rishit30g/\">Rishit Gupta</a> · <a href=\"https://profiles.wordpress.org/ristojovanovic/\">Risto Jovanovic</a> · <a href=\"https://profiles.wordpress.org/devrito/\">Ritoban</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/miqrogroove/\">Robert Chapin</a> · <a href=\"https://profiles.wordpress.org/robertghetau/\">Robert Ghetau</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robmcclel/\">Robmcclel</a> · <a href=\"https://profiles.wordpress.org/rodrigosprimo/\">Rodrigo Primo</a> · <a href=\"https://profiles.wordpress.org/roelof/\">roelof</a> · <a href=\"https://profiles.wordpress.org/rollybueno/\">Rolly Bueno</a> · <a href=\"https://profiles.wordpress.org/ronak44/\">Ronak prajapati</a> · <a href=\"https://profiles.wordpress.org/room34/\">room34</a> · <a href=\"https://profiles.wordpress.org/costasovo/\">Rostislav Woln&#253;</a> · <a href=\"https://profiles.wordpress.org/rotemg/\">Rotem Gelbart</a> · <a href=\"https://profiles.wordpress.org/rayhatron/\">Rufaro Madamombe</a> · <a href=\"https://profiles.wordpress.org/rutvikbhambhi2004/\">Rutvik Bhambhi</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/skierpage/\">S Page</a> · <a href=\"https://profiles.wordpress.org/soean/\">S&#246;ren W&#252;nsch</a> · <a href=\"https://profiles.wordpress.org/sabbir1991/\">Sabbir Ahmed</a> · <a href=\"https://profiles.wordpress.org/devsabbirahmed/\">Sabbir Sam</a> · <a href=\"https://profiles.wordpress.org/sachinrajcp123/\">SACHINRAJ CP</a> · <a href=\"https://profiles.wordpress.org/sahiljadhav1617/\">Sahil Jadhav</a> · <a href=\"https://profiles.wordpress.org/sainathpoojary/\">Sainath Poojary</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/sakibmoon/\">sakibmoon</a> · <a href=\"https://profiles.wordpress.org/samueljseay/\">Sam</a> · <a href=\"https://profiles.wordpress.org/sam_a/\">sam_a</a> · <a href=\"https://profiles.wordpress.org/samirmalpande/\">Samir Malpande</a> · <a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a> · <a href=\"https://profiles.wordpress.org/sjapaget/\">Samuel Paget</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/sandeepdahiya/\">Sandeep Dahiya</a> · <a href=\"https://profiles.wordpress.org/sandipsinh007/\">Sandip Sinh</a> · <a href=\"https://profiles.wordpress.org/ourvalley/\">Sandy McFadden</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/tinkerbelly/\">sarah semark</a> · <a href=\"https://profiles.wordpress.org/sarthaknagoshe2002/\">Sarthak Nagoshe</a> · <a href=\"https://profiles.wordpress.org/satishprajapati/\">Satish Prajapati</a> · <a href=\"https://profiles.wordpress.org/saurabhdhariwal/\">saurabh.dhariwal</a> · <a href=\"https://profiles.wordpress.org/saxonafletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/scholdstrom/\">scholdstrom</a> · <a href=\"https://profiles.wordpress.org/swb1192/\">Scott Buscemi</a> · <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a> · <a href=\"https://profiles.wordpress.org/seifradwane/\">Seif Radwane</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/smrubenstein/\">Seth Rubenstein</a> · <a href=\"https://profiles.wordpress.org/shsajalchowdhury/\">SH Sajal Chowdhury</a> · <a href=\"https://profiles.wordpress.org/shadialaghbari/\">Shadi G شادي جـ</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/shanemuir/\">Shane Muirhead</a> · <a href=\"https://profiles.wordpress.org/iamshashank/\">Shashank Jain</a> · <a href=\"https://profiles.wordpress.org/shekh0109/\">Shashank Shekhar</a> · <a href=\"https://profiles.wordpress.org/sajib1223/\">Shazzad Hossain Khan</a> · <a href=\"https://profiles.wordpress.org/designsimply/\">Sheri Grey</a> · <a href=\"https://profiles.wordpress.org/shiponkarmakar/\">Shipon Karmakar</a> · <a href=\"https://profiles.wordpress.org/shreya0shrivastava/\">Shreya Shrivastava</a> · <a href=\"https://profiles.wordpress.org/iamshubhamsp/\">Shubham Patil</a> · <a href=\"https://profiles.wordpress.org/shyamgadde/\">Shyamsundar Gadde</a> · <a href=\"https://profiles.wordpress.org/sidharthpandita/\">sidharthpandita</a> · <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a> · <a href=\"https://profiles.wordpress.org/shilpaashokan94/\">Silpa TA</a> · <a href=\"https://profiles.wordpress.org/simonefontana/\">simonefontana</a> · <a href=\"https://profiles.wordpress.org/slaffik/\">Slava Abakumov</a> · <a href=\"https://profiles.wordpress.org/smerriman/\">smerriman</a> · <a href=\"https://profiles.wordpress.org/snehapatil02/\">Sneha Patil</a> · <a href=\"https://profiles.wordpress.org/maia12345/\">Sophie Dimitrov</a> · <a href=\"https://profiles.wordpress.org/sourabhjain/\">Sourabh Jain</a> · <a href=\"https://profiles.wordpress.org/sourav08/\">Sourav Pahwa</a> · <a href=\"https://profiles.wordpress.org/soyebsalar01/\">Soyeb Salar</a> · <a href=\"https://profiles.wordpress.org/spenserhale/\">Spenser Hale</a> · <a href=\"https://profiles.wordpress.org/spstrap/\">spstrap</a> · <a href=\"https://profiles.wordpress.org/srikat/\">Sridhar Katakam</a> · <a href=\"https://profiles.wordpress.org/stankea/\">stankea</a> · <a href=\"https://profiles.wordpress.org/metodiew/\">Stanko Metodiev</a> · <a href=\"https://profiles.wordpress.org/staurand/\">staurand</a> · <a href=\"https://profiles.wordpress.org/hubersen/\">Stefan Pasch</a> · <a href=\"https://profiles.wordpress.org/stefanvelthuys/\">Stefan Velthuys</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/stephenharris/\">Stephen Harris</a> · <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a> · <a href=\"https://profiles.wordpress.org/strarsis/\">strarsis</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sudipatel007/\">Sudip Dadhaniya</a> · <a href=\"https://profiles.wordpress.org/sujansarkar/\">Sujan Sarkar</a> · <a href=\"https://profiles.wordpress.org/sukhendu2002/\">Sukhendu Sekhar Guria</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sunil25393/\">SunilPrajapati</a> · <a href=\"https://profiles.wordpress.org/sunnykasera/\">sunnykasera</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/supernovia/\">supernovia</a> · <a href=\"https://profiles.wordpress.org/suzukube/\">SuzuKube</a> · <a href=\"https://profiles.wordpress.org/svedish/\">svedish</a> · <a href=\"https://profiles.wordpress.org/lordspace/\">Svetoslav Marinov</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/syhussaini/\">syhussaini</a> · <a href=\"https://profiles.wordpress.org/schwipps/\">T4ng</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/iamtakashi/\">Takashi Irie</a> · <a href=\"https://profiles.wordpress.org/takuword/\">Takuro</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tatof/\">tatof</a> · <a href=\"https://profiles.wordpress.org/tecnogaming/\">tecnogaming</a> · <a href=\"https://profiles.wordpress.org/mecaota/\">Tetsuro Higuchi</a> · <a href=\"https://profiles.wordpress.org/tharsheblows/\">tharsheblows</a> · <a href=\"https://profiles.wordpress.org/thelmachido/\">thelmachido a11n</a> · <a href=\"https://profiles.wordpress.org/tsquez/\">ThemeAWESOME</a> · <a href=\"https://profiles.wordpress.org/themiked/\">theMikeD</a> · <a href=\"https://profiles.wordpress.org/kraftner/\">Thomas Kr&#228;ftner</a> · <a href=\"https://profiles.wordpress.org/tfrommen/\">Thorsten Frommen</a> · <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Kr&#252;ss</a> · <a href=\"https://profiles.wordpress.org/timhavinga/\">Tim Havinga</a> · <a href=\"https://profiles.wordpress.org/dontfeedthecode/\">Tim Sheehan</a> · <a href=\"https://profiles.wordpress.org/timotijhof/\">Timo Tijhof</a> · <a href=\"https://profiles.wordpress.org/spaceshipone/\">Timoth&#233;e Brosille</a> · <a href=\"https://profiles.wordpress.org/timotheemoulin/\">Timoth&#233;e Moulin</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tjarrett/\">TJarrett</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">Tobias B&#228;thge</a> · <a href=\"https://profiles.wordpress.org/tz-media/\">Tobias Zimpel</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn &#8220;Tobi&#8221; Fjellner)</a> · <a href=\"https://profiles.wordpress.org/tomdevisser/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/wpsmith/\">Travis Smith</a> · <a href=\"https://profiles.wordpress.org/traxus/\">traxus</a> · <a href=\"https://profiles.wordpress.org/sllimrovert/\">Trevor Mills</a> · <a href=\"https://profiles.wordpress.org/tristanleboss/\">tristanleboss</a> · <a href=\"https://profiles.wordpress.org/areziaal/\">Troy Chaplin</a> · <a href=\"https://profiles.wordpress.org/truptikanzariya/\">Trupti Kanzariya</a> · <a href=\"https://profiles.wordpress.org/tsteel/\">tsteel</a> · <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a> · <a href=\"https://profiles.wordpress.org/tusharbharti/\">Tushar Bharti</a> · <a href=\"https://profiles.wordpress.org/tusharaddweb/\">Tushar Patel</a> · <a href=\"https://profiles.wordpress.org/tussendoor/\">Tussendoor B.V.</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umeshnevase/\">Umesh Nevase</a> · <a href=\"https://profiles.wordpress.org/umeshsinghin/\">Umesh Singh</a> · <a href=\"https://profiles.wordpress.org/unsalkorkmaz/\">Unsal Korkmaz</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">upadalavipul</a> · <a href=\"https://profiles.wordpress.org/utsavladani/\">Utsav Ladani</a> · <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a> · <a href=\"https://profiles.wordpress.org/valentingrenier/\">Valentin Grenier</a> · <a href=\"https://profiles.wordpress.org/tsimshatsui/\">Vape tsimshatsui</a> · <a href=\"https://profiles.wordpress.org/vbbp/\">vbbp</a> · <a href=\"https://profiles.wordpress.org/sheldorofazeroth/\">Vedansh Mishra</a> · <a href=\"https://profiles.wordpress.org/vevas/\">Vegard S.</a> · <a href=\"https://profiles.wordpress.org/vgnavada/\">vgnavada</a> · <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a> · <a href=\"https://profiles.wordpress.org/vidugupta/\">vidugupta</a> · <a href=\"https://profiles.wordpress.org/vijendrajat/\">Vijendra Jat</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vineet2003/\">Vinit</a> · <a href=\"https://profiles.wordpress.org/ghorivipul97/\">Vipul Ghori</a> · <a href=\"https://profiles.wordpress.org/vipulgupta003/\">Vipul Gupta</a> · <a href=\"https://profiles.wordpress.org/vipulpatil/\">Vipul Patil</a> · <a href=\"https://profiles.wordpress.org/vishitshah/\">Vishit Shah</a> · <a href=\"https://profiles.wordpress.org/vladimiraus/\">vladimiraus</a> · <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a> · <a href=\"https://profiles.wordpress.org/vrishabhsk/\">Vrishabh Jasani</a> · <a href=\"https://profiles.wordpress.org/walterebert/\">Walter Ebert</a> · <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a> · <a href=\"https://profiles.wordpress.org/websupporter/\">websupporter</a> · <a href=\"https://profiles.wordpress.org/webwrotter/\">webwrotter</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/widhy980/\">widhy980</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/wplmillet/\">wplmillet</a> · <a href=\"https://profiles.wordpress.org/xate/\">xate</a> · <a href=\"https://profiles.wordpress.org/xavilc/\">xavilc</a> · <a href=\"https://profiles.wordpress.org/xerpa43/\">xerpa43</a> · <a href=\"https://profiles.wordpress.org/xipasduarte/\">xipasduarte</a> · <a href=\"https://profiles.wordpress.org/yagniksangani/\">Yagnik Sangani</a> · <a href=\"https://profiles.wordpress.org/yashyadav247/\">Yash</a> · <a href=\"https://profiles.wordpress.org/getsyash/\">Yash B</a> · <a href=\"https://profiles.wordpress.org/yashjawale/\">Yash Jawale</a> · <a href=\"https://profiles.wordpress.org/yogeshbhutkar/\">Yogesh Bhutkar</a> · <a href=\"https://profiles.wordpress.org/yogieanamcara/\">YogieAnamCara</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> · <a href=\"https://profiles.wordpress.org/zeelthakkar/\">Zeel Thakkar</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a> · <a href=\"https://profiles.wordpress.org/lstraczynski/\">Łukasz Strączyński</a> · <a href=\"https://profiles.wordpress.org/haozi/\">耗子</a></p>\n\n\n\n<p>More than <a href=\"https://translate.wordpress.org/stats/\">71 locales have fully translated</a> WordPress 6.9 into their language. Community translators are working hard to ensure more translations are on their way. Thank you to everyone who helps make WordPress available in 200+ languages.</p>\n\n\n\n<p>Last but not least, thanks to the volunteers who contribute to the <a href=\"https://wordpress.org/support/forums/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Get involved</strong></h2>\n\n\n\n<p>Participation in WordPress goes far beyond coding. And learning more and getting involved is easy.  Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and use <a href=\"https://make.wordpress.org/contribute/\">this interactive tool</a> to help you decide which is right for you.</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 Dec 2025 20:12: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:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt: SoTW Eve\";s:7:\"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=150730\";s:7:\"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:31:\"https://ma.tt/2025/12/sotw-eve/\";s: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:1939:\"<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-150732\" height=\"196\" src=\"https://i0.wp.com/ma.tt/files/2025/12/sotw_2025_banner-landing_finalone-scaled-1-1024x333.png?resize=604%2C196&#038;quality=80&#038;ssl=1\" width=\"604\" /></figure>\n\n\n\n<p>The <a href=\"https://wordpress.org/state-of-the-word/\">State of the Word</a> is tomorrow, and it&#8217;s so fun to see SF abuzz with WordPress open source energy. We&#8217;re doing a lot of firsts tomorrow, including the first release timed to the State of the Word, and we&#8217;ll have a good chunk of the release team there to push the button and bring WordPress 6.9 to the world. </p>\n\n\n\n<p>We&#8217;ll also be crossing streams with another community: in the last ten minutes, we&#8217;ll join <a href=\"https://www.tbpn.com/\">TBPN</a>, the new must-watch daily tech show.</p>\n\n\n\n<p>The art and activations are looking so good; it&#8217;s fun to see how everything evolves. <a href=\"https://automattic.design/2025/03/05/designing-state-of-the-word-tokyo-heritage-meets-innovation/\">Tokyo was so beautiful last year</a>; I wasn&#8217;t sure how we&#8217;d top it, but the creativity of everyone coming together has sparked something new this year that I think is quite cool. We&#8217;re trying to honor our mission of democratizing publishing, making things that are powerful and capable, but also retain the flicker of art.</p>\n\n\n\n<p>We&#8217;re also opening up <a href=\"https://tinkertendo.com/\">TinkerTendo</a> to the community. I was just there with a few dozen of the crew, and the vibes are so fun. If you&#8217;re in SF, <a href=\"https://www.meetup.com/wordpress-sf/events/312184138/\">definitely swing by</a> and connect with the folks building the most open internet we can all enjoy.</p>\n\n\n\n<p><a href=\"https://wordpress.org/state-of-the-word/\">Check out the livestream tomorrow</a>, it&#8217;ll be a nice capstone to all we&#8217;ve built together this year.</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 Dec 2025 05:24: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: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:11;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Open Channels FM: The Modern Quest for the Perfect Tab Management Browser\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=112370\";s:7:\"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://openchannels.fm/the-modern-quest-for-the-perfect-tab-management-browser/\";s: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:141:\"Tab wars: Wrigley’s drowning in 45 tabs while BobWP casually guards two; they chat about browsers and the beauty of hitting “clear all”\";s: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 Dec 2025 02:15:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"Jake Spurlock: Introducing Placeholders: A WordPress Plugin for Ad Wireframing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://jakespurlock.com/?p=52207\";s:7:\"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://jakespurlock.com/2025/12/placeholders-ad-wireframing/\";s: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:6886:\"<p>I&#8217;m excited to announce the release of <strong>Placeholders</strong>, a new WordPress plugin that makes wireframing and prototyping ad layouts easier than ever. The plugin is now available on <a href=\"https://wordpress.org/plugins/placeholders/\">WordPress.org</a> and ready for production use.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"the-problem\">The Problem</h2>\n\n\n\n<p>If you&#8217;ve ever worked on a WordPress site that displays advertising, you know the challenge: during the design and development phase, you need placeholder blocks that accurately represent where ads will appear. You want them to match real ad dimensions, but you don&#8217;t want to set up actual ad serving just to see if your layout works.</p>\n\n\n\n<p>I found myself repeatedly creating custom HTML blocks or CSS to mock up ad placements while working on various projects. Each time, I&#8217;d have to look up IAB standard ad sizes, write the markup, and style the placeholders. It was tedious and repetitive work that felt like it should be solved once and reused everywhere.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"the-solution\">The Solution</h2>\n\n\n\n<p><strong>Placeholders</strong> solves this by providing 14 Gutenberg blocks for the most common advertising sizes. Each block is pre-configured with the correct dimensions and provides a clean, wireframe-style placeholder that clearly indicates the ad size and space it will occupy.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"supported-ad-sizes\">Supported Ad Sizes</h3>\n\n\n\n<p>The plugin includes blocks for all the standard IAB ad sizes:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Leaderboard</strong> (728×90px)</li>\n\n\n\n<li><strong>Medium Rectangle</strong> (300×250px)</li>\n\n\n\n<li><strong>Wide Skyscraper</strong> (160×600px)</li>\n\n\n\n<li><strong>Mobile Banner</strong> (320×50px)</li>\n\n\n\n<li><strong>Billboard</strong> (970×250px)</li>\n\n\n\n<li><strong>Large Rectangle</strong> (336×280px)</li>\n\n\n\n<li><strong>Half Page</strong> (300×600px)</li>\n\n\n\n<li><strong>Small Square</strong> (200×200px)</li>\n\n\n\n<li><strong>Square</strong> (250×250px)</li>\n\n\n\n<li><strong>Small Rectangle</strong> (180×150px)</li>\n\n\n\n<li><strong>Vertical Rectangle</strong> (240×400px)</li>\n\n\n\n<li><strong>Large Leaderboard</strong> (970×90px)</li>\n\n\n\n<li><strong>Portrait</strong> (300×1050px)</li>\n\n\n\n<li><strong>Netboard</strong> (580×400px)</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"key-features\">Key Features</h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"simple-to-use\">Simple to Use</h3>\n\n\n\n<p>Just search for any ad size in the block inserter (e.g., &#8220;leaderboard&#8221; or &#8220;medium rectangle&#8221;), insert the block, and you&#8217;re done. No configuration required.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"customizable\">Customizable</h3>\n\n\n\n<p>Each placeholder supports:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Background color</strong> customization</li>\n\n\n\n<li><strong>Text color</strong> customization</li>\n\n\n\n<li><strong>Alignment options</strong> (wide and full alignment)</li>\n\n\n\n<li><strong>Responsive design</strong> that works on all screen sizes</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"clean-design\">Clean Design</h3>\n\n\n\n<p>The placeholders feature a minimalist design that clearly shows:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The ad size name</li>\n\n\n\n<li>Exact pixel dimensions</li>\n\n\n\n<li>A subtle border to indicate the space</li>\n</ul>\n\n\n\n<p>This makes it easy to visualize your layout without the placeholders dominating the design.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"use-cases\">Use Cases</h2>\n\n\n\n<p><strong>Placeholders</strong> is perfect for:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Wireframing</strong>: Quickly mock up ad placements during the design phase</li>\n\n\n\n<li><strong>Development</strong>: Reserve space for ads while building the site</li>\n\n\n\n<li><strong>Client Presentations</strong>: Show clients where ads will appear without setting up ad serving</li>\n\n\n\n<li><strong>Testing Layouts</strong>: Experiment with different ad placements and sizes</li>\n\n\n\n<li><strong>Documentation</strong>: Create visual guides showing ad placement options</li>\n</ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"technical-details\">Technical Details</h2>\n\n\n\n<p>The plugin is built with modern WordPress development practices:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>100% Gutenberg native</strong> &#8211; Works seamlessly with the block editor</li>\n\n\n\n<li><strong>No dependencies</strong> &#8211; Pure PHP, CSS, and JavaScript</li>\n\n\n\n<li><strong>Lightweight</strong> &#8211; Minimal performance impact</li>\n\n\n\n<li><strong>Well-tested</strong> &#8211; Includes comprehensive unit tests</li>\n\n\n\n<li><strong>GPL licensed</strong> &#8211; Free and open source</li>\n</ul>\n\n\n\n<p>All blocks are grouped in a dedicated &#8220;Placeholders&#8221; category in the block inserter, making them easy to find and use.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"installation\">Installation</h2>\n\n\n\n<p>You can install Placeholders in three ways:</p>\n\n\n\n<p><strong>From WordPress.org</strong> (Recommended)</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Go to Plugins → Add New in your WordPress admin</li>\n\n\n\n<li>Search for &#8220;Placeholders&#8221;</li>\n\n\n\n<li>Click Install Now, then Activate</li>\n</ol>\n\n\n\n<p><strong>From the Plugin Directory</strong> Download directly from <a href=\"https://wordpress.org/plugins/placeholders/\">wordpress.org/plugins/placeholders</a></p>\n\n\n\n<p><strong>From GitHub</strong> Clone or download from <a href=\"https://github.com/whyisjake/placeholders\">github.com/whyisjake/placeholders</a></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"whats-next\">What&#8217;s Next</h2>\n\n\n\n<p>This is the 1.0 release, and I&#8217;ve kept the scope focused on solving one problem well. However, I have ideas for future enhancements:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Custom ad size support</li>\n\n\n\n<li>Templates for common ad layout patterns</li>\n\n\n\n<li>Integration with popular ad management plugins</li>\n\n\n\n<li>Dark mode styling options</li>\n</ul>\n\n\n\n<p>If you have feature requests or find bugs, please <a href=\"https://github.com/whyisjake/placeholders/issues\">open an issue on GitHub</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"try-it-out\">Try It Out</h2>\n\n\n\n<p>The plugin is available now on WordPress.org. If you work with ad layouts in WordPress, give it a try and let me know what you think!</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Download</strong>: <a href=\"https://wordpress.org/plugins/placeholders/\">wordpress.org/plugins/placeholders</a></li>\n\n\n\n<li><strong>GitHub</strong>: <a href=\"https://github.com/whyisjake/placeholders\">github.com/whyisjake/placeholders</a></li>\n</ul>\n\n\n\n<p>Happy wireframing!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em>Placeholders is free and open source software, released under the GPL v2 license.</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, 01 Dec 2025 17: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:13:\"Jake Spurlock\";s: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"Open Channels FM: Tech Doesn’t Die, It Transforms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=113128\";s:7:\"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:54:\"https://openchannels.fm/tech-doesnt-die-it-transforms/\";s: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:89:\"Think about it, most ideas behind any tech never really went away, they have transformed.\";s: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 Dec 2025 13:48: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: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:14;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"Jonathan Desrosiers: Seven Years a Committer: My WordPress Commit-iversary\";s:7:\"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:38:\"https://jonathandesrosiers.com/?p=8542\";s:7:\"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:92:\"https://jonathandesrosiers.com/2025/11/seven-years-a-committer-my-wordpress-commit-iversary/\";s: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:8020:\"<p class=\"\">Today officially marks 7 years since my <a href=\"https://core.trac.wordpress.org/changeset/43957\">first changeset was committed</a> to the <a href=\"https://wordpress.org\">WordPress</a> open source project.</p>\n\n\n\n<p class=\"\">Within WordPress, a <em>committer</em> is a contributor who has the ability to modify the main WordPress source repository. Since 2004, roughly 117 people have been given commit access, and 111 have made at least one commit.</p>\n\n\n\n<p class=\"\">In previous years, I linked to posts from other contributors about what it means to be a great participant in open source. Over the past year, though, I have spent a lot of time thinking about what being a great contributor means to me and how decisions are made at scale in open source projects.</p>\n\n\n\n<p class=\"\">This year, instead of pointing to others, I am proud to <a href=\"https://maintaine.rs/desrosj\">share an essay of my own</a>. It is a piece I drafted for the <a href=\"https://maintaine.rs/\">Maintaine.rs book</a>, inspired by <a href=\"https://jonathandesrosiers.com/2025/06/how-a-core-committer-thinks-making-decisions-for-millions/\">my talk at WordCamp Europe</a>, where I explored how Core Committers think and how decisions take shape within the WordPress project.</p>\n\n\n\n<p class=\"\">I also started drafting a few other posts on related topics, so stay tuned for those in the coming weeks. I hope to use the quieter days of December to get those over the finish line.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-lucky-number-seven\">Lucky Number Seven</h2>\n\n\n\n<p class=\"\">Each year I try to give this anniversary post a theme. Since seven is considered a lucky number by many people (especially those <a href=\"https://en.wikipedia.org/wiki/Craps\">on the pass line</a>), this year&#8217;s theme is luck.</p>\n\n\n\n<p class=\"\">I am writing this while on a plane to San Francisco for the <a href=\"https://wordpress.org/state-of-the-word/\">2025 State of the Word</a>. This year took me to two countries I had never visited before. I spoke at several conferences and events, and I had the chance to mentor many contributors in different ways.</p>\n\n\n\n<p class=\"\">I feel incredibly lucky not only to have a job that allows me to help maintain open source software that powers more than 43% percent of the web, but also to have the trust of the community that maintains it right along side me.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-commits-by-the-numbers-2024-2025\">Commits by the numbers (2024-2025)</h2>\n\n\n\n<p class=\"\">Here are some commit stats from November 30, 2024 through November 29, 2025:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"\">365 total commits (up ~42% from the <a href=\"https://jonathandesrosiers.com/2024/11/six-years-a-committer-my-wordpress-commit-iversary/\">previous year</a>)</li>\n\n\n\n<li class=\"\">123 commits to <code>trunk</code> (down ~5%)</li>\n\n\n\n<li class=\"\">21 version bumps (up 320%)</li>\n\n\n\n<li class=\"\">5 reverts (down ~44%)</li>\n\n\n\n<li class=\"\">4 &#8220;unprops&#8221; (no change)</li>\n\n\n\n<li class=\"\">22 tags created (up 2,100%)</li>\n\n\n\n<li class=\"\">162 total props given out in my commits (down 42%)</li>\n\n\n\n<li class=\"\">66 unique contributors given props in my commits (down ~59%)</li>\n\n\n\n<li class=\"\">Of those 66 contributors, 8 were receiving props for the first time (down ~70%)</li>\n</ul>\n\n\n\n<p class=\"\">Roughly grouped, here are my commits organized by <a href=\"https://make.wordpress.org/core/components/\">component</a> (* designates a component that I help maintain):</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"\">Administration: 1</li>\n\n\n\n<li class=\"\">Build/Test Tools: 175*</li>\n\n\n\n<li class=\"\">Bundled Themes: 7*</li>\n\n\n\n<li class=\"\">Coding Standards: 3 (focus, not a component)</li>\n\n\n\n<li class=\"\">Date/Time: 1</li>\n\n\n\n<li class=\"\">Database: 1</li>\n\n\n\n<li class=\"\">Docs: 1 (focus, not a component)</li>\n\n\n\n<li class=\"\">Editor: 3</li>\n\n\n\n<li class=\"\">Emoji: 2</li>\n\n\n\n<li class=\"\">External Libraries: 4*</li>\n\n\n\n<li class=\"\">General: 4*</li>\n\n\n\n<li class=\"\">HTML API: 2</li>\n\n\n\n<li class=\"\">Import: 1</li>\n\n\n\n<li class=\"\">Media: 2*</li>\n\n\n\n<li class=\"\">Press This: 1 (retired component</li>\n\n\n\n<li class=\"\">Security: 83</li>\n\n\n\n<li class=\"\">Site Health: 1</li>\n\n\n\n<li class=\"\">Tests: 5 (focus, not a component)</li>\n\n\n\n<li class=\"\">Toolbar: 1</li>\n\n\n\n<li class=\"\">Upgrade/Install: 1*</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-add-it-up-all-seven-years\">Add it up: All Seven Years</h2>\n\n\n\n<p class=\"\">Here are stats for all seven years of being a WordPress Core Committer (November 30, 2018 through today):</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"\">2,552 total commits</li>\n\n\n\n<li class=\"\">1,201 commits to <code>trunk</code></li>\n\n\n\n<li class=\"\">265 version bumps</li>\n\n\n\n<li class=\"\">174 version tags created</li>\n\n\n\n<li class=\"\">4 branches created</li>\n\n\n\n<li class=\"\">58 reverts</li>\n\n\n\n<li class=\"\">24 &#8220;unprops&#8221;</li>\n\n\n\n<li class=\"\"><a href=\"https://open.spotify.com/playlist/5vbJ3gncpLoc9AN0ct5iME?si=33aebb1f695b4536\">11 commits with hidden song lyrics</a></li>\n\n\n\n<li class=\"\">4,846 total props given out in my commits</li>\n\n\n\n<li class=\"\">747 unique contributors given props in my commits</li>\n</ul>\n\n\n\n<p class=\"\">I have also now entered into the top 5 list of contributors with the most commits to the code base across all branches:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li class=\"\"><a href=\"https://ryanboren.link/\">Ryan Boren</a> (9,081)</li>\n\n\n\n<li class=\"\"><a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> (8,342)</li>\n\n\n\n<li class=\"\"><a href=\"https://nacin.com/\">Andrew Nacin</a> (5,418)</li>\n\n\n\n<li class=\"\"><a href=\"https://ozz.blog/\">Andrew Ozz</a> (3,366)</li>\n\n\n\n<li class=\"\">Me (2,552)</li>\n</ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-a-few-other-observations\">A Few Other Observations</h2>\n\n\n\n<p class=\"\">I realized while writing this year&#8217;s anniversary post that my first commit falls on <a href=\"https://en.wikipedia.org/wiki/Blue_Beanie_Day\">Blue Beanie Day</a>. I may have to get a WordPress logo blue beanie for next year.</p>\n\n\n\n<p class=\"\">And hat tip to <a href=\"https://simonwillison.net/\">Simon Willison</a> for <a href=\"https://x.com/simonw/status/1995168534251610335\">pointing out</a> that ChatGPT was launched on November 30th, 2022.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-as-always-thank-you\">As Always: Thank YOU! <img alt=\"🫵\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1faf5.png\" style=\"height: 1em;\" /></h2>\n\n\n\n<p class=\"\">Being a WordPress committer would not be nearly as meaningful without the countless contributions from people across the community who choose to support and maintain this free software in so many different ways. So thank you to every single one of you. <img alt=\"❤\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2764.png\" style=\"height: 1em;\" /></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-previous-commit-iversaries\">Previous Commit-iversaries</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"\"><a href=\"https://jonathandesrosiers.com/2020/11/two-years-my-wordpress-commit-iversary/\">Two</a></li>\n\n\n\n<li class=\"\"><a href=\"https://jonathandesrosiers.com/2023/11/five-years-my-wordpress-commit-iversary/\">Three/Four/Five</a></li>\n\n\n\n<li class=\"\"><a href=\"https://jonathandesrosiers.com/2024/11/six-years-a-committer-my-wordpress-commit-iversary/\">Six</a></li>\n</ul>\n\n\n\n<p class=\"has-text-align-right\"><em>Featured image credit: <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/24165e5435/\">photo</a> by <a href=\"https://wordpress.org/photos/author/chanecullens/\">CCC</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</em></p>\n\n\n\n<p class=\"\"></p>\n<p>The post <a href=\"https://jonathandesrosiers.com/2025/11/seven-years-a-committer-my-wordpress-commit-iversary/\">Seven Years a Committer: My WordPress Commit-iversary</a> appeared first on <a href=\"https://jonathandesrosiers.com\">Jonathan Desrosiers</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 Dec 2025 04:51: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:19:\"Jonathan Desrosiers\";s: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Matt: Thanksgiving Sunday\";s:7:\"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=150717\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ma.tt/2025/11/thanksgiving-sunday/\";s: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:876:\"<p>It&#8217;s an interesting cultural moment right now: I think Bryan tweeted, many people are watching people catching balls, while others are <a href=\"https://www.youtube.com/watch?v=64_ve0ToFrI\">watching Bryan Johnson tripping balls</a>. Bryan Johnson, of <a href=\"https://blueprint.bryanjohnson.com/\">Blueprint fame</a>, is livestreaming taking a heroic dose of mushrooms. It&#8217;s been an interesting journey with the journalist Ashlee Vance, Naval Ravikant, David Friedberg, Marc Benioff, Genevieve Jurvetson, and now a DJ set by Grimes. I was hoping he&#8217;d be talking/interacting more with the guests, but it&#8217;s been more of a live commentary. Glad all the work Bryan is doing, as Genevieve said, to broaden the Overton window on this, really re-opening a lot of research originially started by the government and pharmacutical companies 50-60 years ago.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 30 Nov 2025 22:32:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:16;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Gutenberg Times: Gutenberg Changelog #125 – WordPress 6.9, Gutenberg 22.1 and Gutenberg 22.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=43300\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-125-wordpress-6-9-gutenberg-22-1-and-gutenberg-22-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:58545:\"<p>The newest episode of the <strong>Gutenberg Changelog podcast, #125</strong>, features hosts Birgit Pauli-Haack and JC Palmes discussing a major trio of releases: <strong>WordPress 6.9, Gutenberg 22.1, and Gutenberg 22.2</strong>.</p>\n\n\n\n<p>JC highlights several exciting features in WordPress 6.9, focusing on significant developer and editor experience improvements, including the <strong>full iframe editor</strong>, <strong>routing</strong>, <strong>DataViews</strong>, the <strong>Interactivity API</strong>, <strong>pattern logic and content-only mode</strong>, and the <strong>Abilities system</strong>. A personal favorite is the new <strong>Accordion Block</strong>.</p>\n\n\n\n<p>The discussion then moves to the latest Gutenberg releases. </p>\n\n\n\n<p><strong>Gutenberg 22.1</strong> introduces the <strong>new <code>core/tabs</code> block</strong> and brings enhancements like <strong>JS/CSS editing for the HTML Block</strong>, updates to the Twitter/X embed icon, and various improvements to DataViews and Breadcrumbs.</p>\n\n\n\n<p><strong>Gutenberg 22.2</strong> focuses on performance, block editor polish, accessibility, and developer experience. Key updates include expanded functionality for the <strong>Breadcrumbs</strong> block, support for <strong>background video embeds in the Cover block</strong>, and new controls for <strong>text justification</strong> and <strong>width</strong> in the Block Editor. It also refines the block-locking functionality with changes to pattern management, such as replacing the &#8216;Ungroup&#8217; option with &#8216;Add edit section&#8217; for specific blocks.</p>\n\n\n\n<p>Tune in to get the full rundown on how these releases will shape the future of site building in WordPress.</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#transcript\">Transcript</a></p>\n\n\n\n<p></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Editor: <a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo: <a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production: <a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\">JC Palmes, WebDev Studios</h2>\n\n\n\n<ul class=\"wp-block-social-links is-layout-flex wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-x  wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://twitter.com/jpalmes\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M13.982 10.622 20.54 3h-1.554l-5.693 6.618L8.745 3H3.5l6.876 10.007L3.5 21h1.554l6.012-6.989L15.868 21h5.245l-7.131-10.378Zm-2.128 2.474-.697-.997-5.543-7.93H8l4.474 6.4.697.996 5.815 8.318h-2.387l-4.745-6.787Z\"></svg><span class=\"wp-block-social-link-label screen-reader-text\">X</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-github  wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://github.com/khleomix/\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12,2C6.477,2,2,6.477,2,12c0,4.419,2.865,8.166,6.839,9.489c0.5,0.09,0.682-0.218,0.682-0.484 c0-0.236-0.009-0.866-0.014-1.699c-2.782,0.602-3.369-1.34-3.369-1.34c-0.455-1.157-1.11-1.465-1.11-1.465 c-0.909-0.62,0.069-0.608,0.069-0.608c1.004,0.071,1.532,1.03,1.532,1.03c0.891,1.529,2.341,1.089,2.91,0.833 c0.091-0.647,0.349-1.086,0.635-1.337c-2.22-0.251-4.555-1.111-4.555-4.943c0-1.091,0.39-1.984,1.03-2.682 C6.546,8.54,6.202,7.524,6.746,6.148c0,0,0.84-0.269,2.75,1.025C10.295,6.95,11.15,6.84,12,6.836 c0.85,0.004,1.705,0.114,2.504,0.336c1.909-1.294,2.748-1.025,2.748-1.025c0.546,1.376,0.202,2.394,0.1,2.646 c0.64,0.699,1.026,1.591,1.026,2.682c0,3.841-2.337,4.687-4.565,4.935c0.359,0.307,0.679,0.917,0.679,1.852 c0,1.335-0.012,2.415-0.012,2.741c0,0.269,0.18,0.579,0.688,0.481C19.138,20.161,22,16.416,22,12C22,6.477,17.523,2,12,2z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">GitHub</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-wordpress  wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://profiles.wordpress.org/khleomix/\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.158,12.786L9.46,20.625c0.806,0.237,1.657,0.366,2.54,0.366c1.047,0,2.051-0.181,2.986-0.51 c-0.024-0.038-0.046-0.079-0.065-0.124L12.158,12.786z M3.009,12c0,3.559,2.068,6.634,5.067,8.092L3.788,8.341 C3.289,9.459,3.009,10.696,3.009,12z M18.069,11.546c0-1.112-0.399-1.881-0.741-2.48c-0.456-0.741-0.883-1.368-0.883-2.109 c0-0.826,0.627-1.596,1.51-1.596c0.04,0,0.078,0.005,0.116,0.007C16.472,3.904,14.34,3.009,12,3.009 c-3.141,0-5.904,1.612-7.512,4.052c0.211,0.007,0.41,0.011,0.579,0.011c0.94,0,2.396-0.114,2.396-0.114 C7.947,6.93,8.004,7.642,7.52,7.699c0,0-0.487,0.057-1.029,0.085l3.274,9.739l1.968-5.901l-1.401-3.838 C9.848,7.756,9.389,7.699,9.389,7.699C8.904,7.67,8.961,6.93,9.446,6.958c0,0,1.484,0.114,2.368,0.114 c0.94,0,2.397-0.114,2.397-0.114c0.485-0.028,0.542,0.684,0.057,0.741c0,0-0.488,0.057-1.029,0.085l3.249,9.665l0.897-2.996 C17.841,13.284,18.069,12.316,18.069,11.546z M19.889,7.686c0.039,0.286,0.06,0.593,0.06,0.924c0,0.912-0.171,1.938-0.684,3.22 l-2.746,7.94c2.673-1.558,4.47-4.454,4.47-7.771C20.991,10.436,20.591,8.967,19.889,7.686z M12,22C6.486,22,2,17.514,2,12 C2,6.486,6.486,2,12,2c5.514,0,10,4.486,10,10C22,17.514,17.514,22,12,22z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">WordPress</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram  wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://www.instagram.com/khleomix/\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-facebook  wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://www.facebook.com/jcpalmes/\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Facebook</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-linkedin  wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://www.linkedin.com/in/jcmaepalmes/\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19.7,3H4.3C3.582,3,3,3.582,3,4.3v15.4C3,20.418,3.582,21,4.3,21h15.4c0.718,0,1.3-0.582,1.3-1.3V4.3 C21,3.582,20.418,3,19.7,3z M8.339,18.338H5.667v-8.59h2.672V18.338z M7.004,8.574c-0.857,0-1.549-0.694-1.549-1.548 c0-0.855,0.691-1.548,1.549-1.548c0.854,0,1.547,0.694,1.547,1.548C8.551,7.881,7.858,8.574,7.004,8.574z M18.339,18.338h-2.669 v-4.177c0-0.996-0.017-2.278-1.387-2.278c-1.389,0-1.601,1.086-1.601,2.206v4.249h-2.667v-8.59h2.559v1.174h0.037 c0.356-0.675,1.227-1.387,2.526-1.387c2.703,0,3.203,1.779,3.203,4.092V18.338z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">LinkedIn</span></a></li></ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://khleomix.com/\">Website</a></li>\n\n\n\n<li><a href=\"https://webdevstudios.com/2025/11/25/a-developers-guide-the-future-of-the-wordpress-gutenberg-block-editor/\">A Developer’s Guide: The Future of the WordPress Gutenberg Block Editor</a></li>\n\n\n\n<li><a href=\"https://github.com/WebDevStudios/wds-bt\">WDS-BT on GitHub</a></li>\n\n\n\n<li>Previous Appearances\n<ul class=\"wp-block-list\">\n<li><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-108-block-themes-for-agencies/\">Gutenberg Changelog #108 – Gutenberg 19.3, WordPress 6.7 – Block Themes for Agencies, WordCamp Asia</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-116-wordpress-6-8-field-guide/\">Gutenberg Changelog 116 – WordPress 6.8, Source of Truth, Field Guide, Gutenberg 20.5 and 20.6</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Announcements</h2>\n\n\n\n<p><a href=\"https://www.youtube.com/playlist?list=PL9ax-dojLw7yUsr3hDIRWHoaGkjyBUWyW\"><strong>Gutenberg Changelog podcast</strong></a> now also available on YouTube</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.9</h2>\n\n\n\n<p><a href=\"https://wordpress.org/state-of-the-word/\">State of the Word</a> Dec 2, 2025, at 20:00 UTC</p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-3/\">Release Candidate 3</a></p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/\">Source of Truth is out.</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2025/11/25/wordpress-6-9-field-guide/\">Field Guide </a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2025/11/27/wordpress-importer-can-now-migrate-urls-in-your-content/\">WordPress Importer can now migrate URLs in your content</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Gutenberg-Releases</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2025/11/20/whats-new-in-gutenberg-22-1-18-november-2025/\">What&#8217;s new in Gutenberg 22.1? (18 November, 2025)</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/releases/tag/v22.2.0-rc.1\">Gutenberg 22.2 RC 1</a></li>\n</ul>\n\n\n\n<p></p>\n\n\n\n<p></p>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<ul class=\"wp-block-list\">\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on X (formerly known as Twitter) or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Welcome to our 125th episode of the Gutenberg Changelog Podcast. In today&#8217;s episode we will talk about WordPress 6.9, Gutenberg 22.1 and Gutenberg 22.2 releases or versions. I&#8217;m your host Birgit Pauli-Haack, Curator at the Gutenberg Times and a full-time core contributor for the WordPress open source project sponsored by Automattic. It&#8217;s a special delight to have JC Palmes with me on the show today. JC is the principal Technical Manager at WebDev Studios. Welcome back to the show, JC. How are you today?</p>\n\n\n\n<p><em>JC Palmes: </em>I&#8217;m doing good, Birgit. I am very busy but still alive. So that&#8217;s a win.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>I can imagine.</p>\n\n\n\n<p><em>JC Palmes: </em>Yeah. Happy to be here and talk with President Gutenberg again.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Super. Yeah. Great to see you have your perspective on all the things. I just want to point out that on WebDev Studios they have just posted a developer&#8217;s guide to the future of WordPress with Gutenberg block editor, and in a in a short summary it&#8217;s why they switched or why WebDev Studios is so involved in React applications and in block themes and in the block development because it has a lot of advantages, and so there is the code shift to reactive components. I think one of the advantages that I see is that actually WordPress is giving so many components that as a plugin developer or agency developer you don&#8217;t have to make those decisions on the UI anymore. You can just follow along with the ideas. Is that accurate when I say that?</p>\n\n\n\n<p><em>JC Palmes: </em>Yeah. So that article I really like that a lot. It reflects what we see on most of our enterprise scale projects where blocks function like React components and they function like react components now. And theme JSON is basically the design system contract. So performance improves massively when you just when you move away from the old page builder stack for multisites and you know, big editorial teams, this kind of structure is really the only way things stay sane long term. So yeah, that piece captured that direction really well and it&#8217;s just the performance alone is just massive.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah.</p>\n\n\n\n<p>J<em>C Palmes: </em>Massive performance improvements.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. I think we talked about it the last time you were on the show when you already created the starter theme that&#8217;s based on block theme for the organization. So that&#8217;s what you start out with. And I will share the link to.</p>\n\n\n\n<p><em>JC Palmes:</em> The GitHub repo wsbt. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yes in the show notes and I think that also encapsulated all the good ideas around it. Have you developed a little bit more on that? What other features kind of went in.</p>\n\n\n\n<p><em>JC Palmes:</em> Not recently but it&#8217;s in my list of to do’s. It&#8217;s just I&#8217;ve been very busy with projects and stuff, so I will need to. Because there are some fixes that moved into Core but we had to do very custom fixes and some of those are already in Core. So we will have to remove those and make sure that it&#8217;s aligned with the new version of WordPress and of course fully tested.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, I can see that there are always a few things that are not working in WordPress or you have to build a workaround. You know it&#8217;s coming but you need something now. You need to build a workaround and then when it comes into Core that they say, oh, okay, that custom code goes away and in comes Core. But it still needs to be backwards compatible also for your clients. So. But I think that&#8217;s a pretty good trade off to actually then have WordPress keep updating the part of the code. Yeah.</p>\n\n\n\n<p><em>JC Palmes:</em> And the way that WordPress is kind of moving towards a future proof version, it&#8217;s easier to add in fixes now and take it out when Core takes over. I haven&#8217;t had any sites break currently. That&#8217;s using our base theme.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That&#8217;s awesome.</p>\n\n\n\n<p><em>JC Palmes:</em> Even with the core updates.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. It&#8217;s all pretty much isolated and you don&#8217;t have to worry so much about things. Yeah. Awesome. So, yeah, we will share the article about the developer&#8217;s guide on the future of WordPress and Gutenberg block Editor in the show notes. We will also share the starter theme that WebDev Studios has, and I don&#8217;t think we talked about it here on the show or maybe with somebody else. That&#8217;s the theme switcher plugin that came out from WebDev Studio, which is a way to have different themes, multiple themes.</p>\n\n\n\n<p><em>JC Palmes:</em> Yep. In one site. It&#8217;s a really robust plugin and I think a lot of enterprise level companies are going to like it just because they can test, you know, if they&#8217;re not ready for Gutenberg blocks and they&#8217;re still on the old WordPress computing system, if they want to try this out, then they can have a full site theme and together with their old theme and change it out one page at a time.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, yeah, that&#8217;s what I understood. That you can have a gradual migration over to the new system to a block theme and see how your content performs and how your content creators actually work with it before you make the switch for the whole site. I think that&#8217;s pretty smart to do, especially when you have thousands and thousands of posts and more than two editors kind of.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It&#8217;s really helpful to have a gradual shift because we all don&#8217;t like change, sudden changes. You know, we like to be in the. Okay. I need to get accustomed to things.</p>\n\n\n\n<p><em>JC Palmes:</em> This thing, that theme switcher is kind of, it&#8217;s allowing these people to test the waters first before diving right in.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And you can make the blue block theme that is kind of added to the. The other theme kind of look almost identical like the other one. So you have the shell and then can see how the. The rest of it works. Yeah, it&#8217;s pretty nifty. Yeah. So that I will share also with our listeners on the show notes. And I&#8217;m glad you&#8217;re all doing such a great job in advocating for the block editor and share all your wins with the community. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Announcements</h3>\n\n\n\n<p>All right, so I have a few announcements, dear listeners. </p>\n\n\n\n<p>So the Gutenberg Changelog is now also available as a podcast on YouTube. Last week I uploaded all episodes. Well, I didn&#8217;t upload one at a time. So YouTube has this feature where you can point it to an RSS feed and then it gradually kind of uploads them itself on its own. And because Google abandoned their podcast space maybe two years ago and only now I have migrated it, but it was fairly easy to do and the only change I had to make was to allow the RSS feed to actually have all the episodes in there so YouTube could grab them. But I also needed to do that anyway because I also switched over from the seriously simple podcast player on our episodes to the Pocket Cast player. So Pocket Cast also needs all our episodes so we can have the slug or the short link for the embed code in there so that you will see also on the website. </p>\n\n\n\n<p>And I also wanted to say hi and welcome to all the new subscribers. We had a lot more listeners in the last month and I would really. Yeah, it&#8217;s awesome. I&#8217;m so happy that after a period of two years stagnating, kind of always have the same amount of listens and downloads, and now all of a sudden it&#8217;s really great to connect with you, dear listeners. And if you want, leave a comment or review on your favorite podcast app, we will read it aloud here and I also want to connect with you and learn about your ideas or what topics you would like us to cover more. So you can also send this all to the email address. The official email address for the podcast is <a href=\"http://changelogatgutenbergtimes.com\">changelogatgutenbergtimes.com</a> so now enough about me. Let&#8217;s talk about my book. No, I don&#8217;t, I don&#8217;t do a book.</p>\n\n\n\n<p><em>JC Palmes:</em> I would read your book.</p>\n\n\n\n<p>Birgit Pauli-Haack: Oh, thank you. Yeah, I, I sometimes. Well, I almost did a book. Yeah. For WordPress 6.9. But we will talk about that. </p>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress 6.9 Release</h3>\n\n\n\n<p>So WordPress 6.9 is coming. We are a few days away, like five days or something away from the WordPress 6.9 release. It&#8217;s out as release candidate three. We are recording this on November 28th and the release is scheduled for December 2nd. So today is Friday. For Tuesday, that&#8217;s also the date when State of the World will happen out of San Francisco live streamed and probably with a few demos from WordPress 6.9. Also with the Outlook for 2026, but for our listeners, the field guide is out. It came a little later than for other releases, but on the Gutenberg Times I also published the WordPress 6.9 source of truth, which has a whole lot of details about what changed on the block editor for end users and also for theme developers, what they can style and all that. So if you want to read it, it&#8217;s 22 to 33 minutes to read through it and it has 5,000 words, over 5,000 words. So that&#8217;s half that. It&#8217;s not a book, but it&#8217;s a book. It&#8217;s almost a book.</p>\n\n\n\n<p><em>JC Palmes:</em> It&#8217;s a lot of words.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That&#8217;s a lot of words. But also screenshots and videos so you can really learn a little bit more about what&#8217;s in the editor. And I also have a ton of links about the developer-related updates. So JC, what are your favorite or exciting updates coming to WordPress 6.9?</p>\n\n\n\n<p><em>JC Palmes:</em> Well, my first, my top one would probably be the terms query improvement. I thought that was still on Gutenberg 22.2. It&#8217;s now on 6.9. I mean it&#8217;s a big deal for me because I&#8217;ve built custom versions of this so many times because you know, the current query block, they&#8217;re not strong enough for what we need. So with that coming into Core, that&#8217;s kind of big.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> The term query block, it almost works like the query block, but not with posts, but with description tags. Yeah, with the terms and also so you can have the title, you can have the count and you can also. The term description was already available as a block, but now you can also put it in a dynamic page where you can list all the good categories and things that you need. Yeah, and it&#8217;s good for filtering I would think, for the huge sites and it also sites.</p>\n\n\n\n<p><em>JC Palmes:</em> Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p><em>JC Palmes:</em> But else the accordion block. I&#8217;ve built so many versions of the accordion block as well. So having that in core just means lesser custom blocks. And you know, it&#8217;s. It&#8217;s going to be consistent markup because it&#8217;s core and I&#8217;m pretty sure better accessibility and styling, so there&#8217;s no surprises.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. I think the accordion block really lives from how you&#8217;re going to style it. So the style variations are much easier to create than custom blocks. On the developer blog, Justin Tadlock actually did a tutorial on how to style the accordion block, and he also has a snippet on how to add the schema for FAQs to the accordion block. So I will share that in the links in the show notes. He explains how to do the theme JSON styling, also the style sheet, as well as what&#8217;s still missing, how you do it in CSS and also how you can do it in a plugin or in a pattern rather. And so it&#8217;s a really good tutorial for someone who kind of starts out and hasn&#8217;t done so many accordion blocks like you did. Yeah. What else are you going to be?</p>\n\n\n\n<p><em>JC Palmes:</em> So another big one for me is I know it&#8217;s not yet in core, it&#8217;s in the plugin still, but the preparation is already in core. It&#8217;s the full iframe preparation for the integration in the post editor.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Why is that important for you?</p>\n\n\n\n<p><em>JC Palmes:</em> Because it&#8217;s going to mean cleaner isolation, fewer CSS leaks, less theme and admin bleed. Bleed through with styles. Because we&#8217;ve been battling that. Yeah. So we&#8217;ve had quite a bit of issues with admin CSS sneaking into custom blocks and vice versa. So this direction makes me very happy.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh, good, good. I&#8217;m glad. The contributors will be happy to hear that, especially Aki and Ria and Ella, who kind of have been working on that for so long. And thank you. I let him know.</p>\n\n\n\n<p><em>JC Palmes:</em> One other thing, I&#8217;m not sure. Did the tiny MCE thing make it into core or will make it into Core?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> No, not yet.</p>\n\n\n\n<p><em>JC Palmes:</em> Oh, not yet.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> I think that it&#8217;s not automatically loaded. That part. Yeah, I think that&#8217;s slated for 7.0.</p>\n\n\n\n<p><em>JC Palmes:</em> Okay, I&#8217;ll wait for 7.0. I&#8217;ll be very happy. Well, I&#8217;m happy now that there&#8217;s ongoing work because in one of my projects, again, I&#8217;ve been fighting with a lot. I&#8217;ve been fighting with tiny MC issues for months, especially when you have more than 10 classic blocks and ACF with tiny MC on top. Everything just starts lagging or breaking in very strange ways. So please make it happen.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So what else is there are any APIs that are coming to 6.9 that you are excited about?</p>\n\n\n\n<p><em>JC Palmes:</em> API. Yeah. Abilities API. That one is interesting. Is that in moving Core? Yeah, it&#8217;s moving core. Yeah. I know. It&#8217;s still kind of experimental. Oh damn. Yeah, I&#8217;m sorry. Really excited.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Good.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. So what I like about this because it&#8217;s now in a kind of unified declarative model with permissions. So plugins are no longer as scatterbrained with capabilities, capability checks everywhere. So this is going to be a cleaner way to define what a user role can do. That&#8217;s more of what I need it for. It&#8217;s one feature that I&#8217;ll probably be playing with a lot more. Data views and routing. Those two.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah, yeah. Data views are on NPM. So if you as a plugin developer or agency developer want to use it, they can be included into your REACT apps. And there&#8217;s not only the data views but also the data forms where you get validation with it and then you can do your modals. For data entry. It is a whole new design system for the admin and for admin pages. It will not be kind of a switch over right away. Yeah. So from. From the site editor to the whole thing like the command palette. It definitely needs a lot of testing and quite a few plugins. For instance, Jetpack uses it. Some screens at WooCommerce use it now and then. I also know that other plugins are actually working with it to use the data view&#8217;s components and design for their plugins.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. Because if this becomes a standard for building admin UIs, we can finally stop reinventing these tables every year and you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Don&#8217;t have to maintain the bulk of the code. So it&#8217;s only the business logic pretty much. And to maintain for you. Anything else that you want to talk about?</p>\n\n\n\n<p><em>JC Palmes:</em> Performance improvements are off the charts. On smarter script and style loading, they&#8217;re now going to load automatically in the footer. Right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p><em>JC Palmes:</em> And then there&#8217;s the fetch FOID that I only learned about earlier today. It&#8217;s kind of interesting. And yeah, the reducement of the layout shift for videos. Oh, caching is now better cache support, especially for multi sites. The multi site cache is going to be. Can be cleared out for the whole site, not just for per site. Right. Yeah, I think that&#8217;s going to be huge. Yeah. We&#8217;ve Been having quite a bit of multi site projects lately, so that&#8217;s going to be. Yeah.</p>\n\n\n\n<p>Birgit Pauli-Haack: So do you see any applications or adoption of the Notes feature, the content top level commenting?</p>\n\n\n\n<p><em>JC Palmes:</em> Well, for content editors that would be a help, I guess. I haven&#8217;t really paid a lot of attention to that part. I paid more attention to the developer parts and more of the UI. Yeah, that. I&#8217;m not sure if I&#8217;ll use it, but probably. Well, I don&#8217;t really take notes, so.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> All right, good, good. So I think that&#8217;s all we&#8217;re going to talk about WordPress 6.9. I talked with Ella about it and I also talked with Sarah about it and with Beth Soderberg. So the last four episodes we have talked about quite a bit about 6.9. So now that it&#8217;s here, it&#8217;s really kind of. We&#8217;re going to be shifting what&#8217;s coming to 7.0, but not in this episode except for what&#8217;s in Gutenberg plugins. </p>\n\n\n\n<p>Before we head into what&#8217;s released, I wanted to point out to our listeners that the WordPress importer has received a major upgrade and that came out of the Playground team. The Playground has this blueprint steps called Import WXR, which actually uses the export of a site that is done exporting with the WordPress importer. But the problem was when you import it to Playground, all the links would break and so the team added a URL replacer to the importer plugin and it not only is a very smart replacer, it does not only replace the page links, but also the URLs or the links that are in navigation blocks that are in background image CSS. And so it&#8217;s, it&#8217;s actually really helping. You don&#8217;t need any other plugin to actually import an export from a website. Yeah. So you can put it into Playground and then have a fully functioning site without having trouble. And if the images are still on the original site, it kind of grabs them and puts them in as well like the normal importer does. But it also replaces the URLs to the image. So it&#8217;s really a major shift on the WordPress importer. I think I abandoned using the importer about four or five years ago for other plugins when I was moving sites. But this seems to be a much smaller way now because it also streams that. So it&#8217;s really fast on the importing part.</p>\n\n\n\n<p><em>JC Palmes:</em> I&#8217;ll have to check that and test it out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, it&#8217;s released now in 0.9.5, and I&#8217;ll share the link in the show Notes to the PR that implemented that URL report. There&#8217;s actually a better way. Adam Chylinski, the brilliant programmer of Playground, has actually a post on the Core blog where he kind of lays out how he did it. </p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s Released &#8211; Gutenberg 22.1</h3>\n\n\n\n<p>All right, now we come to the Gutenberg 22.1 release. Do you want to lead us into what&#8217;s new and what we&#8217;re going to talk about? We start out with a new block. It&#8217;s the core tabs.</p>\n\n\n\n<p><em>JC Palmes:</em> Oh, the core tabs. Yep.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Have you been waiting for that too?</p>\n\n\n\n<p><em>JC Palmes:</em> Hey, yeah, yeah. We do have quite a bit of custom blocks as well that are tabs usually for education sites where they have multiple content that they need to add into tabs. We&#8217;ve used the navigation block before to kind of hack it up and use it as a tabs block and sometimes just very custom tabs block. But this is going to be way better because it&#8217;s now native and core. </p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> All right, okay. Yeah, I have seen a lot of tabs on some websites, but I personally. But I also don&#8217;t build a whole lot of websites with a lot of content. So I was wondering both for the accordion or the tabs block, but I can see that it&#8217;s actually a good use case for vertical navigation where you can then just have use it on the left hand side and then you click on it and opens content on the right hand side and it makes it so much faster because it doesn&#8217;t need a reload. It&#8217;s already on the website.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So yeah, that&#8217;s pretty cool. So what else? </p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p>There are enhancements to the design system for the admin stuff and also the static and lazy routing for the data views. But that&#8217;s all very, very developer-oriented. Okay. So the block library, with this release there comes image prefetching for clicks to expand the images. So if you. If a user or a visitor actually hovers over your gallery or your images and so there is an indication, oh, maybe they want to click on it and so it kind of prefetches the image. So after the click the loading is almost instantaneous. It&#8217;s actually somebody called it cheating, but it&#8217;s not. It&#8217;s kind of anticipating what a visitor wants to do and be helpful. Yeah. The next one is Breadcrumbs. So Breadcrumbs is still in an experimental new block. The same with the tabs block. You have to enable the experiments in the Gutenberg plugin and it now can handle homepage and show the last item attribute and add 404 search and other archive pages to the breadcrumbs if they are in the context of that particular page where it&#8217;s loaded.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah, well, I&#8217;ve built a lot of breadcrumbs as well, so this is going to be great once it&#8217;s. It lands in Core.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, I know. I have used Justin Tadlock&#8217;s breadcrumbs block quite a bit and he has also been part of the team who&#8217;s kind of looking at how that&#8217;s working and if it&#8217;s good ready for Core and all that. So yeah, I really like it. Especially if you&#8217;re large sites like any other, you need breadcrumbs to guide your visitors back to safety, so to speak. If they get too deep into the site they want to. How they get back to it. Yeah, the next block I&#8217;m really excited about. Well, the HTML custom block is already in Core, but what they did now was they added JavaScript and CSS editing to the block. So you can actually.</p>\n\n\n\n<p><em>JC Palmes:</em> That is nice. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Build your own little app in one block kind of thing. So, yeah, it&#8217;s pretty cool.</p>\n\n\n\n<p><em>JC Palmes:</em> That&#8217;s going to get a lot of use for me just for playing around.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yeah. Well, you can do some great prototypes with that and then get the code in the right places. But yeah, it&#8217;s really cool. For those who are looking for a Twitter embed, it will be replaced by the X embed icon in text. I think after three years it&#8217;s probably time. Yeah.</p>\n\n\n\n<p><em>JC Palmes:</em> Once this hits Core, I&#8217;ll have to remove the function that we&#8217;ve added for that particular feature.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Do you want to take the next one?</p>\n\n\n\n<p><em>JC Palmes:</em> It&#8217;s collaboration of the notes that I don&#8217;t use, but. Right, right, definitely interesting. And I see it being used for collaboration for those use notes, but not for me.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> With this release that comes. I need to put it this way. So normally you want to disable things also when there are new features, there are always some people who need it also to be disabled, but it&#8217;s also some. You don&#8217;t want the notes to show up in distraction free mode or in the code editor. So this release in the Gutenberg 22.1, for those two things, notes are disabled. There&#8217;s also keyboard shortcuts and support for tree navigation and form submission shortcuts and all that. But those are the two outstanding changes to the notes that won&#8217;t be in 6.9. Well, let me verify that. No, it was backported both of them were backported to the release candidate. So it&#8217;s in 6.9.</p>\n\n\n\n<p><em>JC Palmes:</em> Maybe I&#8217;ll check it out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, absolutely do. Yeah, you want to know what your customers are doing with it. And there&#8217;s also a def. Go ahead.</p>\n\n\n\n<p><em>JC Palmes:</em> Oh, sorry. Go ahead. Yeah. I&#8217;m just going to say that it&#8217;s good that they also added in a. An ability to disable it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And there is a dev note by Adam Silverstein, who was one of the instrumental developers there. There were also contributors from Asia there. And so there was a whole team building on that. The team was from the company Multidots and they have been working on it for probably a year. And the developer note by Adam Silverstein is really very specific on how it was implemented. If there are new filters and hooks to figure out more about the dev notes, if you need additional features and how it all kind of came together, what&#8217;s the basis of it. And so it&#8217;s a really interesting note. If you are a developer and working with WordPress. The next thing is the text area control. I like that you now can add to the text area in. But that&#8217;s for the data forms, I think. Yeah, no, it&#8217;s in. Yeah, it&#8217;s in the components actually. So it can be in the editor as well. If you have a text area that you now can add a minimum height to it. So it can also grow from there. Yeah. Do you want to do the next bolded one?</p>\n\n\n\n<p><em>JC Palmes: </em>Yeah. Okay. So the color picker also got a really nice upgrade. You can now paste an entire color value directly into it and it&#8217;s in any format. Right. So Hex, RGB, HSL. Can it do named colors? It can, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> No, I don&#8217;t think so.</p>\n\n\n\n<p><em>JC Palmes:</em> Oh, that would be awesome.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> That would be awesome.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, we need to try it out. Yeah. To do. If you can do lime. Lime yellow.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah, yeah, yeah. I think what&#8217;s great is that, you know, you don&#8217;t have to click into a specific input, just paste it. Enter inside the picker. Yeah, I had to sometimes because when you do colors, right. For websites and you have not added a specific color to the color picker for the theme, I have this browser extension where I just hover on the color and get the value and then the color picker would not. I do not like the value that I input into it. So having the ability to add the entire color value directly is going to save me a lot of time and doing that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And also it avoids typos. Yeah, but. Oh, yeah, yeah. I&#8217;ll look up colors all the time. Yeah. And then want to just hover the hex value and then post it in. But yeah, you have to. It&#8217;s good. </p>\n\n\n\n<p>So the term name, the extensibility on the term name, I&#8217;m not sure it&#8217;s really extensibility, but it adds the level options for the heading levels and I think that was in 6.6 where that actually made around because the extensibility is that you can control the levels that a heading can have. So normally when you use a heading heading block it starts with H2 and you always need to use the drop down to change it to H3. Yeah. And with the level options you can actually control that through theme JSON. Or to only do term level being H3 all the time. Yes. Without having to change it every time you use the heading level.</p>\n\n\n\n<p><em>JC Palmes:</em> A very nice improvement for content only patterns is normally when you&#8217;re editing a content only pattern, a lot of the design controls are hidden because you know, the structure is locked. So. And that&#8217;s the whole point. One of the annoying parts of it is trying to tweak colors.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So you can do it now.</p>\n\n\n\n<p><em>JC Palmes:</em> So. Yep, you can do it now. That&#8217;s going to be a huge experience for. Well, for content writers.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p><em>JC Palmes:</em> Really.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And you don&#8217;t have to enable it. Yeah. With custom code either.</p>\n\n\n\n<p><em>JC Palmes:</em> Anyone is able. Yeah, exactly.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Bug Fixes</h3>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So we come now to the bug fixes and there are a ton of bug fixes. Yeah. Don&#8217;t get me wrong, there are also a ton of them that were backported to WordPress 6.9. And for the accordion block, it adds CSS for the default styles. It also has some font style inheritance for button and inner text blocks. I think that that&#8217;s a little bit of a red flag. No, not red flag, but it was a little bit. The benefit from the accordion block in core was that it didn&#8217;t have any opinion on style. But the problem was that if you use the accordion block in a classic theme, then it wouldn&#8217;t have any styling unless you put it in a classic theme. So there was one idea was to just put some default styling in, but they were so restrictive that they can&#8217;t be overwritten by theme JSON values for another theme. So that kind of was a little bit of a problem. I&#8217;m not quite sure how they solved it or if they&#8217;ve solved it before the next version comes out, before the 6.9 comes out, but that&#8217;s kind of part of it. And the inner blocks of buttons or text blocks, they inherit the style of the above accordion block. So it&#8217;s kind of that.</p>\n\n\n\n<p><em>JC Palmes:</em> Okay, so right now. Well, prior to this fix, it&#8217;s not inheriting the font style from the heading or the other way around.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Well, it was the font styles for the. The font style from button, accordion header, toggle. That&#8217;s the whole heading. It didn&#8217;t go to the next header, I think. Yeah. And it&#8217;s a typography appearance. Yeah, it&#8217;s fixed. Yeah. Okay.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. Embeds, there&#8217;s beds to go and shrink. That&#8217;s going to be helpful.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. So the embed blocks, they were pretty restrictive in their styling. And now when they&#8217;re inside a flex group block, they can grow and shrink with the size of the group block.</p>\n\n\n\n<p><em>JC Palmes:</em> Together with the group block.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. That is really cool.</p>\n\n\n\n<p><em>JC Palmes:</em> Because less CSS.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, less CSS and also increased responsiveness. Right. If the group graph gets smaller, then also the embed gets smaller and it doesn&#8217;t bleed into the template.</p>\n\n\n\n<p><em>JC Palmes: </em>Yeah. Does it keep the aspect ratio? I hope it does.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Well, I think that&#8217;s something to be tested and kind of figured out. Yeah, I haven&#8217;t tried it yet.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah, me too.</p>\n\n\n\n<p>With one of the things that I kind of really hate about. Not hate. Hate is such a strong word. I don&#8217;t like about the embed block is you know when you have a video and then you shrink it and it&#8217;s not shrinking and it. If it does shrink, it loses the aspect ratio.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. So the next thing is more like CSS specificity for the text alignment classes. And also I think that corrects something that was done before that the text alignment and paragraph would go away. And now it kind of. Now it comes back and with a better robust CSS styling. And then for the heading block, the background padding was pretty strong out of the box. Yeah. And now they kind of are more specific to the block. So also more styling freedom for the theme developers. Right.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. Those quality of life improvements.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Absolutely. Yeah. And I think there was a question from Twenty Twenty-Two.1. Yeah. The routing part is still all for the data use is still all in experiments. So you need to enable those. If you want to play around with that, if you want to test it, it&#8217;s playing around seems so unserious. Yeah. But if you really want to test it, if you can use it already. So, yeah, that was it. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 22.2</h3>\n\n\n\n<p>And we come to Gutenberg 22.2. We are talking through the changelog of the release candidate 22.2 will come out on December 3rd, so one day after 6.9, but it&#8217;s normally that the release candidate is pretty solid in what&#8217;s coming in into the final release, just for testing purposes that they actually do a release candidate one. So this one is big. It has 161 pull requests from 49 contributors, 4 of which are first timers. Congratulations to your first contribution. And the release focuses more on performance and block editor polish and has a series of accessibility developer experience improvements. But it&#8217;s intended to test ahead with that. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p>There were some enhancements again through the breadcrumbs block. It&#8217;s kind of really fantastic how that is going to grow and be feature rich when it will come to WordPress 7.0, but you definitely try it out. It now has an archive link if there&#8217;s enabled in post and can do attachment handling and post type archive links and support a pagination as well. So it&#8217;s kind of really cool. What else is in there?</p>\n\n\n\n<p><em>JC Palmes:</em> The cover now supports background videos from embeds and yeah, that&#8217;s a major upgrade for the cover block because until now background videos only work if you uploaded a file directly to the media library. And now with this new update you can use embedded videos like YouTube, Vimeo and other or supported embed sources.</p>\n\n\n\n<p><em>Birgit Pauli-Haack: </em>Yes. That&#8217;s huge. Pretty much, yeah.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah, that&#8217;s huge. It used to be a custom block for us and having the ability to do this when it lands on core is going to be really huge.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Here goes the custom block again out.</p>\n\n\n\n<p><em>JC Palmes:</em> Exactly.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>JC Palmes:</em> And I&#8217;m absolutely happy to remove custom blocks and move into native core blocks when it&#8217;s there because it just did the improvement and the quality and the markup just consistent and it&#8217;s really nice when you know, things work together.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And especially the custom block you don&#8217;t want to have. Not every shared hosting has. You can upload videos well or if they&#8217;re uploaded, they&#8217;re rather pedestrian I would say, because they need to be downloaded and so if you use an embedded one. So the YouTube or the Vimeos of the space are actually hosting your video and it. It doesn&#8217;t take all the bandwidth and all that. So it&#8217;s a really cool quality of life enhancement as well. For those who don&#8217;t have so much oomph on the hosting. Yeah, yeah.</p>\n\n\n\n<p><em>JC Palmes:</em> I mean this should have existed years ago. Then again.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Well, there are a lot of things that should have been fixed a year or two ago. Yeah. There&#8217;s also a new enhancement for the math block so you could style of course the text of it, but not the full block around it. And that has now style options as well. So you can change the background and the dimension and the border and the red border radius. It&#8217;s all available now for the math outside the math block. It&#8217;s not coming to 6.9. That&#8217;s for the future release, but it&#8217;s test it out and see how it comes to pass. And the next one you would like, you&#8217;d like that.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah, I like this. A lot less CSS and markup for me. So that button block got a big improvement. And theme builders, you know, theme builders like me, every one of us have been asking for forever because we can now style pseudo states like hover focus active focus invisible directly in theme JSON for the button block and its variations. Because before this, the only reliable way to style hover or focus styles states, I mean, was to either drop in custom CSS into theme JSON or in a custom CSS file. Yeah, style sheet. That kind of great idea of keeping design controls inside theme JSON as much as possible. I would want to keep design controls inside theme JSON. But with this improvement, we can now design these states that the same way that redefine normal button styles and variations. The outline button can now have hover states too.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, yeah, yeah. The next two items are about the data views. There are a lot more in the data views section of the changelog, but there are two things. One is because it points out that you now can insert certain information into the table. So the table column header allows you now to add columns left or right of your location that goes into that. The data view screens are much more customizable out of the box than any admin page in the current WordPress admin would do. But I really like that part where you can say where the columns go and all that. So you have a real more control over it as a user or as a site owner.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. I also like the new layout option, the activity layout, because that&#8217;s basically a timeline view. Right. It&#8217;s similar to the list layout but with styling and behavior tuned for things like say revisions logs, events, audits, anything chronological. Exactly. You get a vertical timeline track on the left, almost smaller media inline primary actions, and really a clearer focus on the event field that anchors each entry is disabled though. But I guess it&#8217;s kind of like a timeline view, so it really shouldn&#8217;t jump around. And that. That makes sense that the cool part, I think it&#8217;s that it&#8217;s not just visual. The layout has its own interaction rules. Only the title is clickable. The whole row ssn&#8217;t. And the keyboard navigation is handled differently because the UI behaves differently than a list or a table. It&#8217;s a timeline. Yeah, it&#8217;s, it&#8217;s. I think it&#8217;s one of those layouts where once you see it, you realize that WordPress has needed it for years, a long time.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, yeah, yeah. It&#8217;s definitely for historical data that you would want to have in some kind of a layout. Yeah. So cool. Thank you for pointing that out. We&#8217;re coming now to the pattern section and the PR says add edit section to the list view instead of ungroup. So there is. I think it&#8217;s still an experiment, I&#8217;m not quite sure. But the pattern padding management kind of changes a little bit. If you have a section that is. And we come to add what is a section block in the list view, those section blocks are now available to be edited and not that you have to unravel the pattern if you want to edit it. So that&#8217;s pretty cool. So what are section blocks? And I asked some developers who had been working on it about it and I asked and looked at the documentation and then the section is determined by the section block selector. Well, that is kind of if the. What is the is section block selector. Yeah. So it&#8217;s a pattern, a template part or a block that has a template lock on it that says content only. And so it moves around and can be edited, not edited, but styled in its whole. The content creator doesn&#8217;t have a whole lot of controls about it. It&#8217;s a special block that acts actually as a container with specific editing restrictions, primarily used in template and site editing context. So. So that was a new terminology for me to think about.</p>\n\n\n\n<p><em>JC Palmes:</em> It&#8217;s new to me too, but with the way that you&#8217;ve explained sections, I&#8217;ve only really called it lock patterns.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh, okay. Yeah. Locked from. You can edit.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah, you can edit the content, but not the. The way it looks. Yeah, the design. Yeah. The structure.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And there&#8217;s a whole lot of effort around that content only lock to kind of bleed into other places, be it in pattern, be it in the editor. How can you switch from one to the next? You need to point out that those are actually content only locked ones. So we will see a lot more about that in the coming months for this particular content only modals. You know, so I&#8217;m kind of. This is pretty much a preparation for that in terms of what particular PRs will come about that?</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah. I mean it&#8217;s, it&#8217;s more of a guardrail when you don&#8217;t want styled structured patterns to just explode because it gives the option to ungroup it and then clients come back and say that it&#8217;s not working. So this is good. It&#8217;s more predictable behavior for a section.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Client section now cloning a section now that&#8217;s one thing. It also has a, certain pattern endpoint so you could do pattern wide changes to things. We saw it with 6.7 in the zoom view. When you were going through the Twenty Twenty-Five theme and go into Zoom view, you were able to add a pattern but then change the color of it because it would loop through the various color variations of your style variation. That totally. Yeah. I was totally amazed by that. To get new colors in there and you don&#8217;t have to worry about things. But that&#8217;s kind of the idea about it.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> So. And then there were really, really small changes to the block editor. It now has a card icon.</p>\n\n\n\n<p><em>JC Palmes:</em> Thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> It also supports the width and the dimensions. So you can control that for padding. Yeah. And also the text also has a justify attribute now or control. So those are really quality of life things. And they were. Yes, until you use them you don&#8217;t know you. You miss those things. But. Yeah, but that is how you use them.</p>\n\n\n\n<p><em>JC Palmes:</em> By editing a few thousand pages.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. Yeah.</p>\n\n\n\n<p><em>JC Palmes:</em> Thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> And I think that was everything that came. Well, we want to talk about Twenty Twenty-Two.2. Is there anything else that you found?</p>\n\n\n\n<p><em>JC Palmes: </em>I think we&#8217;ve talked about the ones that I really find interesting for the other functions, new stuff. They can read the build guide. But those that we&#8217;ve talked about are really the ones that jump out to me and I find really interesting or very helpful for my workflow.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah, wonderful. Excellent. I&#8217;m glad that we got that. </p>\n\n\n\n<p>So before we end the show, I want to point out that there&#8217;s a state of the world coming next week with the keynote. That&#8217;s the annual keynote of Matt Mullenweg and it coincides for the first time with a major release of WordPress, the 6.9 release. And it will be live-streamed from San Francisco. I think the tickets for the in-person meeting have already been sold out for a while. But you can follow along on the live stream on YouTube. It starts at 20 or 8pm UTC. So it might be for our AAPAC contributors and WordPress users, it&#8217;s a little late in the day. It&#8217;s also almost past my bedtime in Europe because San Francisco is nine hours away from me. Yeah. So there&#8217;s this time zones quagmire that we always have to deal with. But if you see it on Tuesday or on Wednesday, I don&#8217;t think it changes in between. And there&#8217;s nothing really urgent in there. So take the time and call it on the rerun.</p>\n\n\n\n<p><em>JC Palmes:</em> Yeah, I&#8217;ll probably watch it live because I&#8217;m in that time zone.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Oh, you&#8217;re in that time zone. Yeah. Yeah. </p>\n\n\n\n<p>As always, our show notes will be published on GutenbergTimes.com podcast this is episode 125 &#8211; 125, and if you have questions, suggestions or news or comments. Yeah. If you want us to include them, send them to <a href=\"http://changelogatgutenburgtimes.com\">changelogatgutenburgtimes.com</a> that&#8217;s <a href=\"http://changelogatgutenburgtimes.com\">changelogatgutenburgtimes.com</a>, and I say huge thank you to JC Palmes to come on the show and talk through those two releases with me and share what you are looking forward to for 6.9 and also share all the good work that is from WebDev studios that can help other agencies to also streamline their processes. </p>\n\n\n\n<p>Thank you so much, JC, I hope you have a wonderful day or night and all the listeners. Thank you for listening. </p>\n\n\n\n<p>Bye bye.</p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 30 Nov 2025 09:19:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: Werner Predictions\";s:7:\"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=150712\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://ma.tt/2025/11/werner-predictions/\";s: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:985:\"<p><a href=\"https://www.allthingsdistributed.com/\">Werner Vogels</a>,  CTO at Amazon, <a href=\"https://www.allthingsdistributed.com/2025/11/tech-predictions-for-2026-and-beyond.html\">boldly publishes his 2026 tech predictions</a>. While you&#8217;re on his blog, take a moment to enjoy his essay, <a href=\"https://www.allthingsdistributed.com/2025/10/better-with-age.html\">Development gets better with Age</a>. Werner and I first crossed paths almost 20 years ago at tech conferences like GigaOm&#8217;s Structure, LeWeb, Future of Web Apps, O&#8217;Reilly Etech, and TheNextWeb. Though we don&#8217;t see each other often, I have enjoyed following his work and writing over the years, and it delights me that he&#8217;s still learning and sharing with the same vim and vigor I remember from when we first met. I think he might have been the first person to introduce me to the works of Richard Feynman <a href=\"https://www.bbc.co.uk/programmes/b00ts5mm\">through a BBC program</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:\"Sun, 30 Nov 2025 02:07:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:18;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"Gutenberg Times: Livestreams on WordPress 6.9, WordPress Importer Improved, MCP Adapter and more — Weekend Edition #351\";s:7:\"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=43206\";s:7:\"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:125:\"https://gutenbergtimes.com/livestreams-on-wordpress-6-9-wordpress-importer-improved-mcp-adapter-and-more-weekend-edition-351/\";s: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:31163:\"<p>Hi there, </p>\n\n\n\n<p>In case you celebrated it, I hope you had a wonderful Thanksgiving holiday, lots of turkey, sweet potatoes, beans, stuffing, gravy and pumpkin pie. Or any kind of pie really <img alt=\"🦃\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f983.png\" style=\"height: 1em;\" /><img alt=\"🍁\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f341.png\" style=\"height: 1em;\" /><img alt=\"🥧\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f967.png\" style=\"height: 1em;\" />. And lots of love and laughter around your family and friends. </p>\n\n\n\n<p>I just want to give a huge shoutout to all the WordPress contributors who teamed up to roll out this next big version of WordPress for the hundreds of millions of websites out there and all their users and visitors. Every update is a big deal and only happens because of teamwork, good vibes, honesty, and trust. Not everyone who contributes is a coder; some work on documentation, translate stuff into loads of languages, create tutorials, and so much more. WordPress 6.9 is dropping on Tuesday if everything goes smoothly!</p>\n\n\n\n<p>Other contributors have already started on the next version, 7.0. We don&#8217;t know yet exactly when it will come out. In <a href=\"https://make.wordpress.org/core/2025/11/26/core-committers-check-in-november-2025/\">their last check-in meeting</a> Core committers discussed a release date in March or April of 2026. They are also thinking of going back to three releases per year. </p>\n\n\n\n<p>Have a splendid weekend ahead, and I am so grateful that you are here. Your presence makes me want to write every week. Be well.</p>\n\n\n\n<p>Yours, <img alt=\"💕\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>My team mate, <strong>Jonathan Bossenger</strong> and I were on this week&#8217;s panel for <a href=\"https://wpbuilds.com/2025/11/25/this-week-in-wordpress-356/\"><strong>This Week in WordPress #356 episode</strong></a>, together with <strong>Taco Verdonschot</strong> and <strong>Nathan Wrigley</strong>. It includes &#8220;Birgit Pauli-Haack gives a whirlwind tour of her epic <a href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/\"><em>WordPress 6.9 Source of Truth</em></a> &#8220;. There was a lot more of course. </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://wpbuilds.com/2025/11/25/this-week-in-wordpress-356/\"><img alt=\"\" class=\"wp-image-43222\" height=\"366\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-27-at-11.31.51.png?resize=652%2C366&#038;ssl=1\" width=\"652\" /></a></figure>\n\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Videos and posts about WordPress 6.9 release</h2>\n\n\n\n<p><a href=\"https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-3/\"><strong>WordPress 6.9 Release Candidate 3</strong></a> is now available! The <a href=\"https://make.wordpress.org/core/2025/11/25/wordpress-6-9-field-guide/\"><strong>WordPress 6.9 Field Guide</strong></a> has arrived, too.</p>\n\n\n\n<p><strong>Rae Morey</strong>, The Repository has the skinny for you in <a href=\"https://www.therepository.email/wordpress-6-9-rc3-arrives-as-field-guide-drops-and-final-release-nears\"><strong>WordPress 6.9 RC3 Arrives as Field Guide Drops and Final Release Nears.</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Hector Prieto</strong> published the Dev Note <a href=\"https://make.wordpress.org/core/2025/11/25/miscellaneous-editor-changes-in-wordpress-6-9/\"><strong>Miscellaneous Editor Changes in WordPress 6.9</strong></a>, highlighting various refinements to the block editor. The release improves keyboard navigation, selection, and focus handling, adds small UI polish, and refines patterns and templates behavior. It also updates APIs and deprecations to keep block development consistent, enhances accessibility and stability, and smooths authoring flows, ensuring theme and plugin authors can better integrate with the evolving editor experience.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Nick Diego</strong> and <strong>Ryan Welcher</strong> livestreamed their <strong><a href=\"https://www.youtube.com/watch?v=gVaEg_m6uak\">WordPress 6.9 Walkthrough</a>.</strong> They guided viewers through the key updates arriving in WordPress 6.9 ahead of its December 2 release. </p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\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\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his livestream this week,<strong> Jonathan Bossenger</strong> <a href=\"https://www.youtube.com/watch?v=iuvs7hm0LRI\"><strong>tested the Block Bindings coming to WordPress 6.9</strong></a>. He tested the new enhancements in the date and image blocks, as well as custom source registration. Throughout the stream, Bossenger troubleshot and documented his process, exploring how these updates can lay the foundation for future developments. You can join him as he navigates through the intricacies and potentials of these new WordPress features!</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\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\n</div></figure>\n</div>\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=7QgXXYCjz-U\"><strong>WordPress 6.9 New Features</strong></a>, <strong>Pascal Claro</strong> demonstrates all new features for the Block editor coming to a WordPress instance near you. </p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\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\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Maruti Mohanty</strong> held a <em>Learn WordPress</em> workshop on <a href=\"https://wordpress.tv/2025/11/27/how-to-prepare-your-wordpress-site-for-wordpress-6-9/\"><strong>How to Prepare Your WordPress Site for WordPress 6.9.</strong></a> The recording is now available on WordPressTV. You will learn how to use the Beta/RC releases to test your site for the upcoming releases. This will be a practical walkthrough to build your staging, test for compatibility, and plan a safe rollout.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his post <a href=\"https://rtcamp.com/blog/wordpress-6-9-release-features/\"><strong>The Foundation for AI-Powered, Composable, and Editor-Friendly Websites</strong></a>, <strong>David Levine</strong> covers the WordPress 6.9 release and its focus on incremental yet impactful improvements to the site editor and performance. The post highlights refined pattern management, better style controls, and workflow enhancements for building and editing layouts. </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://make.wordpress.org/core/2025/11/10/abilities-api-in-wordpress-6-9/\">Abilities API</a> will launch with WordPress 6.9. TrewKnowledge has published <a href=\"https://trewknowledge.com/2025/09/29/wordpress-abilities-api-a-plain-english-guide-for-builders-publishers-and-product-teams/\"><strong>a simple guide for builders, publishers, and product teams.</strong></a> It explains how “abilities” bring together capabilities and permissions in the editor and admin, allowing for better control over tasks. With examples and clear advice, the article helps agencies and product teams create safer workflows, customize roles, and improve user experiences.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Rae Morey</strong>, The Repository, reports on how <a href=\"https://www.therepository.email/wordpress-6-9-to-introduce-notes-bringing-asynchronous-collaboration-to-the-post-editor\"><strong>WordPress 6.9 to Introduce Notes, Bringing Asynchronous Collaboration to the Post Editor. </strong></a>Notes let users comment on specific parts of content, reply in threads, and mention teammates without being online together. The feature builds on Blocks and Phase 3 collaboration goals, aiming to replace scattered feedback via email or chat with contextual, in-editor discussions that improve editorial workflows and multi-author content reviews.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Codeable Expert <strong>James Roberts</strong> also covered the release for his co-workers in <a href=\"https://www.codeable.io/blog/wordpress-6-9-what-to-expect/\" rel=\"noreferrer noopener\" target=\"_blank\"><strong>WordPress 6.9: What To Expect</strong></a>, outlining key updates to the Site Editor, patterns, and design tools that make building full sites more intuitive. The article also explains what agencies and clients should do to prepare, test, and safely adopt the new features.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"gutenberg-and-other-wordpress-updates\">Gutenberg and other WordPress updates</h2>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p><img alt=\"🎙\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-125-wordpress-6-9-gutenberg-22-1-and-gutenberg-22-2/\">Gutenberg Changelog #125 – WordPress 6.9, Gutenberg 22.1 and Gutenberg 22.2</a> with <strong>JC Palmes</strong>, WebDev Studios</p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-no-vertical-margin\"><img alt=\"Gutenberg Changelog 125 with JC Palmes and host Birgit Pauli-Haack\" class=\"wp-image-43283\" height=\"186\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-28-at-18.19.29.png?resize=652%2C186&#038;ssl=1\" width=\"652\" /></figure>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div></div></div>\n\n\n\n<p>In his video, <a href=\"https://www.youtube.com/\"></a><a href=\"https://www.youtube.com/\"></a><a href=\"https://www.youtube.com/watch?v=fpg-Hkr5HeM\"><strong>WordPress 6.9 and More: Key Updates for Developers</strong></a>, <strong>Ryan Welcher</strong> gives you <em>TL:DR </em>of the latest <a href=\"https://developer.wordpress.org/news/2025/11/whats-new-for-developers-november-2025/\">What’s new for developers? (November 2025)</a> post from the WordPress Developer Blog.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\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\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://github.com/WordPress/gutenberg/releases/tag/v22.2.0-rc.1\">Gutenberg 22.2 RC 1</a></strong> is now available for testing. It comprised 161 Pull Requests by 49 contributors, four of whom are first-timers. The release focuses on performance, block editor polish, and a series of accessibility and developer experience improvements. It is intended for testing ahead of the stable 22.2.0 release on December 3 and is not recommended for production sites.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In the next <strong>Gutenberg Changelog episode</strong>, I had a chat with <strong>JC Palmes</strong>, the principal technical manager at WebDevStudios, about how their team has totally jumped on the Blocks and block themes bandwagon. It&#8217;s been a game changer for their workflow and super helpful for their clients&#8217; editorial teams, too. We also shared favorites features of the upcoming  WordPress 6.9 release and the latest Gutenberg updates, 22.1 and 22.2. So, keep an eye out for the episode arriving in your favorite podcast app this weekend!</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Gutenberg Changelog 125 with JC Palmes and host Birgit Pauli-Haack\" class=\"wp-image-43283\" height=\"186\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-28-at-18.19.29.png?resize=652%2C186&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Have you been avoiding the WordPress Importer when moving sites? It received a major enhancement from <strong>Adam Zieliński</strong> and other contributors. Zieliński published the announcement on the Core Make Blog: <a href=\"https://make.wordpress.org/core/2025/11/27/wordpress-importer-can-now-migrate-urls-in-your-content/\"><strong>WordPress Importer can now migrate URLs in your content</strong></a>. This enhancement made it feasible to us the WordPress importer for the Playground blueprint step <code>importWxr</code> and it is now also compatible with content built in block themes, as URL in navigation blocks and image references in background-image css are also converted to the new site. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">WordPress for #nocode site builders and owners</h2>\n\n\n\n<p>If you need to add <strong>FAQ schema</strong> to your Accordion Block, Andrew Viney, developer from Bristol, UK, has you covered with his <a href=\"https://github.com/itsViney/accordion-faq-schema-toggle\"><strong>accordion-faq-schema-toggle</strong></a> plugin.</p>\n\n\n\n<p>If you are a developer yourself, you can use Justin Tadlock&#8217;s <a href=\"https://developer.wordpress.org/news/snippets/schema-org-microdata-for-accordion-block-faqs/\"><strong>Snippet: Schema.org microdata for Accordion block FAQs</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://x.com/lovemarshall\">Mohammad Shoeb</a></strong> announced that <strong><a href=\"https://wpmozo.com/wpmozo-blocks-plugin-version-1-6-five-new-blocks/\">the free WPMozo Blocks Plugin for WordPress just got five new Blocks</a>.</strong> The update introduces Hero Heading, Logo Showcase, Notice, Highlight Text, and Flipbox blocks, focused on speed, flexibility, and visual appeal. These blocks support layout and style customization, icons, gradients, hover effects, and responsive controls, enabling users to build standout sections, alerts, logo grids, and interactive content without performance loss or complex configuration.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Wes Theron</strong> published another nice tutorial for content creators on YouTube: <a href=\"https://www.youtube.com/watch?v=Fqb5bfulUA4\"><strong>How to add social icons to your WordPress site</strong></a>. He shows &#8220;you exactly how to add and customize social icons on your WordPress.com site, making it easy for visitors to connect with you across all your social platforms.&#8221; </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Designing Block Themes </h2>\n\n\n\n<p><strong>Bud Kraus</strong> wrote a tutorial on <a href=\"https://kinsta.com/blog/fluid-typography/\"><strong>Scaling typeface gracefully with fluid typography</strong></a> that explains how to make font sizes adjust smoothly to different screen sizes using CSS functions like clamp(). He elaborates on how to use continuous scaling instead of fixed breakpoints, which helps improve readability and minimizes size jumps. The article provides examples for headings and body text, covers design tips, and shows how to implement fluid typography in WordPress themes.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://x.com/iamkarolk\">Karol Król</a></strong> <a href=\"https://www.linkedin.com/posts/karolkrol_how-to-export-your-block-theme-changes-to-activity-7399369337243045888-aAnU?utm_source=share&amp;utm_medium=member_desktop&amp;rcm=ACoAAAAkKaoBHI9qqM4OcmXfJb1QeGFMlLI6W4o\">mentioned</a> he was inspired by <a href=\"https://wordpress.tv/2025/09/30/streamlined-block-theme-development-using-wordpress-playground-and-github-for-no-code-version-contr/\">my talk </a>at WordCamp Gdynia to explore the Create Block theme plugin some more. He created this tutorial on how to <strong><a href=\"https://www.youtube.com/watch?v=cKgn4y4nMEs\">easily transfer Block Theme changes to another WordPress site</a></strong></p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\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\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Elliot Richmond</strong> created a <a href=\"https://elliottrichmond.co.uk/block-theme-cheat-sheet-for-wordpress/\"><strong>Block Theme Cheat Sheet for WordPress</strong></a> that collects key block theme concepts, file structure, and template examples in one place. It outlines essential <code>theme.json</code> settings, common templates and template parts, and useful block patterns for building modern block themes. The resource is designed as a quick reference for developers who want a practical, copy‑and‑paste style guide while learning or refining their block theme workflow.</p>\n\n\n<div class=\"ng-block-b778b2f4f42b19a6 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #fdfcea; border-radius: 12px;\"><div class=\"ng-block-4820fa2e484cef28 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" rel=\"noreferrer noopener\" target=\"_blank\">&#8220;Keeping up with Gutenberg &#8211; Index 2025&#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. 2024 on. Updated by yours truly. </p></div></div></div></div>\n\n<div class=\"ng-block-91a73757899cf306 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>The previous years are also available: <br /><strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/\"><strong>2024</strong></a></p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks </h2>\n\n\n\n<p><strong>Bryce Culp</strong> of WebDev Studios created <a href=\"https://webdevstudios.com/2025/11/25/a-developers-guide-the-future-of-the-wordpress-gutenberg-block-editor/\"><strong>A Developer’s Guide: The Future of the WordPress Gutenberg Block Editor</strong></a>. He explains modern block patterns, theme architecture, and tooling, emphasizing best practices for performance, reusability, and accessibility. The guide helps developers transition from classic approaches to a Gutenberg-first mindset, leveraging React-based blocks, block.json configuration, and evolving WordPress APIs to build scalable, future-ready experiences.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jos Velasco</strong>, DreamHost, found a way to <a href=\"https://josvelasco.com/simplifying-wordpress-plugin-development-with-telex/\"><strong>simplify WordPress Plugin development with Telex</strong></a> and shared his workflow in this post. He has some tips and consideration on how to best work with the AI Block builder. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-s-new-with-playground\">What&#8217;s new with Playground</h2>\n\n\n\n<p>Fellyph Cintra announced that <a href=\"https://make.wordpress.org/playground/2025/11/24/debugging-with-xdebug-is-now-available-in-wordpress-playground/\"><strong>Debugging with Xdebug is now available in WordPress Playground</strong></a> letting WordPress developers better understand what’s happening when something breaks. Now you can pause WordPress, look at what’s going on, and move through each step of the process in a browser. It works with simple tools or code editors, needs little setup, and is great for learning, testing ideas, and fixing problems more easily.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Cintra also published <a href=\"https://make.wordpress.org/playground/2025/11/13/playground-cli-adds-imagemagick-soap-and-avif-support/\"><strong>Playground CLI, adds ImageMagick, SOAP, and AVIF support</strong></a>. These additions make it easier to work with images, talk to other online services, and test modern image formats in temporary WordPress sites. Together, they help developers and site builders try more real-world features without complex setup on their own computers.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The latest article by <strong>Fellyph Cintra</strong> reveals that Playground allows developers to create temporary sites with specific <a href=\"https://make.wordpress.org/playground/2025/11/26/preview-gutenberg-development-branches-in-your-browser/\"><strong>Gutenberg branches in their browser</strong></a>. You can use special Playground URLs or blueprints to access nightly or feature branches, test new editor features safely, share consistent environments, and give feedback earlier in the Gutenberg development process.</p>\n\n\n<div class=\"ng-block-074521e498a78827 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #f8f8f8; border-radius: 8px;\"><div class=\"ng-block-29487f80e62474f0 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><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.</p></div></div></div></div>\n\n<div class=\"ng-block-33a1b83c3bb2c8bf wp-block-newsletterglue-image ng-block size-full is-resized\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;\"><a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\"><img alt=\"\" class=\"wp-image-42874 ng-image\" height=\"45\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2025-11-15-at-12.06.44.png?resize=196%2C45&#038;ssl=1\" style=\"border-style: none; border-color: transparent;\" width=\"196\" /></a></div></div></div></div>\n\n<div class=\"ng-block-c7bf19370d6b0eb9 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience.</p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<h2 class=\"wp-block-heading\" id=\"ai-in-wordpress\">AI in WordPress</h2>\n\n\n\n<p><strong>Jeff Paul</strong> announced <a href=\"https://make.wordpress.org/ai/2025/11/27/announcing-the-ai-experiments-plugin-v0-1-0/\"><strong>AI Experiments Plugin v0.1.0</strong></a> . Team rep in the AI Team, <strong>James Le Page</strong> <a href=\"https://x.com/jameswlepage/status/1993860331609677893\">wrote</a> on X (former Twitter) &#8220;This is a pretty big release. It&#8217;s the first time all building blocks are used together and represents a really great reference for developers that surfaces in features that you can use right now.&#8221;</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://x.com/galatanovidiu\"><strong>Ovidiu Galatan</strong></a> posted the <a href=\"https://make.wordpress.org/ai/2025/11/24/release-announcement-mcp-adapter-v0-3-0/\"><strong>Release announcement: MCP Adapter v0.3.0</strong></a>! This update brings official WordPress support for the Model Context Protocol. Version 0.3.0 is all about making things smoother with transport, better observability, and handling errors. They’ve unified the HTTP transport, put together a standard way to deal with <code>WP_Error</code> for MCP error responses, and revamped the observability handlers. Plus, they’ve standardized hook names, rolled out some detailed migration docs, and squashed some bugs, making sure everything works nicely with Abilities API v0.4.0 as part of WordPress’s awesome <a href=\"https://make.wordpress.org/ai/2025/07/17/ai-building-blocks/\">AI Building Blocks</a> collection!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On his blog, <strong>James Le Page</strong> shared a two-part series about the Abilities API. The posts explain how WordPress &#8220;abilities&#8221; have changed from old permission systems to a clearer way of defining what users and tools can do. They describe abilities as easy-to-understand labels for capabilities used in core, plugins, and the editor. With examples of AI features, the series shows how abilities help developers provide safe actions, manage access, and create smoother user experiences.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://j.cv/the-promise-and-history-of-abilities/\"><strong>The Promise and History Of Abilities (1/2)</strong></a></li>\n\n\n\n<li><a href=\"https://j.cv/using-abilities-to-build-ai-in-wordpress/\"><strong>Using Abilities To Build AI in WordPress (2/2)</strong></a><a href=\"https://x.com/jameswlepage\"></a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n<div class=\"ng-block-7c269a51e740c2cf wp-block-newsletterglue-separator ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; color: #666666;\"><hr style=\"background-color: transparent; color: transparent; margin: 0; border: 0; border-top: 1px solid #666666; width: 560px; height: 0;\" /></div></div></div></div>\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\"><div class=\"ng-block-dd94df2dc14c6523 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 14px; font-family: Helvetica; line-height: 0.2; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong>Featured Image: </strong></p></div></div></div></div></div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-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, 29 Nov 2025 03:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:19;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: SF WordPress Party\";s:7:\"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=150706\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://ma.tt/2025/11/sf-wordpress-party/\";s: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:973:\"<p>We&#8217;ve secured an amazing secret venue for <a href=\"https://wordpress.org/state-of-the-word/\">State of the Word</a> on Tuesday, but it has limited capacity in terms of people and has a lot of security hurdles to jump through to get in.</p>\n\n\n\n<p>So to open things up to the community more, we&#8217;re going to activate my hacker/maker art warehouse, <a href=\"https://tinkertendo.com/\">TinkerTendo</a>, in the Dogpatch neighbourhood for a simulcast watch party. There will be some cool art from the <a href=\"https://misalignmentmuseum.com/\">Misalignment Museum</a> there, great wifi, lots of power plugs and floor seating, a big projection screen and speakers and I think will be a great spot for WordPress folks to hang and network and co-work while in San Francisco. I&#8217;ll swing by after the talk to meet everyone as well.</p>\n\n\n\n<p>If you want access, <a href=\"https://www.meetup.com/wordpress-sf/events/312184138/\">you can register via Meetup here</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, 29 Nov 2025 00:20:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:20;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Matt: Thanksgiving\";s:7:\"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=150701\";s:7:\"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/2025/11/thanksgiving/\";s: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:1922:\"<p>I want to wish everyone a happy Thanksgiving! To me, the holiday is a reminder to be grateful. A gratitude practice is one of the most surefire ways to improve your happiness, <a href=\"https://www.health.harvard.edu/healthbeat/giving-thanks-can-make-you-happier\">as this study covered by Harvard Health explains</a>. </p>\n\n\n\n<p>I was part of a <a href=\"https://www.artofaccomplishment.com/\">leadership coaching cohort with other founders and CEOs</a>, and one of our exercises was to have a weekly 15-minute Zoom call where we&#8217;d each take turns saying something we were grateful for. (I think the original assignment was 7 minutes, but <a href=\"https://en.wikipedia.org/wiki/Parkinson%27s_law\">Parkinson&#8217;s law</a> and Google Calendar&#8217;s 15-minute default expanded it.) Like most great coaching, it seems silly on the surface, but when you actually practice it with an open mind, something magical happens.</p>\n\n\n\n<p>It really grew on me, and while most of the randomly assigned pods of people that had this assignment for a few weeks dispersed, ours has kept it going now for several years beyond the conclusion of the coaching program. The calls are also a great way to stay in touch with people I love, but we might easily fall into our own universes and not keep up with each other. Wherever we are in the world, whatever is happening, this standing meeting is on everyone&#8217;s calendar, and while it has ebbs and flows, the flame has been kept alive.</p>\n\n\n\n<p>Consider starting your own pod: pick a time, <a href=\"https://support.zoom.com/hc/en/article?id=zm_kb&amp;sysparm_article=KB0064248\">set a standing Zoom room</a>, and see what happens. We do early mornings before most meetings start. I don&#8217;t make it every week, but I do more than not, and the weeks when I do are definitely a bit brighter, both in my own gratitude practice and in the connection with the others in the pod.</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, 28 Nov 2025 07:08: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: Austin Meshtastic\";s:7:\"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=150697\";s:7:\"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/2025/11/austin-meshtastic/\";s: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:252:\"<p>We&#8217;re celebrating Thanksgiving this year with my sister <a href=\"https://charleen.mullenweg.com/\">Charleen</a> in Austin, and it&#8217;s no surprise there&#8217;s a <a href=\"https://www.austinmesh.org/\">great Meshtastic community here</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, 27 Nov 2025 07:18:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"WPTavern: #195 –  Saumya Majumder on How Cloudflare Outages Impact the Web and WordPress Performance Solutions\";s:7:\"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=200950\";s:7:\"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:125:\"https://wptavern.com/podcast/195-saumya-majumder-on-how-cloudflare-outages-impact-the-web-and-wordpress-performance-solutions\";s: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:62017:\"<details>Transcript<div>\n<p>[00:00:19] <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 CloudFlare outages impact the web, and WordPress performance solutions.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Saumya Majumder. Saumya is the lead software engineer at BigScoots with a deep specialization in high performance WordPress engineering and advanced CloudFlare powered architectures. Throughout his career Saumya has built large scale systems ranging from custom caching engines, to migration tools, worker based automations, and edge computing solutions. He&#8217;s played a pivotal role at BigScoots overseeing enterprise customers, and developing scalable developer friendly solutions that push the boundaries of hosting for WordPress.</p>\n\n\n\n<p>We begin our conversation with a timely discussion about a major CloudFlare outage that recently rippled across the internet. Saumya explains what happened behind the scenes, the nature of these kind of global infrastructure hiccups, and why, even with the most robust systems in place, some downtime is simply inevitable. He offers valuable insights into how BigScoots is able to mitigate these issues for their customers, even automating rapid failovers to keep sites online during outages.</p>\n\n\n\n<p>We then move on to explore some of the innovations that the team at BigScoots have been working on. They focus upon site speed and reliability. This includes CDN level page caching, and their close integration with CloudFlare Enterprise. Saumya breaks down how this caching differs from traditional server based caching, and how it ensures that users around the world get fast, local access to website content.</p>\n\n\n\n<p>If you&#8217;re curious about how hosting companies manage such advanced caching strategies and how CloudFlare might fit into the hosting jigsaw, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Saumya Majumder.</p>\n\n\n\n<p>I am joined on the podcast by Saumya. Hello, how are you doing?</p>\n\n\n\n<p>[00:03:04] <strong>Saumya Majumder:</strong> Hey, I&#8217;m doing well. How are you doing?</p>\n\n\n\n<p>[00:03:05] <strong>Nathan Wrigley:</strong> Yeah, very well, thank you. So this is going to be an interesting conversation. I got put in touch with Saumya via Tammy Lister, who has been communicating with Saumya over the last period of time. I don&#8217;t know exactly for how long. But the idea is that we&#8217;re going to talk about what they&#8217;re doing over at BigScoots and the interesting innovations that they&#8217;ve got.</p>\n\n\n\n<p>By pure coincidence, the day before we recorded this, the Cloudflare, I&#8217;m going to call it fun, the fun that Cloudflare had with the entire internet happened. And so I think we&#8217;ll digress for a bit at the beginning of the podcast and talk a little bit about that as well, which was unexpected. But given that you are working heavily based upon Cloudflare, it&#8217;ll be interesting to talk that through.</p>\n\n\n\n<p>Would you mind just spending a moment though, just introducing yourself. Just tell us who you are, what it is that you do at your current role, that kind of thing, and then we&#8217;ll get stuck into our conversation.</p>\n\n\n\n<p>[00:03:55] <strong>Saumya Majumder:</strong> I&#8217;m Saumya. I work as a lead software engineer at BigScoots, specialising in high performance WordPress engineering and advanced Cloudflare powered architectures.</p>\n\n\n\n<p>I also build large scale systems from custom cache engine to migration tools, worker based automations, edge computing and whatnot.</p>\n\n\n\n<p>I also look after our enterprise customers, all of our internal WordPress projects and plugins and IPs. And I also build scalable, developer friendly solutions for our clients to ensure that they are getting the best service product out of it.</p>\n\n\n\n<p>[00:04:29] <strong>Nathan Wrigley:</strong> Thank you very much indeed. Now, I&#8217;m just going to dwell on that for a little bit. A lot of that seems extremely technical, but also it kind of feels like that you went very much down a particular road very early on.</p>\n\n\n\n<p>How is it that you ended up doing all of that interesting, but quite specific stuff? How is it that that happened? Is it something that you pursued out of college or something like that? How is it that you went down that path?</p>\n\n\n\n<p>[00:04:51] <strong>Saumya Majumder:</strong> It&#8217;s an interesting question actually. So I remember, back in my second year of college, I started doing projects, like outside projects. So I started dabbling with PHP, like at the very early days of WordPress. So I get into the WordPress and I was like doing coding, changing things, pushing things to the core, tinkering with the WordPress. That was like way back in the days of the WordPress ecosystem.</p>\n\n\n\n<p>From that, I was dabbling with PHP and other stuff. So that was like back in the days when I started, and then slowly I started seeing problems and how to solve the solution. So for example, a lot of the companies today, like CDN page based page caching, in today&#8217;s 2025 it&#8217;s like a very, pretty much common thing across the world. If you go to any premium hosting or any premium package, you kind of expect like CDN based page caching.</p>\n\n\n\n<p>You know that that wasn&#8217;t the case, even like a few years back. It&#8217;s like this level page caching or RAM level page caching, like it&#8217;s all on the server. So me and one of my friends, whom we met online due to the WordPress coding things, we actually invented the CDN level page caching. So it wasn&#8217;t a thing before that. So there was a plugin that we created called Super Page Cache for Cloudflare that got later acquired by a different company called Optimal.</p>\n\n\n\n<p>In that plugin we actually looked at like, okay, all the current solutions, like if you break down how the request is happening or how internet works, like you make a request from wherever in the world, that request then travels through across optical fiber cable, blah, blah, blah, to the ISP data center. Then from there it goes to the data center, well, then it reaches the server from there on. If you don&#8217;t have cache, then the server has to populate the entire thing, get the response, give it back to you, if you have the cache.</p>\n\n\n\n<p>So we were saying that, you know, this is adding like a huge amount of latency, especially if you are, like the distance between the server and you is larger. Back then there was like MaxCDN, KeyCDN, and all of this provider who are like focusing on static files being served from the CDN.</p>\n\n\n\n<p>So that was like already a thing, but we were like, okay fine. But like if static files coming from CDN, that&#8217;s great, but the main leap frog forward is if we can move the page. Like, literally serving the page HTML from the CDN itself. So if you are in Australia, the request doesn&#8217;t have to come to the US. Like, if it&#8217;s cached, it&#8217;s literally coming from your neighborhood.</p>\n\n\n\n<p>So caching was one of the most complex problems that I kind of always loved solving because it was one of those unsolvable problems in the computer engineering world. So that&#8217;s how I like get into it, and then started. I broke a lot of things and fixed them and it&#8217;s like a journey. It&#8217;s hard to explain, but it&#8217;s like a journey of a lot of failure and a little of success, I guess.</p>\n\n\n\n<p>[00:07:37] <strong>Nathan Wrigley:</strong> Yeah, I can imagine. Do you ever get the sense that you are approaching the destination or is this whole thing just, I&#8217;ll do this and then I know that in a week&#8217;s time, there&#8217;ll be something else that I can optimise. Is there ever a moment where you&#8217;ve thought to yourself, okay, that&#8217;s it, we cracked it for now? Or is it always just, no, there&#8217;s another thing?</p>\n\n\n\n<p>[00:07:55] <strong>Saumya Majumder:</strong> It&#8217;s always a process, right? The technology is evolving. There&#8217;s way, way more to dig deeper. So one of the things we recently released was end DB protection caching. I&#8217;m going to talk about it in a moment and also login user caching. Both of these things were in my bucket list for years, and I have done like R and Ds, and R and Ds, and R and Ds to figure out exactly the way to do things. So again, you know, like it&#8217;s a process, right? And it takes time.</p>\n\n\n\n<p>[00:08:20] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s lovely. Like you say, we&#8217;ll get into those bits and pieces. But as I said at the top of the show, by pure coincidence, we had this, let&#8217;s just call it a real collapse in a sense of what Cloudflare provides to the internet as a whole. And I think, depending on where you were and when you were awake in the world, I think for Europeans and maybe the part of the world where you are, it hit us right at the time when we&#8217;re all awake. I think maybe if you&#8217;re in North America, especially on the West Coast, you might have missed much of it.</p>\n\n\n\n<p>But for most of the day here, everything on Cloudflare just declined to work. And it was really interesting how profound that was. And we&#8217;ve all heard this problem before. We&#8217;ve seen the little drawing of the great big tower built of Lego bricks, and there&#8217;s the one little brick at the bottom holding the whole thing up, and it&#8217;s called Cloudflare, or it&#8217;s called AWS or what have you.</p>\n\n\n\n<p>Can you explain to us what the heck happened yesterday? Are you able to sort of get into, do you understand it at this point?</p>\n\n\n\n<p>[00:09:15] <strong>Saumya Majumder:</strong> Yeah. So internet is a magical thing. It works by magic. If I get into explaining how it works, it&#8217;s going to be another thing. But the way it works is, and especially in case of Cloudflare, right? Like, a lot of people look at Cloudflare, that it is a CDN provider, like MaxCDN or Akamai or like any of these providers. But CDN is just one bit of Cloudflare. Cloudflare is like a, such a gigantic service that is like built on top of it.</p>\n\n\n\n<p>So as a result, what happens is, when you have such a big system working together, there are lots of critical dependencies that happens. You have all these boxes, but all these boxes are depending on one of these config file, or one of these things that is coming from the layer below that, right?</p>\n\n\n\n<p>And if anything happens in that one thing, the things at the top are working fine, but it cannot work because the one thing that is below it is gone.</p>\n\n\n\n<p>I would also like to say there is no such thing in the world of internet that just works. Everything is supposed to break at some point in time. There&#8217;s no such thing. Be it Google, be it Azure, be it AWS, Cloudflare, anything it is. Even if you have your own data center and everything like that, like we have, there&#8217;s no way that, like a lot of things can happen even after you are prepared to mitigate all of those things, like you have follower, and a follower, of follower and all this backup system, still things can go wrong. Maybe that didn&#8217;t turn out, maybe that didn&#8217;t happen.</p>\n\n\n\n<p>I saw a lot of memes yesterday on Twitter, like a lot of people was posting like, hey, I just joined as an internet Cloudflare. I pushed a code and that happened. And I understand that it&#8217;s funny, but when you look deeper into it, it is actually not funny. It is really like a code red scenario. And trust me, no one, no company wants to get into that code red scenario. Because you have to understand, all of these companies also dealing with a lot of enterprise customers to whom they have promised like 100% percent SLA or 99.99% SLA. And so when they don&#8217;t meet that, they have to pay a hefty amount of credit back to them.</p>\n\n\n\n<p>So it&#8217;s not just the downtime and bad reputation and marketing and all that, it&#8217;s literal money being bled out of the company because of that. And it&#8217;s like all of those systems.</p>\n\n\n\n<p>But at the same point in time, the way technology works, things can mess up. You can do multiple tiers of review of the code, you&#8217;re still going to miss a certain edge case scenario, which will only occur if this happened and that happened. And the probability of that happening is probably 0.00001%. But that 0.00001%, it&#8217;s not zero. It can happen.</p>\n\n\n\n<p>In the world of engineering, we call certain things that are super low priority, like it&#8217;s never going to happen. I&#8217;m not saying that it cannot happen, it can happen, but the probability of that is so low that spending engineering hours on that at this moment, where we have much more critical things to do, it doesn&#8217;t come up, right?</p>\n\n\n\n<p>But sometimes things happen. And as a senior engineer, it happens like this. And in case of Cloudflare, what happened is as this is like a such a big system, even if they identified the root cause, let&#8217;s say that takes some amount of time for the engineers to figure out, and they push that. And you have to understand, a lot of people are sending requests, requests are going down, and they figured out the root cause. They&#8217;re pushing the fix and then like a boatload of requests is coming to Cloudflare.</p>\n\n\n\n<p>So it takes time for everything to stabilise, you know? So it is bad. It is bad, but anyone who is thinking like, oh, Cloudflare is bad, if I move from Cloudflare to, I don&#8217;t know, X, Y, or Z, or something like that, it won&#8217;t happen. I haven&#8217;t seen, like a Tweet yesterday where somebody said, send cold emails to people saying, Cloudflare is down. But we don&#8217;t use Cloudflare, we use our own VPS and dedicated server for that. And I was like laughing out loud. I&#8217;m like, I understand that, you know, your data center did not go down, but that does not mean that it can never go down.</p>\n\n\n\n<p>[00:13:06] <strong>Nathan Wrigley:</strong> It&#8217;s kind of guaranteed. I think one of the interesting things that I saw was in the mitigation, the sort of summing up posts that Cloudflare created, there was this whole thing about this unexpected file which kind of doubled in size. It was supposed to be this size, but it doubled in size, and that got propagated. And then for a period of time, the ripple effect of that was that it looked like a DDoS attack. For a period of time it looked as if it may have been malicious actors.</p>\n\n\n\n<p>And so the Cloudflare engineers, I think kind of went off, as it turned out, wrong headedly. They went off in the wrong direction, searching for the problem, which probably added a number of hours to the mitigation, and then kind of figured out what was going on. And then, like you said, the whole ripple effect is, it&#8217;s not like you turn off a computer, switch the computer back on, and Cloudflare is restored. There&#8217;s this whole propagation thing where you find the problem, mend the problem, the problem mitigates, and that is presumably going to take hours and hours and hours. And then you could just see the sort of downtime reports slowly repairing themselves over the internet.</p>\n\n\n\n<p>[00:14:08] <strong>Saumya Majumder:</strong> And you have to understand that, as I said, Cloudflare, people think of Cloudflare as a, either a security company or a CDN company. But Cloudflare is way, way, way more than that, right? The CDN backbone that they have, it&#8217;s literally their backbone, the powerhouse on top of which Cloudflare builds their own thing.</p>\n\n\n\n<p>So anytime they find a fix of which they call their control plan, you know, pushed the fix to their control plan, that has to get propagated across all of their end edges. And Cloudflare has the highest number of CDN PoPs, you know? So it has to get pushed across all of these places, rebooted and all of these crazy things has to happen in order for everything to go properly. And then all the burst of traffic that is coming on that it has to handle that. It is a crazy thing.</p>\n\n\n\n<p>But one of the things that I liked about Cloudflare is that, it&#8217;s not that this is the first time Cloudflare had a global outage. They had global outage before as well. There are two things I really love about Cloudflare.</p>\n\n\n\n<p>Number one is that they&#8217;re super transparent. So anytime things go wrong or situation like this happens, they always push like a detailed blog article explaining exactly what happened, what they did to fix it, and how they&#8217;re making sure that this does not happen again in the future. And it never happens in the future.</p>\n\n\n\n<p>So if you look at the previous global outage that they had, I think back in June, it was caused because there&#8217;s a thing called Cloudflare KV, which had a dependency on GCP. So when GCP went down, so KV went down and as a result the system went down. And from there on, they&#8217;re now working on to remove that dependency, building things internally in house to make sure that doesn&#8217;t happen.</p>\n\n\n\n<p>Previously, there was another, I think last year or something like that, another global outage where the entire main data center went down. There was like multiple failover but the generator didn&#8217;t start and then this didn&#8217;t start and that didn&#8217;t start. And that caused like a huge failover scenario, I think, if you remember that, right?</p>\n\n\n\n<p>And from there on, they make sure that, okay, we now have to make sure that we have multiple, that scenario is never going to come back. So they always work towards to make sure everything that happening never happens the second time. And it really does that. But at the end of the day, in the world of technology, things can go wrong. It&#8217;s just how it is.</p>\n\n\n\n<p>[00:16:11] <strong>Nathan Wrigley:</strong> What&#8217;s kind of curious though, from an end user&#8217;s perspective, and you are going to explain to us some of the complexities of the inner workings of BigScoots and how it combines with Cloudflare in a minute, and that&#8217;ll be really interesting. But from a non-technical user&#8217;s point of view, it just feels like the sky is falling in because so much of the internet has collapsed, so many things that they&#8217;re familiar with.</p>\n\n\n\n<p>So just a couple of examples which many people would be familiar with. So for example, if you were a user of the social network X, that completely failed. There must be a dependency on Cloudflare at some point there. Also ChatGPT, which is now becoming almost, it&#8217;s just a thing which almost everybody at some point of the day is plugged into, that went away.</p>\n\n\n\n<p>But then it just rippled out across so many other things. News organisations go down. The ability to log into a variety of things went down. So it may be that your platform itself worked, but you might have had the the Turnstile sort of capture system, which Cloudflare run, enabled, and nobody could log into the proprietary platform that you got because the Cloudflare portion, the Turnstile wasn&#8217;t working and so on.</p>\n\n\n\n<p>So it just had this enormous effect. And the sort of chilling effect of that is that people then, erroneously I think, sort of view Cloudflare in some way as a bit of a, I don&#8217;t know, a giant that needs to be brought to heal in some way. You know, we can never let this happen again, there&#8217;s too much dependencies on these small group of massive organisations and what have you.</p>\n\n\n\n<p>But by today, everybody&#8217;s forgotten that, you know, they kind of moved on with their lives and we&#8217;re back to what it was like on Monday. And so there&#8217;s no question in there, but I think there&#8217;s some insight that I&#8217;m sharing.</p>\n\n\n\n<p>[00:17:41] <strong>Saumya Majumder:</strong> Oh yeah, absolutely. So there are a couple of very important things to understand here, right? So first of all, as you said, the people who talks about these kind of things on the social media, trust me, either they&#8217;re not engineers, senior engineers, or they don&#8217;t understand the problem.</p>\n\n\n\n<p>And so these are the people who talks about this exact same thing where a few weeks back AWS went down, and then a couple of months back, GCP went down. And then they were like, well, Facebook went down, they literally just use this exact same word every single time something goes down. But things can go down. That&#8217;s like, you have to accept that and move on.</p>\n\n\n\n<p>And that&#8217;s why when you get onto these enterprise deals with these big companies, they have this SLA agreement, like where they say, we grant to you, as I told you about earlier, right? So all of these companies, GCP, AWS, Cloudflare, if you are like a big enterprise customers of them, you have like an SLA agreement with them. Where they say, okay, we are going to guarantee that we&#8217;re going to give you 100% uptime, or 99.999999% uptime. And anytime they miss that mark, they have to pay back a huge sum of money as a credit to the customers saying, okay, we missed on our contract, so this is that credit back to you.</p>\n\n\n\n<p>So you have to understand that anytime situation like this happen, it is not only a bad thing on the companies, on the marketing front of it, but it is also a bad thing on the financial side of things. Because you have to understand like all of these big companies, there are these smaller clients who are dealing with companies like, there are smaller clients and there are like giant clients, the enterprise customer who companies are really worried about. And for these giant clients, they have to pay huge amount of money back as credit because things didn&#8217;t come back within time. So it is not something that they are not worried about to fix immediately. They&#8217;re literally trying as hard as possible to fix that.</p>\n\n\n\n<p>So that being said, now talk about the other points that you brought up, the turnstile, the WAF and the other things, right?</p>\n\n\n\n<p>So as I said, Cloudflare is not just a security company. It&#8217;s like a huge thing. Cloudflare has a thing called Developer Platform where you can literally deploy your own APIs, your AI workload, your workflows, your entire React or entire application on Cloudflare, which is amazing. I use it. I love that platform.</p>\n\n\n\n<p>And then that is one side of using Cloudflare, and then there&#8217;s another side of using Cloudflare like, for example, using BigScoots. You have let&#8217;s say a WordPress website that is hosted on BigScoots, but it is being proxied via Cloudflare to leverage their CDN, their security and all of those features.</p>\n\n\n\n<p>So in a scenario like a WordPress site where you are not using Cloudflare as your host, so your Cloudflare is just there as a proxy, making sure that your origin IP is not there, your site is super protected and performance and CDN and whatnot. In that scenario, anytime this kind of problem happens, you can kind of, when this outage was there, the API was still working and we actually, for all of our customers, we leveraged our API to make sure that any request does not proxy via Cloudflare, but instead it just goes directly to our server just for the moment in time until Cloudflare is back in the game.</p>\n\n\n\n<p>[00:20:42] <strong>Nathan Wrigley:</strong> Oh, so you could turn the proxy off via the API.</p>\n\n\n\n<p>[00:20:45] <strong>Saumya Majumder:</strong> Via the API, yes.</p>\n\n\n\n<p>[00:20:46] <strong>Nathan Wrigley:</strong> Right. So the fact that the rest of us couldn&#8217;t log in because Turnstile was down, we couldn&#8217;t authenticate into the Cloudflare network on the web. The API was still available, so you could turn the proxy off for a variety of your customers, and the domains and the websites that they had.</p>\n\n\n\n<p>Oh, that&#8217;s really interesting. So they had a few minutes of downtime. Okay, that&#8217;s fascinating.</p>\n\n\n\n<p>[00:21:04] <strong>Saumya Majumder:</strong> So what we did is when we saw this outage happening, anytime requests are coming in, it was a code red scenario on our end as well. All hands on deck. So anytime requests are coming in, like people are having problem, we immediately turned on the proxying API to make sure that this site is up and online.</p>\n\n\n\n<p>So that way the request is not going via Cloudflare anymore, it&#8217;s coming directly to us for the moment, until CloudFare is back on track. And that helped us to mitigate the downtime as much as possible for the customer, even though Cloudflare was technically down.</p>\n\n\n\n<p>But if you would have been hosting your Nuxt or React or Next.js kind of application on Cloudflare, where you are using Cloudflare workers and things like that as your host, in that scenario, you couldn&#8217;t push anything.</p>\n\n\n\n<p>[00:21:49] <strong>Nathan Wrigley:</strong> Yeah, the API is not going to help you.</p>\n\n\n\n<p>[00:21:51] <strong>Saumya Majumder:</strong> Yes, yeah. It was bad but it&#8217;s going to happen. It can happen.</p>\n\n\n\n<p>[00:21:54] <strong>Nathan Wrigley:</strong> Yeah, I think that&#8217;s kind of the message, you know? Nothing that humans create is immutable. Everything has a moment of breaking. But, you know, if you were to cast your mind back until, well, just Monday when everything was, you know, just plain sailing, Cloudflare was working as normal, then everybody was entirely happy. We had this period of time, it was maybe something like 8 hours where everybody&#8217;s kind of throwing their arms in the air and, you know, moaning on whatever social networks are still working.</p>\n\n\n\n<p>But now we&#8217;re onto Wednesday, that whole thing is long behind us. That ship sailed, whatever, move on. Confidence, I think basically what you&#8217;re saying is you can be confident in Cloudflare. They&#8217;re going to have hiccups because they&#8217;re like any other company, things will go wrong.</p>\n\n\n\n<p>[00:22:33] <strong>Saumya Majumder:</strong> Everything can have hiccups. So it&#8217;s not just, so you have to understand this, right? Again, I&#8217;m saying that Cloudflare is not just a CDN provider, but if you look at Cloudflare and all the things that they do, the complexity of it is like mindbogglingly crazy, you know? Like it&#8217;s immense, immensely complex. It makes things super easy for you. Okay, you just toggle this on and it&#8217;s done. But if look at under the hood, and all the things and chains it has to go through, and that happens in a blink of milliseconds, it&#8217;s crazy complicated.</p>\n\n\n\n<p>As I said, right, like I&#8217;m not saying that Cloudflare is bad. I think Cloudflare is amazing because two things, they have super transparency, so anytime anything happens, the blog article that you are like referencing here, they didn&#8217;t hide behind anything like, oh, it was not my problem, like not doing the blame game thing. No, no, no. Like, it was our problem. This is the problem.</p>\n\n\n\n<p>For example, in that blog article, they could have completely, don&#8217;t talk about the DDoS thingy, right? They could have just said, oh, this was the configuration file problem. We fix this, it&#8217;s done. But no, they actually literally walk you through how exactly they process the problem, which is really great. And then they actually learns from their mistakes to make sure that particular mistake never happens again, while they are like growing rapidly and building things, pushing things like crazy, like always pushing new things, which is like amazing to me.</p>\n\n\n\n<p>[00:23:50] <strong>Nathan Wrigley:</strong> I think the article even started, if it wasn&#8217;t the first set of words, it was definitely in the first couple of sentences. It was something like, we let you down. It was full ownership, I think. So bravo to them.</p>\n\n\n\n<p>And you&#8217;re right, the complexity behind it, you know, like you said earlier, the internet, the fact that anything works on the internet is an utter miracle of engineering, of computer engineering.</p>\n\n\n\n<p>You know, the fact that we&#8217;re on a platform that we are staring at each other. I can see your image, you can see my image, you can hear my audio, I can hear your audio. You are on the, a different side of the planet, but it&#8217;s happening like you&#8217;re stood next to me. And the millions of packets of information that have flown during the course of this conversation, it&#8217;s insane. And Cloudflare add a whole layer of other stuff on top of that, which makes it even more insane.</p>\n\n\n\n<p>[00:24:33] <strong>Saumya Majumder:</strong> Yeah. And you have to ask the question, like, why all these big companies are using Cloudflare like if it is so bad. Because they are doing things that nobody else even think about doing at a scale. And it&#8217;s like mindblogglingly crazy. It&#8217;s crazy.</p>\n\n\n\n<p>[00:24:46] <strong>Nathan Wrigley:</strong> Yeah, yeah, it really is. So we&#8217;ll leave that for another day. But obviously over at BigScoots, you&#8217;ve really attached your wagon, if you like, to Cloudflare. And when you agreed to come on the podcast to talk to me, it became obvious to me that the pay grade that you are at is very different to the pay grade that I&#8217;m able to keep up with.</p>\n\n\n\n<p>So we&#8217;re going to talk about what you&#8217;re doing over at BigScoots. I&#8217;m going to try to keep up, but if I misunderstand something, or I have to ask you to repeat something, I hope that&#8217;s okay with you. But I&#8217;m just curious because Tammie Lister, like I said at the beginning of this episode, she&#8217;s somebody whose opinion I respect a lot, and she said that you are doing some really innovative, interesting things with your connections to Cloudflare at BigScoots. So just lay out some of the interesting engineering work that you&#8217;ve been doing. I&#8217;ll try to hold on.</p>\n\n\n\n<p>[00:25:30] <strong>Saumya Majumder:</strong> First I&#8217;m to Tammie is great. Tammie is amazing. But yeah, I mean, I think BigScoots have been one of the first to utilise Cloudflare Enterprise in the hosting world. I know we didn&#8217;t do any kind of huge marketing like other hosts, but we have been the first to leverage Cloudflare Enterprise in our hosting ecosystem. And it was such early days, like back then, all of these things, this market wasn&#8217;t there. So we were building things that people didn&#8217;t even test it out.</p>\n\n\n\n<p>So as I said in the beginning, like I, along with one of my colleagues, we invented the CDN level page caching. This is way before APU and all of that. So all of those things actually build upon the architecture systems as we build on, including APU and the workers and stuff.</p>\n\n\n\n<p>So at BigScoots, the Cloudflare thing, especially the Cloudflare Enterprise thing opens up a whole new door for us because it now allowed us to provide CDN level page caching for every single user at a super high cache hit ratio. I mean it&#8217;s like, every time you hit a page, chances of that getting, coming out of cache is much higher, compared to if you are, or like a free plan or any other plan, right?</p>\n\n\n\n<p>So that was the beginning. And on top of that, we build our own proprietary plugin called BigScoots Cache, which allows you to not only leverage and take advantage of the Cloudflare page caching, but giving you the ability to fine tune every aspect of page caching that you would like on webpage.</p>\n\n\n\n<p>[00:26:56] <strong>Nathan Wrigley:</strong> I&#8217;m going to pause you right there. Firstly, because I&#8217;m sure that almost everybody in the audience, because their WordPress aligned, is going to understand what a cache is. They&#8217;re going to understand this process of kind of, okay, let&#8217;s remember something for next time so that when we need it next time, it&#8217;s kind of ready. But they may not understand how Cloudflare does this on their Enterprise plan.</p>\n\n\n\n<p>So what is it that&#8217;s different? Because we may be familiar with, I don&#8217;t know, a WordPress plugin and we&#8217;ve got some idea that there&#8217;s a cache. It&#8217;s sitting on the server somewhere in a file, it&#8217;s an HTML file or something like that. You are describing something not in one location, but like really just spread globally so it&#8217;s ready at the point of least distance from wherever somebody is. So tell us a bit more about that.</p>\n\n\n\n<p>[00:27:35] <strong>Saumya Majumder:</strong> So let me explain that with like an analogy, right? So before CDN level page caching, I think pretty much everybody would remember, like we used to have caching plugins. I&#8217;m not going to name anything, but they were caching plugins. So when you turn them on, what they essentially did was they would create like an advanced-cache.php. You have everything of that file inside your WordPress installation.</p>\n\n\n\n<p>What that used to do is, when you send a request, let&#8217;s say you are in Australia, right, and your server is in US, so you want to open example.com, and that requests flows through under the ocean, it goes to the data center, it goes to the server, the server receives the request, it started processing that, run all the database queries and all of that, and then it got the HTML to show it to you.</p>\n\n\n\n<p>Back then what it used to do is then, advanced-cache.php would kick in, it would create a copy of the HTML, store that locally on the server so the next time if someone requests for that page, instead of asking the server, hey, please process the PHP and database and all of that, it would require much less amount of server resources because it&#8217;s just like, WordPress is like warming up. The request goes to advanced-cache.php, then it says oh, I have that cache file, sends that cache response back to you.</p>\n\n\n\n<p>But even in this scenario, if you are making this request from Australia and your server is in US, you have to understand that the latency is very high, because the request has to go from Australia to US and then whatever gets there is, you know, response from there and come back from US to Australia. So the traversing time is pretty high.</p>\n\n\n\n<p>From there on, and back then we are thinking about MaxCDN, you know, KeyCDN and like putting static files on the CDN so that, yes, the page is being generated by the server, but the static files are being served literally where you are. Like, if you are in Australia, in Sydney, so maybe the CDN PoP in Sydney is like, when you make a request for that, the static file is coming from Sydney.</p>\n\n\n\n<p>That&#8217;s where we thought about, what if we can put this page HTML, instead of in the server, we can put it on the CDN? There were two benefit out of this. First, it is in insanely fast. Because if this page HTML is across the world, so if you are in Sydney making the request and the request is like, oh, okay, I have this page cache to me, here you go, the response, you get that in like less than 100ms, you know?</p>\n\n\n\n<p>Same thing happens for someone sitting in India and Germany and some other places of the world, because it&#8217;s cached across the globe. So it&#8217;s not just coming from a single place. And anytime it is not cached, the request goes to the server, HTML processed, and by the time the response is sent out, it got cached. It&#8217;s cached across the world.</p>\n\n\n\n<p>Now, that was the page caching part of it, right? And then there&#8217;s other things, the object cache and OPcache, that&#8217;s like whole another different level. But I&#8217;m not going to get into that. I&#8217;m just going to stay with, because then it&#8217;s going to get way too long.</p>\n\n\n\n<p>So that&#8217;s where this object caching and Cloudflare Enterprise came into play, right? Cloudflare Enterprise then allowed us to make sure that we can cache all these pages across the globe with a very high cache hit rate. Cache hit rate means, when something gets cached somewhere, let&#8217;s say someone makes a request to that file and that cache is expired from there and it&#8217;s not there. So the request, again, has to go to the origin and get processed and come back to you.</p>\n\n\n\n<p>So that is generally the case with the lower tier plans with Cloudflare. So with Cloudflare Enterprise you get a very high cache hit ratio. So when it&#8217;s getting the cache, it stays on the cache for a very long time. On top of that, we got tiered cache and regional tiered cache and all of those crazy things.</p>\n\n\n\n<p>Which that means is, we have tiering systems. So when you make a request, the request first gets cached in the upper tier. And when a lower tier, so let&#8217;s say, how can I explain this to you? So let&#8217;s say you are in Phoenix, okay? And in Phoenix there&#8217;s a data center, or a PoP that is called, in case of CDN, a PoP is there in Phoenix but the upper tier PoP is Chicago.</p>\n\n\n\n<p>So let&#8217;s say someone made a request from Chicago, the page was cached in Chicago data center, okay? Now, as we have this tiered cache system, when you, from Phoenix, is making the request, instead of that PoP directly sending the request to the origin, it would first internally within the intranet of Cloudflare, not the internet, okay? The intranet of Cloudflare. The internal network like, hey, does anyone in the upper tier has this page cached to you? And if they say yes, they would fetch it from the upper tier, which is like crazy fast because there&#8217;s no traffic, and it&#8217;s like a internal network of Cloudflare.</p>\n\n\n\n<p>And if it does not, then it pass on the request to the upper tier, because the upper tier is the only one who has the power to pull the request from origins. It goes to the upper tier. Upper tier pulls it from the origin, creates a copy, and it&#8217;s upper tier, and then send it back to the lower tier. So in that way, in the tiered architecture, it makes sure that the cache hit ratio is insanely high.</p>\n\n\n\n<p>[00:32:24] <strong>Nathan Wrigley:</strong> Let me just sort of read that back to you just to make sure I&#8217;ve understood. And I&#8217;m imagining that, the simplest way my head is understanding that is a bunch of concentric circles. So in the center is me, and I wish to find something on, let&#8217;s say, the outer circle. So the first thing I&#8217;m going to do is go to my inner circle, and if the inner circle doesn&#8217;t have it, we need to go to the next circle out, and the next circle out, and the next circle out.</p>\n\n\n\n<p>Now in the old world, if you like, or the non-enterprise version of Cloudflare, at some point we have to go further out of the circles in order to find what it is that we&#8217;re looking for. But what I think you are saying is that on the enterprise level, that outer circle is constantly pushing things towards the inner circle on a much more local basis. So rather than having to go out circle, another one, another one, another one, it can just hop one circle out, get what it needs, and then hop right back. In other words, every single thing is always closer, geographically, than it would be in any other setup.</p>\n\n\n\n<p>[00:33:22] <strong>Saumya Majumder:</strong> Yes, and on top of that, if you look at the opposite architecture of this, right? So imagine you are in Phoenix, Phoenix doesn&#8217;t have it in cache. Phoenix sends a request to origin, now someone from Mississippi makes a request, they don&#8217;t have it in cache, their PoP makes a request too.. So all these PoPs are making requests to the origin because they don&#8217;t have it in their own local cache, which is bad because that would then mean the request to the origin would increase dramatically, which we are trying to reduce.</p>\n\n\n\n<p>But in this sense we have, imagine like a fixed set of upper tier data center, then we have like a middle tier and then the lower tier, right? So if lower tier doesn&#8217;t have it, it asks the middle tier, middle tier checks if any of the middle tier across the world have it. If they do, immediately send it. And that&#8217;s happening within the internal network of Cloudflare and not on the open internet, okay? It&#8217;s like crazy fast.</p>\n\n\n\n<p>[00:34:11] <strong>Nathan Wrigley:</strong> Right, okay. So again, forgive me, I&#8217;m going to make a leap of faith here, I could have this wrong. I&#8217;m guessing that on the Cloudflare side, they have their own bespoke hardware to route all of this stuff. So like you said, you described it as an, it&#8217;s like an internet intranet, almost, the scale that they&#8217;re on. But they&#8217;ve got their own hardware, which will be able to route that information presumably more quickly, and with less, I don&#8217;t know, less latency than you and I might have.</p>\n\n\n\n<p>[00:34:36] <strong>Saumya Majumder:</strong> Yeah, it&#8217;s a intranet, it&#8217;s not internet. It&#8217;s a private channel, right? So no one talking there except for Cloudflare. And the best part of that is, so imagine let&#8217;s say you are making a request from Mississippi, and there is like a upper tier data center in Mumbai, India, right? So what happens is, even though it&#8217;s not cached in US, it&#8217;s going to see that, okay, I have it cached in Mumbai, let&#8217;s take it from there instead of making a call to the origin, reducing the call origin, yeah.</p>\n\n\n\n<p>[00:35:05] <strong>Nathan Wrigley:</strong> Okay, that bit I didn&#8217;t understand. So the entire network is aware of where the closest thing is even before it needs to have it. I got it. Okay. That&#8217;s fascinating. And do they own the cables? Do Cloudflare own the cables connecting these things?</p>\n\n\n\n<p>[00:35:18] <strong>Saumya Majumder:</strong> Yes. Yes, they have their own data center, their own backbone, all of that. And on top of that, like at BigScoots we even have direct physical connections to Cloudflare service. That&#8217;s called CNI. That&#8217;s like a next step. So again, let me kind of paint a picture. This is you as a user, right? This is Cloudflare sitting in the middle, acting as a reverse proxy, and this is origin, okay?</p>\n\n\n\n<p>So the way it works is you make a request, right? So let&#8217;s say you, a request is received by this in a reverse proxy Cloudflare. Then it process that thing, whether it has to show you a WAF page, whatever the logic is, right? Does it have it in cache and all of that? You know, if it is not being blocked or challenged, do I need to show it in cache? Do I have it in cache? You&#8217;re talking to the internal network, all of that. And that&#8217;s happening in this middle tier, right?</p>\n\n\n\n<p>And this middle tier is now connected to their entire Cloudflare chain, right? So if, let&#8217;s say Mumbai has it, and it pulls from Mumbai, give it back to you. So the request never goes to the origin, right?</p>\n\n\n\n<p>Now, for whatever reason, you make a request to Cloudflare, Cloudflare checks it&#8217;s internal network, it doesn&#8217;t have it itself, so it has to make a request to the origin, right?</p>\n\n\n\n<p>There&#8217;s the interesting part. This bit of connection that is you and the Cloudflare, that&#8217;s happening over the open internet, right? Because like you making and the request goes by the open internet and lands to Cloudflare, right? And then this is your origin, so your Cloudflare to origin, right, that also generally happens by open internet. Cloudflare then makes a request, and that request goes by the internet and, you know, lands on the data center.</p>\n\n\n\n<p>But here&#8217;s the magical part that we have done. As we run and own our own data center, what we have done is we have connected a physical cable, like literally optic fibre cable with super insanely high bandwidth with the Cloudflare servers, with our servers. So what happens is, anytime Cloudflare has to fetch something from our origin, instead of sending that request by the open internet, which could be slow, there could be congestion and whatnot, it then sends via that private network that we have created, that private optical fiber cable and lands directly to our origin. Like, oh, this is hosted on BigScoots. We need to talk to BigScoots. Okay, send via this channel, which is not part of the open internet. And boom, it gets there, comes back, it&#8217;s like insanely fast.</p>\n\n\n\n<p>[00:37:32] <strong>Nathan Wrigley:</strong> Okay. How did that happen? Like, is that some sort of agreement that you have struck up directly with Cloudflare so that you can tap, you know, in a sense it feels like you&#8217;ve become a third party piece of their network infrastructure almost.</p>\n\n\n\n<p>[00:37:47] <strong>Saumya Majumder:</strong> Think of like, if Cloudflare is like a one gigantic network, our systems are also plugged into their network so that they can use the intranet system to fetch data directly from us, instead of using the open internet, which is much slower, there could be congestion and whatnot. To making that request between the Cloudflare, the proxy and the origin, making that instantly fast.</p>\n\n\n\n<p>[00:38:10] <strong>Nathan Wrigley:</strong> So how did that whole thing come about? How is it that you fell into this agreement? Because I don&#8217;t know if many other organisations do this, you know, outside of the web hosting space, maybe this is a typical thing where you could follow a roadmap from another company that had done it. I&#8217;ve not heard of this, so that&#8217;s kind of interesting. How did that relationship come about?</p>\n\n\n\n<p>[00:38:26] <strong>Saumya Majumder:</strong> If you don&#8217;t run your own data center, it is very hard to do this.</p>\n\n\n\n<p>[00:38:29] <strong>Nathan Wrigley:</strong> Yeah, I do not.</p>\n\n\n\n<p>[00:38:30] <strong>Saumya Majumder:</strong> Yeah, because you have to literally connect your servers and routers and everything to the Cloudflare network, you know? So most of the hosting companies out there, they don&#8217;t run their own data center on their own space. They actually lease, what I call lease their hardwares and services from other cloud providers. Whereas we run our, you know, our private cloud, our private system, our own data centers, you know?</p>\n\n\n\n<p>So like, for example, some company could use AWS or GCP or Azure and then create their own flavor of it and run Cloudflare through it. So they actually don&#8217;t have physical access to those data center&#8217;s other servers. Whereas we do. If we see something, we can literally pull up the drive, we can do things at our data center, we can change things, we can attach those things physically, which pretty much none of the hosting provider that I know of has access to.</p>\n\n\n\n<p>[00:39:19] <strong>Nathan Wrigley:</strong> It&#8217;s so interesting. Honestly, we could go on about this for absolutely ages. But basically, the long and the short of it is, you&#8217;re making things as fast as it&#8217;s possible for electrons to be. In a distributed network where some things don&#8217;t know things, and other things do know things. It&#8217;s all an enterprise in trying to figure out how to make it so that everything knows everything as fast as it is possible for electrons to fly around through the optical cables that there are spread throughout the world.</p>\n\n\n\n<p>[00:39:47] <strong>Saumya Majumder:</strong> I haven&#8217;t even described the servers.</p>\n\n\n\n<p>[00:39:47] <strong>Nathan Wrigley:</strong> I&#8217;m nowhere near finished because I want to get into what it&#8217;s like for somebody using, we&#8217;re a WordPress podcast, so I guess at some point we need to sort of grind it into that. So how would it benefit just some normal human being who&#8217;s got a WordPress website? What does all of this clever technology that you&#8217;ve created and that you&#8217;ve combined with Cloudflare over at BigScoots, what does it bring?</p>\n\n\n\n<p>[00:40:09] <strong>Saumya Majumder:</strong> It brings insanely fast speed. Insanely fast speed, super improved Core Web Vitals, and super DDoS products and all of that. It brings all of that. And I don&#8217;t want to talk about this kind of things, which I know the audience might not be interested about. I want to talk about more other interested things that the users can use.</p>\n\n\n\n<p>So I was talking about BigScoots cache, which is our own IP, right? So we created our BigScoots cache plugin, top two are manage this entire Cloudflare caching system to work with that. And not just that, it gives you, if you are an advanced user, it literally gives you the ability to fine tune and manage every aspect of caching system that you want, every aspect of it.</p>\n\n\n\n<p>So let&#8217;s say for example, we by default set the cache TTL, CDN cache TTL to let&#8217;s say X, but you have like a bunch of pages where you want, I want the TTL to be lower. There&#8217;s a hooks for that. You can use that.</p>\n\n\n\n<p>Or maybe, let&#8217;s say whenever we have intelligent cache purging systems. So whenever you push up to create a post or update a post or something like that, what happens is anytime you push that button, like publish or update, behind the scenes the BigScoots cache plugin intelligently, not only clearing cache for that particular page, but it also knows all the other important pages like taxonomy pages, like archive pages and all that, like author pages that are linked to that article, and then clearing cache for those as well.</p>\n\n\n\n<p>So you can also use other hooks. So let&#8217;s say you have some fake archive pages that we have seen a lot. Let&#8217;s say you are using a theme where you are showing list of articles on a page, which is like technically a page where you are using like a short code, which is not like a real archive page. So the system doesn&#8217;t recognise it as an archive page, but you want to clear that page cache whenever something of this tag or this category is published. There&#8217;s a hook for that. You don&#8217;t have to do that yourself. If you come to us and tell us like, this is our problem, this is the problem, we can actually write the code for you and do it for you. Like, we can literally just set that up for you. We provide like fully managed system.</p>\n\n\n\n<p>[00:42:10] <strong>Nathan Wrigley:</strong> So I&#8217;m guessing that the level that you&#8217;re at there is you&#8217;ve got to have a fairly deep understanding of the sort of caching infrastructure, or would what you are offering be available, not necessarily to deploy, but could anybody understand this with a rifle through your documentation or is it fairly, propeller hat, tinfoil hat stuff?</p>\n\n\n\n<p>[00:42:28] <strong>Saumya Majumder:</strong> We have like a proper documentation for every single hook there is. At the very top we talk about, like this is for the advanced audience. And if you don&#8217;t know what hooks are and things like that, it is going to be hard for you to understand what&#8217;s going on. But if you know, if you are familiar with actions and filters and things like that, it is going to be pretty straightforward for you.</p>\n\n\n\n<p>So that&#8217;s why I said, if you don&#8217;t know, but you have a problem, and that happens a lot of time, people come to us, we just literally just write a snippet and just make that happen for them.</p>\n\n\n\n<p>So you don&#8217;t have to know all of that crazy things, you know? It&#8217;s there if you are an advanced user, the documentation is there, but if you are not, it&#8217;s also there. On top of that, BigScoots cache has its own REST API, which you can use to clear cache, like you can literally use BigScoots cache REST API to clear cache. Imagine you have built like a Laravel system, or some backend system where you are adding something to your e-commerce site and you want to clear cache. When that happens, you can literally leverage BigScoots cache REST API to do that. So that&#8217;s like the, on the end of BigScoots cache. Then inside our BigScoots portal.</p>\n\n\n\n<p>[00:43:34] <strong>Nathan Wrigley:</strong> Ah, that was where I was going next actually. Go on, yeah.</p>\n\n\n\n<p>[00:43:36] <strong>Saumya Majumder:</strong> Yeah. We have, I think we have the most advanced and fine grain control to Cloudflare Enterprise that no one else in the industry provides. So I don&#8217;t know if you got a chance to look at our enterprise settings page. We really allow users to fine tune things exactly the way they want. So for example, let&#8217;s say you, do you want to protect your login pages from bad bots and actors, so that they can&#8217;t DDoS that? There&#8217;s a toggle for that. Turn that on, it&#8217;s done.</p>\n\n\n\n<p>You want to enable our own advanced hardening production, which is not using Cloudflare hardening production, it&#8217;s using our own proprietary algorithm for that. You want to use that, feel free. Turn on, that toggle is there.</p>\n\n\n\n<p>You want to change your image optimisation settings, do that. You want to enable Rocket Loader to every single thing starting from cache settings, speed optimisation settings, there are like bunch of things that you can play around with. You want to block AI bots, do that. You want to block bad bots, like manage, challenge bad blocks altogether, just turn a toggle, it&#8217;s done.</p>\n\n\n\n<p>So we have so many settings there. I think, if you go take a look at just that settings, you would be blown away. Like, all the things that we allow our customers to customise and fine tune.</p>\n\n\n\n<p>Let&#8217;s say, for example, you want to block requests from certain countries or continents, and now settings is there. Just choose the countries or continents, requests are blocked. You want to manage, challenge, you don&#8217;t want to block, you want to challenge the request from certain countries and countries, you can just go to the settings inside our portal, choose the contains and countries from where you want to challenge. So you could have a combination. So you want to block requests from these countries and continents, challenge from these continents and countries and don&#8217;t do anything for the rest of them. So you can play around with this to a whole new level, like you can just do anything you want.</p>\n\n\n\n<p>[00:45:19] <strong>Nathan Wrigley:</strong> It&#8217;s absolutely fascinating. And it kind of makes me feel that your target audience would not be really the bricks and the mortars shop, the mom and the pop website?</p>\n\n\n\n<p>[00:45:27] <strong>Saumya Majumder:</strong> There actually are. Yeah, like you you won&#8217;t believe how many times we have got a request like, hey, you know what? In our analytics, we are seeing that we are getting a lot of requests from Thailand, and that&#8217;s like broken our tools like that, so I want to either challenge or block that. So we are like, you go to the settings, choose the Thailand, click save, it&#8217;s done. So it&#8217;s like as simple as that.</p>\n\n\n\n<p>[00:45:45] <strong>Nathan Wrigley:</strong> Yeah, I&#8217;m kind of imagining though, that you are kind of ideal customer, for want of a better word, maybe that&#8217;s the wrong wording, but would be kind of agencies, WordPress agencies, that kind of thing, who could obviously make use of this. They&#8217;ve probably got teams of people who can dedicate time to figuring out how BigScoots works, and maybe having a constant conversation with you to optimise the websites that they&#8217;ve got and, you know, maybe some of their clients are what we might call enterprise clients and things like that.</p>\n\n\n\n<p>If that&#8217;s the case, there&#8217;s always this merry dance of agencies trying to find the perfect host and kind of figure out, okay, which company do we want to go with this year? And all of that. Do you make it straightforward for people to sort of come to you and say, okay, we&#8217;ve got 150 websites, it&#8217;s really important that we don&#8217;t have any downtime? Do you have some sort of onboarding, migration, something along those lines?</p>\n\n\n\n<p>[00:46:30] <strong>Saumya Majumder:</strong> So we have a lot of enterprise customers, and for every single one of them we have a proper systematic onboarding flow. So that&#8217;s making sure that they do, we do migrations with zero downtime, have multiple peer reviews. Then if they have taken our performance optimisation packages and things like that, we would actually optimise their performance and speed metrics for them. And then if they have taken our engineering and services projects, then we would actually do all the, like if they have any technical problems, we would actually go on write code for them, solve their problems.</p>\n\n\n\n<p>So we go very hand in hand with our enterprise customers doing onboarding call, making sure they&#8217;re happy from end to end. And whether that&#8217;s agencies or just normal enterprise customers, it&#8217;s for all of them.</p>\n\n\n\n<p>And I also want to talk about the settings that you just talked about. So we build all of these things, keeping in mind that they are dead simple to use for anyone. But that doesn&#8217;t necessarily mean that they have to do it. A lot of the times customers comes to us and like, hey, we want to do this. As we provide managed support, we actually go into the exact same settings and do that. And that actually solves the problem a lot because now anybody can go to the settings and just do this. Be it our own team or, because it doesn&#8217;t have to be escalated, it doesn&#8217;t have to come to a specific team. Anybody can do that. And we are constantly growing the more things that people can do to leverage that out. And yes, agencies and enterprise are taking huge advantage of that.</p>\n\n\n\n<p>[00:47:54] <strong>Nathan Wrigley:</strong> Yeah, honestly, it&#8217;s absolutely fascinating. You never know, hopefully you and I, our paths will cross at some point in the year 2026. Maybe I&#8217;ll see you in Mumbai or something like that.</p>\n\n\n\n<p>But what I&#8217;m going to do is I&#8217;m just going to say, if you&#8217;re curious about any of this, I will provide links to everything that we talked about. So if you head over to wptavern.com and you search for the episode with Saumya, so S-A-U-M-Y-A, you&#8217;ll be able to find it over there. Honestly, I feel like we&#8217;ve just scratched the surface. I feel like there&#8217;s another 8 hours in the pair of us, really could get into the weeds of it.</p>\n\n\n\n<p>But thank you so much for peeling back the curtain a little bit on what you&#8217;re doing and how it all works with Cloudflare. Thank you so much.</p>\n\n\n\n<p>[00:48:28] <strong>Saumya Majumder:</strong> No problem. Thanks for having me.</p>\n</div></details>\n\n\n\n<p>On the podcast today we have <a href=\"https://www.linkedin.com/in/saumyamajumder/\">Saumya Majumder</a>.</p>\n\n\n\n<p>Saumya Majumder is the lead software engineer at BigScoots, with a deep specialisation in high-performance WordPress engineering and advanced Cloudflare-powered architectures. Throughout his career, Saumya has built large-scale systems ranging from custom caching engines to migration tools, worker-based automations, and edge computing solutions. He’s played a pivotal role at BigScoots, overseeing enterprise customers and developing scalable, developer-friendly solutions that push the boundaries of hosting for WordPress.</p>\n\n\n\n<p>We begin our conversation with a timely discussion about a major Cloudflare outage that recently rippled across the Internet. Saumya explains what happened behind the scenes, the nature of these kinds of global infrastructure hiccups, and why, even with the most robust systems in place, some downtime is simply inevitable. He offers valuable insights into how BigScoots is able to mitigate these issues for their customers, even automating rapid failovers to keep sites online during outages.</p>\n\n\n\n<p>We then move on to explore some of the innovations that the team at BigScoots have been working on. They focus upon site speed and reliability. This includes CDN-level page caching, and their close integration with Cloudflare Enterprise. Saumya breaks down how this caching differs from traditional server-based caching, and how it ensures that users around the world get fast, local access to website content.</p>\n\n\n\n<p>If you’re curious about how hosting companies manage such advanced caching strategies, and how Cloudflare might fit into the hosting jigsaw, 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://www.bigscoots.com\">BigScoots</a></p>\n\n\n\n<p><a href=\"https://www.cloudflare.com\">Cloudflare</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/wp-cloudflare-page-cache/\"> Super Page Cache plugin</a></p>\n\n\n\n<p><a href=\"https://blog.cloudflare.com/18-november-2025-outage/\">Blog post about recent outage</a>, 18th November 2025</p>\n\n\n\n<p><a href=\"https://www.cloudflare.com/en-gb/enterprise/\">Cloudflare for Enterprise</a></p>\n\n\n\n<p><a href=\"https://help.bigscoots.com/en/articles/5184102-introducing-bigscoots-cache\">Introducing BigScoots Cache</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, 26 Nov 2025 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:23;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Open Channels FM: Open Channels FM Founder’s Podcast Tech Stack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=112873\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://openchannels.fm/open-channels-fm-founders-podcast-tech-stack/\";s: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:154:\"BobWP is back sharing his podcast gear and software tips for all podcasters, offering insights on mics, interfaces, and AI tools to streamline production.\";s: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, 26 Nov 2025 12:45: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: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:24;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Open Channels FM: Why Diverse Teams and Early Accessibility Matter in Web 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=112138\";s:7:\"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:92:\"https://openchannels.fm/why-diverse-teams-and-early-accessibility-matter-in-web-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:187:\"Accessibility in web dev shouldn’t be an afterthought. Involving diverse teams from the start uncovers issues early, making products better for all. Early focus on accessibility is key.\";s: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, 26 Nov 2025 11:16: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:25;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: 3D Printing Wowza\";s:7:\"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=150682\";s:7:\"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/2025/11/3d-printing-wowza/\";s: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:915:\"<p>If you have ever customized your home setup, or done extra work to make the cable just so, it&#8217;s impossible not to delight in the very deep rabbit holes this person goes in 3D-printing custom holders for everything in his junk drawer. I&#8217;m in awe. It&#8217;s an ad for <a href=\"https://bambulab.com/en-us\">Bambu Lab</a>, but honestly it&#8217;s the kind of thing I could watch all day. So satisfying. <a href=\"https://syj-links.webflow.io/\">Scott Yu-Jan</a> is someone to keep an eye on.</p>\n\n\n\n<figure class=\"wp-block-embed alignwide 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\n</div></figure>\n\n\n\n<p>To me, this embodies the maker / hacker / creator mentality that I try to imbue in all the software I work on. How do you make it your own? One of one, but then open source it and see how it gets better.</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, 26 Nov 2025 04:03: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: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:26;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org blog: WordPress 6.9 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19373\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8009:\"<p>The third Release Candidate (“RC3”) for WordPress 6.9 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. <strong>Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, it’s recommended that you evaluate RC3 on a test server and site.</p>\n\n\n\n<p>Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.9 is the highest quality possible.</p>\n\n\n\n<p>You can test WordPress 6.9 RC3 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"></a><a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-6.9-beta2.zip\"></a><a href=\"https://wordpress.org/wordpress-6.9-RC3.zip\">RC3 version (zip)</a>. and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command: <br /><code>wp core update --version=6.9-RC3</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href=\"https://playground.wordpress.net/?php=8.0&amp;wp=beta&amp;networking=no&amp;language=&amp;multisite=no&amp;random=y4q1rn85xn\">6.9 WordPress Playground instance</a> to test the software directly in your browser.  No setup is required – just click and go! </td></tr></tbody></table></figure>\n\n\n\n<p>The scheduled final release date for WordPress 6.9 is <strong>December 2, 2025</strong>. The full <a href=\"https://make.wordpress.org/core/6-9/\">release schedule can be found here</a>. Your help testing RC versions is vital to making this release as stable and powerful as possible.</p>\n\n\n\n<p>Please continue checking the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-9/\">6.9-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 6.9 RC3?</h2>\n\n\n\n<p>Want to look deeper into the details and technical notes for this release? Take a look at the <a href=\"https://make.wordpress.org/core/2025/11/25/wordpress-6-9-field-guide\">WordPress 6.9 Field Guide</a>. For technical information related to issues addressed since <a href=\"https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-2\">RC2</a>, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.9?since=2025-11-18&amp;until=2025-11-25\">Gutenberg commits for 6.9</a> since November 18</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=11%2F18%2F2025..11%2F24%2F2025&amp;milestone=6.9&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=changetime&amp;col=type&amp;order=id\">Closed WordPress Core Trac tickets</a> since November 18</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can get involved with the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is crucial to the development of any software. It’s also a meaningful way for anyone to contribute. </p>\n\n\n\n<p>Your help testing the WordPress 6.9 RC3 prerelease is key to ensuring that the final release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. This <a href=\"https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/\">detailed guide</a> will walk you through testing features in WordPress 6.9. For those new to testing, follow <a href=\"https://make.wordpress.org/test/handbook/get-setup-for-testing/\">this general testing guide</a> for more details on getting set up.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta/RC area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general?  Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\"></a><a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack</a>..</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.</p>\n\n\n\n<p>Thanks for continuing to test your themes and plugins with the WordPress 6.9 prereleases. If you haven’t yet, please conclude your testing and update the <em>“Tested up to”</em> version in your theme and plugin <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">readme files</a> to <code>6.9</code>.</p>\n\n\n\n<p>If you find compatibility issues, please post detailed information in the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Test on your hosting platforms</h3>\n\n\n\n<p>Web hosts provide vital infrastructure for supporting WordPress and its users. Testing on hosting systems helps inform the development process while ensuring that WordPress and hosting platforms are fully compatible, free of errors, optimized for the best possible user experience, and that updates roll out to customer sites without issue.</p>\n\n\n\n<p>Want to test WordPress on your hosting system? <a href=\"https://make.wordpress.org/hosting/test-results-getting-started/\">Get started with configuring distributed hosting tests here</a>. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Русский? 日本語? हिन्दी? বাংলা? मराठी? ಕನ್ನಡ? You can <a href=\"https://translate.wordpress.org/projects/wp/dev/\">help translate WordPress into more than 100 languages</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">An RC3 haiku</h2>\n\n\n\n<p><em>Some folks make money,</em></p>\n\n\n\n<p><em>some folks make time to travel,</em></p>\n\n\n\n<p><em>and we Make WordPress.</em></p>\n\n\n\n<p class=\"has-text-align-right\"><em>Props to </em><a class=\"mention\" href=\"https://profiles.wordpress.org/akshayar/\"><span class=\"mentions-prefix\">@</span>akshayar</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/davidbaumwald/\"><span class=\"mentions-prefix\">@</span>davidbaumwald</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/westonruter/\"><span class=\"mentions-prefix\">@</span>westonruter</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/ellatrix/\"><span class=\"mentions-prefix\">@</span>ellatrix</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/mobarak/\"><span class=\"mentions-prefix\">@</span>mobarak</a> <em>and</em> <a class=\"mention\" href=\"https://profiles.wordpress.org/tacoverdo/\"><span class=\"mentions-prefix\">@</span>tacoverdo</a> <em>for proofreading and review.</em></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, 25 Nov 2025 15:33:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Amy Kamala\";s: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Matt: Jeff Dean AI Club talk\";s:7:\"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=150672\";s:7:\"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:32:\"https://ma.tt/2025/11/dean-talk/\";s: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:402:\"<figure class=\"wp-block-embed alignwide 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\n</div></figure>\n\n\n\n<p>There&#8217;s a new video with Jeff Dean talking at the Stanford AI Club, only 2k views so far, he&#8217;s half of the pair I <a href=\"https://ma.tt/2025/11/friday-links/\">blogged the other day</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, 25 Nov 2025 05:05: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: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:28;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Matt: Vogelstein on AI\";s:7:\"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=150650\";s:7:\"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:39:\"https://ma.tt/2025/11/vogelstein-on-ai/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:580:\"<p>Fred Vogelstein writes on Crazy Stupid Tech: <a href=\"https://crazystupidtech.com/2025/11/21/boom-bubble-bust-boom-why-should-ai-be-different/\">Boom, bubble, bust, boom. Why should AI be different?</a> &#8220;To us what’s happening is obvious. We both covered the internet bubble 25 years ago. We’ve been writing about – and in Om’s case investing in – technology since then. We can both say unequivocally that the conversations we are having now about the future of AI feel exactly like the conversations we had about the future of the internet in 1999. &#8220;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 23 Nov 2025 07:55: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: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:29;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Matt: Friday Links\";s:7:\"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=150639\";s:7:\"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/2025/11/friday-links/\";s: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:1237:\"<ul class=\"wp-block-list\"><div class=\"__iawmlf-post-loop-links\" style=\"display: none;\"></div>\n<li><a href=\"https://sfstandard.com/2025/11/08/stewart-brand-whole-earth-catalog-tugboat/\">Stewart Brand is selling his tugboat houseboat in Sausalito</a>.</li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=niJpDnNtNp4\">Benedict Evans gave a nice presentation on the adoption of AI</a>.</li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=LdORIBH3R88\">Chris Young reviews a $4,200 silver frying pan, comparing it to other metals with some really cool science and infographics</a>.</li>\n\n\n\n<li>From 2018 in the New Yorker, <a href=\"https://www.newyorker.com/magazine/2018/12/10/the-friendship-that-made-google-huge\">The Friendship That Made Google Huge</a>. Great profile of <a href=\"https://research.google/people/jeff/\">Jeff Dean</a> and <a href=\"https://research.google/people/sanjayghemawat/\">Sanjay Ghemawat</a>, makes me wish we did more pair programming at <a href=\"https://automattic.com/\">Automattic</a>. Note the early mentions of machine learning, TPUs, Google Brain, etc.</li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=nDanzN1EUeE\">Trump did a press conference with Zohran Mamdani</a>, the new mayor of New York.</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:\"Sat, 22 Nov 2025 07:58: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: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:30;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"Gutenberg Times: State of the Word, WordPress 6.9, Carousel Block and more — Weekend Edition #350\";s:7:\"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=42877\";s:7:\"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:103:\"https://gutenbergtimes.com/state-of-the-word-wordpress-6-9-carousel-block-and-more-weekend-edition-350/\";s: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:23251:\"<p>Hi there,</p>\n\n\n\n<p>Munich got hit with the first snow for this Winter. It started slowly on Friday morning, and by the afternoon the flakes got larger and the white started to cover tree branches, roofs and cars. It might all be gone by tomorrow, though, as the weather forecast shows -7 °C (19.4 °F) with sunshine.<img alt=\"❄\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2744.png\" style=\"height: 1em;\" /> I am still a Floridian Weather whimp, but I like the snow covering the overcast gray of an Autumn day. I just won&#8217;t go outside if I can help it.</p>\n\n\n\n<p>WordPress 6.9 is almost there. If you need a full run down of the changes in the block editor, I&#8217;ve got you covered with the <a href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/\"><strong>WordPress 6.9 Source of Truth</strong></a>, with screenshot and videos. It clocks in at 5,200+ words. The table of contents as well as the in-post tags will help you navigate it. And I am always here to answer your questions.</p>\n\n\n\n<p>But wait there is more below, </p>\n\n\n\n<p>Have a fabulous weekend, and if you are in the Northern Hemisphere, stay warm. </p>\n\n\n\n<p>Yours, <img alt=\"💕\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\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>First-time release lead <strong>Jonathan Bossenger</strong> worked on the Gutenberg 22.1. version. In his release post <a href=\"https://make.wordpress.org/core/2025/11/20/whats-new-in-gutenberg-22-1-18-november-2025/\"><strong>What’s new in Gutenberg 22.1? (18 November, 2025)</strong></a> he highlighted two major block updates and a performance improvement for the image block.</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2025/11/20/whats-new-in-gutenberg-22-1-18-november-2025/#new-tabs-block\">New Tabs block</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/20/whats-new-in-gutenberg-22-1-18-november-2025/#html-block-updates\">HTML block updates</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/61107\">Image prefetching when expanding images in the editor</a></li>\n</ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-2/\"><img alt=\"Highlight grid WordPress 6.9\" class=\"wp-image-43066\" height=\"375\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/WordPress-6.9-2025-11-20.png?resize=652%2C375&#038;ssl=1\" width=\"652\" /></a></figure>\n\n\n\n<p><strong><a href=\"https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-2/\">WordPress 6.9 Release Candidate 2</a> </strong>was released this week. December 2 will be here soon enough for the final release. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Joe Dolson</strong> published a list of all the <a href=\"https://make.wordpress.org/core/2025/11/19/accessibility-improvements-in-wordpress-6-9/\"><strong>Accessibility Improvements in WordPress 6.9</strong></a>. More Dev Notes can be <a href=\"https://make.wordpress.org/core/tag/dev-notes-6-9/\">perused on the Make Blog </a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://x.com/javaid_sarim\"><strong>Sarim Javaid</strong></a>, Digital Ocean posted <a href=\"https://www.cloudways.com/blog/wordpress-6-9/\"><strong>WordPress 6.9: What’s new, release date, features, and why it is important for your site</strong></a> on the Cloudways blog. &#8220;You’ll get faster load times, more streamlined site management, and new developer tools like APIs and automation features. Also, teams will benefit from block-level commenting for better collaboration&#8221; he wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In this week&#8217;s stream, <strong>Jonathan Bossenger</strong> dives into testing WordPress 6.9, specifically <a href=\"https://www.youtube.com/watch?v=Ky3R5ZScwhI\"><strong>focusing on the DataViews functionality</strong></a>. He starts by setting up his live stream, organizing processes, and installing necessary updates. Then, he explores the JavaScript packages involved, particularly the React components that power admin pages. Join him as he fumbles around, copy-pastes examples, and strives to get a basic implementation of DataViews working. If you enjoy watching someone learn through trial and error, give this video a like and subscribe.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\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\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>JuanMa Garrido</strong> livestreamed about <a href=\"https://www.youtube.com/\"></a><a href=\"https://www.youtube.com/watch?v=8X8ztWQFx9E\"><strong>What&#8217;s new for Devs in Wp 6.9: Interactivity API</strong></a></p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\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\n</div></figure>\n</div>\n\n\n<h3 class=\"wp-block-heading\" id=\"upcoming-wordpress-6-9-events\">Upcoming WordPress 6.9 events </h3>\n\n\n\n<p><strong>Maruti Mohanty</strong> plans a Workshop for <strong>November 27 at 10am UTC</strong> on <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/312092781/\"><strong>How to Prepare Your WordPress Site for WordPress 6.9?</strong></a> via Learn WordPress meetup.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Also on <strong>November 27 at 12:00 UTC</strong>, <strong>JuanMa Garrido</strong> and <strong>Jonathan Bossenger</strong> invite you to the <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/312110895/\"><strong>Developer Hours: WordPress 6.9 Developer Updates</strong></a>. A second edition, covering updates to Block Bindings and Interactivity API. </p>\n\n\n\n<p>If you missed the first edition, it&#8217;s now available on WordPressTV: <a href=\"https://wordpress.tv/2025/11/18/developer-hours-wordpress-6-9-dataviews-dataform-abilities-api/\"><strong>Developer Hours: WordPress 6.9 DataViews/DataForm &amp; Abilities API</strong></a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The <strong><a href=\"https://wordpress.org/state-of-the-word/\">State of the Word</a></strong>, <strong>Matt Mullenweg</strong>&#8216;s annual keynote will be live streamed from San Francisco on <strong>December 2 at 8pm UTC.</strong> For the first time, we are celebrating SOTW alongside the official release of WordPress 6.9 on the same day. Expect demos, and even get an early preview of the future beyond for WordPress. All followed by a Q &amp; A with Matt Mullenweg. </p>\n\n\n\n<figure class=\"wp-block-image size-large is-style-no-vertical-margin\"><a href=\"https://wordpress.org/state-of-the-word/\"><img alt=\"\" class=\"wp-image-43111\" height=\"367\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/SotW-banner-_-date-and-time-horizontal.png?resize=652%2C367&#038;ssl=1\" width=\"652\" /></a></figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p><img alt=\"🎙\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-125-wordpress-6-9-gutenberg-22-1-and-gutenberg-22-2/\">Gutenberg Changelog #125 – WordPress 6.9, Gutenberg 22.1 and Gutenberg 22.2</a> with <strong>JC Palmes</strong>, WebDev Studios</p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-no-vertical-margin\"><img alt=\"Gutenberg Changelog 125 with JC Palmes and host Birgit Pauli-Haack\" class=\"wp-image-43283\" height=\"186\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-28-at-18.19.29.png?resize=652%2C186&#038;ssl=1\" width=\"652\" /></figure>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div></div></div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\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>Justin Tadlock</strong> just dropped his awesome new <a href=\"https://justintadlock.com/archives/2025/11/18/media-data-wordpress-plugin\"><strong>Media Data WordPress Plugin</strong></a>, which is all about pulling in embedded metadata from your uploaded media files—think EXIF data, ID3 tags, camera settings, dimensions, and a lot more. The plugin comes with two blocks: one to hold everything together and others to showcase specific bits of metadata. Plus, it works seamlessly with WordPress 6.9&#8217;s block bindings, so you can easily make custom connections between blocks. It&#8217;s <a href=\"https://github.com/x3p0-dev/x3p0-media-data/releases\">up on GitHub</a> while waiting for approval in the directory.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Core contributors are getting ready to move the Post Editor into an iframe in WordPress 7.0. This change is all about giving the editing experience a fresh, modern vibe and cutting down on distractions from admin styles and those third-party scripts. <strong>Aki Hamano</strong>, a core committer, laid out the plans last week in a developer note: <a href=\"https://make.wordpress.org/core/2025/11/12/preparing-the-post-editor-for-full-iframe-integration/\"><strong>Preparing the Post Editor for Full iframe Integration</strong></a></p>\n\n\n\n<p><strong>Rae Morey</strong>, The Repository, reports on the various concerns from other contributors in <strong><a href=\"https://www.therepository.email/core-contributors-prepare-to-iframe-the-post-editor-in-7-0-prompting-backward-compatibility-concerns\">Core Contributors Prepare to iframe the Post Editor in 7.0, Prompting Backward-Compatibility Concerns</a>.</strong></p>\n\n\n\n<p>As a follow-up, <strong>Aki Hamano</strong> started a discussion on GitHub on <strong><a href=\"https://github.com/WordPress/gutenberg/issues/73138\">Documentation to help with the migration to Block API version 3 #73138</a>,</strong> with comments from <strong>Ella van Durpe</strong> and <strong>Riad Benguella</strong> with ideas on how to navigate the migration. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In her post <a href=\"https://humanmade.com/wordpress-for-enterprise/introducing-accelerate-redefining-experimentation-in-wordpress/\"><strong>Introducing Accelerate: Redefining Experimentation in WordPress</strong></a>, <strong>Gianna Legate</strong>, Head of Content at Human Made, explores how the new Accelerate platform bridges WordPress and modern marketing. The <a href=\"https://humanmade.com/wordpress-for-enterprise/introducing-accelerate-redefining-experimentation-in-wordpress/\">plugin enables</a> marketers to run A/B tests, personalize content by geography, and promote high-performing blocks directly within the editor, shifting WordPress from content-centric publishing toward data-driven customer engagement without requiring external tools or custom development work. The premium plugin is <a href=\"https://www.accelerateplugin.com/pricing/\">free for up to one million</a> monthly page views. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Hans-Gerd Gerhards</strong> announced an update to his plugin <a href=\"https://wordpress.org/plugins/shrinking-logo-sticky-header/\"><strong>Dynamic Header &amp; Navigation for Block Themes</strong></a>, a lightweight WordPress plugin developed specifically as a navigation solution for most Block Themes. &#8220;I am very pleased that my plugin now has more than 100 active installations.&#8221; he <a href=\"https://www.linkedin.com/posts/hans-gerd-gerhards-2b0814170_dynamic-header-navigation-for-block-themes-activity-7397624000190820353-vMzq?utm_source=share&amp;utm_medium=member_desktop&amp;rcm=ACoAAAAkKaoBHI9qqM4OcmXfJb1QeGFMlLI6W4o\">wrote on LinkedIn.</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p id=\"johanne-courtright-published-here-the-complete-guide-to-groundworx-carousel-block\"><strong>Johanne Courtright </strong>published her <a href=\"https://groundworx.dev/resources/the-complete-guide-to-groundworx-carousel-block/\"><strong>The Complete Guide to Groundworx Carousel Block</strong></a>. She walks through setting up responsive carousels using Splide.js and Gutenberg, exploring nine professional templates and eight responsive breakpoints for precise control. The guide covers styling via theme.json, creating custom templates using CSS Grid, and building reusable block variations for your team&#8217;s consistent configurations across WordPress projects. The plugin is available in the WordPress repository: <a href=\"https://wordpress.org/plugins/groundworx-carousel/\">Groundworx Carousel</a> v 2.0 was released last week after a complete redesign. </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"Goundwork Carousel Block \" class=\"wp-image-43130\" height=\"410\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-22-at-11.47.24.png?resize=652%2C410&#038;ssl=1\" width=\"652\" /></figure>\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>Ellen Bauer</strong>&#8216;s talk at WordCamp Kansai is now available on WordPressTV: <a href=\"https://wordpress.tv/2025/11/20/building-a-woocommerce-store-using-block-themes-and-ai-site-building/\" rel=\"noreferrer noopener\" target=\"_blank\"><strong>Building a WooCommerce Store Using Block Themes and AI Site Building</strong></a>. In this hands-on session, you&#8217;ll learn how to use a lightweight starter block theme and AI site-building tools to create a fully editable WooCommerce store design that you can refine directly in the WordPress editor.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Rich Tabor</strong> continues his explorations. The second post is all about the <strong><a href=\"https://rich.blog/application-menu/\">Application Menu</a></strong>. &#8220;An application menu would act as a consistent anchor—an always-present spot where you can see the full range of available actions. Not a replacement for other controls, and not a move to strip the interface down.&#8221; he wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n<div class=\"ng-block-070e18b6cf50de16 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #fdfcea; border-radius: 12px;\"><div class=\"ng-block-bb7791a88f912db9 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" rel=\"noreferrer noopener\" target=\"_blank\">&#8220;Keeping up with Gutenberg &#8211; Index 2025&#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. 2024 on. Updated by yours truly. </p></div></div></div></div>\n\n<div class=\"ng-block-68512aaaf291fc62 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>The previous years are also available: <br /><strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/\"><strong>2024</strong></a></p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<p><strong>Ryan Welcher</strong> livestreamed part 3 of his quest to <a href=\"https://www.youtube.com/watch?v=5-VY_9_DX0E\" rel=\"noreferrer noopener\" target=\"_blank\"><strong>use every Interactivity API feature in one site</strong></a></p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\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\n</div></figure>\n</div>\n\n<div class=\"ng-block-c5031f7a08c1b73a wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #f8f8f8; border-radius: 8px;\"><div class=\"ng-block-b9ef306a3c28f124 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review.</p></div></div></div></div>\n\n<div class=\"ng-block-b877dbaf34a88690 wp-block-newsletterglue-image ng-block size-full is-resized\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;\"><a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\"><img alt=\"\" class=\"wp-image-42874 ng-image\" height=\"45\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2025-11-15-at-12.06.44.png?resize=196%2C45&#038;ssl=1\" style=\"border-style: none; border-color: transparent;\" width=\"196\" /></a></div></div></div></div>\n\n<div class=\"ng-block-9ca4569e22d8bc76 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience.</p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n<div class=\"ng-block-01d874be3d9a0c97 wp-block-newsletterglue-separator ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; color: #666666;\"><hr style=\"background-color: transparent; color: transparent; margin: 0; border: 0; border-top: 1px solid #666666; width: 560px; height: 0;\" /></div></div></div></div>\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\"><div class=\"ng-block-915f1cd7fd7148b1 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 14px; font-family: Helvetica; line-height: 0.2; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong>Featured Image: </strong></p></div></div></div></div></div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-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:\"Fri, 21 Nov 2025 23:27: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:31;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"WordPress Foundation: Recognizing the 2025 WordCamp Asia Kim Parsell Memorial Scholarship Recipients\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpressfoundation.org/?p=1206507\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"https://wordpressfoundation.org/news/2025/recognizing-the-2025-wordcamp-asia-kim-parsell-memorial-scholarship-recipients/\";s: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:4896:\"<p>In 2015, the WordPress Foundation <a href=\"https://make.wordpress.org/community/2015/01/15/remembering-kim-parsell/\" rel=\"noreferrer noopener\" target=\"_blank\">established an annual memorial scholarship</a> to honor the memory of <a href=\"https://wordpress.org/news/2019/11/people-of-wordpress-kim-parsell/\" rel=\"noreferrer noopener\" target=\"_blank\">Kim Parsell</a>, a beloved and influential contributor to the WordPress community. Kim’s legacy continues to inspire connection, mentorship, and inclusivity across WordPress.</p>\n\n\n\n<p>In 2024, the Kim Parsell Memorial Scholarship <a href=\"https://wordpressfoundation.org/news/2024/kim-parsell-memorial-scholarship-expands-to-wordcamp-asia-and-wordcamp-europe/\" rel=\"noreferrer noopener\" target=\"_blank\">was expanded</a> to include WordCamp Asia and WordCamp Europe, reflecting Kim’s dedication to inclusivity and empowering more contributors to engage in global collaboration.</p>\n\n\n\n<p>This year, the scholarship for WordCamp Asia was awarded to Zeel Thakkar and Pooja Derashri. Two recipients were selected this year because Pooja could not attend WordCamp US in the year she was selected for the scholarship.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Remembering Zeel Thakkar</h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://i0.wp.com/wordpressfoundation.org/content/uploads/2025/11/zeel.webp?ssl=1\"><img alt=\"\" class=\"wp-image-1206508\" height=\"512\" src=\"https://i0.wp.com/wordpressfoundation.org/content/uploads/2025/11/zeel.webp?resize=512%2C512&#038;ssl=1\" width=\"512\" /></a></figure>\n\n\n\n<p>Zeel Thakkar (<a href=\"https://profiles.wordpress.org/zeelthakkar/\" rel=\"noreferrer noopener\" target=\"_blank\">@zeelthakkar</a>) of Ahmedabad, India, brought energy, leadership, and kindness to everything she did. A talented freelance WordPress developer at <a href=\"https://www.linkedin.com/company/jpadweb\" rel=\"noreferrer noopener\" target=\"_blank\">Jpadweb</a>, Zeel’s journey began with a simple internship that evolved into a lifelong passion for development and community building.</p>\n\n\n\n<p>Within the <a href=\"https://www.meetup.com/ahmedabad-wp-meetup/\" rel=\"noreferrer noopener\" target=\"_blank\">WordPress Ahmedabad community</a>, Zeel was a tireless organiser, helping lead events including WordCamp Ahmedabad 2023 and Do_Action 2024. Her work united contributors, fostered collaboration through regular meetups, and upheld her belief in empowering women in technology.</p>\n\n\n\n<p>Zeel’s technical contributions were equally significant. She played a key role on the WordPress 6.7 Testing Team, helping ensure the platform’s ongoing stability, and contributed to the Training Team to create educational resources for learners across the world. Her dedication to professional growth and commitment to inclusivity continue to inspire those who had the honor of working alongside her. Zeel’s passing is a tremendous loss, and she will be remembered with deep respect and gratitude.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Celebrating Pooja Derashri</h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://i0.wp.com/wordpressfoundation.org/content/uploads/2025/11/pooja.webp?ssl=1\"><img alt=\"\" class=\"wp-image-1206509\" height=\"512\" src=\"https://i0.wp.com/wordpressfoundation.org/content/uploads/2025/11/pooja.webp?resize=512%2C512&#038;ssl=1\" width=\"512\" /></a></figure>\n\n\n\n<p>Pooja Derashri (<a href=\"https://profiles.wordpress.org/webtechpooja/\" rel=\"noreferrer noopener\" target=\"_blank\">@webtechpooja</a>), from Ajmer, India, first started using WordPress in 2013 and went on to co-found WPVibes, a WordPress plugin development agency, with her husband Anand. While she began her career as a developer, she has since expanded her expertise into SEO and Content Marketing, helping shape WordPress projects holistically.</p>\n\n\n\n<p>Pooja’s contribution journey began in 2017 with the <a href=\"https://make.wordpress.org/tv/\" rel=\"noreferrer noopener\" target=\"_blank\">WPTV</a> and <a href=\"https://make.wordpress.org/polyglots/\" rel=\"noreferrer noopener\" target=\"_blank\">Polyglots</a> teams, where she helped localize content and make WordPress more accessible to Hindi speakers. Since 2021, she has served as a Global Translation Editor for Hindi, and in 2019 joined the <a href=\"https://make.wordpress.org/training/\" rel=\"noreferrer noopener\" target=\"_blank\">WordPress Training Team</a>. As a Co-Team Rep, Pooja now helps lead efforts behind <a href=\"http://learn.wordpress.org/\" rel=\"noreferrer noopener\" target=\"_blank\">LearnWP</a>, creating educational materials that support trainers and learners worldwide.</p>\n\n\n\n<p>Both Zeel and Pooja embody the spirit of dedication, generosity, and empowerment that the Kim Parsell Memorial Scholarship was created to celebrate. Their contributions continue to enrich the WordPress community and inspire others to share knowledge and support one another.</p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Nov 2025 21:07:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Harmony Romo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Gutenberg Times: WordPress 6.9 Source of Truth\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=42536\";s:7:\"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://gutenbergtimes.com/wordpress-6-9-source-of-truth/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105398:\"<p id=\"welcome-to-the-source-of-truth-for-wordpress-6-9\">Welcome to the Source of Truth for WordPress 6.9! </p>\n\n\n\n<p>Before you dive headfirst into all the big and small changes and pick your favorites, make sure to read these preliminary thoughts about this post and how to use it. If you have questions, leave a comment or email me at <a href=\"mailto:pauli@gutenbergtimes.com\">pauli@gutenbergtimes.com</a>. </p>\n\n\n\n<p>Huge Thank You to all collaborators on this post: Anne McCarthy, Sarah Norris, Ella van Durpe, Ben Dwyer, Jonathan Bossenger, Justin Tadlock, Dave Smith and a lot more. It&#8217;s takes a village&#8230; </p>\n\n\n\n<div class=\"wp-block-group has-primary-color has-text-color has-link-color has-small-font-size wp-elements-a8bb9ec1783f5f0c5623981a664fedce is-content-justification-left is-nowrap is-layout-flex wp-container-core-group-is-layout-558b13e7 wp-block-group-is-layout-flex\" style=\"text-decoration: none;\">\n<p>Estimated reading time</p>\n\n\n<div class=\"wp-block-post-time-to-read\">22–33 minutes</div>\n\n\n<p>at </p>\n\n\n<div class=\"wp-block-post-time-to-read\">5,126 words</div></div>\n\n\n\n<p><strong>Table of Contents</strong></p>\n\n\n\n<nav class=\"wp-block-table-of-contents\"><ul><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#changelog\">Changelog</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#important-note-guidelines\">Important note/guidelines</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#overview\">Overview </a><ul><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#important-links\">Important links:</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#assets\">Assets </a></li></ul></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#tags\">Tags</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#command-palette-everywhere-all\">Command Palette everywhere [all]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#block-editor-updates\">Block editor updates</a><ul><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#notes-all\">Notes     [all]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#visual-drag-drop-end-user\">Visual Drag &amp; Drop <img alt=\"🐉\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f409.png\" style=\"height: 1em;\" /> <img alt=\"💧\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a7.png\" style=\"height: 1em;\" />  [end user]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#ui-for-managing-allowed-blocks-in-templates-and-patterns-end-user-site-admin\">UI for managing allowed Blocks in Templates and Patterns.     [end user][site admin]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#hide-and-show-blocks-end-user-site-admin\">Hide and Show Blocks  [end user][site admin]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#additional-css-control-moved-end-user-site-admin-theme-author\">Additional CSS control moved   [end user][site admin] [theme author]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#copy-styles-keyboard-shortcut-end-user-site-admin\">Copy Styles keyboard shortcut     [end user][site admin]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#block-style-variations-in-style-book-end-user-site-admin-theme-author\">Block Style Variations in Style Book  [end user][site admin] [theme author]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#the-starter-patterns-modal-for-all-post-types-theme-author-plugin-author-enterprise\">The Starter Patterns modal for all post types. [theme author] [plugin author][enterprise]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#why-iframe-the-post-editor-plugin-author-enterprise\">Why iframe the Post Editor?  [plugin author][enterprise]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#relevant-bug-fixes-for-backward-compatibility-checks-theme-author-plugin-author-site-admin\">Relevant bug fixes for backward compatibility checks [theme author] [plugin author][site admin]</a></li></ul></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#new-blocks-all\">New Blocks [all]</a><ul><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#accordion-block\">Accordion Block</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#term-query-block\">Term Query Block</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#time-to-read-block\">Time to Read Block</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#math-block\">Math Block</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#comment-count-and-comment-link-blocks\">Comment Count and Comment Link Blocks</a></li></ul></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#updates-to-existing-blocks\">Updates to existing blocks </a><ul><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#stretchy-text-for-heading-and-paragraph-blocks-all\">Stretchy Text for Heading and Paragraph blocks. [all]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#button-block-end-user-siteadmin\">Button Block [end user] [siteadmin]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#cover-block-improved-video-handling-all\">Cover Block improved video handling [all]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#details-block-end-user-site-admin-plugin-author\">Details Block [end user][site admin][plugin author]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#gallery-block-all\">Gallery Block [all]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#heading-block-css-specificity-fix-all\">Heading Block CSS specificity fix [all]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#navigation-block-all\">Navigation Block [all]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#query-loop-blocks-all\">Query Loop Blocks [all]</a><ul><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#content-block\">Content Block</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#date-block-supports-custom-dates\">Date Block supports custom dates.</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#query-title-get-post-type-label\">Query Title get Post Type label</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#query-total\">Query Total</a></li></ul></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#rss-block-end-user\">RSS Block [end user]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#separator-block-theme-author-site-admin-plugin-author\">Separator Block  [theme author][site admin][plugin author]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#social-icons-block-developers-enterprise\">Social Icons Block [developers][enterprise]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#table-block-end-users-site-admin\">Table Block   [end users][site admin]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#video-block-all\">Video Block [all] </a></li></ul></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#theme-json-and-global-styles-developers-enterprise-site-admin\">Theme.json and Global Styles  [developers][enterprise][site admin]</a><ul><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#form-elements-in-theme-json\">Form elements in theme.json</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#border-radius-presets-supported\">Border Radius presets supported </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#button-element-inherits-typography\">Button element inherits typography</a></li></ul></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#a-closer-look-at-performance-optimizations-developers-enterprise\">A closer look at performance optimizations  [developers][enterprise]</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#improved-accessibility-across-core-and-block-editor\">Improved accessibility across Core and Block editor</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#new-and-updated-apis-for-developers-developers-enterprise\">New and updated APIs for Developers [developers][enterprise]</a><ul><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#abilities-api\">Abilities API</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#block-bindings-api\">Block Bindings API</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#dataviews-and-dataform\">DataViews and DataForm</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#interactivity-api\">Interactivity API</a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#output-buffering-for-the-rendered-template\">Output buffering for the rendered template </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#blocks-efficiently-find-and-traverse-blocks-in-a-document\">Blocks: Efficiently find and traverse blocks in a document. </a></li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https://gutenbergtimes.com/wordpress-6-9-source-of-truth/#more-developer-notes-for-wordpress-6-9-release\">More Developer Notes for WordPress 6.9 release</a></li></ul></li></ul></nav>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"changelog\">Changelog</h2>\n\n\n\n<p>Any changes are cataloged here as the release goes on.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>11/25/2025 \n<ul class=\"wp-block-list\">\n<li>Added <a href=\"https://gutenbergtimes.com/feed/#more-developer-notes-for-wordpress-6-9-release\">Dev Note</a> on miscellaneous block editor changes </li>\n\n\n\n<li>Added link to the <a href=\"https://make.wordpress.org/core/2025/11/25/wordpress-6-9-field-guide/\">Field Guide</a> </li>\n</ul>\n</li>\n\n\n\n<li><strong>11/24/2025</strong>\n<ul class=\"wp-block-list\">\n<li>Added <a href=\"https://gutenbergtimes.com/feed/#more-developer-notes-for-wordpress-6-9-release\">Dev Notes</a> on HTML API updates and pn PHP 8.5 Support</li>\n</ul>\n</li>\n\n\n\n<li><strong>11/21/2025 </strong>\n<ul class=\"wp-block-list\">\n<li>Updated screenshots and videos for <a href=\"https://gutenbergtimes.com/feed/#stretchy-text-for-heading-and-paragraph-blocks-all\">Stretchy Text section</a>, reflecting changes in RC2.  </li>\n</ul>\n</li>\n\n\n\n<li><strong>11/20/2025</strong>\n<ul class=\"wp-block-list\">\n<li>added <a href=\"https://gutenbergtimes.com/feed/#improved-accessibility-across-core-and-block-editor\">accessibility updates section</a>. </li>\n\n\n\n<li>Added <a href=\"https://gutenbergtimes.com/feed/#more-developer-notes-for-wordpress-6-9-release\">Dev Notes</a> on Admin Search query, IE-related updates and URL escaping functions. </li>\n\n\n\n<li>Updated the featured image to the <a href=\"https://github.com/WordPress/gutenberg/issues/71818#issuecomment-3556808505\">latest version of the highlight grid</a>.</li>\n</ul>\n</li>\n\n\n\n<li><strong>11/19/2025: </strong>\n<ul class=\"wp-block-list\">\n<li>Added credits</li>\n\n\n\n<li>Added tags to headings,</li>\n\n\n\n<li>Added <a href=\"https://gutenbergtimes.com/wp-admin/post.php?post=42536&amp;action=edit#more-developer-notes-for-wordpress-6-9-release\">Dev Notes</a> on WordPress email, UTF-8 support</li>\n\n\n\n<li>Added horizontal scroll bar feature to Math Block</li>\n\n\n\n<li>Fixed some typos.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"important-note-guidelines\">Important note/guidelines</h2>\n\n\n\n<p>Please do not copy and paste what is in this post since this will be shared with many people. This should be used to inspire your own content and to ensure that you have the best information about this release. If you do copy and paste, keep in mind that others might do the same, opening the door for some awkwardness around duplicated content out on the web. </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Each item has been tagged using best guesses with different high-level labels so that you can more readily see at a glance who is likely to be most impacted.</li>\n\n\n\n<li>Each item has a high-level description, visuals (if relevant), and key resources if you would like to learn more.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"overview\">Overview </h2>\n\n\n\n<p><em>Note: As always, what’s shared here is being actively pursued but doesn’t necessarily mean each will make it into the final release of WordPress 6.9.</em></p>\n\n\n\n<p>WordPress 6.9 introduces several new features and performance enhancements.</p>\n\n\n\n<p>Key new features include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Collaborative Feedback and Content Control:</strong> Block-level Notes facilitate team feedback, allowed blocks UI, Abilities API, visual drag and drop, binding blocks to external controls.</li>\n\n\n\n<li><strong>New Blocks:</strong> Discover Accordion, Terms Query, Math, and Time to Read blocks.</li>\n\n\n\n<li><strong>Typography Enhancements:</strong> Benefit from new text-fitting typography.</li>\n\n\n\n<li><strong>Dashboard-wide Command Palette:</strong> The Command Palette will  help users streamline their workflow across WordPress Admin pages. </li>\n</ul>\n\n\n\n<p>Performance improvements include:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Optimized Loading:</strong> On-demand block-style loading and faster emoji detection.</li>\n\n\n\n<li><strong>Efficient Scheduling:</strong> Optimized cron execution.</li>\n</ul>\n\n\n\n<p>Furthermore, WordPress 6.9 lays the groundwork for future AI integration with the new Abilities API, which enables secure automation through machine-readable WordPress capabilities.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/6-9\">WordPress 6.9</a> is set to be released on December 2, 2025. </p>\n\n\n\n<p>Of note, this release includes Gutenberg plugin versions 20.5 &#8211; 21.9.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"important-links\">Important links:</h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2025/07/28/roadmap-to-6-9/\">Roadmap to 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/6-9/\">WordPress 6.9 Development Cycle</a></li>\n\n\n\n<li>What’s new for developers: <a href=\"https://developer.wordpress.org/news/2025/06/whats-new-for-developers-june-2025/\">June</a>, <a href=\"https://developer.wordpress.org/news/2025/07/whats-new-for-developers-july-2025/\">July</a>, <a href=\"https://developer.wordpress.org/news/2025/08/whats-new-for-developers-august-2025/\">August,</a> <a href=\"https://developer.wordpress.org/news/2025/09/whats-new-for-developers-september-2025/\">September</a>, <a href=\"https://developer.wordpress.org/news/2025/10/whats-new-for-developers-october-2025/\">October</a>, <a href=\"https://developer.wordpress.org/news/2025/11/whats-new-for-developers-november-2025/\">November</a>)</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/25/wordpress-6-9-field-guide/\">6.9 Field Guide</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/state-of-the-word/\">State of the Word 2025</a> will include highlights and demos of the most important features of this release. The event will be <a href=\"https://www.youtube.com/wordpress\">livestreamed on YouTube </a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"assets\">Assets </h3>\n\n\n\n<p>In this <a href=\"https://drive.google.com/drive/u/0/folders/1z0ilv8vH2AVWVt-1tPI9qPUoTOSGahuB\">Google Drive folder</a> you can view all assets in this document.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"tags\">Tags</h2>\n\n\n\n<p>To make this document easier to navigate based on specific audiences, the following tags are used liberally: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>[end user]</strong>: end user focus. </li>\n\n\n\n<li><strong>[theme author]</strong>: block or classic theme author. </li>\n\n\n\n<li><strong>[plugin author]</strong>: plugin author, whether block or otherwise.</li>\n\n\n\n<li><strong>[developer]</strong>: catch-all term for more technical folks. </li>\n\n\n\n<li><strong>[site admin]</strong>: this includes a “builder” type. </li>\n\n\n\n<li><strong>[enterprise]</strong>: specific items that would be of interest to or particularly impact enterprise-level folks</li>\n\n\n\n<li><strong>[all]</strong>: broad impact to every kind of WordPress user. </li>\n</ul>\n\n\n\n<p>How can you use these? Use your browser&#8217;s <strong>Find</strong> capability and search for the string including the brackets. Then use the arrows to navigate through the post from one result to the next. </p>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\">Short video on how to use the tags to navigate the post. \n<p></p>\n\n\n\n		<figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n			<div class=\"jetpack-videopress-player__wrapper\"> </div>\n			\n			\n		</figure>\n		</details>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"command-palette-everywhere-all\">Command Palette everywhere <sup>[all]</sup></h2>\n\n\n\n<p>A couple of years ago the Command Palette was first released for the Site Editor. It provides content creators and administrators with a quick search and command execution tool. Invoked by Ctrl+K or Cmd+K. It is now available from any admin screen and helps streamline content creation as well as administering a WordPress site. It provides shortcuts to places otherwise only available by navigating multiple menu levels deep. </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Command Palette now available from the dashboard\" class=\"wp-image-42912\" height=\"402\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Command-Palette-everywhere-1024x631.png?resize=652%2C402&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<p>Technically, this change extracts navigation commands from `@wordpress/edit-site` to `@wordpress/core-commands`, making them universally accessible. This architectural shift sets the foundation for admin-wide command integration in WordPress 6.9 and beyond, potentially reducing the need for repetitive clicking through admin menus.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>For developers the new useCommands hook was introduced. (<a href=\"https://github.com/WordPress/gutenberg/pull/71603\">71603</a>)</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-editor-updates\">Block editor updates</h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"notes-all\">Notes     <sup>[all]</sup></h3>\n\n\n\n<p>Asynchronous collaboration comes to WordPress via the new Notes feature and rings in the 3rd Phase of Gutenberg. Site owners, Editors and Authors can collaborate by leaving comment directly on the post or page, attached to the blocks in the editor. The notes are threaded, resolveable, and can be reopened as well. Add an access notes from the Block toolbar and via the sidebar. Post authors will receive email notification when notes are added to the content.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Collaborative Notes in WordPress 6.9\" class=\"wp-image-42914\" height=\"465\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Notes-in-WordPress-6-9.png?resize=652%2C465&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<p>Notes are by default enabled for Posts and Pages. They can be enabled also for other content post types via the `register_post_type` function. </p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>PHP</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">register_post_type( \'book\', array(\n	\'label\' => \'Books\',\n	\'public\' => true,\n	\'show_in_rest\' => true,\n	\'supports\' => array(\n		\'title\',\n		\'editor\' => array( \'notes\' => true ),\n		\'author\',\n	),\n) );\n</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #D7827E;\">register_post_type</span><span style=\"color: #797593;\">(</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">\'book\'</span><span style=\"color: #797593;\">,</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A; font-style: italic;\">array</span><span style=\"color: #797593;\">(</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">	</span><span style=\"color: #EA9D34;\">\'label\'</span><span style=\"color: #575279;\"> </span><span style=\"color: #286983;\">=&gt;</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">\'Books\'</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">	</span><span style=\"color: #EA9D34;\">\'public\'</span><span style=\"color: #575279;\"> </span><span style=\"color: #286983;\">=&gt;</span><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">true</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">	</span><span style=\"color: #EA9D34;\">\'show_in_rest\'</span><span style=\"color: #575279;\"> </span><span style=\"color: #286983;\">=&gt;</span><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">true</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">	</span><span style=\"color: #EA9D34;\">\'supports\'</span><span style=\"color: #575279;\"> </span><span style=\"color: #286983;\">=&gt;</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A; font-style: italic;\">array</span><span style=\"color: #797593;\">(</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">		</span><span style=\"color: #EA9D34;\">\'title\'</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">		</span><span style=\"color: #EA9D34;\">\'editor\'</span><span style=\"color: #575279;\"> </span><span style=\"color: #286983;\">=&gt;</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A; font-style: italic;\">array</span><span style=\"color: #797593;\">(</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">\'notes\'</span><span style=\"color: #575279;\"> </span><span style=\"color: #286983;\">=&gt;</span><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">true</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">),</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">		</span><span style=\"color: #EA9D34;\">\'author\'</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">	</span><span style=\"color: #797593;\">),</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">)</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">);</span></span>\n<span class=\"line\"></span></code></pre></div>\n\n\n\n<p>More details on handling Notes programmatically can be found in the Dev Note: <a href=\"https://make.wordpress.org/core/2025/11/15/notes-feature-in-wordpress-6-9/\"><strong>Notes feature in WordPress 6.9</strong></a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"visual-drag-drop-end-user\">Visual Drag &amp; Drop <img alt=\"🐉\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f409.png\" style=\"height: 1em;\" /> <img alt=\"💧\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f4a7.png\" style=\"height: 1em;\" />  <sup>[end user]</sup></h3>\n\n\n\n<p>Drag-and-drop just got smarter. Blocks now show live visual feedback as you reposition them, making layout building more intuitive and precise. You&#8217;ll see exactly where elements land before releasing, accelerating the creative process. (<a href=\"https://github.com/WordPress/gutenberg/pull/67470\">67470</a>). Currently, this only works for single blocks. Drag and Drop of multiple blocks is slated for WordPress 7.0.</p>\n\n\n\n		<figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n			<div class=\"jetpack-videopress-player__wrapper\"> </div>\n			\n			\n		</figure>\n		\n\n\n<h3 class=\"wp-block-heading\" id=\"ui-for-managing-allowed-blocks-in-templates-and-patterns-end-user-site-admin\">UI for managing allowed Blocks in Templates and Patterns.     <sup>[end user][site admin]</sup></h3>\n\n\n\n<p>WordPress now makes managing allowed blocks simpler with a new UI tucked in<strong> Advanced</strong> settings. Previously, developers had to edit block markup directly in code view—not user-friendly. This updates makes things easier for website admins, theme builders, and agencies enforcing specific block rules in patterns and templates. While agencies already handled this via code, the new interface offers a nicer interaction model. It&#8217;s part of WordPress&#8217;s broader mission: letting users build complex sites without touching code at all.  (<a href=\"https://github.com/WordPress/gutenberg/pull/72191\">72191</a>)</p>\n\n\n\n		<figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n			<div class=\"jetpack-videopress-player__wrapper\"> </div>\n			\n			\n		</figure>\n		\n\n\n<h3 class=\"wp-block-heading\" id=\"hide-and-show-blocks-end-user-site-admin\">Hide and Show Blocks  <sup>[end user][site admin]</sup></h3>\n\n\n\n<p>WordPress 6.9 introduces long-awaited control to hide blocks in the editor while preserving their structure within templates. This initial implementation provides content creators and designers with the ability to manage blocks that are not always displayed, such as seasonal content or conditional elements.</p>\n\n\n\n<p>Instead of deleting and recreating blocks, users can now simply toggle their visibility, retaining all settings. This foundational feature paves the way for more sophisticated conditional display options in future releases, potentially including role-based or time-based visibility controls. (<a href=\"https://github.com/WordPress/gutenberg/pull/71203\">71203</a>) </p>\n\n\n\n		<figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n			<div class=\"jetpack-videopress-player__wrapper\"> </div>\n			\n			\n		</figure>\n		\n\n<div class=\"wp-block-image\">\n<figure class=\"alignright size-large\"><img alt=\"\" class=\"wp-image-42922\" height=\"279\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Additional-CSS-Sidebar.png?resize=399%2C279&#038;ssl=1\" width=\"399\" /></figure>\n</div>\n\n\n<h3 class=\"wp-block-heading\" id=\"additional-css-control-moved-end-user-site-admin-theme-author\">Additional CSS control moved <br /> <sup>[end user][site admin] [theme author]</sup></h3>\n\n\n\n<p>Theme builders might go searching for the <strong>Additional CSS</strong> controls. They were moved into the ellipsis menu in the header of the Styles page on either side of the screen (<a href=\"https://github.com/WordPress/gutenberg/pull/71550\">71550</a>) </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-42923\" height=\"238\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Additional-CSS-dark-side.png?resize=652%2C238&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"copy-styles-keyboard-shortcut-end-user-site-admin\">Copy Styles keyboard shortcut    <br /><sup>[end user][site admin]</sup></h3>\n\n\n\n<p>A new keyboard shortcut helps with pasting styles from one block to another and can speed up content creation workflows: cmd/ctrl + options/alt + v<strong> (</strong><a href=\"https://github.com/WordPress/gutenberg/pull/69196\"><strong>69196</strong></a><strong>) </strong></p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"block-style-variations-in-style-book-end-user-site-admin-theme-author\">Block Style Variations in Style Book<br /> <sup>[end user][site admin] [theme author]</sup></h3>\n\n\n\n<p>To make the Stylebook even more comprehensive, it now surfaces block styles for core blocks as well as custom blocks. This makes it possible to change block style variations site-wide in one screen (<a href=\"https://github.com/WordPress/gutenberg/pull/70448\">70448</a>).</p>\n\n\n\n		<figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n			<div class=\"jetpack-videopress-player__wrapper\"> </div>\n			\n			\n		</figure>\n		\n\n\n<h3 class=\"wp-block-heading\" id=\"the-starter-patterns-modal-for-all-post-types-theme-author-plugin-author-enterprise\">The Starter Patterns modal for all post types. <sup>[theme author] [plugin author][enterprise]</sup></h3>\n\n\n\n<p>With WordPress 6.9, contributors addressed a limitation in the starter pattern modal, which previously appeared exclusively when creating pages. This restriction is now removed from the `StartPageOptions` component, enabling the modal to display across all post types where patterns exist. The fix resolves a regression introduced in earlier pulls, expanding design flexibility for WordPress content creators working with diverse content structures.(<a href=\"https://github.com/WordPress/gutenberg/pull/69753\">69753</a>)</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"why-iframe-the-post-editor-plugin-author-enterprise\">Why iframe the Post Editor? <br /><sup>[plugin author][enterprise]</sup></h3>\n\n\n\n<p>The process to <a href=\"https://make.wordpress.org/core/2021/06/29/blocks-in-an-iframed-template-editor/\">restructure how the WordPress post editor works</a> started a few years ago.  WordPress 6.9 begins transitioning the editor into this isolated iframe, with full completion coming in WordPress 7.0.  Think of an iframe like a sandbox—a separate container within a webpage. Currently, the editor runs in the same space as WordPress&#8217;s admin interface, causing styling conflicts. This separation prevents admin styles from interfering with content editing, making the editor preview match what readers actually see. Plugin developers need to update older blocks to work with this new setup or they might stop functioning properly. </p>\n\n\n\n<p>The Dev note <a href=\"https://make.wordpress.org/core/2025/11/12/preparing-the-post-editor-for-full-iframe-integration/\">Preparing the Post Editor for Full iframe Integration</a> has more details. And in the comments many immediate questions have been answered. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"relevant-bug-fixes-for-backward-compatibility-checks-theme-author-plugin-author-site-admin\">Relevant bug fixes for backward compatibility checks <sup>[theme author] [plugin author][site admin]</sup></h3>\n\n\n\n<p>Certain bugs have been around for a while and developers often have found work arounds. Now that those bugs are fixed, it might be possible that the work around don’t work any more and it’s feasible to remove it. </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Comments Pagination: Remove unwanted bottom margin from links. (<a href=\"https://github.com/WordPress/gutenberg/pull/70360\">70360</a>)</li>\n\n\n\n<li>Remove screencast.com embed block variation. (<a href=\"https://github.com/WordPress/gutenberg/pull/70480\">70480</a>)</li>\n\n\n\n<li>Tag Cloud: Remove unnecessary full-width padding. (<a href=\"https://github.com/WordPress/gutenberg/pull/69725\">69725</a>)</li>\n\n\n\n<li>HTML Block: Remove space below textarea. (<a href=\"https://github.com/WordPress/gutenberg/pull/70055\">70055</a>)</li>\n\n\n\n<li>Fix : Calendar block: Colors do not change between global styles and theme.json. (<a href=\"https://github.com/WordPress/gutenberg/pull/70184\">70184</a>)</li>\n\n\n\n<li>Image Block: Preserve line breaks in media caption. (<a href=\"https://github.com/WordPress/gutenberg/pull/70476\">70476</a>)</li>\n\n\n\n<li>Search Block: Move search setting to inspector. (<a href=\"https://github.com/WordPress/gutenberg/pull/70144\">70144</a>)</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"new-blocks-all\">New Blocks <sup>[all]</sup></h2>\n\n\n\n<p>WordPress 6.9 brings six new blocks to WordPress editor: an Accordion block and its nested InnerBlocks, a Time-to-read block that also can show the word count of a post or page, the Term Query block, and the Math block to display mathematical formulas in science and essay posts. Comment handling also became easier with two more blocks, Comment Count and Comment Link. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"accordion-block\">Accordion Block</h3>\n\n\n\n<p>The Accordion Block has been long awaited and it is now available to all WordPress users. It’s a nested structure using Accordion Block, Accordion Item, Accordion Heading and Accordion Panel blocks. </p>\n\n\n\n<p>An Accordion block has multiple Accordion Items, each comprising of a Accordion Heading + Icon and an Accordion Panel with the content. </p>\n\n\n\n<p>The default styling is minimal and opens a lot of design possibilities for theme builders to cover all the use cases. On the Developer blog you’ll find a <a href=\"https://developer.wordpress.org/news/2025/10/styling-accordions-in-wordpress-6-9/\">tutorial of the various methods for styling an Accordion block</a>, using the example of an FAQ page (<a href=\"https://github.com/WordPress/gutenberg/pull/64119\">64119</a>)(<a href=\"https://github.com/WordPress/gutenberg/pull/71222\">71222</a>)(<a href=\"https://github.com/WordPress/gutenberg/pull/71388\">71388</a>).</p>\n\n\n\n<p>The Snippets section of the Developer Blog shows how to add <a href=\"https://developer.wordpress.org/news/snippets/schema-org-microdata-for-accordion-block-faqs/\">Schema.org microdata for Accordion block FAQs</a></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-42932\" height=\"495\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Accordion-block.png?resize=652%2C495&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"term-query-block\">Term Query Block</h3>\n\n\n\n<p>Traditionally, creating category and tag pages has been complex and required custom queries and workarounds. The new Terms Query block offers a built-in way to display and organize categories and tags, similar to how the Query block manages posts. (<a href=\"https://github.com/WordPress/gutenberg/pull/70720\">70720</a>)</p>\n\n\n\n<p>There are also supporting blocks: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Term Template block</li>\n\n\n\n<li>Term Name block</li>\n\n\n\n<li>Term Count block</li>\n</ul>\n\n\n\n<p>Together with the already existing Term Description block, this additional support for display of categories or tags is particularly useful for directory and magazine sites who provide content filters and subpages for their readers. The interface provides an `order` and `order-by` sorting in a single dropdown. All blocks have the necessary design tools for styling and the Term Count block also has a toggle to make it a link. For those working extensively with taxonomies, the ongoing <a href=\"https://github.com/WordPress/gutenberg/issues/49094\">hierarchy discussion</a> outlines future enhancements to taxonomy handling in WordPress.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-42936\" height=\"381\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Term-Query-Block.png?resize=652%2C381&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"time-to-read-block\">Time to Read Block</h3>\n\n\n\n<p>The Time to Read block, available in the Gutenberg plugin for a long time went through an extended accessibility review before it was added to WordPress Core. </p>\n\n\n\n<p>It now has a toggle control to display a range of time rather than a fixed average reading time. It also comes with a variation to display a word count for the post or page it’s used on (<a href=\"https://github.com/WordPress/gutenberg/pull/71606\">71606</a>) (<a href=\"https://github.com/WordPress/gutenberg/pull/71841\">71841</a>). </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-42941\" height=\"93\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-10-27-at-17.25.42.png?resize=435%2C93&#038;ssl=1\" width=\"435\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Time to Read / Word Count block WordPress 6.9\" class=\"wp-image-42940\" height=\"229\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-10-27-at-17.25.17.png?resize=652%2C229&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"math-block\">Math Block</h3>\n\n\n\n<p>With the Math Block content creators can now add mathematical formulas in LaTeX syntax to their post and pages. The LaTeX syntax can also be used together with the inline Math format.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-42944\" height=\"287\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Math-Block-WordPress-6.9.png?resize=652%2C287&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-42943\" height=\"457\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Math-block-inline-format.png?resize=652%2C457&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<p>Longer formulas are handled with a horizontal scrollbar.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-43026\" height=\"108\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Math-block-horizontal-scroll.png?resize=525%2C108&#038;ssl=1\" width=\"525\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"comment-count-and-comment-link-blocks\">Comment Count and Comment Link Blocks</h3>\n\n\n\n<p>Two new comment blocks help theme builders to handle comment count and comment links separately. Both blocks have been available in the Gutenberg plugin for a few years and only for the Site editor. Earlier this year, they came out of experimentation and were made available for all editor screens. So now a content creator can for instance include a links to the comment section on top of the post and be more deliberate in allowing access to comments only on certain posts. </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Comment Link and Comment count in Template\" class=\"wp-image-42951\" height=\"194\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Comment-Link-Comment-Count.png?resize=652%2C194&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"updates-to-existing-blocks\">Updates to existing blocks </h2>\n\n\n\n<p>For WordPress 6.9, contributors standardized most blocks&#8217; Inspector settings to use the <a href=\"https://wordpress.github.io/gutenberg/?path=/docs/components-toolspanel--docs\">ToolsPanel component</a>, bringing visual consistency across the editor. The shift grants users granular control over displayed settings while simplifying how developers inject additional options into existing groups. The ToolsPanel aligns Inspector controls with the Styles sidebar, already leveraging the component extensively, creating a cohesive authoring experience. (<a href=\"https://github.com/WordPress/gutenberg/issues/67813\">67813</a>)</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"stretchy-text-for-heading-and-paragraph-blocks-all\">Stretchy Text for Heading and Paragraph blocks. <sup>[all]</sup></h3>\n\n\n\n<p>Both Heading and Paragraph blocks now support a new &#8220;Stretchy&#8221; variation that stretches text to the full width of its container. The transform tool from the button tools bar allowing users to convert text into this stretchy format. </p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-43081\" height=\"271\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Sstretchy-Heading-2025-11-21.png?resize=277%2C271&#038;ssl=1\" width=\"277\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-43082\" height=\"252\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Stretchy-Paragrapph-2025-11-21.png?resize=279%2C252&#038;ssl=1\" width=\"279\" /></figure>\n</figure>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"alignright size-large\"><img alt=\"\" class=\"wp-image-42955\" height=\"158\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Stretchy-slash-command.png?resize=289%2C158&#038;ssl=1\" width=\"289\" /></figure>\n</div>\n\n\n<p>Content creators can find these variations also in the Block inserter or via the Slash command. </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-42956\" height=\"307\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Stretchy-in-inserter.png?resize=354%2C307&#038;ssl=1\" width=\"354\" /></figure>\n\n\n\n<p>Stretchy Text offers designers and content creators an additional creative tool, opening up numerous possibilities for visually appealing text, especially when paired with suitable fonts. </p>\n\n\n\n<p>Developers can add support for this feature to any Custom text block via block.json. (<a href=\"https://github.com/WordPress/gutenberg/pull/73148\">73148</a>)(<a href=\"https://github.com/WordPress/gutenberg/pull/73056\">73056</a>) (<a href=\"https://github.com/WordPress/gutenberg/pull/73067\">73067</a>)(<a href=\"https://github.com/WordPress/gutenberg/pull/72923\">72923</a>)</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>JSON</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">{\n	\"supports\":{\n		\"typography\":{\n				\"fitText\": true,\n		}\n	}\n}\n</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">	</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">supports</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">		</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">typography</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">				</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">fitText</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #D7827E;\">true</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">		</span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">	</span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"></span></code></pre></div>\n\n\n\n		<figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n			\n			\n			\n		</figure>\n		\n\n\n<h3 class=\"wp-block-heading\" id=\"button-block-end-user-siteadmin\">Button Block <sup>[end user] [siteadmin]</sup></h3>\n\n\n\n<p>Button Block now sports HTML element selection in <strong>Advanced</strong> settings, letting creators choose between semantic &lt;a&gt; links and true &lt;button&gt; elements. This tackles accessibility headaches where users mistakenly treat buttons as links, confusing screen readers. The dropdown educates users about proper usage, empowering developers and non-coders alike to build accessible interfaces without custom code (<a href=\"https://github.com/WordPress/gutenberg/pull/70139\">70139</a>).</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"cover-block-improved-video-handling-all\">Cover Block improved video handling <sup>[all]</sup></h3>\n\n\n\n<p>The Cover Block now supports poster images for videos, enhancing accessibility for users with slow internet or mobile devices. These images can be easily added by dragging and dropping the file onto the Poster Image control, streamlining the post creation process (<a href=\"https://github.com/WordPress/gutenberg/pull/70816\">70816</a>) (<a href=\"https://github.com/WordPress/gutenberg/pull/71039\">71039</a>)  (<a href=\"https://github.com/WordPress/gutenberg/pull/70939\">70939</a>).</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-42961\" height=\"397\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Cover-Block-Updates.png?resize=652%2C397&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"details-block-end-user-site-admin-plugin-author\">Details Block <sup>[end user][site admin][plugin author]</sup></h3>\n\n\n\n<p>The Formatting features are now enabled for the Details Block, similar to the Paragraph block. Users can now use special formatting like Strikethrough, Sub or Superscript, and highlighting. This also opens up the list to be extended via plugins. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"gallery-block-all\">Gallery Block <sup>[all]</sup></h3>\n\n\n\n<p>This next WordPress version adds the support for gallery-wide aspect ratio setting to the Gallery Block. User can now set the same aspect ratio for all images in the gallery with one click from the sidebar. <strong>(</strong><a href=\"https://github.com/WordPress/gutenberg/pull/71116\"><strong>71116</strong></a><strong>) (</strong><a href=\"https://github.com/WordPress/gutenberg/pull/72104\"><strong>72104</strong></a><strong>).</strong></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-42962\" height=\"415\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Gallery-block-aspect-ratio.png?resize=652%2C415&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<p>Theme developers can control the availability via theme.json. The code snippet shows an example of removing the default choice <code>defaultAspectRatios</code> and only offering two choices in the editor.</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>JSON</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">\"settings\":{\n        \"blocks\" {\n            \"core/gallery\":{\n                \"dimensions\":{\n                    \"defaultAspectRatios\":false,\n                    \"aspectRatios\": &#91;\n                        {\n                             \"name\": \"Square - 1:1\",\n                             \"slug\": \"square\",\n                             \"ratio\": \"1\"\n                        },\n                        {\n                             \"name\": \"Wide - 16:9\",\n                             \"slug\": \"16-9\",\n                             \"ratio\": \"16/9\"\n                        }\n                  &#93;\n             }          \n         }\n    }\n</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #EA9D34;\">&quot;settings&quot;</span><span style=\"color: #575279;\">:</span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">        </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">blocks</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #575279;\"> </span><span style=\"color: #B4637A;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">            </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">core/gallery</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">dimensions</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                    </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">defaultAspectRatios</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #D7827E;\">false</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                    </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">aspectRatios</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">&#91;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                        </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                             </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">name</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;Square - 1:1&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                             </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">slug</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;square&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                             </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">ratio</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;1&quot;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                        </span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                        </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                             </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">name</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;Wide - 16:9&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                             </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">slug</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;16-9&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                             </span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">ratio</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;16/9&quot;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                        </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">                  </span><span style=\"color: #797593;\">&#93;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">             </span><span style=\"color: #797593;\">}</span><span style=\"color: #575279;\">          </span></span>\n<span class=\"line\"><span style=\"color: #575279;\">         </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">    </span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"></span></code></pre></div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"heading-block-css-specificity-fix-all\">Heading Block CSS specificity fix <sup>[all]</sup></h3>\n\n\n\n<p>WordPress 6.9 fixes a <a href=\"https://github.com/WordPress/gutenberg/pull/72837\">specificity issue with the Heading block&#8217;s</a> background padding. Previously, padding styles applied to headings with backgrounds were affecting other blocks that use heading elements, such as the Accordion Heading block. This fix ensures that background padding is only applied to actual Heading blocks.</p>\n\n\n\n<p>The CSS selector for applying padding to headings with backgrounds has been made more specific. The selector now targets <code>.wp-block-heading.has-background</code> instead of just heading element tags (h1, h2, etc) with the <code>.has-background</code> class. </p>\n\n\n\n<p>Dev note: <a href=\"https://make.wordpress.org/core/2025/11/12/heading-block-css-specificity-fix-in-wordpress-6-9/\">Heading Block CSS Specificity Fix in WordPress 6.9</a></p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"navigation-block-all\">Navigation Block <sup>[all]</sup></h3>\n\n\n\n<p>The Navigation block in this WordPress release has been significantly  improved. Builders can now find the create page functionality directly from the link UI dropdown and the process of creating a page is streamlined by an additional “publish immediately” checkbox. (<a href=\"https://github.com/WordPress/gutenberg/pull/71188\">71188</a>)(<a href=\"https://github.com/WordPress/gutenberg/pull/71487\">71487</a>)</p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"alignleft size-full is-resized\"><img alt=\"navigation page link, add page feature. \" class=\"wp-image-42968\" height=\"368\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/navigation-create-new-page.png?resize=520%2C368&#038;ssl=1\" style=\"width: 326px; height: auto;\" width=\"520\" /></figure>\n</div>\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img alt=\"Navigation create page and immediately publish.\" class=\"wp-image-42969\" height=\"291\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/navigation-create-new-page-publish.png?resize=527%2C291&#038;ssl=1\" style=\"width: 372px; height: auto;\" width=\"527\" /></figure>\n\n\n\n<p>Similarly the button block inside the navigation block also has the option to create a new page. It’s a slightly different approach, but it helps with streamlining site building work. (<a href=\"https://github.com/WordPress/gutenberg/pull/69368\">69368</a>)<br /></p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img alt=\"Navigation button with create page feature. \" class=\"wp-image-42971\" height=\"343\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/navigation-button-create-page.png?resize=398%2C343&#038;ssl=1\" style=\"width: 399px; height: auto;\" width=\"398\" /></figure>\n\n\n\n<p>Site builders can now customize aria-labels independently of menu titles, which is great for accessibility. The text box is located under <strong>Advanced &gt; Menu Name</strong> (<a href=\"https://github.com/WordPress/gutenberg/issues/66935\">66935</a>)</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"Customize the name of the navigation menu\" class=\"wp-image-42972\" height=\"570\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/navigation-menu-name.png?resize=283%2C570&#038;ssl=1\" width=\"283\" /></figure>\n\n\n\n<p>The hamburger icon now consists of individual SVG lines, opening up more styling and animation possibilities. Plus, the automatic panel expansion for Navigation options in site editing makes the workflow smoother. (<a href=\"https://github.com/WordPress/gutenberg/issues/71791\">71791</a>)(<a href=\"https://github.com/WordPress/gutenberg/issues/56346\">56346</a>) (<a href=\"https://github.com/WordPress/gutenberg/pull/69343\">69343</a></p>\n\n\n\n<p>To improve the robustness of the Navigation, the Navigation Link Block is now creating the URL dynamically and even if the slug of the page changes the link will be automatically updated.(<a href=\"https://github.com/WordPress/gutenberg/issues/72422\">72422</a>) A similar mechanism also was applied to the Navigation Submenu block. </p>\n\n\n\n<p>The submenu control of the background is now much easier. A new slider control for the overlay helps with the design. (<a href=\"https://github.com/WordPress/gutenberg/pull/69379\">69379</a>)</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Navigation submenu overlay slider \" class=\"wp-image-42973\" height=\"278\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Navigation-submenu-background-overlay.png?resize=652%2C278&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<p>In template part view, a new button <strong>Edit Navigation</strong> helps users to update Navigation block settings and menu items directly from this view.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-42976\" height=\"126\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/navigation-edit-button-template-part-edited.png?resize=552%2C126&#038;ssl=1\" width=\"552\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"query-loop-blocks-all\">Query Loop Blocks <sup>[all]</sup></h3>\n\n\n\n<p>Blocks primarily used in a Query Loop context received a few quality-of-life enhancements and accessibility controls. </p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"alignright size-full\"><img alt=\"content block HTML element selection. \" class=\"wp-image-42977\" height=\"297\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/content-html-element.png?resize=284%2C297&#038;ssl=1\" width=\"284\" /></figure>\n</div>\n\n\n<h4 class=\"wp-block-heading\" id=\"content-block\">Content Block</h4>\n\n\n\n<p>The Content block in WordPress 6.9 now features a `tagName` selector in its Advanced Settings. This allows theme builders to replace the default div wrapper with semantic HTML elements (like main, section, or article), improving accessibility, SEO, and content structure. This powerful tool enhances how blocks align with web standards.<strong> </strong><strong>(</strong><a href=\"https://github.com/WordPress/gutenberg/pull/70698\"><strong>70698</strong></a><strong>)</strong></p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"date-block-supports-custom-dates\">Date Block supports custom dates.</h4>\n\n\n\n<p>The Date block has undergone significant enhancements. It now supports custom dates, and its existing Post Date and Last Modified Date variations have been updated to utilize Block Bindings. This change involved creating a new binding source, core/post-data, which exposes the publish date as date and the last modified date as modified for any given post (<a href=\"https://github.com/WordPress/gutenberg/pull/70585\">70585</a>).</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-42980\" height=\"378\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/date-publish-modified.png?resize=278%2C378&#038;ssl=1\" width=\"278\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-42979\" height=\"338\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/date-select-format.png?resize=283%2C338&#038;ssl=1\" width=\"283\" /></figure>\n</figure>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"query-title-get-post-type-label\">Query Title get Post Type label</h4>\n\n\n\n<p>The Query Loop block now supports a new <a href=\"https://github.com/WordPress/gutenberg/pull/71167\">Post Type Label variation</a>. This feature enables users to display the post type of the current item within the block, which is especially helpful for showcasing the post type name when creating custom post type archive templates. (<a href=\"https://github.com/WordPress/gutenberg/pull/71167\">71167</a>)</p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img alt=\"Query block post type labels\" class=\"wp-image-42984\" height=\"570\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/query-post-type-labels-edited.png?resize=652%2C570&#038;ssl=1\" style=\"width: 498px; height: auto;\" width=\"652\" /></figure>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"query-total\">Query Total</h4>\n\n\n\n<p>The total number of query results return are displayed via the Query Total block. In WordPress 6.9, this block received color controls for styling. (<a href=\"https://github.com/WordPress/gutenberg/pull/69500\">69500</a>)</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"rss-block-end-user\">RSS Block <sup>[end user]</sup></h3>\n\n\n\n<p>The RSS Block is a block to display another website&#8217;s RSS feed in a post or template. This version holds two small updates: An added option to display the links in a new tab or window and to control the `rel` attributes. RSS feeds from third-party sources sometimes include HTML entities in their titles. In a bug fix, the RSS Block now displays titles correctly. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"separator-block-theme-author-site-admin-plugin-author\">Separator Block <br /><sup>[theme author][site admin][plugin author]</sup></h3>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"alignright size-full is-resized\"><img alt=\"\" class=\"wp-image-42982\" height=\"590\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/separator-html-element.png?resize=431%2C590&#038;ssl=1\" style=\"width: 218px; height: auto;\" width=\"431\" /></figure>\n</div>\n\n\n<p>A small update to the Separator block opens the styling options for designers: The HTML element can now be changed from a `&lt;hr&gt;` to a `&lt;div/&gt;` tag in not only increasing the range of design option but also accessibility. (<a href=\"https://github.com/WordPress/gutenberg/pull/70185\">70185</a>)</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"social-icons-block-developers-enterprise\">Social Icons Block <sup>[developers][enterprise]</sup></h3>\n\n\n\n<p>The update to the Social Icons Block enables now extenders to register custom Social Icons variations. This way, any group of Social Icons that are relevant to the site owner can be created and used in the content, for instance icons of various Podcast directories, or to add icons for payment systems not available in core. </p>\n\n\n\n<p>On the WordPress Developer Block developers will find a tutorial on <a href=\"https://developer.wordpress.org/news/2025/08/registering-custom-social-icons-in-wordpress-6-9/\">how to register their own social media icons</a><strong>. </strong>Plugin developers can now remove existing icons and register their own. (<a href=\"https://github.com/WordPress/gutenberg/pull/70261\">70261</a>)</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-42985\" height=\"111\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/social-icons-more.png?resize=513%2C111&#038;ssl=1\" width=\"513\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-42986\" height=\"136\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/social-icon-podcasts.png?resize=380%2C136&#038;ssl=1\" width=\"380\" /></figure>\n\n\n\n<p>A bug fix now makes sure the social icons honor theme.json styles for typography. (<a href=\"https://github.com/WordPress/gutenberg/pull/70380\">70380</a>)</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>JSON</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">\"core/social-links\": {\n		\"typography\": {\n			\"fontSize\": \"var(--wp--preset--font-size--x-large)\"\n		}\n},</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #EA9D34;\">&quot;core/social-links&quot;</span><span style=\"color: #575279;\">: </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">		</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">typography</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">			</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">fontSize</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;var(--wp--preset--font-size--x-large)&quot;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">		</span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">}</span><span style=\"color: #575279;\">,</span></span></code></pre></div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"table-block-end-users-site-admin\">Table Block   <sup>[end users][site admin]</sup></h3>\n\n\n\n<p>The Table block received more robust handling of Markdown table parsing, specifically retaining alignment from a Markdown table. </p>\n\n\n\n<p style=\"font-size: 12px;\">| A &#8211; Left | B &#8211; Centered | C &#8211; Right | D &#8211; None |</p>\n\n\n\n<p style=\"font-size: 12px;\">| :&#8212;&#8212;- | :&#8212;&#8212;&#8212;-: | &#8212;&#8212;&#8211;: | &#8212;&#8212;&#8211; |</p>\n\n\n\n<p style=\"font-size: 12px;\">| 100      |     150      |       200 | 250      |</p>\n\n\n\n<p style=\"font-size: 12px;\">| 200      |     250      |       300 | 350      |</p>\n\n\n\n<p style=\"font-size: 12px;\">| 300      |     350      |       400 | 450      |</p>\n\n\n\n<p style=\"font-size: 12px;\">| 400      |     450      |       500 | 550      |</p>\n\n\n\n<p style=\"font-size: 12px;\">| 500      |     550      |       600 | 650      |</p>\n\n\n\n<p>The above Markdown example parsed into the block editor canvas is automatically converted to the Table block.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-42987\" height=\"232\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/table-block-markdown.png?resize=652%2C232&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"video-block-all\">Video Block <sup>[all]</sup> </h3>\n\n\n\n<p>The Video Block can now handle multiple language tracks with the option to set one as the default track. It’s also possible to add a poster image to the video block to improve accessibility for visitors with slow internet connections (<a href=\"https://github.com/WordPress/gutenberg/pull/71039\">71039</a>) (<a href=\"https://github.com/WordPress/gutenberg/pull/70939\">70939</a>)(<a href=\"https://github.com/WordPress/gutenberg/pull/70227\">70227</a>).</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-42989\" height=\"370\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/video-tracks-handling.png?resize=652%2C370&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-42988\" height=\"368\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/video-with-language-tracks.png?resize=652%2C368&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"theme-json-and-global-styles-developers-enterprise-site-admin\">Theme.json and Global Styles <br /><sup>[developers][enterprise][site admin]</sup></h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"form-elements-in-theme-json\">Form elements in theme.json</h3>\n\n\n\n<p>WordPress theme development reaches new enrichment with theme.json support for form element styling. Developers can now target text-based controls and select/dropdown elements through the styles.elements property, defining colors, borders, and typography directly in Global Styles. </p>\n\n\n\n<p>This eliminates custom CSS dependencies, allowing search forms, comment forms, and plugin-generated forms to automatically inherit the site&#8217;s design system. (<a href=\"https://github.com/WordPress/gutenberg/issues/34198\">34198</a>) (<a href=\"https://github.com/WordPress/gutenberg/pull/70378\">70378</a>) (<a href=\"https://github.com/WordPress/gutenberg/pull/70379\">70379</a>) Below snippet shows an example for the textInput element. </p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>JSON</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">\"elements\": {\n	\"textInput\": {\n			\"border\": {\n				\"radius\": \"0\",\n				\"style\": \"solid\",\n				\"width\": \"1px\",\n				\"color\": \"red\"\n			},\n			\"color\": {\n				\"text\": \"var(--wp--preset--color--theme-2)\"\n			},\n			\"typography\": {\n				\"fontFamily\": \"var(--wp--preset--font-family--inter)\"\n			}\n		}\n}\n</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #EA9D34;\">&quot;elements&quot;</span><span style=\"color: #575279;\">: </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">	</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">textInput</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">			</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">border</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">				</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">radius</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;0&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">				</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">style</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;solid&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">				</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">width</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;1px&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">				</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;red&quot;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">			</span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">			</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">color</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">				</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">text</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;var(--wp--preset--color--theme-2)&quot;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">			</span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">			</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">typography</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">				</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">fontFamily</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;var(--wp--preset--font-family--inter)&quot;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">			</span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">		</span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"></span></code></pre></div>\n\n\n\n<p>An additional resource is the tutorial on the WordPress Developer blog: <a href=\"https://developer.wordpress.org/news/2025/11/how-wordpress-6-9-gives-forms-a-theme-json-makeover/\">How WordPress 6.9 gives forms a theme.json makeover</a></p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"border-radius-presets-supported\">Border Radius presets supported </h3>\n\n\n\n<p>It’s now possible to define border radius presets in the `theme.json` for your theme. The user experience changes slightly with the numbers of presets: up until eight, a user can enable the border radius along a slider. For nine and more present the user uses a drop-down select menu. Users can always access custom value input through the custom button to the right of the control.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-42991\" height=\"261\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/border-radius-presets.png?resize=560%2C261&#038;ssl=1\" width=\"560\" /></figure>\n\n\n\n<p>As an example you can add the following to the `settings` property of your `theme.json` file. (<a href=\"https://github.com/WordPress/gutenberg/pull/67544\">67544</a>). \\</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>JSON</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">{ \n\"settings\"{\n	\"border\": {\n		\"radiusSizes\": &#91;\n				{\n					\"name\": \"Small\",\n					\"slug\": \"small\",\n					\"size\": \"2px\"\n				},\n				{\n					\"name\": \"Medium\",\n					\"slug\": \"medium\",\n					\"size\": \"4px\"\n				},\n				{\n					\"name\": \"Large\",\n					\"slug\": \"large\",\n					\"size\": \"6px\"\n				}\n			&#93;\n	}\n}</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #797593;\">{</span><span style=\"color: #575279;\"> </span></span>\n<span class=\"line\"><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">settings</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #B4637A;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">	</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">border</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">		</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">radiusSizes</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">&#91;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">				</span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">					</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">name</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;Small&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">					</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">slug</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;small&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">					</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">size</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;2px&quot;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">				</span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">				</span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">					</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">name</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;Medium&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">					</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">slug</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;medium&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">					</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">size</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;4px&quot;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">				</span><span style=\"color: #797593;\">},</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">				</span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">					</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">name</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;Large&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">					</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">slug</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;large&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">					</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">size</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;6px&quot;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">				</span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">			</span><span style=\"color: #797593;\">&#93;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">	</span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">}</span></span></code></pre></div>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The Dev note has been published: <a href=\"https://make.wordpress.org/core/2025/11/12/theme-json-border-radius-presets-support-in-wordpress-6-9/\">Theme.json Border Radius Presets Support in WordPress 6.9</a></li>\n\n\n\n<li>A step-by-step guide can be found on the WordPress Developer blog: <a href=\"https://developer.wordpress.org/news/2025/09/border-radius-size-presets-in-wordpress-6-9/\">Border radius size presets in WordPress 6.9</a>. </li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"button-element-inherits-typography\">Button element inherits typography</h3>\n\n\n\n<p>With the release of WordPress 6.9, the button element defined in the default `theme.json` can inherit typographical styles from its parent. (<a href=\"https://github.com/WordPress/gutenberg/pull/70676\">70676</a>) </p>\n\n\n\n<p>The full styles for the element now look like this:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro cbp-has-line-numbers\"><span>JSON</span><span class=\"code-block-pro-copy-button\" style=\"color: #575279; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">{\n	\"styles\": {\n		\"elements\": {\n			\"button\": {\n				\"typography\": {\n					\"fontSize\": \"inherit\",\n					\"fontFamily\": \"inherit\",\n					\"fontStyle\": \"inherit\",\n					\"fontWeight\": \"inherit\",\n					\"letterSpacing\": \"inherit\",\n					\"textTransform\": \"inherit\",\n					\"lineHeight\": \"inherit\",\n					\"textDecoration\": \"none\"\n				}\n			}\n	}\n}</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki rose-pine-dawn\" style=\"background-color: #faf4ed;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">	</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">styles</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">		</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">elements</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">			</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">button</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">				</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">typography</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #797593;\">{</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">					</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">fontSize</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;inherit&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">					</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">fontFamily</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;inherit&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">					</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">fontStyle</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;inherit&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">					</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">fontWeight</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;inherit&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">					</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">letterSpacing</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;inherit&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">					</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">textTransform</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;inherit&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">					</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">lineHeight</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;inherit&quot;</span><span style=\"color: #797593;\">,</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">					</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #56949F;\">textDecoration</span><span style=\"color: #797593;\">&quot;</span><span style=\"color: #797593;\">:</span><span style=\"color: #575279;\"> </span><span style=\"color: #EA9D34;\">&quot;none&quot;</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">				</span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">			</span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #575279;\">	</span><span style=\"color: #797593;\">}</span></span>\n<span class=\"line\"><span style=\"color: #797593;\">}</span></span></code></pre></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"a-closer-look-at-performance-optimizations-developers-enterprise\">A closer look at performance optimizations <br /><sup>[developers][enterprise]</sup></h2>\n\n\n\n<p>WordPress 6.9 speeds up your site through several technical improvements. Scripts load more efficiently with priority ordering and move to footers when appropriate. Stylesheets load only when needed, particularly in classic themes, while styles for hidden blocks are omitted. The inline style limit increased to 40K. A new optimization system enables previously impossible efficiency gains. Database queries, UTF-8 processing, and cron tasks all improved. The Video block also eliminates layout shifts. Overall: more efficient performance across the board.</p>\n\n\n\n<p>Details are in this Dev Note: <a href=\"https://make.wordpress.org/core/2025/11/18/wordpress-6-9-frontend-performance-field-guide/\">WordPress 6.9 Frontend Performance Field Guide</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"improved-accessibility-across-core-and-block-editor\">Improved accessibility across Core and Block editor</h2>\n\n\n\n<p>WordPress 6.9 delivers substantial accessibility enhancements across Core and Gutenberg, implementing 33 Core improvements and 44 Gutenberg refinements. Core updates address administration interfaces, customizer tools, login and registration workflows, media library functionality, and bundled themes. </p>\n\n\n\n<p>Key changes include enhanced screen reader notifications, improved CSS-generated content handling, refined focus management, and superior color contrast adjustments. Gutenberg advances feature new accessible blocks, component redesigns, and data views improvements ensuring consistent editor interfaces. </p>\n\n\n\n<p>Updates span Cover blocks, Site Title, Navigation elements, Button blocks, and Columns, alongside Component refinements addressing modal dialogs, font size pickers, and link controls. </p>\n\n\n\n<p>Data Views enhancements prioritize checkbox visibility and text-based actions. Editor modifications involve iframe CSS classes, pattern modal behavior, and focus management within Global Styles panels. </p>\n\n\n\n<p>These comprehensive improvements reinforce WordPress&#8217;s commitment to Web Content Accessibility Guidelines standards, enabling creators to develop inclusive content while providing developers cleaner, more accessible code foundations for theme and plugin development.</p>\n\n\n\n<p>Details on the developer note <a href=\"https://make.wordpress.org/core/2025/11/19/accessibility-improvements-in-wordpress-6-9/\">Accessibility Improvements in WordPress 6.9</a></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"new-and-updated-apis-for-developers-developers-enterprise\">New and updated APIs for Developers<br /><sup>[developers][enterprise]</sup></h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"abilities-api\">Abilities API</h3>\n\n\n\n<p>WordPress 6.9 features the Abilities API, a new foundational system designed to standardize how plugins, themes, and the WordPress core register and expose their capabilities. This API provides a unified, machine-readable registry of functionalities, ensuring consistent discovery, validation, and execution across various contexts, including PHP, REST API endpoints, and upcoming AI integrations.</p>\n\n\n\n<p>More resources: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Dev Note:<a href=\"https://make.wordpress.org/core/2025/11/10/abilities-api-in-wordpress-6-9/\">Abilities API in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/ai/2025/07/17/ai-building-blocks/\">AI Building Blocks for WordPress</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"block-bindings-api\">Block Bindings API</h3>\n\n\n\n<p>Updates to the <a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-bindings/\">Block Bindings API</a> include enabling it for a few more core blocks. The refactor of the Date block is one of those examples. (<a href=\"https://github.com/WordPress/gutenberg/pull/70585\">70585</a>)</p>\n\n\n\n<p>Another is enabling Image block’s caption data to be available for Synced Pattern Overrides. (<a href=\"https://github.com/WordPress/gutenberg/pull/72476\">72476</a>).  </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-42996\" height=\"203\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Block-bindings-list-of-supported-blocks.png?resize=652%2C203&#038;ssl=1\" width=\"652\" /><figcaption class=\"wp-element-caption\">The list of supported block attributes by Block Bindings API.</figcaption></figure>\n\n\n\n<p>The function `getFieldsList` was available via the Gutenberg plugin and has been merged into WordPress Core now. Also, the attributes UI in the Block editor is now more flexible and handles any attributes from plugin developers. [Details will be available on the DevNote.]<br />More details can be found in the Dev Note: <a href=\"https://make.wordpress.org/core/2025/11/12/block-bindings-improvements-in-wordpress-6-9/\">Block Bindings improvements in WordPress 6.9</a></p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"dataviews-and-dataform\">DataViews and DataForm</h3>\n\n\n\n<p>WordPress 6.9 marks substantial progress for DataViews and DataForm components. There are no user-facing updates. Plugin developers can use the components for their products and on admin pages. </p>\n\n\n\n<p>The <strong>Field API</strong> now handles array, boolean, email, media, date, datetime, telephone, password, URL, and color types with comprehensive validation support. </p>\n\n\n\n<p><strong>DataViews</strong> gained sophisticated filtering with type-specific operators, infinite scroll capabilities, and improved table layouts featuring alignment and action column pinning. </p>\n\n\n\n<p><strong>DataForm</strong> received new layout options including modal panels and card designs, alongside controls matching the expanded field types. </p>\n\n\n\n<p>The new <strong>DataViewsPicker</strong> component is a selection-focused variant of DataViews designed for building item picker interfaces. It extends the familiar DataViews API with selection management and action buttons, making it ideal for workflows where users need to browse and pick items from a dataset. </p>\n\n\n\n<p>These enhancements collectively strengthen the block editor&#8217;s data management infrastructure, enabling developers to build more capable interfaces while maintaining consistency across WordPress&#8217;s content administration.</p>\n\n\n\n<p>Dev Note: <a href=\"https://make.wordpress.org/core/2025/11/11/dataviews-dataform-et-al-in-wordpress-6-9/\">DataViews, DataForm, et al. in WordPress 6.9</a></p>\n\n\n\n		<figure class=\"wp-block-jetpack-videopress jetpack-videopress-player\">\n			<div class=\"jetpack-videopress-player__wrapper\"> </div>\n			\n			\n		</figure>\n		\n\n\n<h3 class=\"wp-block-heading\" id=\"interactivity-api\">Interactivity API</h3>\n\n\n\n<p>Updates in WordPress 6.9 the Interactivity API with standardized directive IDs using triple-dash syntax, enabling multiple directives on single elements. The deprecated data-wp-ignore directive is removed. New TypeScript helpers AsyncAction and TypeYield improve asynchronous action typing. Client-side navigation improvements include dynamic stylesheet and script module loading, support for nested router regions, new attachTo options for overlays, and enhanced getServerState and getServerContext functions for proper state management across page transitions.</p>\n\n\n\n<p>The Dev Notes provide more details and code examples. </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/interactivity-apis-client-navigation-improvements-in-wordpress-6-9/\">Interactivity API’s client navigation improvements in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/changes-to-the-interactivity-api-in-wordpress-6-9/\">Changes to the Interactivity API in WordPress 6.9</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"output-buffering-for-the-rendered-template\">Output buffering for the rendered template </h3>\n\n\n\n<p>WordPress 6.9 introduces a new way for plugin developers to handle HTML output, called the &#8220;template enhancement output buffer.&#8221; It standardizes output, meaning instead of plugins creating their own temporary storage for HTML, WordPress now provides a built-in system. If a plugin developer wants to use this feature, they just need to add a special wp_template_enhancement_output_buffer filter <em>before</em> the template is loaded. This system is designed for making small improvements or additions to a page, not for essential parts of the website&#8217;s functionality. If a website doesn&#8217;t want to use this buffer, it can disable it by filtering wp_should_output_buffer_template_for_enhancement to be false. </p>\n\n\n\n<p>For older (classic) WordPress themes, this buffer is now enabled by default. This allows them to load block styles only when needed and move them to the &lt;head&gt; section of the HTML, which can significantly reduce the amount of CSS on a page. Even if the page has already started loading, you can still send HTTP headers (like Server-Timing) while the output is being buffered. #<a href=\"https://core.trac.wordpress.org/ticket/64126\">64126</a>). <a href=\"https://core.trac.wordpress.org/ticket/43258\">#43258</a> (<a href=\"https://github.com/WordPress/wordpress-develop/pull/8412#issuecomment-3344496798\">PR#8412</a>) More details are available in the Dev Note. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"blocks-efficiently-find-and-traverse-blocks-in-a-document\">Blocks: Efficiently find and traverse blocks in a document. </h3>\n\n\n\n<p>The Block Processor class is now available in WordPress 6.9 to efficiently scan through and manipulate block structure in a lazy and streaming manner. For certain workloads this should dramatically improve the performance of processing code, and even more importantly, prevent out-of-memory crashes in the worst cases. [<a href=\"https://github.com/WordPress/wordpress-develop/pull/9105\">Core#9105</a>] <a href=\"https://core.trac.wordpress.org/ticket/61401\">(61401)</a>. </p>\n\n\n\n<p>It’s an more </p>\n\n\n\n<p>Do you need to do any of the following kinds of things? Check out <a href=\"https://github.com/WordPress/wordpress-develop/blob/trunk/src/wp-includes/class-wp-block-processor.php\">WP_Block_Processor</a>!</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Checking if a post contains a block of a given type.</li>\n\n\n\n<li>Counting or detecting all of the kinds of blocks present in a post.</li>\n\n\n\n<li>Modifying a block of a given kind within a post, not touching any of the other blocks.</li>\n\n\n\n<li>Finding the “wrapper element” surrounding the inner blocks and adding a class name to it.</li>\n\n\n\n<li>Extract sections of a document as blocks, modify it, serialize it back, and replace the original blocks with the new HTML.</li>\n</ul>\n\n\n\n<p>Dev Note: <a href=\"https://make.wordpress.org/core/?p=119384&amp;preview=1&amp;_ppp=7c4f90d12d\">Introducing the streaming block parser in WordPress 6.9</a></p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"more-developer-notes-for-wordpress-6-9-release\">More Developer Notes for WordPress 6.9 release</h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2025/11/18/modernizing-utf-8-support-in-wordpress-6-9/\">Modernizing UTF-8 support in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/17/consistent-cache-keys-for-query-groups-in-wordpress-6-9/\">Consistent Cache Keys for Query Groups in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/17/miscellaneous-developer-focused-changes-in-6-9/\">Miscellaneous Developer-focused Changes in 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/18/more-reliable-email-in-wordpress-6-9/\">More-reliable email in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/19/admin-menu-search-query-changed/\">Admin menu search query changed</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/19/legacy-internet-explorer-code-removed/\">Legacy Internet Explorer Code Removed</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/19/url-escaping-functions-can-support-https-as-the-default-protocol-in-wordpress-6-9/\">URL-escaping functions can support HTTPS as the default protocol in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/21/updates-to-the-html-api-in-6-9/\">Updates to the HTML API in 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/21/php-8-5-support-in-wordpress-6-9/\">PHP 8.5 support in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/25/miscellaneous-editor-changes-in-wordpress-6-9/\">Miscellaneous Editor Changes in WordPress 6.9</a></li>\n</ul>\n\n\n\n<p>There are a few dev notes in the publishing queue, including a list of accessibility updates. This post will be updated once available. </p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Nov 2025 09:42:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:33;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"Open Channels FM: New Host Nathan Wrigley Brings Chaos to Open Channels FM\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=112374\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://openchannels.fm/new-host-nathan-wrigley-brings-chaos-to-open-channels-fm/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:176:\"At WordCamp Europe, BobWP and Nathan cooked up \"The Shit Show\" podcast, discussing everything from penguins to soap. Tune in for quirky insights and Nathan’s endless droning.\";s: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, 21 Nov 2025 09: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: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Matt: In Memoriam\";s:7:\"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=150624\";s:7:\"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:34:\"https://ma.tt/2025/11/in-memoriam/\";s: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:779:\"<p>While there is much to celebrate in WordPress sometimes we must also mourn.</p>\n\n\n\n<p>In a <a href=\"https://timesofindia.indiatimes.com/city/surat/24-year-old-dies-after-collapsing-on-stage-at-it-event/articleshow/125394242.cms\">horribly tragic incident</a>, <a href=\"https://zeelthakkar.in/\">Zeel Thakkar</a>, a <a href=\"https://profiles.wordpress.org/zeelthakkar/\">WordPress contributor</a> and Kim Parsell Memorial Scholarship 2025 recipient, passed away <a href=\"https://x.com/wcsurat/status/1990766081754226923\">on stage at WordCamp Surat</a>. <a href=\"https://asia.wordcamp.org/2026/in-loving-memory-of-zeel-thakkar/\">WordCamp Asia has written a beautiful memorial to her</a>. She will be forever on our <a href=\"https://wordpress.org/remembers/\">Remembers page</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, 21 Nov 2025 07:59:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: Gemini &amp;amp; FSD\";s:7:\"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=150613\";s:7:\"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:33:\"https://ma.tt/2025/11/gemini-fsd/\";s: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:1644:\"<p>Two interesting AI updates this week: It&#8217;s nice to read <a href=\"https://x.com/karpathy/status/1988705360723763242\">Andrej Karpathy&#8217;s review of Tesla&#8217;s FSD v13</a>, as someone who was involved with creating their first self-driving efforts. I&#8217;ve only experienced v12, so very excited to try out the latest generations soon. Ubiquitous self-driving will reshape cities and save countless lives.</p>\n\n\n\n<p>On the heels of announcing a <a href=\"https://x.com/sundarpichai/status/1989468970400055487\">$40B investment in Texas</a>, Google <a href=\"https://x.com/sundarpichai/status/1990812770762215649\">has launched Gemini 3</a>. It&#8217;s still funny how every organization ships its org chart with the naming and accessibility of the various models it releases, but, more broadly, it is so exciting to see so much intellectual capital focused on this area, with the frontier labs leapfrogging each other every few months. Every model has a feel, and with <a href=\"https://blog.google/products/gemini/gemini-3/\">Gemini 3</a> you start to feel the breadth of Google&#8217;s long investment in the space show up in interesting ways. Yet it can still be beaten in coding by an upstart like Anthropic with a fraction of Alphabet&#8217;s resources. </p>\n\n\n\n<p>What a time to be alive. Witnessing multiple excellent organizations ship the best work of their career rapidly is invigorating and inspiring; the competition drives better results, and the diffusion of new approaches is rapid. The consumer surplus that we all benefit from is just beginning to be felt; we&#8217;re maybe 1 or 2% impacted in the economy so far.</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, 20 Nov 2025 01:22: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: #194 – Devin Walker on Leading Jetpack: Challenges, Vision, and the Future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=200819\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wptavern.com/podcast/194-devin-walker-on-leading-jetpack-challenges-vision-and-the-future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:46775:\"<details>Transcript<div>\n<p>[00:00:19] <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, leading Jetpack, the past, the challenges, the vision, and the future.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Devin Walker. Devin&#8217;s journey in the WordPress ecosystem spans many years, with experience in development, design, marketing, and customer support. He is best known as the co-founder of GiveWP, which he built and scaled before it was acquired. During his time there, he touched a variety of prominent WordPress brands, including iThemes, Kadence, LearnDash, and The Events Calendar.</p>\n\n\n\n<p>Today Devon is starting a new role leading the Jetpack suite of services at Automattic. It&#8217;s a position with hefty responsibilities as Jetpack powers millions of WordPress sites, and integrates deeply across</p>\n\n\n\n<p>I talk with Devon about why he took on this challenge. The divisiveness and complexity surrounding Jetpack, and his vision for refocusing the plugin and simplifying its user experience.</p>\n\n\n\n<p>We start by hearing about Devon&#8217;s extensive WordPress background, and the choices he weighed up when deciding to join Automattic.</p>\n\n\n\n<p>The conversation quickly moves to the scope of Jetpack, its evolution, the struggle to be a jack of all trades master of none, and the recent efforts to bring greater focus and polish to key features like forms and SEO</p>\n\n\n\n<p>Devin gets into the organizational changes at Automattic. How Jetpack&#8217;s development teams now collaborate more fluidly with other product teams, such as WooCommerce, and the balancing act of shipping improvements to a 4 million strong user base without breaking things.</p>\n\n\n\n<p>AI emerges as a massive new frontier, and Devin shares behind the scenes insights into Jetpack&#8217;s current, and future, aI capabilities, giving us a glimpse at content creation, block building, and how AI might reshape user and developer expectations in WordPress.</p>\n\n\n\n<p>Throughout we hear about Devin&#8217;s approach to product marketing, and the need for more of it, the importance of listening to user feedback, and his plans for a more coherent and compelling Jetpack experience.</p>\n\n\n\n<p>If you&#8217;re a WordPress user wondering where Jetpack is headed, what&#8217;s working, or how AI fits into the future of site building, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you can find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Devin Walker.</p>\n\n\n\n<p>I am joined on the podcast by Devin Walker. Hello, Devin.</p>\n\n\n\n<p>[00:03:34] <strong>Devin Walker:</strong> Hello.</p>\n\n\n\n<p>[00:03:35] <strong>Nathan Wrigley:</strong> Very nice to have you with us. Devin has a shiny new job. Up until a few weeks ago, Devin was not an Automattician, or at least I don&#8217;t think you were maybe at any point in your past. But you are now an Automattition, and you are doing what?</p>\n\n\n\n<p>[00:03:47] <strong>Devin Walker:</strong> My official title is Artistic Director of Jetpack, but basically product owner, or head of Jetpack. Whatever you want to call it.</p>\n\n\n\n<p>[00:03:55] <strong>Nathan Wrigley:</strong> So when it comes to Jetpack, the buck stops with you. I guess that&#8217;s a pretty important role in the WordPress space over at Automattic. And if anybody hasn&#8217;t heard of you, I suppose it would be important to just lay the groundwork, who you are, what you&#8217;ve done in the past.</p>\n\n\n\n<p>I know you&#8217;ve got a long and storied history, but just maybe a one minute little short bio telling us who you are and what you&#8217;ve done.</p>\n\n\n\n<p>[00:04:14] <strong>Devin Walker:</strong> Yeah, sure. I&#8217;ve been using WordPress for all sorts of things, development, design, blogging for 16 years now. Really made my name known, I guess you would say, with Matt Cromwell. We co-founded GiveWP together, and we grew it for seven years, from late 2014, all the way through 2021, which then we were acquired by Liquid Web and was there for a little more than four years, and touched a lot of brands from there, from the iThemes rebrand to SolidWP, to Kadence, to LearnDash, Events Calendar, and of course GiveWP as well.</p>\n\n\n\n<p>And left there in early August of this year, 2025. I also built WP Rollback throughout the years, that has quite a few active installs. So yeah, that&#8217;s a bit about me. Developer, design background, definitely well-rounded with marketing and supporting customer success.</p>\n\n\n\n<p>[00:05:05] <strong>Nathan Wrigley:</strong> So you&#8217;ve had a lot of experience working with WordPress products, which I guess is what you are doing over at Automattic, because let&#8217;s just call it head of Jetpack, just to make it easy. It&#8217;s a curious title, by the way. Artistic Director is kind of a really.</p>\n\n\n\n<p>[00:05:17] <strong>Devin Walker:</strong> You know Automattic loves that title.</p>\n\n\n\n<p>[00:05:18] <strong>Nathan Wrigley:</strong> Yeah, they love that, don&#8217;t they? But head of Jetpack, and obviously you&#8217;ve got a long and storied history kind of growing products and making sure that they succeed and customer support and all of that kind of thing.</p>\n\n\n\n<p>And I feel like Jetpack, no matter what time you dropped in on Jetpack in the last, let&#8217;s say decade, I feel that half of the community felt like it needed a lot of love.</p>\n\n\n\n<p>And I&#8217;m just wondering when you were interviewing for this position or when this position was offered to you, I don&#8217;t know how that process went, but what the kind of broad brush strokes are in what you&#8217;re hoping to do over there?</p>\n\n\n\n<p>We&#8217;ll get into the weeds very much, but roughly speaking, what&#8217;s the scope of the new job? What is it that you are hoping to do in the next three, six months, years, something like that?</p>\n\n\n\n<p>[00:05:57] <strong>Devin Walker:</strong> Yeah, so when I left Liquid Web, I wrote a long, well, not long, but wrote a blog post about closing that chapter of my career and really being open to what&#8217;s coming next for me. I knew that I wanted to stay in WordPress and I was having fun building on just my own products at the time, and having full control of everything, the whole lifecycle of a product.</p>\n\n\n\n<p>And I did some work with Matt in the past on some of his nonprofit sites with Give and the VIP team and the concierge at Automattic. And so Matt called me up one day, you know, we stayed loosely in contact over the years, and said, we have some interesting opportunities here at Automattic, and one of them that I think you&#8217;d be great at is Jetpack. And in my mind I&#8217;m like, Jetpack, this is a doozy.</p>\n\n\n\n<p>But, you know, he said, give it some thought, work on your own pace and give me a call back whenever. And so I thought about it for a week and, maybe two weeks, talked to my wife about it. And really it comes down to, I was either going to start my own business again, and try to grind again and strike lightning twice, like GiveWP, and see if I could grow something and eventually sell it in five to seven years, which takes a lot of hard effort, sacrifice, money. A lot of your own money, and almost no guarantee. And the WordPress marketplace has changed so much that it&#8217;s not immediate impact right away, and you&#8217;re really out on your own.</p>\n\n\n\n<p>It worked well once, but I was in my early thirties, just turning 30, and now I&#8217;m 40. So life&#8217;s changed quite a bit for me. And Jetpack, it is a very divisive product, we can get more into that in the future, but really it came down to having that impact. Being at Automattic, a company that I&#8217;ve respected since I came into WordPress, and always wanted to go behind the scenes and work as an Automattician, so going full circle from where my career began to the opportunity and the challenge.</p>\n\n\n\n<p>If I succeed at this, it can really open some other doors at Automattic. I&#8217;m head of this product, which touches almost everything on Automattic as far as the WordPress business goes. I just thought about it long and hard, talked to Matt about it, and made sure I would have the levers for success also. And that&#8217;s what made me choose to say yes and come aboard.</p>\n\n\n\n<p>[00:08:08] <strong>Nathan Wrigley:</strong> It is kind of curious because if you just discount all of the stuff you just said about, you know, wanting to fight and build your own product up, I can well imagine how grinding that can be, and there&#8217;s no guarantee of success. It could be a real failure.</p>\n\n\n\n<p>But stepping into a huge product, I&#8217;m going to put my neck out on the line a little bit here and say, I actually can&#8217;t think of a product or a plugin, let&#8217;s go with that, in the WordPress space that tries to cover as many bases. Covered by any organisation, whether that&#8217;s a third party development team or what have you, I can&#8217;t think of one named product that tries to cover as many bases.</p>\n\n\n\n<p>And the fact that it&#8217;s divisive and I&#8217;m sure you&#8217;ll get into this, but there&#8217;s lots of room for improvement, I&#8217;m sure you&#8217;ll agree. You are walking into something exactly as you say, where there is a chance of great success here. If you pull this off, and you pull the right levers, and in six months time, a year&#8217;s time, two years time, the arc is going in the right direction, there&#8217;ll be measurable success. So really interesting.</p>\n\n\n\n<p>So what was the bit, when you had that, oh, moment, what was the bit about Jetpack which made you think long and hard about it over two weeks, as opposed to immediately saying, yeah, I&#8217;ll do it? There must have bits about the project, Jetpack as a plugin, whatever it may be. What were the bits that concerned you?</p>\n\n\n\n<p>[00:09:18] <strong>Devin Walker:</strong> Well, I&#8217;ve used it over the years on and off. I wouldn&#8217;t call myself a power user at all, but I come from the community, 15 years of being in the community. I&#8217;ve gone to, I don&#8217;t even know how many WordCamps and always kept tabs on it, especially when, I don&#8217;t know when it was. I think it was pre 2020, when they did like a bit of marketing push that Jetpack does donations now, accept donations with Jetpack. And it was through Jetpack forms. I didn&#8217;t know that at the time, so I installed Jetpack. I was like, where&#8217;s donations? You&#8217;ve got to find your way through this tangled web. Oh, it&#8217;s part of forms. Okay, let&#8217;s go into forms. Oh, it&#8217;s like a template now and you have to, the connect flow was terrible. The whole flow was not a great experience.</p>\n\n\n\n<p>And the donation form itself, I was like, oh, we have a pretty serious competitor now with Give, we&#8217;ve got to like step our game up. But then I left that, I was like, okay, don&#8217;t worry about it guys, we&#8217;ll be fine now, nobody&#8217;s going to use this. That&#8217;s where that, oh, moment comes from where like, jack of all trades, master of none type of thing.</p>\n\n\n\n<p>[00:10:15] <strong>Nathan Wrigley:</strong> Yeah, I think probably encapsulates it perfectly. It&#8217;s kind of jack of all trades and master of none. So I&#8217;m just going to rattle off some of the things that I know it does. I&#8217;m probably missing quite a lot here. So for example, you know, it does stats, think something like Google Analytics, it will offer that for you. Backups. It will do protection. It will do speed and optimisation things on your website. Social sharing. It will do forms. There&#8217;s VideoPress thrown in there as well. There&#8217;s a whole bunch of stuff that I&#8217;ve missed out there, but it really is encapsulating a lot.</p>\n\n\n\n<p>And the jack of all trades, master of none, bit kind of fits because when Jetpack came out, I&#8217;m imagining it was a really, it was probably at the forefront of many of those things. The things that it did, it probably did as well as everybody else. But now, 10, 15, whatever years later, there&#8217;s now been real amazing products delivered by third party developers that have become the standard of forms, of backups, of speed and optimisation services and what have you. And so Jetpack now has to kind of compare itself to the very, very best. And I think that&#8217;s hard. You know, for one plugin to try and be the best at everything. Nigh on impossible, I would imagine.</p>\n\n\n\n<p>[00:11:16] <strong>Devin Walker:</strong> You&#8217;re right. Like, we can&#8217;t compete. I&#8217;ve been preaching focus for the last, since 2016 when our mentors said, what the heck are you doing all these other plugins? Sell them off or sunset them and only focus on Give. And that&#8217;s when our business started taking off. Now, what I&#8217;m trying to do is bring focus back into Jetpack.</p>\n\n\n\n<p>We do some things very well, and we need to make sure that, I&#8217;m not going to say we&#8217;re going to compete on the level of a Gravity Forms for our form solution. It&#8217;s going to come very close. And for 98% of the users out there that need forms on their website, I think it&#8217;ll fulfill that need.</p>\n\n\n\n<p>For that special 2% that need like calculation fields, they need super customised form capabilities, then it might not get to that level. But we really want Jetpack to be your go-to solution so that you can have these products work well together as well.</p>\n\n\n\n<p>It&#8217;s very generous too, the free version. You get a free CDN, you get VideoPress for free, and bringing people in the door and showing them that. Some folks are seeing the light of that, of what it can actually do and do pretty well. But for instance, like SEO. Yeah, Jetpack does SEO, but it&#8217;s the most rudimentary, basic version. I want to make that a bit better there. But also things that it doesn&#8217;t do well. Either get rid of those, if they&#8217;re just going to sit on a shelf and grow with age, what&#8217;s the point of it?</p>\n\n\n\n<p>So yeah, a lot of realignment with that and understanding that teams that are fully focused on one specific part of what Jetpack does, it&#8217;s really hard for us to compete with that.</p>\n\n\n\n<p>[00:12:46] <strong>Nathan Wrigley:</strong> Do you envisage a future for Jetpack now that you are at the helm, if you like ? And I don&#8217;t know how the structure of the people that are working on Jetpack works. In other words, do you have a forms dedicated crew where you&#8217;ve got, I don&#8217;t know, a bunch of people who just work on forms? You&#8217;ve got a bunch of people working on VideoPress and VaultPress and all of these different bits and pieces. Or is it, you work with Jetpack and you kind of move from team to team? I&#8217;m just curious as to what it looks like inside of Automattic and the different bits that make up Jetpack.</p>\n\n\n\n<p>[00:13:14] <strong>Devin Walker:</strong> Yeah, so this is really an interesting time at Automattic, where they&#8217;re going from that functional organisation where it&#8217;s product focus. Where Jetpack did, a year ago, have a dedicated development team, designer team, and the person that was in my role before, it was just like a classic company structure in a way, within Automattic.</p>\n\n\n\n<p>Now it&#8217;s shifting to more of a matrix organisation where there&#8217;s one architecture team. They handle .com, they handle Jetpack, they handle a bunch of other products like WooCommerce within that. And the designers as a product are outside of that.</p>\n\n\n\n<p>And so what that means is we, as the product team, we have a shared roadmap where, if you ever use .com, a lot of what brings that special sauce to it, what makes it unique outside of the self installed WordPress is Jetpack. So for instance, forms is getting a massive upgrade. And the 15.2 that just came out, it has quite a big upgrade. 15.3, we&#8217;re going to have even more. So there&#8217;s a dedicated team right now that&#8217;s, some of the best engineers, I&#8217;ve been really blown away with the level of engineering at Automattic, are working on bringing forms up. And I&#8217;m leading that initiative, putting myself into that place where I can then shape forms in the future.</p>\n\n\n\n<p>But that does mean that some other elements of Jetpack aren&#8217;t getting taken care of right now. AI&#8217;s going to become a big thing. We have to pick and choose based on our resources, what are the most important things for our shared initiative? But what that means is they work better together. I think you&#8217;re going to see in the future a lot more benefit of running WooCommerce and Jetpack together.</p>\n\n\n\n<p>Now, we&#8217;re not going to force you to log into wordpress.com to use WooCommerce, but to get some of that benefit, you will need to OAuth in to using Jetpack. And that is a requirement, because a lot of the Jetpack, what you get for free and the secret sauce is based on our cloud servers. You basically are starting to use our infrastructure for free. And Automattic is huge on privacy. And so I don&#8217;t quite understand that whole conflict of folks that don&#8217;t like that. There&#8217;s just some people out there that will never really like Automattic and they will not OAuth in or double sign in to use Jetpack, you know what I mean?</p>\n\n\n\n<p>[00:15:29] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s kind of curious. So if I&#8217;m parsing it right, it sounds like what you were saying was that in a recent restructuring of Automattic and over the last 18 months or so, I think there&#8217;s been a lot of that. It sounds like Jetpack is more of an amorphous thing. It&#8217;s not like these particular people are dedicated to Jetpack Forms and these ones are for VaultPress or whatever it may be. It&#8217;s more liquid than that. We&#8217;re going to do a dedicated sprint on Forms, for example. It sounds like that&#8217;s getting an update. So probably has had people on the seats having a look at that.</p>\n\n\n\n<p>And then once that&#8217;s put away and tidied up, then move to something else. But also, I guess an interesting thing that you mentioned there is that because it&#8217;s in this wider organisation of which WooCommerce, it&#8217;s pretty big, that you can also communicate with those folks. So there may be some overlap between what Forms can do in Jetpack and something that you might wish to do with WooCommerce, those kind of things.</p>\n\n\n\n<p>So have I got that right? It&#8217;s not like dedicated people doing dedicated products within Jetpack, it&#8217;s much more liquid and amorphous than that.</p>\n\n\n\n<p>[00:16:23] <strong>Devin Walker:</strong> Absolutely. Rather than having silos we have one large organisation that works better together. And our vision is really that all the WordPress products should be very similar to Apple and how when you&#8217;re using iOS or MacOS, there&#8217;s a lot of similar fields and they work well together and they tag team off of each other.</p>\n\n\n\n<p>And prior to this reorg, that wasn&#8217;t happening so much. And we experienced this at Stellar as well. They purchased a bunch of plugins, brought them all in, the vision was for them to all work well together. We went from functional organisation to this matrix type of organisation. And so this isn&#8217;t my first rodeo doing it, I know it can work. But it does take a concerted effort, and it&#8217;s still ongoing right now. It hasn&#8217;t been 18 months, it&#8217;s been like six months. And we&#8217;re still trying to figure things out. So me stepping in at this time, I&#8217;m really trying to figure it out.</p>\n\n\n\n<p>I have a blog post called, or a P2 post called Connecting the Dots, where I&#8217;m just trying to find which experts and which products on Jetpack they know better. I&#8217;ve been having so many one-on-ones just to try to get to know these folks, understand their history with Jetpack and put it in this kind of glossary of what I have here, and keep that updated as my time progresses here.</p>\n\n\n\n<p>[00:17:35] <strong>Nathan Wrigley:</strong> It is kind of hard to get a grip on what Jetpack is. Because it&#8217;s trying to do all these different things, I think it is quite hard for people to understand what they&#8217;re installing. So they install Jetpack, okay, I&#8217;ve heard that Jetpack&#8217;s a thing, I&#8217;ll go and install it. There&#8217;s loads of free stuff available. And then all of a sudden there&#8217;s bits which do work, there are bits which you can extend and upgrade and, you know, you might have to log in with .com to make that bit combine with this bit.</p>\n\n\n\n<p>And then there are bits where, you know, it feels like the classic themes work well in some areas, and then if you&#8217;ve got a block-based theme, other things don&#8217;t work quite so well. I&#8217;m thinking like social sharing and things like that. And it&#8217;s bit of a, mess is the wrong word, but it&#8217;s incredibly confusing, I think, to a novice user. And so I&#8217;m, I&#8217;m going to put words into your mouth, I&#8217;m guessing this is one of the challenges that you are going to try and tackle to take that confusion away. Because, I don&#8217;t know, it doesn&#8217;t matter how many times I log into Jetpack, there&#8217;s always a bit of a surprise. Oh, okay, it works that way. That&#8217;s curious. I wasn&#8217;t expecting it to do that. And I&#8217;ve been doing this for absolutely ages, and I&#8217;m still surprised by the way things work.</p>\n\n\n\n<p>[00:18:33] <strong>Devin Walker:</strong> You&#8217;re not alone. So one of the things that Matt&#8217;s been saying since I&#8217;ve come on board is we don&#8217;t really need to build much more new things. We need to focus and improve what&#8217;s already there, especially in Jetpack and .com. And simplifying it and making it make more sense to the end users. And Jetpack is a prime candidate for a really fresh look at how that can happen.</p>\n\n\n\n<p>We&#8217;ve been doing exercises as the product team for a framework called Jobs to Be Done. You put yourself in the shoes of that customer and you experience it through fresh eyes, based on what they are looking to get out of it.</p>\n\n\n\n<p>For instance, the classic, I guess, analogy is, folks don&#8217;t, they don&#8217;t want a quarter inch drill bit, they want a quarter inch hole, and that&#8217;s just the tool they use to get that quarter inch.</p>\n\n\n\n<p>And it&#8217;s the same thing with Jetpack or any other software product, and it&#8217;s a reforming in thinking. It&#8217;s only my fifth week here, but it&#8217;s been really a refreshing way to think about how we build product, and how I can then work with the designers to then smooth out those wrinkles of which there are many.</p>\n\n\n\n<p>[00:19:40] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s kind of interesting that you say that, because pretty much everything that Jetpack has, well, there&#8217;s one notable exception, which is of course AI, which we&#8217;ll come to in a minute. But more or less everything that&#8217;s in Jetpack has been available in some form or other for a decade or more. You know, forms is, it&#8217;s not a new thing. There&#8217;s some interesting ideas that people have come up with that maybe we&#8217;d want to integrate, but backups, it&#8217;s not a new thing.</p>\n\n\n\n<p>So the idea of not having new, well, features is probably the wrong word, but not having a new product and just finessing what you&#8217;ve already got, I think that would be music to any subscriber to Jetpack. One of the paid plans that you got, I think they would absolutely love that. Just finesse what you&#8217;ve already got. We&#8217;ve already got this thing, we know what we&#8217;ve got, we know how it works, but finesse it, give us a few more features here and there in the bit, like for example, forms or what have you. That seems like music to my ears.</p>\n\n\n\n<p>But I&#8217;ve said it. The cat is out the bag in this episode now, AI. AI is smuggled into Jetpack in the most, it&#8217;s kind of hidden. It&#8217;s almost entirely hidden, and yet incredibly profound. I don&#8217;t know if, dear listener, you&#8217;ve experienced Jetpack and it&#8217;s AI features, but if you switch it on and you just go, I don&#8217;t know, make a blog post or something like that, when you go to publish, it will just helpfully write your excerpt and your featured image, it will create that for you on the fly. It all happens in the background. It&#8217;s really incredible. How did that get under the radar? And is that going to be a big feature?</p>\n\n\n\n<p>[00:21:02] <strong>Devin Walker:</strong> That is going to be a huge feature. I just came back from New York with our AI engineering team led by James LaPage, who&#8217;s one of the brightest, young stars, I want to say, in WordPress. And he&#8217;s one of the reasons that I&#8217;m so excited for what AI can become with Jetpack, and where it&#8217;s going to go from here. It&#8217;s really great that you are already like what&#8217;s there? But that&#8217;s just scratching the surface from what we&#8217;re going to be doing in the near future.</p>\n\n\n\n<p>We&#8217;ve got quite a large team working on this. This is a 50 plus engineering team. It&#8217;s a huge focus of Automattic. And Jetpack&#8217;s the way we&#8217;re going to bring a lot of what we&#8217;re bringing to .com to self-hosted users. And it&#8217;s not going to cost you really much at all and it&#8217;s gonna be done in the WordPress way.</p>\n\n\n\n<p>Right now it tries to be your content companion, is kind of how I call it, but it&#8217;s going to do that a lot better, and it&#8217;s going to reach outside of the post editor and do a lot more helpful items for you in the WP admin. And not only in the WP admin, also provide some tools for you in the future for your visitors and how you can convert them, how you can get them to sign up on your newsletter, or you can get them to ask presales questions, or fill out forms or what have you. It&#8217;ll be very moldable and shapeable.</p>\n\n\n\n<p>So I delightfully was at several demo presentations at this meetup where I was just blown away. Sat down with Matias, James, a lot of the key stakeholders and players here at .com on how and when we can start bringing this into Jetpack.</p>\n\n\n\n<p>And what&#8217;s there right now is good. It&#8217;s almost going to be entirely rewritten and thrown away for what the foundation now is going to become. And so that&#8217;s one of the more exciting, more immediate, roadmap items that I&#8217;ll be really working on the next 8 to 12 months. You&#8217;ll see a huge change.</p>\n\n\n\n<p>[00:22:54] <strong>Nathan Wrigley:</strong> I feel like at the moment the AI implementation in Jetpack is about content, the content that you&#8217;re creating right at this moment. We&#8217;re creating, I don&#8217;t know, SEO fields and we&#8217;re creating excerpts and things like that and featured images and what have you. But if you haven&#8217;t had a play, again, I&#8217;ll link this in the show notes, Automattic&#8217;s Telex, which is the capability to, you write a simple prompt and it will create a block for you. I feel that something like Jetpack with something like Telex, just hidden in the sidebar of a WordPress blog post would be really kind of interesting. You know, the idea that, I need a block for this.</p>\n\n\n\n<p>[00:23:26] <strong>Devin Walker:</strong> Are you reading my DMs? Because, exactly. You&#8217;ve already sort of got a crystal ball right there. And with Telex, that&#8217;s a huge opportunity for site building, for imagining anything that WordPress could be, and having it created there.</p>\n\n\n\n<p>Right now it&#8217;s great. It creates separate plugins, you can download and install them, you can&#8217;t sync them per site. It&#8217;s kind of annoying how there&#8217;s all these plugins there. There&#8217;s not much management updating over time. Jetpack can be that bridge for you, and that&#8217;s really an exciting future where it needs to go.</p>\n\n\n\n<p>[00:23:57] <strong>Nathan Wrigley:</strong> Yeah, because at the moment, if you are an inexperienced WordPress user, if you&#8217;re not technical, let&#8217;s put it that way, then you are constrained entirely by what&#8217;s there or what the developer has built for you or the range of plugins that you&#8217;ve installed. And I feel like in the near future, you reach that point of frustration and you suddenly realise that, oh, there is no block that does that thing. Well, why don&#8217;t I just make one?</p>\n\n\n\n<p>And you&#8217;ll write a small prompt, I don&#8217;t know, I need a real estate block, or I don&#8217;t know, I need a block because it&#8217;s coming up to Christmas. I need a block which is going to show snowflakes falling on this particular post. Please don&#8217;t do this by the way, but you get the point. I&#8217;m just going to go ahead and make it, and it&#8217;ll be this entirely disposable thing. And when I&#8217;m finished with it, I&#8217;ll probably just throw it in the trash or maybe keep it until next year.</p>\n\n\n\n<p>But the point is, your WordPress becomes like this, how to describe it, it&#8217;s almost like the scaffolding for an infinite arrangement of possibilities. Whereas before, WordPress felt a bit like a box. If it wasn&#8217;t in the box, it couldn&#8217;t be done. But now the box got opened and there&#8217;s all this scaffolding everywhere and it can do a million more things. And as Matt Mullenweg said, you know, it&#8217;s becoming like the OS for the web or something like that.</p>\n\n\n\n<p>And the fact that AI is binding to the abilities inside of WordPress, so with the Abilities API and things like that, it knows everything that your WordPress website can do. You know, create users, create posts, delete posts, all of these kind of things. And Jetpack seems really aligned to doing that. I don&#8217;t know how it would fit into the bigger Jetpack picture, but, yeah, interesting.</p>\n\n\n\n<p>[00:25:27] <strong>Devin Walker:</strong> Yeah, well, I think AI can be the glue that binds a lot of these individual products together and really paint the picture on how they work well together, and work within your WordPress Core to make it the Jetpack that is supercharged, right? I mean the WordPress that has a Jetpack strapped to it.</p>\n\n\n\n<p>There is a great number of, kind of mission statements and taglines over the years for Jetpack. None of which I think have been fully fulfilled. So I really want to revisit that, revise that, and you&#8217;ll see a lot of updates coming to the website soon, soon-ish. Telling and bringing people along this journey.</p>\n\n\n\n<p>If you look at the website and a lot of the marketing right now, it&#8217;s kind of on idle. So that&#8217;s another big part of what I&#8217;m being focused on, and that will help change the perception in the community and outside of it, of what Jetpack is and what it can do for you is, pulling up the curtain, if you will, on all the cool stuff we&#8217;re doing here.</p>\n\n\n\n<p>You could read P2s all day here and many of them are so impressive and I feel like a lot of them should be public. There&#8217;s so much good content here that is really impressive. For somebody like me who&#8217;s been in the community for 15 years, like, oh my gosh, we have the best engineers, the best designers, and it&#8217;s all in this P2. Like, let&#8217;s get some of this published.</p>\n\n\n\n<p>[00:26:42] <strong>Nathan Wrigley:</strong> Yeah, well, that&#8217;s curious. So I was reading your mind a minute ago, you&#8217;ve just read my mind, because the next little bit was going to be all about marketing. Because it doesn&#8217;t matter, with the best will in the world, the best product in the world will probably fail, if not marketed correctly.</p>\n\n\n\n<p>And it feels as if, when Jetpack began, because it was kind of the thing, a long, long time ago it was the thing, it had that success kind of built into it. You know, it was an Automattic thing, it was a WordPress thing, it became popular because it did so many things that nothing else could do.</p>\n\n\n\n<p>Fast forward till today, it feels like the wheels have come off the marketing a little bit, or the train has completely pulled into the station and not moving at all. You know, I can&#8217;t remember the last time I saw something engaging, like a YouTube video or somebody experimenting on their YouTube channel with a Jetpack thing.</p>\n\n\n\n<p>Whereas with third party plugins, it&#8217;s happening all the time, you know? And so it feels like that&#8217;s going to be a very big part of where you are, you know, you&#8217;ll build hopefully some amazing things, but then trying to turn the tide and get people to be engaged and interested and see the utility of it. I&#8217;m guessing that&#8217;s going to be a part of the job which is separate to the technological part.</p>\n\n\n\n<p>[00:27:46] <strong>Devin Walker:</strong> It will, absolutely. I think for quite some time it was almost build it and they will come here. And for many, many years they did come. And now it&#8217;s harder because the marketplace has expanded quite a bit. There&#8217;s a lot of other folks out there doing really cool things with WordPress and have a lot more focused marketing efforts behind them.</p>\n\n\n\n<p>I mean, point and case was GiveWP, we were just, people weren&#8217;t turning to Woo or Gravity Forms because we made it that it was the number one solution you had to go do it. We just hammered that point through WordCamps, through videos, through podcasts, whatever it was, that was our mission.</p>\n\n\n\n<p>And for Jetpack, we really need to refocus on that and do that a lot more. It&#8217;s very engineering led organisation. I think marketing to some point is built into their roles and they&#8217;re not doing that part as much as I would like.</p>\n\n\n\n<p>And on another aspect, I think we definitely just need more marketers. I&#8217;m not going to say the exact numbers, but it was a surprisingly low number of marketers to the size of the organisation when I came in. I&#8217;m used to a much better ratio.</p>\n\n\n\n<p>So I&#8217;m going to be hammering that point a little bit more home as I get through the door, but it&#8217;s something that I&#8217;ve mentioned a bit already in my 5 weeks here.</p>\n\n\n\n<p>[00:29:02] <strong>Nathan Wrigley:</strong> I don&#8217;t know what the install base is specifically. It&#8217;s a lot, right? Jetpack has a lot of installs and so presumably you&#8217;ve.</p>\n\n\n\n<p>[00:29:08] <strong>Devin Walker:</strong> The core is 4 million.</p>\n\n\n\n<p>[00:29:09] <strong>Nathan Wrigley:</strong> 4 million. Okay, so, wow, gosh. So presumably that means anything that you do do, you&#8217;ve really got to tread carefully. So for a start, you can&#8217;t break things. You can&#8217;t just ship a brand new UI in let&#8217;s say the forms aspect of it overnight. And I presume that&#8217;s kind of like a bit of a noose around your neck in that, you know, you want to move fast and break things in some respects, but with 4 million installs, which is really right at the very top in the WordPress ecosystem, that&#8217;s big, big numbers. You are going to constrained in what you can do and how fast you can move things and how quickly you can break things.</p>\n\n\n\n<p>[00:29:40] <strong>Devin Walker:</strong> Somewhat. Somewhat I agree with that. Right now we are on a monthly release cycle and there&#8217;s definitely a lot of caution around that. And Jetpack touches a lot of .com too, so there&#8217;s that extra added user base, which is humongous. So there is that bit of treading carefully.</p>\n\n\n\n<p>But I want to balance that with being aggressive. We just shipped, prior to me coming on board, a new onboarding for getting connected. It&#8217;s just through the connection segment, getting connected to .com, and that really had positive results and saw an uptick in connected successful sites. I think we can take that to the next level and explain what Jetpack is, what they need it for, and really optimise it for the best use case based on what that particular site wants or needs.</p>\n\n\n\n<p>Going beyond onboarding is then getting into the product UI itself, making the navigation much more clear and understandable.</p>\n\n\n\n<p>You know, there&#8217;s three different areas in Jetpack right now where you can toggle on and off different modules or products.</p>\n\n\n\n<p>[00:30:39] <strong>Nathan Wrigley:</strong> Oh, I&#8217;ve discovered many them.</p>\n\n\n\n<p>[00:30:41] <strong>Devin Walker:</strong> Yeah. So I think we need to consolidate that at least. And there&#8217;s more Easter eggs. I don&#8217;t even want to call them Easter, I don&#8217;t know what you&#8217;d call that, but interesting quirks that we can clean up.</p>\n\n\n\n<p>And for the most part I think we do have to be a bit careful because it&#8217;s such a massive user base. Breaking things, just look at some of the Jetpack reviews. Breaking them and lack of support. Those are the two main cause of one star reviews. And with that many, I really want to get that review base above 4.0 stars. But with 3000 or whatever reviews it is, it takes a long shift to get that. And we&#8217;re not going to do that by continually breaking things, so it&#8217;s a balance.</p>\n\n\n\n<p>[00:31:19] <strong>Nathan Wrigley:</strong> It&#8217;s kind of interesting that me, a relatively inexperienced user of Jetpack, I was able to discover many of the quirks that you&#8217;ve just mentioned almost immediately. You know, just being curious. And I&#8217;m the kind of person that when I download anything, I go and look at every single menu item and kind of think, well, what does that do? How would that work? It really didn&#8217;t take me long to discover, well, hang on, that is somewhere else. If I engage that, does that mean it conflicts with this thing over here?</p>\n\n\n\n<p>And I saw this over and over again. And so I think that, as you imagine, would be some of the very, very brilliant low hanging fruit. To just have a UI which does, you know, there&#8217;s one place for one thing, it works as expected that you don&#8217;t, I&#8217;m sure you know where I&#8217;m going with this, basically, just simplify things, make it elegant in the same way that we&#8217;ve seen with so many third party plugins.</p>\n\n\n\n<p>Because at the moment it kind of feels like a whole range of different things that have been slammed together and forcefully told to get along with each other, as opposed to like a happy family that, just everything works and everybody&#8217;s happy and there&#8217;s bliss and rainbows everywhere. It feels a little bit like that, if you know what I mean?</p>\n\n\n\n<p>[00:32:21] <strong>Devin Walker:</strong> Oh, I completely agree. I think we used in the pre-show and it&#8217;s a bit of a Frankenstein. We need to change it from that. If I had a nickel for every toggle in Jetpack, I don&#8217;t know if I&#8217;d need to work anymore. There are quite a few toggle on, toggle offs in just a row. You can imagine how this interface could be much more elegantly put together.</p>\n\n\n\n<p>And we&#8217;re going to use user feedback for a lot of this and ask, hey, what do you guys think of this? Because we can&#8217;t do it successfully in a bubble.</p>\n\n\n\n<p>[00:32:52] <strong>Nathan Wrigley:</strong> Well, and the other thing is, given the perfect UI, it does so much stuff. If you just had Jetpack, if you had a vanilla version of WordPress and you installed Jetpack and everything was easy to navigate and worked as expected first time and maybe there was no dependency on having a .com account or what have you. It does all the things. It would take you from like zero success to broadly speaking, okay, you&#8217;ve got a credible website. Maybe there&#8217;s going to be some interesting cases where you want a little bit more SEO finesse or something like that.</p>\n\n\n\n<p>It would get you to the races, you know, it would get you to put your horse in the race and have a good go. And there&#8217;s not much like that out there. There really is nothing that I can think of in the WordPress space. But it&#8217;s a leviathan and it&#8217;s got many heads. We need it just to have the one head, I think.</p>\n\n\n\n<p>[00:33:35] <strong>Devin Walker:</strong> Very much so, and that&#8217;s the challenge that I&#8217;m in here to work with this entire team and put a lot of thought behind it.</p>\n\n\n\n<p>[00:33:44] <strong>Nathan Wrigley:</strong> Okay, so it&#8217;s all on you. So if Jetpack is a success in two years time, we know who to thank for that. And it does genuinely seem, for somebody with your obvious interest and capabilities, it does seem really, really enjoyable. I&#8217;m sure it&#8217;ll keep you awake, but an enjoyable challenge. Something that you get your teeth into. Something where the success can be measured fairly quickly. You know, does the discontent diminish? Does the UI improve? Tick, tick, tick. We did a good job.</p>\n\n\n\n<p>And also, there&#8217;s loads of room for improvement. So you&#8217;ve entered on a, you&#8217;ve definitely got yourself into a position where you&#8217;ve taken on a project where the improvements are evident everywhere. I hope that you managed to grab hold of them and wrestle this to the ground.</p>\n\n\n\n<p>[00:34:21] <strong>Devin Walker:</strong> Well, I really appreciate that, Nathan, and why don&#8217;t we have a check in in 12 months and see where we&#8217;re at on this journey. I think that would be a good way to keep us honest, follow along in this journey along the way, we&#8217;ll see how far we&#8217;ve gotten.</p>\n\n\n\n<p>[00:34:35] <strong>Nathan Wrigley:</strong> Okay, well, for now then, go and install Jetpack. If you&#8217;re listening to this, we&#8217;ll be back in 12 months time, so go and have a play with Jetpack as it is now and see.</p>\n\n\n\n<p>It sounds to me that Devin is like all ears. If you&#8217;ve got some quirks and you found something that&#8217;s curious or unexpected or dissatisfying or just downright annoying, where do we get in touch with you? Oh, also, I suspect Devin&#8217;s more than happy to receive positive commentary as well.</p>\n\n\n\n<p>[00:35:01] <strong>Devin Walker:</strong> Yeah, I mean the positive stuff&#8217;s great too. Right now feedback@jetpack.com is a good place, but we&#8217;re going to make this a lot more public in the near future. You can also just tweet at me @innerwebs, I-N-N-E-R-W-E-B-S, or go to my website devin.org. But jetpack.com, jetpack.com/feedback is also a great place. So that&#8217;s a bit about me and where you can find the Jetpack information.</p>\n\n\n\n<p>[00:35:27] <strong>Nathan Wrigley:</strong> Okay, thank you. So definitely a challenge out in the public for Devin to get his teeth into WordPress&#8217; Jetpack, and see if he can figure it out and make it better. Let&#8217;s check back in 12 months time and see how we&#8217;re going. Devin Walker, thanks for chatting to me today.</p>\n\n\n\n<p>[00:35:38] <strong>Devin Walker:</strong> Thank you.</p>\n</div></details>\n\n\n\n<p>On the podcast today we have <a href=\"https://devin.org\">Devin Walker</a>.</p>\n\n\n\n<p>Devin’s journey in the WordPress ecosystem spans many years, with experience in development, design, marketing, and customer support. He’s best known as the co-founder of GiveWP, which he built and scaled before it was acquired. During his time there, he touched a variety of prominent WordPress brands including iThemes, Kadence, LearnDash, and The Events Calendar.</p>\n\n\n\n<p>Today, Devin is starting a new role leading the Jetpack suite of services at Automattic. It’s a position with hefty responsibilities as Jetpack powers millions of WordPress sites, and integrates deeply across Automattic’s product portfolio.</p>\n\n\n\n<p>I talk with Devin about why he took on this challenge, the divisiveness and complexity surrounding Jetpack, and his vision for refocusing the plugin and simplifying its user experience.</p>\n\n\n\n<p>We start by hearing about Devin’s extensive WordPress background and the choices he weighed up when deciding to join Automattic. The conversation quickly moves to the scope of Jetpack, its evolution, the struggle to be a “jack of all trades, master of none”, and the recent efforts to bring greater focus and polish to key features like forms and SEO.</p>\n\n\n\n<p>Devin gets into the organisational changes at Automattic, how Jetpack’s development teams now collaborate more fluidly with other product teams (such as WooCommerce), and the balancing act of shipping improvements to a 4 million strong user base without breaking things.</p>\n\n\n\n<p>AI emerges as a massive new frontier, and Devin shares behind-the-scenes insights into Jetpack’s current and future AI capabilities, giving us a glimpse at content creation, block-building, and how AI might reshape user and developer expectations in WordPress.</p>\n\n\n\n<p>Throughout, we hear about Devin’s approach to product marketing (and the need for more of it), the importance of listening to user feedback, and his plans for a more coherent and compelling Jetpack experience.</p>\n\n\n\n<p>If you’re a WordPress user wondering where Jetpack is headed, what’s working, or how AI fits into the future of site building, 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://jetpack.com\">Jetpack</a></p>\n\n\n\n<p><a href=\"https://jetpack.com/submit-feedback/\">Jetpack feedback form</a></p>\n\n\n\n<p><a href=\"https://givewp.com\">GiveWP</a></p>\n\n\n\n<p><a href=\"https://en-gb.wordpress.org/plugins/wp-rollback/\"> WP Rollback</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2025/05/announcing-the-formation-of-the-wordpress-ai-team/\">Automattic AI team announcement post</a></p>\n\n\n\n<p><a href=\"https://telex.automattic.ai\">Telex</a></p>\n\n\n\n<p><a href=\"https://devin.org\">Devin&#8217;s website</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, 19 Nov 2025 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:37;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Open Channels FM: Open Tabs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=112264\";s:7:\"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://openchannels.fm/the-everyday-chaos-of-open-tabs-and-browser-battles/\";s: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:180:\"Bob and Nathan explore the chaos of browser tabs. One hoards thousands, while the other balances life with two. Tune in for witty banter, tech quirks, and questionable life advice.\";s: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, 19 Nov 2025 11:52: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:38;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:226:\"HeroPress: From carpentry to digital marketing, this is the story of how WordPress helped me rebuild my life. – De la carpintería al marketing digital, esta es la historia de cómo WordPress me ayudó a reconstruir mi vida.\";s:7:\"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=8280\";s:7:\"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:266:\"https://heropress.com/essays/from-carpentry-to-digital-marketing-this-is-the-story-of-how-wordpress-helped-me-rebuild-my-life/#utm_source=rss&utm_medium=rss&utm_campaign=from-carpentry-to-digital-marketing-this-is-the-story-of-how-wordpress-helped-me-rebuild-my-life\";s: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:13418:\"<img alt=\"Pull quote: I have a new job, new friends, and I could almost say a new family, and it’s all thanks to WordPress.\" class=\"attachment-large size-large wp-post-image\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2025/11/111825.webp\" width=\"1024\" /><p><a href=\"https://heropress.com/feed/#espanol\">Este ensayo también está disponible en español.</a></p>\n\n\n\n\n\n\n\n\n<section class=\"wp-block-newsletterglue-group\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px;\">\n<figure class=\"wp-block-audio\"><audio controls=\"controls\" src=\"https://heropress.com/wp-content/uploads/2025/11/HeroPress_English_Version_JosepMoran.mp3\"></audio><figcaption class=\"wp-element-caption\">Here is Josep reading his own story aloud.</figcaption></figure>\n</section>\n\n\n\n\n<h2 class=\"kt-adv-heading8280_0f0037-3f wp-block-kadence-advancedheading\"><strong>My origins</strong></h2>\n\n\n\n<p>I’m Josep, born and raised in <a href=\"https://en.wikipedia.org/wiki/Rocafonda\">Rocafonda</a>, a working-class and humble neighborhood in <a href=\"https://en.wikipedia.org/wiki/Matar%C3%B3\">Mataró</a>.</p>\n\n\n\n<p>I come from a family that has worked with wood lovingly for three generations. Carpentry was always our trade, our way of understanding life and making a living.</p>\n\n\n\n<p>For many years, I worked with wood, shaping it with the same hands and patience I learned at home.</p>\n\n\n\n<p>At the same time, my curiosity led me down other paths: interior design and technical drawing as a draftsman, where I discovered the joy of imagining spaces before building them.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-the-turning-point\"><strong>The turning point</strong></h2>\n\n\n\n<p>Everything changed during the COVID-19 pandemic when my heart decided to stop beating properly. A genetically inherited heart condition forced me to stop completely and look at life from a new perspective.</p>\n\n\n\n<p>Suddenly, everything I took for granted; health, routines, the simple act of making plans disappeared, just as my life almost did.</p>\n\n\n\n<p>But it didn’t.</p>\n\n\n\n<p>I pulled through. With after-effects, yes, but with an incredible desire to live.<br />Out of that will to live came the decision to reinvent myself and study while recovering.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-new-life-new-goals\"><strong>New life, new goals</strong></h2>\n\n\n\n<p>There were twenty-six months of rehabilitation, relapses, and searching for an effective treatment.<br /><br />Yet, amid all that chaos, I managed to step back and turn my skills into a new opportunity.<br /><br />I studied Content Marketing and discovered a well-known secret for many, but something completely new for a carpenter from a neighborhood in Mataró.</p>\n\n\n\n<p>WordPress.<br /><br />And with it, its community.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-metamorphosis\"><strong>Metamorphosis</strong></h2>\n\n\n\n<p>And then… everything changed.</p>\n\n\n\n<p>I discovered WordPress through my marketing studies, and thanks to our beloved CMS, I created my first blog. I keep the logo and some of my early posts, remnants of a time when I was learning to tell stories and give shape to ideas.</p>\n\n\n\n<p>In May 2023, I volunteered for my first WordCamp in Barcelona. The experience opened my eyes to a new universe full of generous, passionate people eager to share.</p>\n\n\n\n<p>I quickly connected with the community and joined the Mentorship Program, a global initiative from the Community Team. I was one of the first eleven mentees in the world. For me, it was a dream come true.</p>\n\n\n\n<p>Shortly afterward, I began combining my increasingly active contributions with the same program, but this time as a mentor. I had received so much from the community that my gratitude pushed me to give back that knowledge and share those values with anyone willing to listen.</p>\n\n\n\n<p>I continued collaborating as a volunteer, speaker, and documentation table participant at <a href=\"https://europe.wordcamp.org/2024/\">WordCamp Europe Torino</a> 2024. It was a step forward in every sense from learning to teaching, from receiving to contributing.</p>\n\n\n\n<p>I began managing the Spain Handbook documentation alongside my mentors <strong><a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a></strong> and <strong><a href=\"https://profiles.wordpress.org/glycymeris/\">Jesús Yesares</a></strong>. Together, we laid the foundations for a project that, like everything in WordPress, is built with patience and community.</p>\n\n\n\n<p>I also joined the global documentation team for WordPress version 6.6, “Dorsey.”</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-rising-from-my-ashes\"><strong>Rising from my ashes</strong></h2>\n\n\n\n<p>Thanks to WordPress and its community, I grew as a person and as a professional in a new discipline as competitive as it is exciting and alive.</p>\n\n\n\n<p>They supported me through the hardest moments and helped me rise again, like a phoenix from the ashes.</p>\n\n\n\n<p>At the end of 2023, through the <strong><a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a></strong> initiative, <strong><a href=\"https://wetopi.com/\">Wetopi</a></strong>, a high-performance managed hosting company that exclusively hosts WordPress sites, placed its trust in a newcomer to the industry and offered me a full-time position where I could unleash all the creativity I had inside.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-present-and-future\"><strong>Present and future</strong></h2>\n\n\n\n<p>If there’s one thing I learned during my illness, it’s to enjoy the moment and not worry so much about the future.</p>\n\n\n\n<p>That’s my focus now, the present, always grateful to all those who helped me become who I am today, in 2025.</p>\n\n\n\n<p>I have a new job, new friends, and I could almost say a new family, and it’s all thanks to WordPress.</p>\n\n\n\n<p>Many people tell me that if I weren’t so resilient, persistent, and determined, I wouldn’t have achieved any of this.</p>\n\n\n\n<p>I simply smile and think that all those qualities were brought to light one day by <strong><a href=\"https://heropress.com/contributors/hari-shanker/\">Hari Shanker</a></strong>, during the <strong><a href=\"https://make.wordpress.org/community/handbook/contributor-day/contributor-working-group/contributor-mentorship-program-for-wordpress/\">Mentorship Program</a></strong>, together with WordPress and its community.</p>\n\n\n\n<p><strong>Thank you to all of them.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h1 class=\"kt-adv-heading8280_df5daf-9a wp-block-kadence-advancedheading\" id=\"espanol\">De la carpintería al marketing digital, esta es la historia de cómo WordPress me ayudó a reconstruir mi vida.</h1>\n\n\n\n\n<section class=\"wp-block-newsletterglue-group\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; margin-top: 0px; margin-bottom: 0px;\">\n<figure class=\"wp-block-audio\"><audio controls=\"controls\" src=\"https://heropress.com/wp-content/uploads/2025/11/HeroPress_Spanish_Version_JosepMoran.mp3\"></audio><figcaption class=\"wp-element-caption\">Escucha a Josep leer su propia historia en voz alta.</figcaption></figure>\n</section>\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mis-origenes\"><strong>Mis orígenes</strong></h2>\n\n\n\n<p>Soy Josep, nacido y criado en <a href=\"https://en.wikipedia.org/wiki/Rocafonda\">Rocafonda</a>, un barrio trabajador y humilde de <a href=\"https://en.wikipedia.org/wiki/Matar%C3%B3\">Mataró</a>.</p>\n\n\n\n<p>Vengo de una familia que ha trabajado la madera con mimo durante tres generaciones. La carpintería siempre fue nuestro oficio, nuestra forma de entender la vida y de ganárnosla.</p>\n\n\n\n<p>Durante muchos años trabajé la madera, moldeándola con las manos y la paciencia que aprendí en casa.</p>\n\n\n\n<p>Al mismo tiempo, mi curiosidad me llevó por otros caminos: el diseño de interiores y el dibujo técnico como delineante, donde descubrí el placer de imaginar espacios antes de construirlos.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-el-punto-de-inflexion\"><strong>El punto de inflexión</strong></h2>\n\n\n\n<p>Todo cambió en plena pandemia de la COVID-19, cuando mi corazón decidió detener el ritmo.<br />Una enfermedad cardíaca de origen genético me obligó a parar por completo y mirar la vida desde otro lugar.</p>\n\n\n\n<p>De repente, aquello que daba por sentado —la salud, las rutinas, el simple hecho de poder hacer planes— se desvaneció, como casi se desvanece mi vida.</p>\n\n\n\n<p>Pero no.</p>\n\n\n\n<p>Salí adelante. Con secuelas, sí, pero con unas ganas de vivir increíbles.<br />Y fruto de esas ganas decidí reinventarme y estudiar mientras me recuperaba.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-nueva-vida-nuevas-metas\"><strong>Nueva vida, nuevas metas</strong></h2>\n\n\n\n<p>Fueron veintiséis meses entre rehabilitación, recaídas y la búsqueda de un tratamiento eficaz.<br />Pero, entremedio de todo ese caos, supe abstraerme y convertir mis habilidades en una nueva oportunidad.<br />Estudié Marketing de Contenidos y descubrí un secreto a voces para muchos, pero completamente nuevo para un carpintero de un barrio de Mataró.</p>\n\n\n\n<p>WordPress.<br />Y con él, su comunidad.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-metamorfosis\"><strong>Metamorfosis</strong></h2>\n\n\n\n<p>Y entonces… todo cambió.</p>\n\n\n\n<p>Conocí WordPress gracias a mis estudios de marketing y, gracias a nuestro querido CMS, pude crear mi primer blog.<br />Aún conservo el logo y algunos de mis primeros textos, vestigios de una etapa en la que aprendía a contar historias y a dar forma a ideas.</p>\n\n\n\n<p>En mayo de 2023 me ofrecí como voluntario en mi primera WordCamp, en Barcelona. La experiencia me abrió los ojos a un universo nuevo, lleno de personas generosas, apasionadas y con ganas de compartir.</p>\n\n\n\n<p>Rápidamente conecté con la comunidad y accedí al Mentorship Program, un proyecto global del equipo de Comunidad.<br />Fui uno de los primeros once mentees del mundo. Para mí, era un sueño.</p>\n\n\n\n<p>Poco después, pasé a compaginar mis contribuciones, cada vez más activas, con el mismo programa, pero esta vez como mentor.<br />Había recibido mucho de la comunidad, y mi gratitud me empujó a devolver ese conocimiento y a compartir esos valores con todo aquel que quisiera escucharme.</p>\n\n\n\n<p>Seguí colaborando como voluntario, ponente y participante en la mesa de documentación en la <a href=\"https://europe.wordcamp.org/2024/\">WordCamp Europe Torino</a> 2024.<br />Fue un salto de calidad, y también un salto personal: de aprender a enseñar, de recibir a aportar.</p>\n\n\n\n<p>Comencé a gestionar la documentación del Spain Handbook junto a mis mentores <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> y <a href=\"https://profiles.wordpress.org/glycymeris/\">Jesús Yesares</a>.<br />Juntos pusimos las bases de un proyecto que, como todo en WordPress, se construye con paciencia y en comunidad.</p>\n\n\n\n<p>También formé parte del equipo de documentación global para la versión 6.6 de WordPress, “Dorsey”.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-renacer-de-mis-cenizas\"><strong>Renacer de mis cenizas</strong></h2>\n\n\n\n<p>Gracias a WordPress y a su comunidad crecí como persona y como profesional en una nueva disciplina: tan competitiva como apasionante y viva.</p>\n\n\n\n<p>Me sostuvieron durante mis malos momentos e hicieron que resurgiese como si de un ave fénix se tratase.</p>\n\n\n\n<p>A finales de 2023, gracias al proyecto <a href=\"https://wordpress.org/five-for-the-future/\">Five For The Future</a>, <a href=\"https://wetopi.com/\">Wetopi</a> —una empresa de hosting gestionado de altas prestaciones que aloja únicamente sitios web creados con WordPress— confió en un recién llegado al sector y me ofreció un proyecto a tiempo completo donde podía dar rienda suelta a toda la creatividad que llevaba dentro.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-presente-y-futuro\"><strong>Presente y futuro</strong></h2>\n\n\n\n<p>Si algo aprendí en mi época de enfermedad es a disfrutar más el momento y no pensar tanto en el futuro.</p>\n\n\n\n<p>Y en eso me centro: en el presente, agradeciendo siempre a todas aquellas personas que me ayudaron a ser quien soy hoy, en 2025.</p>\n\n\n\n<p>Tengo un nuevo empleo, nuevos amigos, casi puedo decir que una nueva familia, y es todo, todo, gracias a WordPress.</p>\n\n\n\n<p>Mucha gente me dice que, si yo no fuese tan resiliente, resistente y tenaz, no habría conseguido nada.</p>\n\n\n\n<p>Yo simplemente les sonrío y pienso que todas esas cualidades las hizo aflorar un día <a href=\"https://heropress.com/contributors/hari-shanker/\">Hari Shanker</a>, en el <a href=\"https://make.wordpress.org/community/handbook/contributor-day/contributor-working-group/contributor-mentorship-program-for-wordpress/\">Mentorship Program</a>, junto con WordPress y toda su comunidad.<br /><br /><strong>A todos ellos gracias.</strong></p>\n<p>The post <a href=\"https://heropress.com/essays/from-carpentry-to-digital-marketing-this-is-the-story-of-how-wordpress-helped-me-rebuild-my-life/\">From carpentry to digital marketing, this is the story of how WordPress helped me rebuild my life. &#8211; De la carpintería al marketing digital, esta es la historia de cómo WordPress me ayudó a reconstruir mi vida.</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, 19 Nov 2025 09:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Josep Morán\";s: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org blog: WordPress 6.9 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19350\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10460:\"<p>The second Release Candidate (“RC2”) for WordPress 6.9 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>.<strong> Please do not install, run, or test this version of WordPress on production or mission-critical websites.</strong> Instead, it’s recommended that you evaluate RC2 on a test server and site.</p>\n\n\n\n<p>Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains crucial to ensure that everything in WordPress 6.9 is the best it can be.</p>\n\n\n\n<p>You can test WordPress 6.9 RC2 in four ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream).</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-6.9-RC2.zip\">RC2 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br /><code>wp core update --version=6.9-RC2</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href=\"https://playground.wordpress.net/?php=8.0&amp;wp=beta&amp;networking=no&amp;language=&amp;multisite=no&amp;random=y4q1rn85xn\">6.9 RC2 WordPress Playground instance</a> to test the software directly in your browser without the need for a separate site or setup.</td></tr></tbody></table></figure>\n\n\n\n<p>The scheduled final release date for WordPress 6.9 is <strong>December 2, 2025</strong>. The full <a href=\"https://make.wordpress.org/core/6-9/\">release schedule can be found here</a>. Your help testing RC versions is vital to making this release as stable and powerful as possible.</p>\n\n\n\n<p>Please continue checking the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-9/\">6.9-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 6.9 RC2?</h2>\n\n\n\n<p>Get a recap of WordPress 6.9’s highlighted features in the <a href=\"https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/\">Beta 1 announcement</a>. For more technical information related to issues addressed since RC1, you can browse the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.9?since=2025-11-11&amp;until=2025-11-18\">GitHub commits for 6.9</a> since November 11</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=11%2F11%2F2025..11%2F18%2F2025&amp;milestone=6.9&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=changetime&amp;col=type&amp;order=id\">Closed Trac tickets</a> since November 11</li>\n</ul>\n\n\n\n<p>Want to look deeper into the details and technical notes for this release? These recent posts cover some of the latest updates:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2025/11/15/notes-feature-in-wordpress-6-9/\" rel=\"noreferrer noopener\" target=\"_blank\">Notes Feature in 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/10/abilities-api-in-wordpress-6-9/\" rel=\"noreferrer noopener\" target=\"_blank\">Abilities API in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/18/wordpress-6-9-frontend-performance-field-guide/\">WordPress 6.9 Frontend Performance Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/interactivity-apis-client-navigation-improvements-in-wordpress-6-9/\" rel=\"noreferrer noopener\" target=\"_blank\">Interactivity API’s client navigation improvements in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/block-bindings-improvements-in-wordpress-6-9/\" rel=\"noreferrer noopener\" target=\"_blank\">Block Bindings improvements in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/changes-to-the-interactivity-api-in-wordpress-6-9/\" rel=\"noreferrer noopener\" target=\"_blank\">Changes to the Interactivity API in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/17/consistent-cache-keys-for-query-groups-in-wordpress-6-9/\">Consistent Cache Keys for Query Groups in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/11/dataviews-dataform-et-al-in-wordpress-6-9/\" rel=\"noreferrer noopener\" target=\"_blank\">DataViews, DataForm, et al. in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/preparing-the-post-editor-for-full-iframe-integration/\" rel=\"noreferrer noopener\" target=\"_blank\">Preparing the Post Editor for Full iframe Integration</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/theme-json-border-radius-presets-support-in-wordpress-6-9/\" rel=\"noreferrer noopener\" target=\"_blank\">Theme.json Border Radius Presets Support in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/heading-block-css-specificity-fix-in-wordpress-6-9/\" rel=\"noreferrer noopener\" target=\"_blank\">Heading Block CSS Specificity Fix in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/17/miscellaneous-developer-focused-changes-in-6-9/\">Miscellaneous Developer-focused Changes in 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/18/modernizing-utf-8-support-in-wordpress-6-9/\">Modernizing UTF-8 support in WordPress 6.9</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get involved in testing</h2>\n\n\n\n<p>Testing for issues is crucial to the development of any software. It’s also a meaningful way for anyone to contribute. </p>\n\n\n\n<p>Your help testing the WordPress 6.9 RC2 version is key to ensuring that the final release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. This <a href=\"https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/\">detailed guide</a> will walk you through testing features in WordPress 6.9. For those new to testing, follow <a href=\"https://make.wordpress.org/test/handbook/get-setup-for-testing/\">this general testing guide</a> for more details on getting set up.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report.  You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>. </p>\n\n\n\n<p>Curious about testing releases in general?  Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the<a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Update your theme or plugin</h2>\n\n\n\n<p>For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.</p>\n\n\n\n<p>Thanks for continuing to test your themes and plugins with the WordPress 6.9 beta releases. If you haven’t yet, make sure to conclude your testing and update the <em>“Tested up to”</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin’s readme file</a> to 6.9.</p>\n\n\n\n<p>If you find compatibility issues, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Test on your hosting platforms</h2>\n\n\n\n<p>Web hosts provide vital infrastructure for supporting WordPress and its users. Testing on hosting systems helps inform the development process while ensuring that WordPress and hosting platforms are fully compatible, free of errors, optimized for the best possible user experience, and that updates roll out to customer sites without issue.</p>\n\n\n\n<p>Want to test WordPress on your hosting system? <a href=\"https://make.wordpress.org/hosting/test-results-getting-started/\">Get started with configuring distributed hosting tests here</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Русский? 日本語? हिन्दी? বাংলা? मराठी? ಕನ್ನಡ?  You can<a href=\"https://translate.wordpress.org/projects/wp/dev/\"> help translate WordPress into more than 100 languages</a>. This release milestone (RC2) also marks the<a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\"> hard string freeze</a> point of the <a href=\"https://make.wordpress.org/core/2025/11/11/wordpress-6-9-release-candidate-phase/\">6.9 release cycle</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">An RC2 haiku</h2>\n\n\n\n<p>A calm hillside sighs,<br />Work of many now complete —<br />RC2 stays true.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Props to <a class=\"mention\" href=\"https://profiles.wordpress.org/amykamala/\"><span class=\"mentions-prefix\">@</span>amykamala</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/annezazu/\"><span class=\"mentions-prefix\">@</span>annezazu</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/davidbaumwald/\"><span class=\"mentions-prefix\">@</span>davidbaumwald</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/westonruter/\"><span class=\"mentions-prefix\">@</span>westonruter</a> and <a class=\"mention\" href=\"https://profiles.wordpress.org/joedolson/\"><span class=\"mentions-prefix\">@</span>joedolson</a> for proofreading and review.</em></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, 18 Nov 2025 15:26: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:12:\"Akshaya Rane\";s: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Weston Ruter: WordPress 6.9 Performance Landings\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://weston.ruter.net/?p=38085\";s:7:\"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://weston.ruter.net/2025/11/17/wordpress-6-9-performance-landings/\";s: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:7991:\"<p>WordPress 6.9 includes so many performance improvements! Scripts with <code>fetchpriority</code>, increased inline CSS, minified theme styles, on demand block styles in classic themes, the template enhancement output buffer, and much more! Check out the <a href=\"https://make.wordpress.org/core/2025/11/18/wordpress-6-9-frontend-performance-field-guide/\">field guide</a> I just published:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-make-wordpress-core wp-block-embed-make-wordpress-core\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://make.wordpress.org/core/2025/11/18/wordpress-6-9-frontend-performance-field-guide/\">WordPress 6.9 Frontend Performance Field Guide</a></blockquote>\n</div></figure>\n\n\n\n<p>There were many contributors from the <a href=\"https://make.wordpress.org/performance/handbook/about-the-team/\">Core Performance Team</a> involved in making this possible. Personally, this is a culmination of a year of work, including a bunch of research and development I <a href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/\">wrote about previously</a> and spoke about at WordCamp US:</p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-weston-ruter wp-block-embed-weston-ruter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://weston.ruter.net/2025/08/27/the-site-speed-frontier-with-performance-lab-and-beyond/\">The Site Speed Frontier with Performance Lab and Beyond</a></blockquote>\n</div></figure>\n\n\n\n<p>I&#8217;ve been working nights and weekends (and days) to help make sure all of this lands in time for the December 2nd release. This is evident from looking at the <a href=\"https://make.wordpress.org/updates/2025/11/15/a-month-in-core-october-2025/\">“A Month in Core” post for October</a>! It has been fun—feeling like the <a href=\"https://weston.ruter.net/2025/05/14/a-decade-as-a-core-committer-my-wordpress-contribution-history/\">good ol&#8217; contribution days</a> when I was deep in the Customizer up through <a href=\"https://weston.ruter.net/2017/11/03/wordpress-4-9/\">WordPress 4.9</a> (2013–2017). But I&#8217;m really looking forward to being able to unwind for the holidays.</p>\n\n\n\n<p><em>I hope your sites get a great speed boost for Christmas!</em> <img alt=\"🎄\" class=\"wp-smiley\" src=\"https://weston.ruter.net/wp-content/plugins/local-twemoji/images/emoji/72x72/1f384.png?ver=17-0-2-2\" style=\"height: 1em;\" /></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-medium-font-size\">Where I&#8217;ve shared the field guide:</p>\n\n\n\n<ul class=\"wp-block-social-links is-layout-flex wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-linkedin  wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://www.linkedin.com/posts/westonruter_wordpress-69-frontend-performance-field-activity-7396418643473002498-7XFC\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19.7,3H4.3C3.582,3,3,3.582,3,4.3v15.4C3,20.418,3.582,21,4.3,21h15.4c0.718,0,1.3-0.582,1.3-1.3V4.3 C21,3.582,20.418,3,19.7,3z M8.339,18.338H5.667v-8.59h2.672V18.338z M7.004,8.574c-0.857,0-1.549-0.694-1.549-1.548 c0-0.855,0.691-1.548,1.549-1.548c0.854,0,1.547,0.694,1.547,1.548C8.551,7.881,7.858,8.574,7.004,8.574z M18.339,18.338h-2.669 v-4.177c0-0.996-0.017-2.278-1.387-2.278c-1.389,0-1.601,1.086-1.601,2.206v4.249h-2.667v-8.59h2.559v1.174h0.037 c0.356-0.675,1.227-1.387,2.526-1.387c2.703,0,3.203,1.779,3.203,4.092V18.338z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">LinkedIn</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-bluesky  wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://bsky.app/profile/weston.ruter.net/post/3m5uyyujouk2o\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M6.3,4.2c2.3,1.7,4.8,5.3,5.7,7.2.9-1.9,3.4-5.4,5.7-7.2,1.7-1.3,4.3-2.2,4.3.9s-.4,5.2-.6,5.9c-.7,2.6-3.3,3.2-5.6,2.8,4,.7,5.1,3,2.9,5.3-5,5.2-6.7-2.8-6.7-2.8,0,0-1.7,8-6.7,2.8-2.2-2.3-1.2-4.6,2.9-5.3-2.3.4-4.9-.3-5.6-2.8-.2-.7-.6-5.3-.6-5.9,0-3.1,2.7-2.1,4.3-.9h0Z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Bluesky</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-threads  wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://www.threads.com/@westonruter/post/DRL7SpBjjlb\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M16.3 11.3c-.1 0-.2-.1-.2-.1-.1-2.6-1.5-4-3.9-4-1.4 0-2.6.6-3.3 1.7l1.3.9c.5-.8 1.4-1 2-1 .8 0 1.4.2 1.7.7.3.3.5.8.5 1.3-.7-.1-1.4-.2-2.2-.1-2.2.1-3.7 1.4-3.6 3.2 0 .9.5 1.7 1.3 2.2.7.4 1.5.6 2.4.6 1.2-.1 2.1-.5 2.7-1.3.5-.6.8-1.4.9-2.4.6.3 1 .8 1.2 1.3.4.9.4 2.4-.8 3.6-1.1 1.1-2.3 1.5-4.3 1.5-2.1 0-3.8-.7-4.8-2S5.7 14.3 5.7 12c0-2.3.5-4.1 1.5-5.4 1.1-1.3 2.7-2 4.8-2 2.2 0 3.8.7 4.9 2 .5.7.9 1.5 1.2 2.5l1.5-.4c-.3-1.2-.8-2.2-1.5-3.1-1.3-1.7-3.3-2.6-6-2.6-2.6 0-4.7.9-6 2.6C4.9 7.2 4.3 9.3 4.3 12s.6 4.8 1.9 6.4c1.4 1.7 3.4 2.6 6 2.6 2.3 0 4-.6 5.3-2 1.8-1.8 1.7-4 1.1-5.4-.4-.9-1.2-1.7-2.3-2.3zm-4 3.8c-1 .1-2-.4-2-1.3 0-.7.5-1.5 2.1-1.6h.5c.6 0 1.1.1 1.6.2-.2 2.3-1.3 2.7-2.2 2.7z\"></svg><span class=\"wp-block-social-link-label screen-reader-text\">Threads</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-twitter  wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://x.com/westonruter/status/1990653489740194222\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-mastodon  wp-block-social-link\"><a class=\"wp-block-social-link-anchor\" href=\"https://mastodon.social/@westonruter/115569037834231729\"><svg height=\"24\" version=\"1.1\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M23.193 7.879c0-5.206-3.411-6.732-3.411-6.732C18.062.357 15.108.025 12.041 0h-.076c-3.068.025-6.02.357-7.74 1.147 0 0-3.411 1.526-3.411 6.732 0 1.192-.023 2.618.015 4.129.124 5.092.934 10.109 5.641 11.355 2.17.574 4.034.695 5.535.612 2.722-.15 4.25-.972 4.25-.972l-.09-1.975s-1.945.613-4.129.539c-2.165-.074-4.449-.233-4.799-2.891a5.499 5.499 0 0 1-.048-.745s2.125.52 4.817.643c1.646.075 3.19-.097 4.758-.283 3.007-.359 5.625-2.212 5.954-3.905.517-2.665.475-6.507.475-6.507zm-4.024 6.709h-2.497V8.469c0-1.29-.543-1.944-1.628-1.944-1.2 0-1.802.776-1.802 2.312v3.349h-2.483v-3.35c0-1.536-.602-2.312-1.802-2.312-1.085 0-1.628.655-1.628 1.944v6.119H4.832V8.284c0-1.289.328-2.313.987-3.07.68-.758 1.569-1.146 2.674-1.146 1.278 0 2.246.491 2.886 1.474L12 6.585l.622-1.043c.64-.983 1.608-1.474 2.886-1.474 1.104 0 1.994.388 2.674 1.146.658.757.986 1.781.986 3.07v6.304z\"></svg><span class=\"wp-block-social-link-label screen-reader-text\">Mastodon</span></a></li></ul>\n<p>The post <a href=\"https://weston.ruter.net/2025/11/17/wordpress-6-9-performance-landings/\">WordPress 6.9 Performance Landings</a> appeared first on <a href=\"https://weston.ruter.net\">Weston Ruter</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, 18 Nov 2025 06:07: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:12:\"Weston Ruter\";s: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: Rothko Chapel Garden\";s:7:\"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=150583\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://ma.tt/2025/11/garden/\";s: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:4806:\"<p>It&#8217;s been hard for me to write about Friday because it was so overwhelming, to see so many friends and loved ones and teachers and mentors there, including friends of my late Father&#8217;s I hadn&#8217;t seen in years, and to be with all of the people who have been driving <a href=\"https://www.rothkochapel.org/learn/vision-mission/\">the mission of the Rothko Chapel</a> over decades, and gosh. There were literally monarchs and dragonflies (my Mom&#8217;s favorite) flitting about as each person spoke. Although the Houston heat beat down upon us on an unseasonably warm November day, you couldn&#8217;t have imagined a more perfect scene.</p>\n\n\n\n<p>Speaking before me were Troy Porter (Board Chair), Abdullah Antepli (the new director), Christopher Rothko, Abbie Kamin (City Council member), Adam Yarinsky (architect), Lanie McKinnon (landscape architect), and my sister, <a href=\"https://charleen.mullenweg.com/\">Charleen</a>. Here is what I offered to the proceeding:</p>\n\n\n\n<p>I can&#8217;t believe we&#8217;re all here; it&#8217;s been so long coming to this point. </p>\n\n\n\n<p>So I should start by saying that part of the reason I started blogging and WordPress is I have a terrible memory, I forget everything.</p>\n\n\n\n<p>But as I remember it, my conscious relationship to the chapel begins in my teenage years, when exploring the city with some friends from the <a href=\"https://khspva.houstonisd.org/\">High School for the Performing and Visual Arts</a>, some of whom are here today. We were always bumming around the area. HSPVA at the time was in Montrose, and we bummed around the <a href=\"https://www.stthomas.edu/\">Saint Thomas campus</a> and the related parks and stumbled across the <a href=\"https://www.rothkochapel.org/\">Rothko Chapel</a>.</p>\n\n\n\n<p>I was totally taken aback, and couldn&#8217;t wait to call up my parents about what I had discovered. &#8220;Mom! <em>Look what I found!</em>&#8220;</p>\n\n\n\n<p>She just started laughing.</p>\n\n\n\n<p>Of course, I hadn’t discovered it; it turns out that almost a decade before, she had brought me there as a small child. Apparently, we had been playing in <a href=\"https://en.wikipedia.org/wiki/Bell_Park_(Houston)\">Bell Park</a>, and rain clouds started to form, so she was looking for someplace we could go inside, and the Rothko Chapel was, of course, open.</p>\n\n\n\n<p>I’ve been to the Chapel countless times now. I’ve been when I’m grieving, I’ve been when I’m celebrating, I&#8217;ve been when I needed a reset, I’ve brought friends that loved it, that hated it, that cried, I&#8217;ve brought friends that laughed.</p>\n\n\n\n<p>Some of my favorites when I was training for a half-marathon and would run here, take a quick meditation break, and then run back home</p>\n\n\n\n<p>There’s a milion stories about how people come to the chapel, and many more about how they leave it, it’s a nexus or Schelling point. Whatever your experience, you’ll always remember it and leave changed.</p>\n\n\n\n<p>I&#8217;m so glad to be able to celebrate this opening with all of you. Here are of course my family that raised me, but also friends and teachers that shaped me as a man and without which I wouldn&#8217;t have been able to accomplish anything I have in my life. I see some teachers here, I see <a href=\"https://docfestjazz.org/dr-robert-doc-morgan/\">Doc Morgan</a>, <a href=\"https://www.davidcaceresorchestra.com/\">David Caceres</a>. Thank you so much for being here.</p>\n\n\n\n<p>My father, <a href=\"https://ma.tt/2016/04/in-memoriam-chuck-mullenweg/\">Chuck Mullenweg, passed in 2016</a>, but Mom, I know he would have loved this. <a href=\"https://literary-arts.org/bio/christopher-rothko/\">Christopher</a>, thank you for the opportunity to contribute in a small way to our shared mission of honoring our fathers&#8217; legacy.</p>\n\n\n\n<p>My mother, Kathleen Mullenweg, is right here, I hope you get a chance to meet her. A garden seemed very fitting as her lifelong green thumb and love of gardening has always been grounding and inspiring to me. Mom, I just wanted to take this opportunity to say thank you again for being the best mother a boy could hope for, and giving me such a broad extracurricular education, especially in the arts.</p>\n\n\n\n<p>I work in technology, which has already transformed society and is poised to do even more with the age of AI beginning, and I believe it is incredibly important for technologists building the future to be connected and informed by the arts, because we need our software to have soul.</p>\n\n\n\n<p>What I hope for most, though, is that the peace and reflection garden and birch grove bring some mother and child someday, who perhaps wander into the chapel looking to escape rain, and that kid later goes back to his mother a decade later and says, <em>Look what I found!</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, 17 Nov 2025 07:35:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Gutenberg Times: WordPress 6.9 Dev Notes, WordCamp Canada talks, Interactivity API — Weekend Edition #349\";s:7:\"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=42773\";s:7:\"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://gutenbergtimes.com/wordpress-6-9-dev-notes-wordcamp-canada-talks-interactivity-api-weekend-edition-349/\";s: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:25267:\"<p>Hi there, </p>\n\n\n\n<p>We are getting close to the WordPress 6.9 release. Below you find links to published Developer notes. You can also wait for the Source of Truth to be published next week to learn about besides developer changes coming to WordPress 6.9.</p>\n\n\n\n<p>On a personal note, I had great fun facilitating the first WordPress Meetup in München after an 11-month hiatus. I met the wonderful people who co-founded the meeting back in 2014, the same year I started co-organizing a meetup in Naples. It&#8217;s quite a mixed group of bloggers, developers, designers and agencies. I am glad to now have a local meetup to go to every month and learn more about the German WordPress users and businesses.  If you don&#8217;t have a local WordPress meetup, you might <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/\">consider starting one</a>. It&#8217;s a lot of fun networking with like-minded people. </p>\n\n\n\n<p>Yours, <img alt=\"💕\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\n\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\"></div>\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><a href=\"https://github.com/WordPress/gutenberg/releases/tag/v22.1.0-rc.1\">Gutenberg 22.1 RC1</a></strong> is now available for testing.</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://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-1/\"><strong>WordPress 6.9 RC1</strong></a> is now available and it&#8217;s time for you, if you haven&#8217;t yet, to test your themes, plugins and custom code against the new version. The contributors also published Dev Notes for this release.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The <strong>Source of Truth for WordPress 6.9 </strong>is in review and on the publishing schedule here for November 18th, 2025. You can take a sneak peek of the draft on <a href=\"https://docs.google.com/document/d/1SJm3E0yE0yyYV_Vo8O-3lkor_Q4E4dQYLs3Nobwc9Q4/edit?tab=t.x6i0zoiizlje\">Google Doc</a>, in case you need it earlier to comply with any of your publishing deadlines. </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://wordpress.org/state-of-the-word/\">State of the Word 2025</a> will include highlights and demos of the most important features of this release. The event will be <a href=\"https://www.youtube.com/wordpress\">livestreamed on YouTube</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"dev-notes-for-wordpress-6-9\">Dev notes for WordPress 6.9 </h3>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Highlight grid WordPress 6.9 \" class=\"wp-image-42826\" height=\"375\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/WordPress-6.9-Highlight-grid-2025-11-14.png?resize=652%2C375&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<p>More dev notes are available on the Make Core blog. </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/theme-json-border-radius-presets-support-in-wordpress-6-9/\">Theme.json Border Radius Presets Support in WordPress 6.9</a>.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/heading-block-css-specificity-fix-in-wordpress-6-9/\">Heading Block CSS Specificity Fix in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/interactivity-apis-client-navigation-improvements-in-wordpress-6-9/\">Interactivity API’s client navigation improvements in WordPress 6.9</a> </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/changes-to-the-interactivity-api-in-wordpress-6-9/\">Changes to the Interactivity API in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/preparing-the-post-editor-for-full-iframe-integration/\">Preparing the Post Editor for Full iframe Integration</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/block-bindings-improvements-in-wordpress-6-9/\">Block Bindings improvements in WordPress 6.9</a> </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/theme-json-border-radius-presets-support-in-wordpress-6-9/\">Theme.json Border Radius Presets Support in WordPress 6.9</a> </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/11/dataviews-dataform-et-al-in-wordpress-6-9/\">DataViews, DataForm, et al. in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/10/abilities-api-in-wordpress-6-9/\">Abilities API in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/09/04/prettier-emails-supporting-inline-embedded-images/\">Prettier Emails: Supporting Inline Embedded Images</a></li>\n</ul>\n\n\n\n<p><strong>Dev notes</strong> on accessibility updates, frontend performance enhancements, the underlying architecture of the new Notes feature, updates to the HTML API, the new Block Processor, and PHP and UTF_8 supports are still in the works and are expected to be published next week together with the Fieldguide. </p>\n\n\n\n<p>I mentioned them before, there are a few tutorials on the <strong>WordPress Developer blog</strong> about how to use WordPress 6.9 features. </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://developer.wordpress.org/news/2025/11/how-wordpress-6-9-gives-forms-a-theme-json-makeover/\">How WordPress 6.9 gives forms a theme.json makeover</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2025/10/styling-accordions-in-wordpress-6-9/\">Styling accordions in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2025/09/border-radius-size-presets-in-wordpress-6-9/\">Border radius size presets in WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2025/08/registering-custom-social-icons-in-wordpress-6-9/\">Registering custom social icons in WordPress 6.9</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p><img alt=\"🎙\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-125-wordpress-6-9-gutenberg-22-1-and-gutenberg-22-2/\">Gutenberg Changelog #125 – WordPress 6.9, Gutenberg 22.1 and Gutenberg 22.2</a> with <strong>JC Palmes</strong>, WebDev Studios</p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-no-vertical-margin\"><img alt=\"Gutenberg Changelog 125 with JC Palmes and host Birgit Pauli-Haack\" class=\"wp-image-43283\" height=\"186\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-28-at-18.19.29.png?resize=652%2C186&#038;ssl=1\" width=\"652\" /></figure>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div></div></div>\n\n\n\n<p>The latest monthly roundup post is <a href=\"https://developer.wordpress.org/news/2025/11/whats-new-for-developers-november-2025/\"><strong>What’s new for developers? (November 2025)</strong></a> was again stoke full of information. It covers al lot you might already know, but also lesser-known updates, like PHP-only block registration, enhanced Gallery aspect ratios. WordPress Playground gains file browser capabilities; AI team stabilizes core packages implementing server-side Abilities API.</p>\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> published an <strong><a href=\"https://developer.wordpress.org/news/2025/11/introducing-the-wordpress-abilities-api/\">introduction to the WordPress Abilities API</a> </strong>that&#8217;s coming to WordPress in the next release. You&#8217;ll learn what this new Ability will unlock for developers and how to use it in your plugins and themes now.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://developer.wordpress.org/news/2025/11/introducing-the-wordpress-abilities-api/\"><img alt=\"Featured image of the Abilities API article on the WordPreess Developer Blog\" class=\"wp-image-42843\" height=\"372\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/aiblities-api.png?resize=652%2C372&#038;ssl=1\" width=\"652\" /></a></figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"block-editor-related-talks-from-wordcamp-canada\">Block editor-related talks from WordCamp Canada </h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://wordpress.tv/event/wordcamp-canada-2025/\"><img alt=\"WordCamp Canada feature image\" class=\"wp-image-42856\" height=\"435\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/welcome-scaled.webp?resize=652%2C435&#038;ssl=1\" width=\"652\" /></a></figure>\n\n\n\n<p>The team of <a href=\"https://wordpress.tv/event/wordcamp-canada-2025/\">WordCamp Canada </a>published the recordings of the talks on WordPress TV here is a selections: </p>\n\n\n\n<p><a href=\"https://wordpress.tv/2025/11/10/back-on-the-block-my-reasons-for-returning-to-the-full-site-editor/\"><strong>Back on the Block: My Reasons for Returning to the Full Site Editor</strong></a> with <strong>Joe R Simpson</strong>. This interactive presentation explores WordPress&#8217;s current state, Full Site Editor capabilities, and emerging features like AI and the Style Guide.</p>\n\n\n\n<p><a href=\"https://wordpress.tv/2025/11/10/building-for-content-editors-why-designers-and-developers-need-to-care-more/\"><strong>Building for Content Editors: Why Designers and Developers Need To Care More</strong></a> with Jesse Dyck. Block editors offer powerful flexibility but require deliberate curation through guardrails and customization to prevent brand inconsistency, accessibility failures, and editor overwhelm while empowering content teams to work efficiently.</p>\n\n\n\n<p><a href=\"https://wordpress.tv/2025/11/10/interactivity-api-for-common-dom-interactions/\"><strong>Interactivity API for common DOM interactions</strong></a> with Austin Atkinson. Leveraging WordPress&#8217;s Interactivity API to handle typical front-end interactions—like clicks, hovers, form submissions, or dynamic content updates—by directly manipulating the Document Object Model (DOM) rather than relying on separate JavaScript frameworks or libraries.</p>\n\n\n\n<p><a href=\"https://wordpress.tv/2025/11/10/the-block-developer-cookbook-wceh-2025-edition/\"><strong>The Block Developer Cookbook: WCEH 2025 Edition</strong></a> with <strong>Ryan Welcher</strong>. Expand your block development skills with hands-on guidance and real-world examples.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>In <a href=\"https://wpbuilds.com/2025/11/13/445-more-fun-in-wordpress-how-nick-hamze-uses-ai-to-build-unusual-wordpress-blocks/\"><strong>episode 445 of the WPBuilds podcast</strong></a>, <strong>Nathan Wrigley </strong>interviews <strong>Nick Hamze</strong>, a lawyer-turned-Pokemon-card-shop-owner who builds peculiar WordPress blocks using AI. Hamze championed fun over convention, running Automatic&#8217;s merch operations before launching Izzy&#8217;s Gym. Armed with Telex, he constructs dozens of quirky blocks—dice rollers, glitchy text effects, custom integrations—in minutes. He dismisses distribution concerns, arguing WordPress needs personality restored; creation trumps monetization. Hamze advocates democratizing development: AI enables everyone, not just coders, to build niche solutions.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his post <a href=\"https://justintadlock.com/archives/2025/11/08/breadcrumbs-reimagined-again\"><strong>Breadcrumbs Reimagined. Again.</strong></a>, <strong>Justin Tadlock</strong> announced the update to version 4.0 of his <a href=\"https://wordpress.org/plugins/x3p0-breadcrumbs/\">Breadcrumbs block plugin.</a> The update makes previously developer-only features available in the editor, including customizable labels and options for post taxonomy. The public API has been simplified, now offering easier function calls and JSON-LD support for SEO. While the change may affect some users, the plugin now allows for advanced breadcrumb setup without needing coding skills, while still providing robust tools for developers. Check out <a href=\"https://github.com/x3p0-dev/x3p0-breadcrumbs/blob/master/CHANGELOG.md\">the full changelog</a> with all the updates.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Screenshot from the Breadcrumbs block plugin\" class=\"wp-image-42829\" height=\"350\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/breadcrumbs-labels.webp?resize=652%2C350&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Andrew Butler</strong>, a Content Strategist over at WordPress VIP, reported on <strong><a href=\"https://wpvip.com/blog/collaborative-editing-wordpress-vip/\">the future of collaborative editing</a></strong> and how it’s making teamwork way easier. Think Google Docs-style editing right in WordPress! Now, multiple folks can jump in and edit posts together, seeing each other’s cursors and presence indicators in real time. Plus, those in-line Notes are super handy for providing feedback without having to leave the editor. WordPress VIP tested and implemented what will come to WordPress core in upcoming releases. <strong>Anne McCarthy</strong> mentioned contributor efforts in her <a href=\"https://make.wordpress.org/core/2025/11/06/update-on-phase-3-2025/\">Update on Phase 3: Collaboration efforts (Nov 2025)</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Joe Fylan</strong> shared via WordPress.com blog, <a href=\"https://wordpress.com/blog/2025/11/13/wordpress-blocks-made-with-telex/\"><strong>12 Cool AI-Powered WordPress Blocks Made with Telex</strong></a>, showcasing Automattic&#8217;s free browser-based <a href=\"https://telex.automattic.ai/\">Telex</a> tool that transforms plain-language descriptions into functional WordPress blocks. Featured blocks range from interactive games like Minesweeper and personality quizzes to practical tools like recipe publishers, weather forecasters, and scroll indicators. If you have an idea for block but are not a programmer, you can create, customize, download, and share blocks without coding knowledge, making block development accessible to everyone.</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 keen to learn how to do some more comprehensive prompting, Check out <strong>Tammie Lister</strong>&#8216;s site <a href=\"https://blocktober.fun/\">Blocktober.fun</a> where you can look at her collection of blocks and the instructions she gave to the AI.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jake Spurlock</strong> shared an update on his Raptorize plugins to bring it into the block ear: <a href=\"https://jakespurlock.com/2025/11/raptorize-it-15-years-later-now-with-blocks/\"><strong>Raptorize It: 15 Years Later, Now With Blocks</strong></a>. &#8220;Look, I could tell you it’s about maintaining legacy code or demonstrating modern WordPress development practices. And sure, those are valid reasons. But really, it’s 2025 and the world still needs more velociraptors on websites. Some traditions are worth preserving.&#8221;, he wrote. You can see it in <a href=\"https://icodeforapurpose.com/raptorized/\">action on my other site.</a> Switch on sound for the full experience. </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://icodeforapurpose.com/raptorized/\"><img alt=\"Still image from the Raptorized plugins in action. \" class=\"wp-image-42838\" height=\"380\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-14-at-17.32.43.png?resize=652%2C380&#038;ssl=1\" width=\"652\" /></a></figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>New in the WordPress Plugin repository: <a href=\"https://wordpress.org/plugins/native-blocks-carousel/\"><strong>Any Block Carousel Slider</strong></a> by <strong>Arthur Ballan</strong>, aka Web Lazer, a freelancer from Rennes, France. It stands out as it is implemented with CSS only. A &#8220;carousel slider block plugin that instantly converts supported native WordPress blocks (Query Loop/Post Template, Group, Gallery) into a responsive carousel slider without adding a dedicated block or loading a JavaScript library.&#8221; Ballan wrote in the description. I tested it with a few images and it&#8217;s super fast. </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"Screenshot using the Any Block Carousel Slider.\" class=\"wp-image-42840\" height=\"304\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2025/11/Screenshot-2025-11-14-at-17.38.57.png?resize=652%2C304&#038;ssl=1\" width=\"652\" /></figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Wes Theron</strong> published another short tutorial using WordPress. This time on <a href=\"https://www.youtube.com/watch?v=y_E-E4N6ds8\"><strong>how to create a custom 404 page</strong></a>, a page that&#8217;s displayed when someone comes from a bad or broken link. He walks you through the process of changing the template and also shows a few examples you can use as inspiration.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\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\n</div></figure>\n</div>\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Themes, Blocks and Tools </h2>\n\n\n\n<p><strong>Rich Tabor</strong> started a new series called <a href=\"https://rich.blog/wordpress-explorations/\"><strong>WordPress Explorations</strong></a>, &#8220;where I’m exploring new, far-out ideas about WordPress&#8221;. In his first post, <a href=\"https://rich.blog/pages-and-layers/\"><strong>Pages &amp; Layers</strong></a>, Tabor explores a WordPress interface concept addressing user confusion: navigating pages requires leaving the editor entirely. He proposes a persistent sidebar with tabbed navigation between pages and block layers, allowing seamless page switching and creation without context-switching. </p>\n\n\n\n<p>As a follow-up to his post on <a href=\"https://developer.wordpress.org/news/2025/10/styling-accordions-in-wordpress-6-9/\">styling an accordion block</a>, <strong>Justin Tadlock</strong> published <a href=\"https://developer.wordpress.org/news/snippets/schema-org-microdata-for-accordion-block-faqs/\"><strong>Snippet: Schema.org microdata for Accordion block FAQs</strong></a>. It&#8217;s a short example of how to add structured data for FAQs via the HTML API in plugin of functions.php.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n<section class=\"wp-block-newsletterglue-callout undefined not-color-set\" style=\"border-color: #f9f9e5; border-radius: 22px; border-style: solid; border-width: 0; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; text-align: left; margin-left: 0; margin-right: 0; margin-top: 0px; margin-bottom: 0px; background-color: #f9f9e5;\">\n<p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" rel=\"noreferrer noopener\" target=\"_blank\">&#8220;Keeping up with Gutenberg &#8211; Index 2025&#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. 2024 on. Updated by yours truly. The previous years are also available: <strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/\"><strong>2024</strong></a></p>\n</section>\n\n\n<p>In his livestream <a href=\"https://www.youtube.com/watch?v=gs2ZurEpdmg\"><strong>Using every Interactivity API feature in one site: Part 2</strong></a>, <strong>Ryan Welcher</strong> continues his series on the Interactivity API and his attempt to build something that uses every directive and feature it offers. <a href=\"https://www.youtube.com/watch?v=YmOrpp8ygbA\">Part 1 is also available on YouTube</a>.</p>\n\n\n<section class=\"wp-block-newsletterglue-callout undefined not-color-set\" style=\"border-color: #eeeeee; border-radius: 26px; border-style: solid; border-width: 0; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; text-align: left; margin-left: 0; margin-right: 0; margin-top: 0px; margin-bottom: 0px; background-color: #f3efe9;\">\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. </p>\n\n\n\n<p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n</section>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n<section class=\"wp-block-newsletterglue-group\" style=\"padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; margin-top: 0px; margin-bottom: 0px;\">\n<p>Featured Image: AI generated. </p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n<form action=\"https://gutenbergtimes.com/feed/\" autocomplete=\"on\" class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\" style=\"margin-bottom: 25px;\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input autocomplete=\"email\" class=\"ngl-form-input-text\" id=\"ngl_email\" name=\"ngl_email\" required=\"required\" style=\"border-radius: 21px;\" type=\"email\" /></div></div><button class=\"ngl-form-button\" style=\"background-color: #005075; border-color: #005075; border-width: 1px; border-style: solid; color: #ffffff; border-radius: 21px;\" type=\"submit\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won&#8217;t give your email address to anyone <br />except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"><svg fill=\"none\" height=\"24\" stroke=\"#fff\" stroke-width=\"2\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><polyline points=\"20 6 9 17 4 12\"></polyline></svg></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input id=\"ngl_list_id\" name=\"ngl_list_id\" type=\"hidden\" value=\"26f81bd8ae\" /><input id=\"ngl_double_optin\" name=\"ngl_double_optin\" type=\"hidden\" value=\"yes\" /></form>\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n</section>\";s: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, 15 Nov 2025 01: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: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Matt: Kanye’s Back\";s:7:\"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=150571\";s:7:\"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:34:\"https://ma.tt/2025/11/kanyes-back/\";s: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:1471:\"<p>In case you missed it, <a href=\"https://www.youtube.com/watch?v=nJRHEqp-yKQ\">Kanye has started apologizing for the event he went through</a>. I didn&#8217;t comment on it publicly when it happened because it seemed so strange to me that such a beautiful soul, who had created so much life-changing music with so much love, could express such hate. I&#8217;ve had close friends who are bipolar, so I&#8217;m familiar with the disease, and seeing Ye&#8217;s episode was really heartbreaking, both for the things he was saying and also that it was clearly a medical issue, unfortunately, playing out in the public sphere. (I can&#8217;t imagine anything worse.) Every saint has a past and every sinner has a future. </p>\n\n\n\n<p>Who knows what&#8217;s next, but hopefully this is the start of a new generative era for Ye, who clearly has the ability to innovate across many fields. <a href=\"https://www.billboard.com/music/rb-hip-hop/drake-drops-booking-agent-shared-kendrick-lamar-1236113230/\">Especially with no rap songs in the Billboard 40 for the first time since 1990</a>! It does feel like we&#8217;re living through a New Renaissance right now, there&#8217;s an explosion of creativity and access. I&#8217;m wishing Ye peace and equanimity with the challenges he&#8217;s facing, and I&#8217;m definitely going to revisit some of his early work (<em>The College Dropout</em> (ha!) through <em>Cruel Summer</em>) that was so influential on me as I was growing up.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Nov 2025 08:59: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: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:44;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"Jake Spurlock: Raptorize It: 15 Years Later, Now With Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://jakespurlock.com/?p=51971\";s:7:\"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://jakespurlock.com/2025/11/raptorize-it-15-years-later-now-with-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4407:\"<p>Fifteen years ago, I <a href=\"https://jakespurlock.com/2010/11/raptorize-this/\">released a WordPress plugin</a> that answered a question nobody asked: &#8220;What if your website needed more velociraptors?&#8221; The Raptorize It plugin took the brilliant jQuery work from Zurb and made it dead simple to unleash Jurassic proportions on any WordPress site.</p>\n\n\n\n<p>The motivation back then was simple: you&#8217;re deep in a coding session, fueled by questionable snacks, and you realize your project is missing something critical. Not another feature request. Not better documentation. A velociraptor.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-was-old-is-new-again\">What Was Old Is New Again</h2>\n\n\n\n<p>Fast forward to 2025, and the web has changed significantly. WordPress has evolved from the simple days of jQuery-powered effects to a modern block editor powered by React. The old Raptorize It plugin still worked, but it was time for an update.</p>\n\n\n\n<p>I recently modernized the entire plugin to work seamlessly with current WordPress versions (5.0+) and PHP 8.0+. But more importantly, I brought it into the Gutenberg era with two new ways to raptorize your content.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"new-gutenberg-blocks\">New Gutenberg Blocks</h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-invisible-raptor-block\">1. Invisible Raptor Block</h3>\n\n\n\n<p>The Invisible Raptor block lets you add raptor functionality anywhere on your page with a visual editor interface. In the block settings panel, you can:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Enable Konami Code</strong>: Trigger the raptor with the classic ↑ ↑ ↓ ↓ ← → ← → B A sequence</li>\n\n\n\n<li><strong>Enable Timer</strong>: Automatically trigger the raptor after page load</li>\n\n\n\n<li><strong>Adjust Timer Delay</strong>: Control exactly how long visitors have before the inevitable</li>\n</ul>\n\n\n\n<p>The block is invisible on the frontend (hence the name), but shows you which triggers are active right in the editor.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"2-raptorize-button-variation\">2. Raptorize Button Variation</h3>\n\n\n\n<p>For a more direct approach, there&#8217;s now a Button block variation that adds a &#8220;Raptorize Button&#8221; style option to the core WordPress button block. Visitors click the button, raptor appears. Simple. Elegant. Prehistoric.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"whats-under-the-hood\">What&#8217;s Under The Hood</h2>\n\n\n\n<p>For the developers curious about what changed:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Utilized better internal WordPress APIs for script enqueuing. </li>\n\n\n\n<li>Updated jQuery from <code>.bind()/.unbind()</code> to <code>.on()/.off()</code></li>\n\n\n\n<li>Added comprehensive PHP CodeSniffer configuration (WordPress-Core, WordPress-Docs, PHPCompatibilityWP)</li>\n\n\n\n<li>Built block development workflow with <code>@wordpress/scripts</code></li>\n\n\n\n<li>Set up automated WordPress.org deployment via GitHub Actions</li>\n\n\n\n<li>Added wp-env configuration for local testing</li>\n</ul>\n\n\n\n<p>The entire codebase now follows modern WordPress coding standards and passes all linting checks.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"try-it-yourself\">Try It Yourself</h2>\n\n\n\n<p>The updated Raptorize It plugin is now available for download at the <a href=\"https://wordpress.org/plugins/raptorize-it/\">WordPress Plugin Directory</a>.</p>\n\n\n\n<p>You can also explore the complete codebase and contribute to future developments on <a href=\"https://github.com/whyisjake/raptorize-it\">GitHub</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"why-though\">Why Though?</h2>\n\n\n\n<p>Look, I could tell you it&#8217;s about maintaining legacy code or demonstrating modern WordPress development practices. And sure, those are valid reasons.</p>\n\n\n\n<p>But really, it&#8217;s 2025 and the world still needs more velociraptors on websites. Some traditions are worth preserving.</p>\n\n\n\n<p>Now if you&#8217;ll excuse me, I have a Konami code to input.</p>\n\n\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-a89b3969 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-75 is-style-raptorize is-style-fill raptorize-button\"><a class=\"wp-block-button__link has-large-font-size has-custom-font-size wp-element-button\">Don&#8217;t push this button.</a></div>\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:\"Wed, 12 Nov 2025 23:16: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:13:\"Jake Spurlock\";s: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Akismet: Version 5.6 of the Akismet WordPress plugin is available now\";s:7:\"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=284654\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://akismet.com/blog/akismet-5-6/\";s: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:628:\"<p>Version 5.6 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available. In this release, we&#8217;ve improved performance, updated the setup process to more clearly explain errors when they happen, and cleaned up and standardized our UI across all of the Akismet wp&#8209;admin screens.</p>\n\n\n<p></p>\n\n\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</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, 12 Nov 2025 16:55: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:17:\"Christopher Finke\";s: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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"WPTavern: #193 – Roger Williams on How We Might Reimagine Sponsoring WordPress Contributions\";s:7:\"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=200658\";s:7:\"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/193-roger-williams-on-how-we-might-reimagine-sponsoring-wordpress-contributions\";s: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:57604:\"<details>Transcription<div>\n<p>[00:00:19] <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 we might reimagine sponsoring WordPress contributions.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wp tavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Roger Williams. Roger leads community and partner engagement at Kinsta, a company specializing in offering managed hosting for WordPress. His role involves bridging the gap between Kinsta and the wider WordPress community, working closely with agency partners, technology collaborators, and open source initiatives.</p>\n\n\n\n<p>Throughout his career, Roger has been deeply involved in community efforts and has recently played a key part in Kinsta&#8217;s implementation of a sponsored contributions program, helping to funnel time and resources back into WordPress and other open source projects.</p>\n\n\n\n<p>Many longstanding members of the WordPress community have contributed out of passion and a spirit of philanthropy, but as the project has grown to power over 40% of the web, the need for sustainable funding and sponsorship has become more pronounced.</p>\n\n\n\n<p>Roger joins us today to explore this shift. He shares insights from his WordCamp US presentation titled Figuring Out Sponsored Contribution. Discussing how companies can start funding contributors, why that matters, and how to balance the business need for a return on investment with the grassroots spirit of open source.</p>\n\n\n\n<p>We begin with Roger&#8217;s background, his work at Kinsta, and how he became involved in WordPress community sponsorship.</p>\n\n\n\n<p>The conversation then gets into the ever evolving dynamics of sponsored contributions. How businesses can approach funding contributors. Ways to surface and support valuable work, and strategies for aligning company goals with broader project needs.</p>\n\n\n\n<p>Roger breaks down the practical arguments companies can use to get internal buy-in, and the importance of clear processes for both organizations looking to sponsor, and individuals seeking support.</p>\n\n\n\n<p>Towards the end, Roger reflects on the challenges and opportunities of connecting those both from the philanthropic and commercial sides of WordPress, and he shares advice for anyone hoping to get their organization involved in similar programs.</p>\n\n\n\n<p>If you&#8217;re interested in how WordPress sponsorships work, how business and community might collaborate, or you&#8217;re seeking practical advice as a contributor or company, this episode is for you.</p>\n\n\n\n<p>If you&#8217;d like to find out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Roger Williams.</p>\n\n\n\n<p>I am joined on the podcast by Roger Williams. Hello, Roger.</p>\n\n\n\n<p>[00:03:46] <strong>Roger Williams:</strong> Hey Nathan, how are you?</p>\n\n\n\n<p>[00:03:47] <strong>Nathan Wrigley:</strong> I&#8217;m very good. We could pretend that we&#8217;re recording this at WordCamp US because that was the plan, but it never happened for one reason or another. So we took it offline. And several weeks ago, WordCamp US finished, but the intention was very much to talk about what you were presenting at WordCamp US. So we&#8217;ll get into that in a moment.</p>\n\n\n\n<p>Before we do that though, Roger, would you mind just telling us a little bit about who you are, who you work for, what your role involves, all to do with WordPress, I guess.</p>\n\n\n\n<p>[00:04:14] <strong>Roger Williams:</strong> Yeah, no, absolutely. So my name&#8217;s Roger Williams. I work at Kinsta, managed hosting provider for WordPress. Currently my position is partnership and community manager for North America. Very long title. What does that mean? My job is to interface with the public, with the WordPress community, with our agency partners and various technology partners, and just make sure that we&#8217;re all on the same page, and that whatever&#8217;s going on outside of Kinsta is getting communicated inside of Kinsta, and whatever&#8217;s happening inside of Kinsta is getting communicated outside. So I&#8217;m basically boiling the ocean. So a very easy thing. No problem at all.</p>\n\n\n\n<p>Truth be said, it&#8217;s one of the, this is like the highlight of my career, I have to say. I get to travel, I get to meet a lot of neat and interesting people, I get to make amazing friends, and I get to talk about technology, the web, WordPress and Kinsta hosting, which are all things that I&#8217;m very passionate about and enjoy talking about this ad nauseam. You can ask my wife, that I am probably too much, need to turn it off a little bit.</p>\n\n\n\n<p>But specifically talking about community and WordPress, gosh, it was January of this year, 2025, that we implemented our sponsored contributions program, and I played a role in that. I played a role in getting the conversation happening around that inside of Kinsta. And then once we got budget approval, actually figuring out, hey, who do we want to sponsor? What projects outside of WordPress? Because we also sponsor various open source projects that affect us directly and indirectly.</p>\n\n\n\n<p>And so that has been a whole new aspect of my career that has really opened up new doors and opportunities and discussions and friendships that I&#8217;m still feeling like a bit of an interlocutor. I&#8217;m an outsider trying to understand how to best do this, and play a part in helping the projects that we all depend on to do all of our work.</p>\n\n\n\n<p>[00:06:17] <strong>Nathan Wrigley:</strong> Nice. Thank you. Yeah, there&#8217;s a lot in there to unpack, isn&#8217;t there? It sounds like a full and varied role, but also you kind of sound a little bit like you&#8217;re figuring this out over the course of 2025 and into 2026 and who you are sponsoring and what have you. And that was very much the tenor of the talk.</p>\n\n\n\n<p>So the title was very simple. The presentation that you gave was simply called figuring out sponsored contribution. But I&#8217;ll just read into the record the blurb, not all of it, but much of it because it will give everybody who&#8217;s listening an idea of where you were going with that. So it says, open source software runs on passion, but passion doesn&#8217;t pay the bills. WordPress powers over 40% of the web, yet many people maintaining it aren&#8217;t funded. That&#8217;s starting to change and your company can be part of it. In this talk, we&#8217;ll explore how sponsored contribution works, why it matters, and how companies big and small can participate. We&#8217;ll walk through my experience, AKA your experience, working with companies to sponsor contributors from promoting the idea internally, identifying key areas of the WordPress project to support, finding and interviewing contributors, and building an internal framework for long-term sponsorship. And there&#8217;s a little bit more, but that basically sums it up.</p>\n\n\n\n<p>So basically, I guess my first question is, what exactly are you trying to do here? Are you kind of regarding this as a sort of philanthropic thing? What I&#8217;m really kind of asking is, do you kind of expect things in return? So if Kinsta, for example, sponsor somebody, do you have like a tick list of things that we need to see that you&#8217;ve done? Or is it more, you are a trusted person, we&#8217;ve seen you interacting in the WordPress space for many years, here&#8217;s a bunch of cash, go off and just do whatever you like?</p>\n\n\n\n<p>[00:07:53] <strong>Roger Williams:</strong> Yeah, excellent question. And thanks for reading that blurb. I don&#8217;t think I&#8217;ve read that blurb in quite a few months and it sounds really good.</p>\n\n\n\n<p>[00:07:59] <strong>Nathan Wrigley:</strong> It was a great talk.</p>\n\n\n\n<p>[00:08:00] <strong>Roger Williams:</strong> Somebody really put something together here. Really interesting question and I think this kind of gets to the core of what I was trying to talk about in this talk, in the exploration that I&#8217;m trying to figure out in my own head, figure out inside of Kinsta, and possibly figure out in the larger community.</p>\n\n\n\n<p>There&#8217;s a lot of humility involved in this Nathan, I hope you can appreciate. I feel a lot of the times very, the imposter syndrome, right? Wow, I&#8217;m coming into a project that&#8217;s over 22 years old. Many, many thousands of people have been involved. Many, many companies have been involved in this. Here&#8217;s this new guy, you know, I mean I&#8217;ve been around for a little while, but relatively new guy on the scene just coming in trying to tell people how all this is done. And I really hope that it doesn&#8217;t come across that way. I&#8217;m really trying to explore this topic and understand it better for a few reasons.</p>\n\n\n\n<p>The first one is the most immediate. How can I get Kinsta involved in contributing and sponsoring WordPress and other open source projects? And so there&#8217;s a combination of things happening there, right? And you brought it up in terms of, are there tangible things that we&#8217;re looking for here? Or is this simply just philanthropic, hey, we&#8217;re giving money away and everything will work out?</p>\n\n\n\n<p>And I think that there&#8217;s a spectrum. And we&#8217;re playing on the spectrum with it. Traditionally, and this is something that I talk about a lot in the talk is, traditionally in open source the argument has been that I&#8217;ve seen, hey, you&#8217;re using this software, you should give back to the software and to the project.</p>\n\n\n\n<p>But then you have on the other side the business that is very much, hey, we need to generate revenue from our activities so that we can remain a business.</p>\n\n\n\n<p>And so they&#8217;re a little bit at odds in some ways, right? But it doesn&#8217;t have to be that way. And I think that&#8217;s what I&#8217;m exploring in this talk, and I&#8217;m exploring in this conversation, and as many conversations as I can have with people is, how do we play on that spectrum of finding a happy medium where for a company, a lot of times you go to the executives and you&#8217;re like, hey, we need to be giving back to this thing that we get for free? And you get a very perplexed look. And so I think we need to adjust that conversation.</p>\n\n\n\n<p>I think that the people that are inside of the project, it&#8217;s very obvious. Hey, we put a ton of time and effort into making this happen. Whether you give back in terms of time and actually help us work on the project, or give us money so we can sponsor people and pay for hosting costs and different things involved in it, to make the project happen. I think it&#8217;s very obvious for people inside of the project how that works.</p>\n\n\n\n<p>It&#8217;s less obvious, and I kind of see there&#8217;s three groups in all, right? You have the people inside of the project, very obvious. There&#8217;s very little argument needs to be made.</p>\n\n\n\n<p>You have the second group, which is somewhere like, a Kinsta will fall into, or someone like myself, who I&#8217;ve used open source software for many years, but I don&#8217;t necessarily see exactly how to contribute back, or the immediate benefits, or the need, right? Hey, this thing&#8217;s already here. I can go to the website, click download, and I&#8217;ve got it. There&#8217;s that group that kind of see it but they need a little nudging.</p>\n\n\n\n<p>And then there&#8217;s the general public or people that just don&#8217;t really interface with open source software directly and just have no idea. They&#8217;re just like, whoa, what is going on over there? People are just working on stuff for free and giving it away for free. That&#8217;s crazy. And so there&#8217;s another conversation that needs to happen there.</p>\n\n\n\n<p>I think with this specific talk, the group I&#8217;m trying to get to is that second group. The people that are just right there, it&#8217;s just in a little bit of nudging of like, hey, you&#8217;re really close to understanding the benefits of sponsoring and contributing back to the project. What are we missing in the conversation to really get them to understand it? So the answer I&#8217;m proposing is we need to talk more about return on investment and ROI, and how do we frame that?</p>\n\n\n\n<p>So really long-winded answer here, but I think that there&#8217;s a mixture of what are the things we&#8217;re trying to achieve by giving back? How can we bring that back in a business sense to show executives, hey, look, the money that we&#8217;re putting out here is benefiting us in certain ways?</p>\n\n\n\n<p>But then also being like, hey, there&#8217;s also just kind of this nebulous aspect to it of, if you help contribute to it, it will give you some benefit. So how do we balance and how do we find the spectrum here to land on? I hope that that made some sort of sense.</p>\n\n\n\n<p>[00:12:36] <strong>Nathan Wrigley:</strong> Yeah, it does. And it&#8217;s interesting because where you got to about a third of the way through the answer, I think you said the word tension or conflict or something like that. But I think that&#8217;s a really interesting part, because if we were to rewind the clock to, let&#8217;s say 19 years ago when WordPress was still relatively new. I wasn&#8217;t around in the WordPress space, but I was involved in other open source projects at the same time. And philanthropy was the word.</p>\n\n\n\n<p>There were just people donating loads of time because it was more or less this hobby thing. And then in some cases the hobby thing collapsed and nobody ever heard of it again. And in the case of some software projects, WordPress most notably, it took off. It just absolutely skyrocketed and became the underpinning of, as you say in the presentation notes that you made, kind of 40% of the web. It became this critical piece of the puzzle.</p>\n\n\n\n<p>And so during the last 18, 20, 22 years, whatever it may be, the project has evolved. It&#8217;s become critical. Like it or dislike it, companies both big and small are now relying upon it. They require it as part of their business, Kinsta being one of those companies. And so this tension exists. How do the companies do their bit and how do the individuals do their bit?</p>\n\n\n\n<p>And the tension that I feel is, on the one hand, the people who&#8217;ve got that heritage of the more philanthropic side sort of saying, can&#8217;t we just go back to how it was? Can we never talk about finance? Can we not think about money at all?</p>\n\n\n\n<p>And then on the other hand, you&#8217;ve got places like where you work, who are, with the best will in the world, it&#8217;s about making some revenue, and making money, and paying the bills and all of that. You&#8217;ve got to figure out, how the heck do you make contributions? How do you justify that to your bosses? How do they communicate what they&#8217;ve done effectively?</p>\n\n\n\n<p>And presumably part of your talk as well is about finding people that you would like to just give some money to as a helping hand to say, okay, off you go. You&#8217;re not a part of the Kinsta organisation, but we would like to help you. And in return, presumably there&#8217;s a bit of mutual back rubbing. We&#8217;ll pat your back, you pat ours, and so on and so forth. So hopefully I&#8217;ve parsed that about right?</p>\n\n\n\n<p>[00:14:39] <strong>Roger Williams:</strong> Yeah, no, I think you&#8217;re laying it out very much as I&#8217;m going through in the talk is, we need to talk business. And I know that for a lot of people inside of open source, this can be cringey and not pleasant and not what we want to do. And my argument is we have to get over that phase. We have to learn to start talking business and thinking business, thinking about return on investment.</p>\n\n\n\n<p>And so to me it&#8217;s becoming practical, right? We have this optimistic idea of like, well, people will just come to their senses and realise that if they sponsor and contribute to the project, it&#8217;s going to help them. And we need to be much more strategic and more practical about it. And I break it down into three reasons to start kind of looking at when you&#8217;re talking to executives, you&#8217;re talking to businesses. And so there&#8217;s strategic, operational and second order benefits.</p>\n\n\n\n<p>So when I&#8217;m talking about strategic benefits, I mean this is where it&#8217;s just obvious, right? For a hosting company that does WordPress, it just makes sense. Like, if WordPress isn&#8217;t working well, then we&#8217;re going to have trouble with our product. So strategically, it makes sense if WordPress works well, if it&#8217;s performing, if it&#8217;s secure, this is going to lower our cost as a hosting company. So those are arguments to be putting forward there.</p>\n\n\n\n<p>From an operational perspective, you can start talking about technical debt, right? And this is where the CTO&#8217;s eyes should light up, because technical debt is a real problem for any company that builds software. As you&#8217;re building software, you now have to maintain that software. Well, if you&#8217;re able to offload part of that software into the open source project, it now becomes something that the open source project maintains. It&#8217;s the technical debt of the project.</p>\n\n\n\n<p>That now creates a vicious cycle, or not even vicious, but just a cycle of, you now need to contribute to the project to help maintain that technical debt. But you&#8217;re now, as an organisation, offloading that to a larger organisation and having more people being able to help maintain that software. So I think from an operational perspective, those are arguments that you can hit people with.</p>\n\n\n\n<p>And then finally, the second order benefits, and this is really where it kind of encompasses the arguments that have been traditionally the philanthropic argument, the just maker taker argument and stuff like that. With second order benefits, you start seeing these additional benefits that maybe you can&#8217;t exactly measure.</p>\n\n\n\n<p>This is where networking is happening. People are meeting and talking to each other. Maybe your developers are talking to their developers, or in the case of sponsoring contributors, those contributors can come into your organisation and help the organisation maybe understand how to use WordPress better and these different benefits.</p>\n\n\n\n<p>And so breaking it down into these practical arguments, these practical reasons for contributing can really help people who are not necessarily as well versed with open source or don&#8217;t directly see the benefits, see that a little bit better.</p>\n\n\n\n<p>And then getting into what you&#8217;re also talking about, finding contributors who, maybe they align with your values, making sure that they&#8217;re working on the stuff that you need them to be working on. The parts of the project that could use attention as far as your organisation is seeing.</p>\n\n\n\n<p>And then also, you know, one of the big things I look for is contributors who are mentors and are helping other contributors get into the project and help to grow the project&#8217;s contributions overall.</p>\n\n\n\n<p>There&#8217;s direct, tangible things. Hey, there&#8217;s this ticket, could you go work on this ticket? I&#8217;ll be honest, I&#8217;m not that in depth yet. I&#8217;ve had contributors be like, hey, usually organisations are that pointed. And I&#8217;m like, okay, well there&#8217;s a goal for me to achieve at some point.</p>\n\n\n\n<p>But for me it&#8217;s more like, hey, are you doing good work? What are other people saying about you in the project? And then, are you mentoring people and helping other people do their first bug squash, and do their first push and commit and things like that? And I&#8217;m butchering the language of course here but, you know, I hope that that kind of helps answer some of those questions.</p>\n\n\n\n<p>[00:18:36] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s interesting because I fear that there&#8217;s a possibility that the community kind of bifurcates along these lines at the moment. So you get the people, and I was using the word philanthropic, so the people that have been contributing their time for gratis, just because they saw that as a useful thing to do for humanity, let&#8217;s put it that way.</p>\n\n\n\n<p>So there&#8217;s that on the one hand. And then on the other hand, you&#8217;ve got people such as yourself who are talking about the necessary things in order for your job and your institution to function, the money. And I suppose I&#8217;m kind of worried that we will have these two sides that kind of can&#8217;t figure out a way to communicate with each other, that can&#8217;t see across the chasm that has been created. And so figuring out ways to make those work to sort of have a happy balance so that the two sides can communicate, that they can be back in touch with each other.</p>\n\n\n\n<p>So that&#8217;s kind of a concern that I have, this sort of two tier system. The fear more broadly is that, if the money side of things becomes more prevalent, and people find that intolerable, that ultimately will push people away who have been philanthropic and amazing in the use of their time and pushing the project forward. They&#8217;ll see this as something that they can&#8217;t cope with in the future, and they&#8217;ll wish to step away, not contribute to it. That would be a shame.</p>\n\n\n\n<p>[00:19:52] <strong>Roger Williams:</strong> So I can absolutely empathise and understand the argument that you&#8217;re putting forth there. I think the way I would counter that is to say, hey, currently if we&#8217;re only going to talk in a philanthropic sense, are we just going to exclude everybody from what you&#8217;re talking about, the second tier, right? The more money focused. So we&#8217;re just not even having a conversation in that case.</p>\n\n\n\n<p>[00:20:15] <strong>Nathan Wrigley:</strong> Right. That&#8217;s the concern, yeah.</p>\n\n\n\n<p>[00:20:17] <strong>Roger Williams:</strong> So what I&#8217;m trying to argue is, hey, by bringing in more people into the project and maybe starting to talk in these practical ROI business terms, were now at least having a conversation that before wasn&#8217;t even happening. Because just to kind of back up a second, the way I&#8217;m looking at it is, if the only argument is, hey, this is philanthropic, you&#8217;re doing it for the good of the project, kumbaya, then we&#8217;re just going to exclude a lot of the business community who&#8217;s going to go, well, yeah, I volunteer time on the weekend at my church, or do different things, but I need to do business during the week so I can buy groceries and pay the rent.</p>\n\n\n\n<p>And so I think what I&#8217;m trying to suggest is, hey, if we expand the conversation beyond just philanthropic, beyond just the second order benefits, and we talk about operational and strategic benefits in addition, we&#8217;re now adding more people to the conversation that weren&#8217;t in the conversation before.</p>\n\n\n\n<p>And eventually we&#8217;re bringing them into the second order conversation, but we have to start by bringing them in with the strategic and the operational, because that&#8217;s where their mindset is in the nine to five. And so to me, I think this is the opportunity to actually expand the pie and expand the amount of people in the project and talking about the project.</p>\n\n\n\n<p>The concern I see that is a fair argument and concern is, are we going to turn open source projects into just commercial enterprises? That is definitely a concern. I don&#8217;t see that happening because you still have the core people in the project. They&#8217;re doing it because they believe in what the project is and they have passion for it. And if they are able to expand and have these conversations, these larger conversations, or additional conversations, about strategic and operational benefits, we&#8217;re going to bring more people in and hopefully help to influence those people to see the second order benefits, and hopefully eventually it&#8217;s all just philanthropic, right?</p>\n\n\n\n<p>But I think right now, the argument that has been put forth by different people in open source and in the WordPress community, is that we don&#8217;t have enough people contributing. We don&#8217;t have enough sponsorship money coming in, and so we need to figure out how to bridge that gap. And my suggestion is the way to do that is to expand the conversation beyond just the philanthropic, beyond just the second order, and talking about strategic and operational in addition to those.</p>\n\n\n\n<p>[00:22:40] <strong>Nathan Wrigley:</strong> I have so many thoughts about this. So the first thing that comes into my head is trying to bridge a gap between the people out there at the moment who have been contributing. But you go around on Twitter, X, I guess, and you see people, don&#8217;t you? You see it all the time. They even sometimes change their Twitter handle to, you know, seeking sponsorship or something like that.</p>\n\n\n\n<p>But periodically you&#8217;ll see somebody who you know has been in the WordPress space for many years and, I don&#8217;t know, maybe they have been contributing in some way, shape, or form, but it&#8217;s pretty clear that they would like to be sponsored for this particular rabbit hole that they&#8217;ve gone down. And so building a bridge to them is something I think really useful about what you&#8217;re saying.</p>\n\n\n\n<p>Because maybe there is no way of these two sides talking to each other. Maybe there is no kind of like a la carte menu, if you like. If you are one of these philanthropic contributors, and you&#8217;ve never sought sponsorship before, but you&#8217;d like the idea of, well, wouldn&#8217;t it be nice if, for these two days a week that I typically contribute my time, wouldn&#8217;t it be nice to get some finance? I&#8217;ll do the exact same thing, but I&#8217;ll actually receive some money for that.</p>\n\n\n\n<p>But I don&#8217;t have the time to go out to a hundred different companies with my, I&#8217;m going to use the word begging bowl. That is probably the wrong term, but you get the point. To these a hundred different companies saying, look, I&#8217;ve been doing this for ages. Can you help me out?</p>\n\n\n\n<p>That kind of feels, there&#8217;s something quite icky about that, isn&#8217;t there? I think we can all identify that going out and sort of saying to companies repeatedly, please can I have some money? And then getting the inevitable 99% pushback. No, we haven&#8217;t got any money for you.</p>\n\n\n\n<p>But I think what you are saying is you are going to build a system where that kind of stuff will be more obvious. Where you&#8217;ll say, these are the kind of things that we&#8217;re looking for. Here&#8217;s the application form if you want to sponsor. This is the kind of process that we&#8217;re going to go through. These are the interview questions that we&#8217;re typically going to answer. This is the pot of money that we&#8217;ve got available. This is how many people we want, and so on and so forth.</p>\n\n\n\n<p>So it&#8217;s kind of bridging the gap, so that the people who have been contributing, who are maybe nervous or don&#8217;t see a way forward, can suddenly step into something more obvious, more a la carte, more straightforward and easy to kind of cherry pick.</p>\n\n\n\n<p>[00:24:46] <strong>Roger Williams:</strong> Yeah. I think that, you know, this is getting to the heart of it, right? How do you individually sponsor people? How do individuals find sponsorship? And how do we make this all work? And backing up just for a second , there&#8217;s two ways to look at contributing to open source projects.</p>\n\n\n\n<p>We&#8217;re talking a lot about sponsoring individual contributors, which I would argue is the best way for an organisation to get started, because it&#8217;s the easiest way in some sense, right? There&#8217;s an established person who&#8217;s working in the project. You are giving them cash to do that work.</p>\n\n\n\n<p>The other way to contribute to the project is to actually spend time working on the project, right? So maybe you&#8217;ve got engineers inside of the company and you&#8217;re like, okay, 10% of your time is, or 5% of your time you&#8217;re going to actually work on this project. That&#8217;s a much bigger ask, right? Because usually when you hire an employee, you have a very specific set of tasks that you need to work on them for the company.</p>\n\n\n\n<p>And so asking the manager to figure out, hey, how can this person give 5% of their time to something that&#8217;s outside of the company? That&#8217;s a bigger ask. So I think, for companies and organizations that are starting to dip their toe into contributing to open source, sponsored contributions is a great place to start.</p>\n\n\n\n<p>So that was a long way to get around to the question that you&#8217;re posing here, is how do you actually do that? There&#8217;s a chicken and the egg kind of situation that you&#8217;re bringing up, right? At what point does an individual contributor know that, hey, Kinsta is a company to reach out to, and ask for sponsored contribution. And then on the flip side, how does Kinsta know who to reach out to to sponsor?</p>\n\n\n\n<p>And so my suggestion is to create a couple of different systems. So first, from the organisational perspective, really understanding, what are the priorities for the organisation? What would benefit them the most by sponsoring individual contributors?</p>\n\n\n\n<p>My argument is it&#8217;s a pretty wide swath. A lot of people get focused on core contributors and, actually working on tickets and things like that. I think it&#8217;s a much broader effect. I think sponsoring people that are on the Polyglots team, Kinsta, over half of our customers don&#8217;t speak English. So having WordPress in non-English versions is huge for us. So sponsoring the Polyglots team.</p>\n\n\n\n<p>The documentation team is huge, right? People need to be able to use WordPress . So are they going to contact Kinsta support for how to use WordPress, or can they just go to the WordPress site and look at documentation?</p>\n\n\n\n<p>So as an organization, you can get really strategic on this, but my argument would be, don&#8217;t overthink it at the beginning. Just get started. And I think that&#8217;s how I kind of end my talk is, my biggest piece of advice is don&#8217;t wait. Just get started. Set aside some budget that you&#8217;re comfortable with, that your executives are comfortable with, and then go and find some contributors.</p>\n\n\n\n<p>And then have kind of a process, right? Have an intake form. You mentioned having an intake form. Have an intake form. Ask them questions about, what do they currently work on? What have they worked on in the past? What are their hopes and goals and aspirations on the project?</p>\n\n\n\n<p>And then, you know, some very practical questions. Hey, would you be open to doing a blog post about your work and how Kinsta has helped with this? Very low level asks, right? We&#8217;re not trying to ask people to get a tattoo of the logo on their forehead or something insane. It&#8217;s very low effort, and my argument to companies is be very cautious. Step lightly into the marketing aspect of all of this. That should not be your primary focus.</p>\n\n\n\n<p>The primary focus is contributing to the open source project, not getting all this marketing benefit out of it. And so, you know, make sure to frame it that way.</p>\n\n\n\n<p>From the individual contributors thing, one thing I do point out is, up until recently, I&#8217;ve never actually been formally approached by somebody asking for sponsorship to contribute. You kind of talked about, hey, if someone needed to spend a time reaching out to a hundred different companies, you don&#8217;t need to go that crazy. Just reach out to like the major hosting companies to start.</p>\n\n\n\n<p>But my argument is you need to do more than just say, hey, I work on WordPress, you need to sponsor me. You need to put together a little bit more of a pitch of, hey, I work on X, it accomplishes Y. I see this benefiting your organisation in these specific ways. And if you&#8217;re approaching it that way, that&#8217;s going to catch someone&#8217;s attention much better.</p>\n\n\n\n<p>You know, and then just ask also just simple questions. Hey, do you have a formal sponsorship contribution project for WordPress? And if they say no, maybe, hey, would you like me to help you set that up? If they say yes, then it&#8217;s, hey, what&#8217;s the process for getting involved in that?</p>\n\n\n\n<p>These are just very simple questions. It&#8217;s just a conversation, right? I say this, I&#8217;ve been in sales for decades now. It&#8217;s second nature to me. I understand that for a lot of people, this isn&#8217;t second nature for them. And that&#8217;s also what I&#8217;m trying to help with in this conversation is, it&#8217;s not just the organisations I&#8217;m trying to educate, but it&#8217;s also the contributors and the people that are in the project. Helping them to understand how to speak business a little bit more, so that they can get the businesses to really understand the benefits of this.</p>\n\n\n\n<p>[00:29:58] <strong>Nathan Wrigley:</strong> There was a few things that you said a few moments ago where the implication was basically just get started. So put aside some cash, decide that you&#8217;re going to do it, so this is from the business side, and then just begin and see what happens. I don&#8217;t suppose you&#8217;re going to be able to simulate the perfect system first time around. It&#8217;ll be an iterative process, but just commit to it.</p>\n\n\n\n<p>But the ROI thing was also kind of interesting because you know, if you are senior management in Kinsta or whichever hosting company you want to imagine, there&#8217;s got to be I suppose some aspect of that in the back of your mind. Okay, we&#8217;re going to give away, I don&#8217;t know, a hundred thousand dollars this year, but we&#8217;re not going to ask anybody at all, at any point to sort of mention our company name. That&#8217;s probably unrealistic, but I like what you said there about the gentle approach to it, the write a blog post about it.</p>\n\n\n\n<p>But there&#8217;s something to be explored there because there&#8217;s got to be a way of surfacing good work. So it doesn&#8217;t have to necessarily be a big clarion call. Look, I did this because Kinsta paid for it. More tangentially, I did this great work and I did this, and WordPress benefited as a result of this, and I would just like to thank Kinsta for making that possible.</p>\n\n\n\n<p>I guess we&#8217;ve just got to figure out what that piece looks like because, you know, you can&#8217;t give away money for free. There does need to be some ROI, but we have to figure out how gentle that approach is, and how gung ho it can be or not. That&#8217;s going to be interesting to figure out.</p>\n\n\n\n<p>[00:31:22] <strong>Roger Williams:</strong> Just to kind of elaborate on that for a second. So the way I would say to companies to approach looking at this is, this is branding, right? And so when you&#8217;re doing brand marketing, it&#8217;s very nebulous, right? You&#8217;re kind of putting stuff out there and there&#8217;s a little bit of goodwill to it, I guess, you know, the philanthropy part plays into it a little bit. This definitely, I would say, falls under your branding budget. And so you should treat it as such.</p>\n\n\n\n<p>I think that there&#8217;s a few different ways that the marketing, and I&#8217;m using air quotes around marketing here, because I understand that for people in open source this can be a little bit of kryptonite, a little bit repellent to talk about it this way. So I&#8217;m trying to be cautious or gentle here.</p>\n\n\n\n<p>But I think the marketing benefits are, there&#8217;s a ton of indirect benefits, right? So if I&#8217;m sponsoring a contributor, and they&#8217;re working on the project, it means they&#8217;re interacting with other contributors of the project. They&#8217;re going to mention, oh, hey, by the way, Kinsta is sponsoring me, in conversation.</p>\n\n\n\n<p>And now you&#8217;ve got that one-on-one marketing, as it were, happening where that&#8217;s getting put into the project and that gets noticed. And I think that&#8217;s my big urge to companies who really want to step on the pedal of ROI. Like, hey, we need to really maximise the ROI here. Is it&#8217;s like, hey, the community notices as soon as you do something, good, bad, or indifferent. But as soon as you start sponsoring people, it gets noticed inside of the community right away, whether you immediately see it or not.</p>\n\n\n\n<p>So allow that to happen, for sure. I think from like the blog posts and things like that, there&#8217;s two ways I approach it. I love it if a sponsored contributor writes a blog post on their blog and mentions Kinsta. That&#8217;s amazing. I&#8217;m not expecting that. So instead what I&#8217;ll do is I&#8217;ll invite them onto the Kinsta Talks podcast and, hey, let&#8217;s spend 20 minutes and just talk about what you&#8217;re doing on the project.</p>\n\n\n\n<p>I mentioned Kinsta at the beginning of it, in the fact that that&#8217;s where I work. Other than that, I don&#8217;t talk about Kinsta at all. It&#8217;s all about this individual and what they&#8217;re doing on the project, what they&#8217;re excited about, how they would suggest people get involved in the project. And so using that as a promotion, and again, the indirect branding benefits. My fingers are crossed, I&#8217;m sure my CMO&#8217;s watching this and going, either he is loving it or he is gritting his teeth. I get the sense everybody&#8217;s very happy. Hey Matt, how are you?</p>\n\n\n\n<p>The way I am approaching this is very much as an outsider and I&#8217;m trying to be very respectful of the fact that this community&#8217;s been around for a very long time. I am sure this is not the first time that these conversations have happened. I&#8217;m not the first person to bring these things up. I just see it as, I&#8217;m here as a unique person in this point in time and I see a need and I&#8217;m, we&#8217;ve gotten our organisation to help, start helping. And what I&#8217;m trying to promote is getting other organisations to also realise this, and also start promoting and sponsoring and contributing to the project.</p>\n\n\n\n<p>[00:34:13] <strong>Nathan Wrigley:</strong> I think one of the things that will be really interesting is if, let&#8217;s say that you become the fulcrum for all of this, and so Roger Williams is known at Kinsta. He&#8217;s the person to go and speak to. Having that clarity is going to be really beneficial. So you don&#8217;t have to go through those email hoops of, okay, you just use the contact form on the website and then get put through nine different people who all say, actually it&#8217;s not me. Knowing who you&#8217;ve got to speak to, and having that clear process, that contact form, whatever that may be, that intake form that we talked about earlier, that&#8217;s really interesting.</p>\n\n\n\n<p>I&#8217;m just going to pivot it slightly, and I&#8217;m wondering what the kind of contributions that might fall into scope for you at Kinsta. So obviously the software itself, the core project, WordPress Core would I&#8217;m sure be in view.</p>\n\n\n\n<p>But what about other things like, oh, I don&#8217;t know, people who write documentation, you mentioned Polyglots? There&#8217;s obviously people who do event organising. There are people who do content creation, podcasts, YouTube channels, those kind of things. Do you have any constraints around the kind of contribution that you&#8217;d be interested in looking at, or will you listen to anybody?</p>\n\n\n\n<p>[00:35:16] <strong>Roger Williams:</strong> Excellent question. And before I dive into that, I want to make sure that I&#8217;m not the only person taking credit for this at Kinsta. I have two amazing colleagues on the front lines with me. Marcel Bootsman, as you&#8217;re very familiar with, I think he&#8217;s been on your show before, he handles for Europe. And then Alex Michaelson, who is in APAC region. These are both amazing individuals who, we all three of us are on the front line, talking with contributors, sponsoring them, figuring all of this stuff out. So I definitely don&#8217;t want to take all of the credit here and make it seem that way.</p>\n\n\n\n<p>As far as figuring out who to sponsor and who to contribute, this is the big question. The amazing thing is that this point in time, my bosses, our bosses at Kinsta have given us amazing leeway to really choose who we want to be sponsoring, and who we want to be working with.</p>\n\n\n\n<p>And so there&#8217;s a bit of objective focus for who we&#8217;re sponsoring. Core contributors obviously, like they&#8217;re directly impacting the project by actually changing the code and adding features and fixing bugs. So that&#8217;s obviously very important.</p>\n\n\n\n<p>But just as important is these other groups that are making sure that when a new person wants to use WordPress, there&#8217;s documentation that explains how to use the WordPress. When they want to go to a WordCamp and meet somebody, I mean Aaron Jorbin has a great story about meeting someone at one of the first contributor days that he went to. And they then became a core contributor within a short amount of time. And so that contributor day didn&#8217;t just happen, right? Like, people had to make that event happen, and organise it and have coffee and treats and lights and all of the things that go into that.</p>\n\n\n\n<p>So I think that there&#8217;s a lot of levels here. Whether it&#8217;s directly sponsoring a contributor inside of the open source project. It&#8217;s sponsoring WordCamps, it&#8217;s sponsoring amazing podcasts that help to spread the word and market WordPress.</p>\n\n\n\n<p>There&#8217;s people that have brought up that WordPress has kind of a marketing issue because it is this open source project that has just benefited from just a ton of people realising, wow, this is amazing software to build websites with. And they just started doing that, and 40% of the internet runs on WordPress.</p>\n\n\n\n<p>That&#8217;s happened very, very organically. And I think though that we&#8217;re now at an inflection of the internet and the web where we maybe need to start becoming a little bit more intentional about the marketing and the promotion of WordPress.</p>\n\n\n\n<p>[00:37:44] <strong>Nathan Wrigley:</strong> What I&#8217;m gathering from this is that, certainly from Kinsta&#8217;s point of view, you just want to make this whole bi-directional thing just clearer. Kinsta&#8217;s got some intention to sponsor, and we know who the people are, we know the kind of things that they want to sponsor. Maybe there&#8217;s going to be some sort of landing page for that or some intake form. And so hopefully people who have it in mind that they wish to be sponsored, they&#8217;ll be clearer on what kind of things are in scope, what kind of things are out of scope. How many people they need to jump through the hoops to get that sponsorship sorted out. So that kind of thing is really interesting.</p>\n\n\n\n<p>What do you think about the idea of, so we haven&#8217;t discussed this, I&#8217;m just going to throw this in there. Do you think this is a company by company thing? So in other words, is Kinsta always going to be siloed in its approach to sponsoring? Or is there any kind of, I don&#8217;t know how this would work, but some kind of more overarching approach that may be required? So let&#8217;s say for example that, I don&#8217;t know, Kinsta do, they sponsor person X, person Y, person Z, as we say in the UK, but obviously that leaves all these other myriad people without sponsorship. Is there a way that you could communicate to other organisations?</p>\n\n\n\n<p>Look, this person, they came to us, it was very close, but we didn&#8217;t manage to get them on the sponsorship roster this year. But we feel that they were really credible. Here&#8217;s somebody else that you can go and talk to. Do you know what I mean? Something just a little bit, a bigger umbrella organisation above Kinsta, maybe. Organisation, substitute that word for any kind of structure or governance as you like.</p>\n\n\n\n<p>[00:39:12] <strong>Roger Williams:</strong> Yeah, there is a lot of stuff already around this. Courtney Robertson has WPCC.</p>\n\n\n\n<p>[00:39:18] <strong>Nathan Wrigley:</strong> WP Community Collective.</p>\n\n\n\n<p>[00:39:20] <strong>Roger Williams:</strong> Thank you. And so the idea with that group is kind of to create an organisation that handles the mechanism aspect of distributing funds and finding people to sponsor and contribute. I could see a consortium of hosting companies coming together and somehow working on this, but that adds additional complexities, right? You have now more organisations, you have more bodies deciding things and making decisions.</p>\n\n\n\n<p>And again, going back to what I propose at the very end of the project is, don&#8217;t wait, just get started. My worry about having consortiums and larger organisations is it&#8217;s going to slow the process down, it&#8217;s going to complicate the process.</p>\n\n\n\n<p>That&#8217;s mostly just because I have a big phobia of organisations and meetings. This is a personal kind of thing rather than, you know, I&#8217;m sure there&#8217;s ways to figure this out more. I have a job, right? I have to balance all of these things between working on what I need to actually work on inside of the company. Working on sponsoring contributors and focusing on the open source. So there&#8217;s a lot of balancing that goes on. I am open to having these discussions with people and organisations and seeing what can come of it.</p>\n\n\n\n<p>Again, going back to feeling like an outsider and knowing that there&#8217;s already a ton of people and a ton of organisations involved in doing all of this work. I&#8217;ve reached out to many of them. They&#8217;ve given me great advice. They&#8217;ve really helped me get our program organised the way it is. They help me with my presentation and kind of figuring out what to talk about in here. And so I want to remain mindful that I don&#8217;t have all the answers, I&#8217;m not the only person that&#8217;s doing all of this, and I welcome people to come to me with suggestions and ideas, and I&#8217;m always open to talking.</p>\n\n\n\n<p>[00:41:03] <strong>Nathan Wrigley:</strong> I don&#8217;t think there&#8217;s one size fits all really, is there? Because the WPCC feels like a really great initiative. It has more of a kind of escrow kind of service feel to it. In other words, Kinsta, you put in your X amount of dollars and then the WPCC will figure out where that might go. But it may be that, you know, you guys at Kinsta would like to have more of a kind of one-to-one relationship with the people that you are sponsoring. And so that&#8217;s fine.</p>\n\n\n\n<p>Maybe you will have back channels to the people who do similar work at different companies. And so it will be more kind of laissez-faire than something a little bit more organised. Maybe it&#8217;ll just be more back channel kind of thing.</p>\n\n\n\n<p>But that&#8217;s really interesting. Honestly, the time has got away with us. We&#8217;re at 45 minutes so far, so I think we&#8217;re fast approaching the amount of time that we&#8217;ve got available for us. Is there anything in this that we missed out? Was there any kernel, any little nugget somewhere that we failed to mention, or do you think we&#8217;ve covered the whole thing off?</p>\n\n\n\n<p>[00:41:57] <strong>Roger Williams:</strong> You know, I think the one thing that maybe we skipped through a little bit is how to get your organisation bought into this. We&#8217;ve talked about the reasoning. We&#8217;ve talked about how to sell it from the outside. We&#8217;ve talked about how to deal with the individual contributors. Inside of your organisation there&#8217;s, again, three ways that I approach this. I like the number three, I guess.</p>\n\n\n\n<p>So when you&#8217;re making your internal pitch, this is all in the slide deck as well, understanding your organisational goals. So understand like, hey, we&#8217;re a hosting company, what&#8217;s important for a hosting company? Well, performance and security are pretty top things. So maybe that&#8217;s where you want to focus.</p>\n\n\n\n<p>Again, also we have a ton of customers that are non-English speaking, so Polyglots makes a lot of sense. Understand the organisational goals so that when you go to your executives, you go to your leadership, whoever&#8217;s got the money, you&#8217;re framing this out in terms of how it benefits your organisation.</p>\n\n\n\n<p>The second one is being patient, but being ready. So I started this conversation, I want to say late 2023, inside of Kinsta. And then about a year later, suddenly, out of the blue, hey, here&#8217;s your budget, go get to work. And so I needed to be ready. So we all needed to be ready. And we were. The good news is Marcel and Alex and myself, were already out in the community talking with people. We already were having some conversations about, ooh, who would we like to sponsor, who could use the sponsorship?</p>\n\n\n\n<p>And so as soon as the budget was given to us, we were ready to go. And the reason that I recommend being ready is, these can be fleeting, right? Just because the executive has approved it this month doesn&#8217;t mean it&#8217;s necessarily going to be there the next month.</p>\n\n\n\n<p>[00:43:37] <strong>Nathan Wrigley:</strong> And also the contributor might not be, you know, I&#8217;ve got two weeks now, I can do something right away.</p>\n\n\n\n<p>[00:43:42] <strong>Roger Williams:</strong> Yeah, so be ready because they&#8217;re going to want to see results. And the results should be, the way you framed it, the results should just be, hey, we&#8217;re sponsoring contributor X, they&#8217;re doing Y and Z, oh, and I had them on a Kinsta Talk, and here&#8217;s actual proof of we&#8217;re doing stuff. So have all of that ready to go. Have a spreadsheet that tracks everything so you can track where the money&#8217;s going and it&#8217;s all clear.</p>\n\n\n\n<p>Understand how your organisation wants to handle these things, right? Is it going to be as simple as, hey, here&#8217;s a credit card and here&#8217;s a GitHub sponsorship page? Is that going to be okay? Or does it need to be a little bit more, I say complicated, involved, right? Do you need to have a non disparaging contract, right? So that it&#8217;s understood, hey, we&#8217;re sponsoring you, it&#8217;d be best if you didn&#8217;t say bad things about us, please. Get that cleared, like figure that stuff out.</p>\n\n\n\n<p>And then be ready for common objections, right? So they&#8217;re going to immediately come to you with, hey, why would we spend money on this? It&#8217;s something that we get for free. And be ready with that strategic and the operational and the second order benefits conversations. And know which of those is going to land with which manager, executive best. So getting that internal pitch ready and really creating the project so it&#8217;s ready for success from day one is really important.</p>\n\n\n\n<p>[00:45:03] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s really interesting because a lot of it, most of what we talked about in this conversation didn&#8217;t really dwell on that. It was more about the nuts and the bolts of trying to connect the two different sides. But you&#8217;ve obviously laid out the groundwork inside Kinsta to have this ready. And then the minute that the CEO or the CMO or whoever it is, says, right, Roger, here&#8217;s some money, you&#8217;re off, you&#8217;re ready to actually go and start seeking this stuff out.</p>\n\n\n\n<p>I very much doubt that this conversation is going to have a perfect outcome. I don&#8217;t suppose there is a perfect system, but I appreciate the fact that you&#8217;re giving it a lot of thought over there, and you&#8217;re trying to figure out how to make these two sides collide in a way that is mutually beneficial. Because it certainly seems that with WordPress at 40% of the web, the money question is not going away, the philanthropic side of things is not going away, and we do have to have ways for these two sides to communicate successfully with each other.</p>\n\n\n\n<p>So, okay, I will put links to anything that we have mentioned in the show notes. So if you go to wptavern.com, search for the episode with Roger Williams, you&#8217;ll be able to find everything there.</p>\n\n\n\n<p>Just one last thing, Roger. Where can we find you apart from kinsta.com? Is there a place where you hang out online if somebody wants to pick this conversation up and run with it?</p>\n\n\n\n<p>[00:46:11] <strong>Roger Williams:</strong> Yeah, absolutely. I am a big user of LinkedIn. I post there pretty regularly. If you interact with me in the comments, I will love you forever, you&#8217;re my best friend. I love it when people ask me questions, or challenge me in the comments like, let&#8217;s have conversations there. Feel free to reach out to me and let&#8217;s talk, I wanna figure this stuff out.</p>\n\n\n\n<p>[00:46:30] <strong>Nathan Wrigley:</strong> Roger Williams, thank you so much for chatting to me today. I really appreciate it.</p>\n\n\n\n<p>[00:46:34] <strong>Roger Williams:</strong> Thank you very much, Nathan. I appreciate everything that you do for the community and thank you for the time and letting me be on.</p>\n</div></details>\n\n\n\n<p>On the podcast today we have <a href=\"https://www.linkedin.com/in/rogerwilliamsmedia/\">Roger Williams</a>.</p>\n\n\n\n<p>Roger Williams leads community and partner engagement at Kinsta, a company specialising in offering managed hosting for WordPress. His role involves bridging the gap between Kinsta and the wider WordPress community, working closely with agency partners, technology collaborators, and open source initiatives. Throughout his career, Roger has been deeply involved in community efforts and has recently played a key part in Kinsta’s implementation of a sponsored contributions program, helping to funnel time and resources back into WordPress and other open source projects.</p>\n\n\n\n<p>Many long-standing members of the WordPress community have contributed out of passion and a spirit of philanthropy, but as the project has grown to power over 40% of the web, the need for sustainable funding and sponsorship has become more pronounced. Roger joins us today to explore this shift, he shares insights from his WordCamp US presentation titled ‘Figuring Out Sponsored Contribution’, discussing how companies can start funding contributors, why that matters, and how to balance the business need for a return on investment with the grassroots spirit of open source.</p>\n\n\n\n<p>We begin with Roger’s background, his work at Kinsta, and how he became involved in WordPress community sponsorship. The conversation then gets into the ever evolving dynamics of sponsored contributions: how businesses can approach funding contributors, ways to surface and support valuable work, and strategies for aligning company goals with broader project needs.</p>\n\n\n\n<p>Roger breaks down the practical arguments companies can use to get internal buy-in, and the importance of clear processes, for both organisations looking to sponsor, and individuals seeking support.</p>\n\n\n\n<p>Towards the end, Roger reflects on the challenges and opportunities of connecting those from both the philanthropic and commercial sides of WordPress, and he shares advice for anyone hoping to get their organisation involved in similar programs.</p>\n\n\n\n<p>If you’re interested in how WordPress sponsorships work, how business and community might collaborate, or you’re seeking practical advice as a contributor or company, 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://kinsta.com\">Kinsta</a></p>\n\n\n\n<p><a href=\"https://us.wordcamp.org/2025/session/figuring-out-sponsored-contribution/\">Figuring Out Sponsored Contribution</a> &#8211; Roger&#8217;s presentation at WordCamp US 2025</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/polyglots/handbook/about/\">Polyglots team</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/docs/\">WordPress Documentation</a></p>\n\n\n\n<p><a href=\"https://www.youtube.com/playlist?list=PLhYfuAN3YCfxLV7E6_q_8lClVU-TPyRBS\">Kinsta Talks Podcast</a> on YouTube</p>\n\n\n\n<p><a href=\"https://www.thewpcommunitycollective.com\">WPCC</a></p>\n\n\n\n<p>Roger on <a href=\"https://www.linkedin.com/in/rogerwilliamsmedia/\">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, 12 Nov 2025 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:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Open Channels FM: Building a Culture of Openness and Growth Around Accessibility in 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://openchannels.fm/?p=112121\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://openchannels.fm/building-a-culture-of-openness-and-growth-around-accessibility-in-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:252:\"In this episode, Anne Bovelett discusses web accessibility with Marc Haunschild, emphasizing its benefits and challenges. They provide practical advice for developers, advocate for diverse teams, and promote small, iterative changes toward inclusivity.\";s: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, 12 Nov 2025 10:09: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:48;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: Buffett Thanksgiving\";s:7:\"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=150541\";s:7:\"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:43:\"https://ma.tt/2025/11/buffett-thanksgiving/\";s: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:849:\"<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Choose your heroes very carefully and then emulate them. You will never be perfect, but you can always be better.</p>\n</blockquote>\n\n\n\n<p>I&#8217;m an unabashed fan of Warren Buffett and the late Charlie Munger, <a href=\"https://www.berkshirenerds.store/\">I even have bronze busts of them in my office</a>! I was very lucky to <a href=\"https://ma.tt/2025/05/berkshire/\">attend his last shareholder meeting</a>, as part of stepping down he&#8217;ll no longer write their <a href=\"https://www.berkshirehathaway.com/letters/letters.html\">legendary shareholder updates</a>, but he will keep doing his Thanksgiving letters.</p>\n\n\n\n<p> <a href=\"https://www.berkshirehathaway.com/news/nov1025.pdf\">You should give it a read</a>. It&#8217;s heartbreaking and beautiful.</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, 12 Nov 2025 07:33: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: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:49;a:6:{s:4:\"data\";s:21:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org blog: WordPress 6.9 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=19317\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2025/11/wordpress-6-9-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9329:\"<p>The first Release Candidate (“RC1”) for WordPress 6.9 is ready for download and testing!</p>\n\n\n\n<p><strong>This version of the WordPress software is still under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it’s recommended to evaluate RC1 on a test server and site.</p>\n\n\n\n<p>WordPress 6.9 RC1 can be tested using any of the following methods:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install. (Select the “Bleeding edge” channel and “Beta/RC Only” stream.)</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-6.9-RC1.zip\">RC1 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command: <br /><code>wp core update --version=6.9-RC1</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use the <a href=\"https://playground.wordpress.net/?php=8.3&amp;wp=beta&amp;networking=no&amp;language=&amp;multisite=no&amp;random=y4q1rn88xn\">6.9 RC1 WordPress Playground instance</a> to test the software directly in your browser. No setup is required &#8211; just click and go! </td></tr></tbody></table></figure>\n\n\n\n<p>The scheduled final release date for WordPress 6.9 is <strong>December 2, 2025</strong>. The full <a href=\"https://make.wordpress.org/core/6-9/\">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible.</p>\n\n\n\n<p>Please continue checking the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-9/\">6.9-related posts</a> in the coming weeks for more information.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 6.9 RC1?</h2>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2025/10/21/wordpress-6-9-beta-1/\">Beta 1 announcement</a> for details on WordPress 6.9.</p>\n\n\n\n<p>You can browse the technical details for all issues addressed since Beta 4 using these links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.9?since=2025-11-07&amp;until=2025-11-11\">Gutenberg commits for 6.9</a> since November 7, 2025</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/log/?revs=61183-61203\">Core commits for 6.9</a> since November 7, 2025</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=11%2F07%2F2025..11%2F11%2F2025&amp;milestone=6.9&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=changetime&amp;col=type&amp;order=id\">Closed Trac tickets</a> since November 7, 2025</li>\n</ul>\n\n\n\n<p>Want to know more about this release? Here are some highlights:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Site Editor improvements and Refined content creation\n<ul class=\"wp-block-list\">\n<li>Ability to hide blocks</li>\n\n\n\n<li>New blocks </li>\n\n\n\n<li>Notes on blocks</li>\n\n\n\n<li>Universal command palette in wp-admin</li>\n</ul>\n</li>\n\n\n\n<li>Developer updates\n<ul class=\"wp-block-list\">\n<li>Updates to dataviews and dataforms components</li>\n\n\n\n<li>New abilities API</li>\n\n\n\n<li>Updates to interactivity API </li>\n\n\n\n<li>Updates to block binding API</li>\n</ul>\n</li>\n\n\n\n<li>Performance Improvements\n<ul class=\"wp-block-list\">\n<li>Improved script and style handling</li>\n\n\n\n<li>Optimized queries and caching</li>\n\n\n\n<li>Added ability to handle “fetchpriority” in ES Modules and Import Maps</li>\n\n\n\n<li>Standardizing output buffering</li>\n</ul>\n</li>\n</ul>\n\n\n\n<p>The final release is on track for December 2nd. As always, a successful release depends on your confirmation during testing. So please download and test!</p>\n\n\n\n<h2 class=\"wp-block-heading\">How you can contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by a passionate community of people collaborating on and contributing to its development. The resources below outline various ways you can help the world’s most popular open source web platform, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is crucial to the development of any software. It’s also a meaningful way for anyone to contribute. </p>\n\n\n\n<p>Your help testing the WordPress 6.9 RC1 version is key to ensuring that the final release is the best it can be. While testing the upgrade process is essential, trying out new features is equally important. This <a href=\"https://make.wordpress.org/test/2025/10/21/help-test-wordpress-6-9/\">detailed guide</a> will walk you through testing features in WordPress 6.9.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Calls for testing</h4>\n\n\n\n<p>Thank you to everyone who helps test the following enhancements and bug fixes:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/test/2025/10/06/call-for-testing-accordion-block/\">Accordion Block</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2025/10/04/call-for-testing-ability-to-hide-blocks/\">Ability to Hide Blocks</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/ticket/64099\">Classic themes loading block styles on demand</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/ticket/64204\">Modified notes notifications</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/10/abilities-api-in-wordpress-6-9/\">Abilities API</a></li>\n</ul>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums, or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Thank you to everyone who helps with testing!</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>For plugin and theme authors, your products play an integral role in extending the functionality and value of WordPress for all users.</p>\n\n\n\n<p>Thanks for continuing to test your themes and plugins with the WordPress 6.9 beta releases. With RC1, you’ll want to conclude your testing and update the <em>“Tested up to”</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin’s readme file</a> to 6.9. </p>\n\n\n\n<p>If you find compatibility issues, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forum</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Test on your hosting platforms</h3>\n\n\n\n<p>Web hosts provide vital infrastructure for supporting WordPress and its users. Testing on hosting systems helps inform the development process while ensuring that WordPress and hosting platforms are fully compatible, free of errors, optimized for the best possible user experience, and that updates roll out to customer sites without issue.</p>\n\n\n\n<p>Want to test WordPress on your hosting system? <a href=\"https://make.wordpress.org/hosting/test-results-getting-started/\">Get started with configuring distributed hosting tests here</a>. Thank you to all <a href=\"https://make.wordpress.org/hosting/test-results/\">web hosts who help test WordPress</a>!</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">An RC1 haiku</h2>\n\n\n\n<p><em>As the sun rises</em>,</p>\n\n\n\n<p><em>RC1 breaks its cocoon</em></p>\n\n\n\n<p><em>and emerges strong</em>.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Props to </em><a class=\"mention\" href=\"https://profiles.wordpress.org/akshayar/\"><span class=\"mentions-prefix\">@</span>akshayar</a><em>, </em><a class=\"mention\" href=\"https://profiles.wordpress.org/davidbaumwald/\"><span class=\"mentions-prefix\">@</span>davidbaumwald</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/jeffpaul/\"><span class=\"mentions-prefix\">@</span>jeffpaul</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/desrosj/\"><span class=\"mentions-prefix\">@</span>desrosj</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/westonruter/\"><span class=\"mentions-prefix\">@</span>westonruter</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/ellatrix/\"><span class=\"mentions-prefix\">@</span>ellatrix</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/priethor/\"><span class=\"mentions-prefix\">@</span>priethor</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/krupajnanda/\"><span class=\"mentions-prefix\">@</span>krupajnanda</a> <em>and</em> <a class=\"mention\" href=\"https://profiles.wordpress.org/cbravobernal/\"><span class=\"mentions-prefix\">@</span>cbravobernal</a> <em>for proofreading and review.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Nov 2025 15:34: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:10:\"Amy Kamala\";s:7:\"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\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 08 Dec 2025 16:59:48 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Mon, 08 Dec 2025 16:45:18 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}s:5:\"build\";i:1760618736;s:21:\"cache_expiration_time\";i:1765256390;s:23:\"__cache_expiration_time\";i:1765256390;}', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(348368, '_site_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1765256390', 'off'),
(348369, '_site_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1765213190', 'off'),
(348370, '_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b', '1765256390', 'off'),
(348371, '_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b', '<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2025/12/sotw-2025/\'>State of the Word 2025: Innovation Shaped by Community</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2025/12/gene/\'>WordPress 6.9 “Gene”</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://ma.tt/2025/12/kinsey-70/\'>Matt: Happy Birthday Kinsey</a></li><li><a class=\'rsswidget\' href=\'https://ma.tt/2025/12/self-driving/\'>Matt: Self-driving</a></li><li><a class=\'rsswidget\' href=\'https://ma.tt/2025/12/ai-native/\'>Matt: AI Native</a></li></ul></div>', 'off'),
(348460, 'mainwp_module_log_db_version', '1.0.1.8', 'off'),
(348461, 'mainwp_module_cost_tracker_db_version', '1.0.18', 'auto'),
(348462, '_transient_timeout_mainwp_transient_action_logs', '1766423682', 'off'),
(348463, '_transient_mainwp_transient_action_logs', '1', 'off'),
(348464, 'mainwp_cron_last_stats', '1765246528', 'off'),
(348465, 'mainwp_cron_last_ping', '1765214082', 'off'),
(348466, 'mainwp_frequency_AutoUpdate', 'daily', 'off'),
(348467, 'mainwp_automatic_update_next_run_timestamp', '1765324859', 'off'),
(348468, 'mainwp_updatescheck_start_last_timestamp', '1765214082', 'off'),
(348469, 'mainwp_updatescheck_is_running', '', 'off'),
(348470, 'mainwp_updatescheck_last_run', '[\"2025-12-08 17:14:42\"]', 'off'),
(348471, 'mainwp_automaticUpdate_backupChecks', '', 'off'),
(348472, 'mainwp_updatescheck_mail_update_core_new', '', 'off'),
(348473, 'mainwp_updatescheck_mail_update_plugins_new', '', 'off'),
(348474, 'mainwp_updatescheck_mail_update_themes_new', '', 'off'),
(348475, 'mainwp_updatescheck_mail_update_core', '', 'off'),
(348476, 'mainwp_updatescheck_mail_update_plugins', '', 'off'),
(348477, 'mainwp_updatescheck_mail_update_themes', '', 'off'),
(348478, 'mainwp_updatescheck_mail_ignore_core', '', 'off'),
(348479, 'mainwp_updatescheck_mail_ignore_plugins', '', 'off'),
(348480, 'mainwp_updatescheck_mail_ignore_themes', '', 'off'),
(348481, 'mainwp_updatescheck_mail_ignore_core_new', '', 'off'),
(348482, 'mainwp_updatescheck_mail_ignore_plugins_new', '', 'off'),
(348483, 'mainwp_updatescheck_mail_ignore_themes_new', '', 'off'),
(348484, 'mainwp_updatescheck_individual_digest_websites', '', 'off'),
(348485, 'mainwp_updatescheck_sites_icon', '', 'off'),
(348486, 'mainwp_last_synced_all_sites', '1765214141', 'auto'),
(348487, 'mainwp_updatescheck_last_timestamp', '1765214141', 'off'),
(348488, 'mainwp_updatescheck_last', '08/12/2025', 'off'),
(348489, 'mainwp_updatescheck_ready_sendmail', '', 'off'),
(348490, 'mainwp_regular_sequence_current_process_pid', '1', 'auto'),
(348492, 'mainwp_extensions_all_activation_cached', 'a:1:{s:23:\"mainwp-sucuri-extension\";b:0;}', 'auto'),
(348494, 'mainwp_upgradeVersionInfo', 'O:8:\"stdClass\":1:{s:7:\"updated\";i:1765248289;}', 'off'),
(348417, '_site_transient_timeout_feed_9bc1b9ec726e1f508c5207949084454a', '1765256928', 'off'),
(348418, '_site_transient_feed_9bc1b9ec726e1f508c5207949084454a', 'a:6:{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:3:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Themeisle Blog\";s:7:\"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://themeisle.com/blog/\";s: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:58:\"WordPress Tutorials and Reviews for Beginners and Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Dec 2025 07:40: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:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=6.8.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:158:\"https://mllj2j8xvfl0.i.optimole.com/cb:c5QE.37290/w:32/h:32/q:mauto/f:best/https://themeisle.com/blog/wp-content/uploads/2019/05/cropped-cropped-favicon-2.png\";s: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:\"Themeisle Blog\";s:7:\"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://themeisle.com/blog/\";s: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:62:\"\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:61:\"How to Use FreshRank to Turn Dying Posts Into Traffic Winners\";s:7:\"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://themeisle.com/blog/update-content-with-freshrank/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://themeisle.com/blog/update-content-with-freshrank/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Dec 2025 09:19: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:14:\"AI Innovations\";s: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:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://themeisle.com/blog/?p=113601\";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:524:\"<p>Here\'s what most people don\'t know: updating existing content crushes writing new posts from scratch. It\'s faster, it ranks quicker, and Google actually rewards it. But doing it manually? That\'s hours of checking facts, analyzing SEO, reviewing Search Console data, and rewriting paragraphs.</p>\n<p>The post <a href=\"https://themeisle.com/blog/update-content-with-freshrank/\">How to Use FreshRank to Turn Dying Posts Into Traffic Winners</a> appeared first on <a href=\"https://themeisle.com/blog\">Themeisle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Karol K\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://themeisle.com/blog/update-content-with-freshrank/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:59:\"\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:73:\"We Built a Free Tool to Show You Exactly What’s Wrong With Your Content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://themeisle.com/blog/introducing-freshrank-ai/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://themeisle.com/blog/introducing-freshrank-ai/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Nov 2025 14:29:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Marketing & SEO\";s:7:\"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:36:\"https://themeisle.com/blog/?p=113493\";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:597:\"<p>You know that feeling when your content isn&#8217;t performing like it should, but you can&#8217;t quite figure out why? We built FreshRank.ai to fix that. FreshRank will analyze your content to deliver actionable insights that improve user experience, engagement, and rankings. How it works Drop in your URL or paste your content. Get your analysis....</p>\n<p>The post <a href=\"https://themeisle.com/blog/introducing-freshrank-ai/\">We Built a Free Tool to Show You Exactly What&#8217;s Wrong With Your Content</a> appeared first on <a href=\"https://themeisle.com/blog\">Themeisle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Milica Aleksandric\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://themeisle.com/blog/introducing-freshrank-ai/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:59:\"\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:46:\"8 Best WordPress Media Library Plugins in 2025\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://themeisle.com/blog/wordpress-media-library-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://themeisle.com/blog/wordpress-media-library-plugins/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Oct 2025 12:37: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:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=24385\";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:540:\"<p>If you use WordPress, then you know how bloated and disorganized your WordPress Media Library can become over time. Fortunately, there are plugins that address this exact problem. In this post, we\'ll introduce you to some of the best ones and we\'ll explain how they can help you keep your media library in tip-top shape.</p>\n<p>The post <a href=\"https://themeisle.com/blog/wordpress-media-library-plugins/\">8 Best WordPress Media Library Plugins in 2025</a> appeared first on <a href=\"https://themeisle.com/blog\">Themeisle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Hughes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://themeisle.com/blog/wordpress-media-library-plugins/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:62:\"\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:47:\"Meet Masteriyo – A Free LearnDash Alternative\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://themeisle.com/blog/meet-masteriyo-free-learndash-alternative/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://themeisle.com/blog/meet-masteriyo-free-learndash-alternative/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 23 Sep 2025 17:01:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"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:17:\"WordPress 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://themeisle.com/blog/?p=113061\";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:624:\"<p>Most people trying to build anything on top of WordPress would rather not empty their wallets while doing so. Building an LMS solution - or an online course platform - is not any different. I know that feeling well. You want to set up lessons, quizzes, and then actually sell your course without hitting a paywall too soon. That\'s where Masteriyo enters the picture and LearnDash exits it.</p>\n<p>The post <a href=\"https://themeisle.com/blog/meet-masteriyo-free-learndash-alternative/\">Meet Masteriyo &#8211; A Free LearnDash Alternative</a> appeared first on <a href=\"https://themeisle.com/blog\">Themeisle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Karol K\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://themeisle.com/blog/meet-masteriyo-free-learndash-alternative/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:62:\"\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:85:\"How to Sell Digital Products on Multiple Domains with a Single WordPress Installation\";s:7:\"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://themeisle.com/blog/multiple-domains-single-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://themeisle.com/blog/multiple-domains-single-wordpress/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 May 2025 08:03:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:17:\"WordPress 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://themeisle.com/blog/?p=111832\";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:390:\"<p>Here\'s an awesome tool that lets you set up and manage multiple domains from a single WordPress installation. Learn how it works.</p>\n<p>The post <a href=\"https://themeisle.com/blog/multiple-domains-single-wordpress/\">How to Sell Digital Products on Multiple Domains with a Single WordPress Installation</a> appeared first on <a href=\"https://themeisle.com/blog\">Themeisle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Harshit Arora\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://themeisle.com/blog/multiple-domains-single-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"4\";s: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:59:\"\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:74:\"Masteriyo Joins Themeisle — A New Era for WordPress Course Creation 🚀\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://themeisle.com/blog/masteriyo-joins-themeisle/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://themeisle.com/blog/masteriyo-joins-themeisle/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Apr 2025 22:07:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://themeisle.com/blog/?p=111474\";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:624:\"<p>We’re thrilled to share something exciting — Masteriyo, the modern and user-friendly LMS plugin from ThemeGrill, is now officially part of the Themeisle product suite! This partnership brings together two experienced WordPress teams. We’re united by a shared vision: to make course creation and selling effortless, accessible, and enjoyable for every WordPress user. 🎁 A...</p>\n<p>The post <a href=\"https://themeisle.com/blog/masteriyo-joins-themeisle/\">Masteriyo Joins Themeisle — A New Era for WordPress Course Creation 🚀</a> appeared first on <a href=\"https://themeisle.com/blog\">Themeisle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Harshit Arora\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://themeisle.com/blog/masteriyo-joins-themeisle/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:62:\"\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:54:\"Best SSH Hosting for WordPress Sites on Shared Servers\";s:7:\"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://themeisle.com/blog/best-ssh-hosting-for-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://themeisle.com/blog/best-ssh-hosting-for-wordpress/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Apr 2025 14:39: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:19:\"Hosting Comparisons\";s: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:\"WordPress Hosting\";s:7:\"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:36:\"https://themeisle.com/blog/?p=110713\";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:679:\"<p>Shared hosting is what most website owners rely on when first launching a WordPress site. But at some point shared hosting starts to feel limiting. Maybe you need to make server-level adjustments or export a large database, but you also don\'t want to upgrade to a dedicated server or a VPS. That\'s where SSH access can come in real handy. In this post, I\'ll share my favorite SSH hosting options for WordPress sites to point you in the right direction.</p>\n<p>The post <a href=\"https://themeisle.com/blog/best-ssh-hosting-for-wordpress/\">Best SSH Hosting for WordPress Sites on Shared Servers</a> appeared first on <a href=\"https://themeisle.com/blog\">Themeisle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Martin Dubovic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://themeisle.com/blog/best-ssh-hosting-for-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:59:\"\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:68:\"How to Accept Donations on WordPress: For Non-Profits or Anyone Else\";s:7:\"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://themeisle.com/blog/accept-donations-on-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://themeisle.com/blog/accept-donations-on-wordpress/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Mar 2025 13:02:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=12255\";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:453:\"<p>In this post, I\'ll show you not only how to create a great-looking donations form on WordPress, but also how to set up the backend - how to collect donations and have them deposited to an account of your choosing.</p>\n<p>The post <a href=\"https://themeisle.com/blog/accept-donations-on-wordpress/\">How to Accept Donations on WordPress: For Non-Profits or Anyone Else</a> appeared first on <a href=\"https://themeisle.com/blog\">Themeisle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Karol K\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://themeisle.com/blog/accept-donations-on-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:62:\"\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:53:\"How to Sell Products on WordPress Without WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://themeisle.com/blog/sell-products-on-wordpress-without-woocommerce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://themeisle.com/blog/sell-products-on-wordpress-without-woocommerce/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Mar 2025 14:27: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:9:\"Ecommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:17:\"WordPress 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://themeisle.com/blog/?p=110393\";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:606:\"<p>WooCommerce has long been the default solution for selling products on WordPress sites. However, that doesn\'t always make it the best choice for every single product-selling scenario. Fortunately, WordPress offers several fantastic alternatives. One of my personal favorites is a plugin called WP Full Pay and in this tutorial I\'m going to teach you how to use it.</p>\n<p>The post <a href=\"https://themeisle.com/blog/sell-products-on-wordpress-without-woocommerce/\">How to Sell Products on WordPress Without WooCommerce</a> appeared first on <a href=\"https://themeisle.com/blog\">Themeisle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Martin Dubovic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://themeisle.com/blog/sell-products-on-wordpress-without-woocommerce/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:62:\"\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:73:\"How to Accept Recurring Payments in WordPress (There’s a Free Solution)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://themeisle.com/blog/recurring-payments-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://themeisle.com/blog/recurring-payments-in-wordpress/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Feb 2025 08:47: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Ecommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://themeisle.com/blog/?p=110366\";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:560:\"<p>Setting up recurring payments directly through your WordPress site can transform the way you collect payments for subscriptions, memberships, or even donations. Instead of needing to chase down invoices every month, you can automate the entire process and ask your customers to approve the purchase only once.</p>\n<p>The post <a href=\"https://themeisle.com/blog/recurring-payments-in-wordpress/\">How to Accept Recurring Payments in WordPress (There&#8217;s a Free Solution)</a> appeared first on <a href=\"https://themeisle.com/blog\">Themeisle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Karol K\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://themeisle.com/blog/recurring-payments-in-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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: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://themeisle.com/blog/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:4:\"type\";i:128;s:7:\"headers\";a:15:{s:4:\"date\";s:29:\"Mon, 08 Dec 2025 17:08:47 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:6:\"cf-ray\";s:20:\"9aaddde55b788516-HKG\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:18:\"permissions-policy\";s:62:\"ch-viewport-width=(self \"https://mllj2j8xvfl0.i.optimole.com\")\";s:7:\"x-verti\";s:120:\"If you\'re reading this, you should visit https://careers.vertistudio.com/jobs and apply to join us, mention this header.\";s:27:\"access-control-allow-origin\";s:1:\"*\";s:4:\"link\";s:111:\"<https://themeisle.com/blog/wp-json/>; rel=\"https://api.w.org/\", <https://themeisle.com/blog/>; rel=\"canonical\"\";s:13:\"last-modified\";s:29:\"Fri, 05 Dec 2025 15:03:42 GMT\";s:13:\"cache-control\";s:35:\"public, max-age=0, s-maxage=2592000\";s:16:\"content-encoding\";s:4:\"gzip\";s:15:\"cf-cache-status\";s:3:\"HIT\";s:3:\"age\";s:5:\"15567\";s:6:\"server\";s:10:\"cloudflare\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";}s:5:\"build\";i:1760618736;s:21:\"cache_expiration_time\";i:1765256928;s:23:\"__cache_expiration_time\";i:1765256928;}', 'off'),
(348615, '_site_transient_timeout_theme_roots', '1765250077', 'off'),
(348616, '_site_transient_theme_roots', 'a:2:{s:9:\"Newspaper\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}', 'off'),
(348379, '_transient_timeout_tisdk_has_support_page', '1765818137', 'off'),
(348380, '_transient_tisdk_has_support_page', 'no', 'off'),
(348381, '_transient_timeout_tisdk_has_donate_page', '1765818137', 'off'),
(348621, '_transient_timeout_td_update_plugin_subscription', '1765507525', 'off'),
(348622, '_transient_td_update_plugin_subscription', '1', 'off'),
(348375, '_transient_timeout_wpcode_just_activated', '1765213386', 'off'),
(348376, '_transient_wpcode_just_activated', 'lite', 'off'),
(348377, '_transient_timeout_td_update_theme_Newspaper', '1765472534', 'off'),
(348378, '_transient_td_update_theme_Newspaper', '1', 'off'),
(348384, '_transient_tsk_attachment_count', '51', 'off'),
(348385, '_transient_timeout_tsk_posts_count', '1765299737', 'off'),
(348386, '_transient_tsk_posts_count', 'a:2:{s:11:\"total_posts\";i:91;s:9:\"old_posts\";i:66;}', 'off'),
(348548, '_transient_timeout_wbcr_io_9c873708d9609985f4303b10f56d7bf0', '1765260924', 'off'),
(348549, '_transient_wbcr_io_9c873708d9609985f4303b10f56d7bf0', 'a:2:{s:5:\"error\";s:46:\"Failed request to the remote server. Code: 404\";s:10:\"error_code\";s:18:\"http_request_error\";}', 'off'),
(348390, 'litespeed.gui.dismiss', '-1', 'auto'),
(348391, 'litespeed.data.upgrading', '-1', 'auto'),
(348392, 'litespeed.admin_display.messages', '[\"<div class=\\\"litespeed_icon notice notice-success is-dismissible\\\"><p>Purged all caches successfully.<\\/p><\\/div>\"]', 'auto'),
(348393, 'litespeed.gui._summary', '{\"new_version\":1765818141,\"score\":1766422941}', 'auto'),
(348394, 'litespeed.cloud._summary', '{\"news.utime\":1765213341,\"curr_request.news\":0,\"last_request.news\":1765213341}', 'auto'),
(348395, 'robin_image_optimizer_logger_flag', 'no', 'auto'),
(348396, '_transient_timeout_robin_image_optimizer_190versions', '1765645345', 'off'),
(348397, '_transient_robin_image_optimizer_190versions', 'a:18:{i:0;a:2:{s:7:\"version\";s:5:\"1.3.7\";s:3:\"url\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.3.7.zip\";}i:1;a:2:{s:7:\"version\";s:5:\"1.4.0\";s:3:\"url\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.4.0.zip\";}i:2;a:2:{s:7:\"version\";s:5:\"1.4.1\";s:3:\"url\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.4.1.zip\";}i:3;a:2:{s:7:\"version\";s:5:\"1.4.2\";s:3:\"url\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.4.2.zip\";}i:4;a:2:{s:7:\"version\";s:5:\"1.4.6\";s:3:\"url\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.4.6.zip\";}i:5;a:2:{s:7:\"version\";s:5:\"1.5.0\";s:3:\"url\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.5.0.zip\";}i:6;a:2:{s:7:\"version\";s:5:\"1.5.3\";s:3:\"url\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.5.3.zip\";}i:7;a:2:{s:7:\"version\";s:5:\"1.5.6\";s:3:\"url\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.5.6.zip\";}i:8;a:2:{s:7:\"version\";s:5:\"1.5.8\";s:3:\"url\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.5.8.zip\";}i:9;a:2:{s:7:\"version\";s:5:\"1.6.5\";s:3:\"url\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.6.5.zip\";}i:10;a:2:{s:7:\"version\";s:5:\"1.6.6\";s:3:\"url\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.6.6.zip\";}i:11;a:2:{s:7:\"version\";s:5:\"1.6.9\";s:3:\"url\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.6.9.zip\";}i:12;a:2:{s:7:\"version\";s:5:\"1.7.0\";s:3:\"url\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.7.0.zip\";}i:13;a:2:{s:7:\"version\";s:5:\"1.7.4\";s:3:\"url\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.7.4.zip\";}i:14;a:2:{s:7:\"version\";s:5:\"1.8.1\";s:3:\"url\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.8.1.zip\";}i:15;a:2:{s:7:\"version\";s:5:\"1.8.2\";s:3:\"url\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.8.2.zip\";}i:16;a:2:{s:7:\"version\";s:5:\"1.9.0\";s:3:\"url\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.9.0.zip\";}i:17;a:2:{s:7:\"version\";s:5:\"trunk\";s:3:\"url\";s:64:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.zip\";}}', 'off'),
(348407, 'adbc_plugin_settings', 'a:26:{s:12:\"installed_on\";s:10:\"08/12/2025\";s:9:\"left_menu\";s:1:\"1\";s:10:\"tools_menu\";s:1:\"0\";s:12:\"network_menu\";s:1:\"0\";s:11:\"hidden_tabs\";a:0:{}s:26:\"send_corrections_to_server\";s:1:\"0\";s:17:\"analytics_enabled\";s:1:\"1\";s:19:\"analytics_execution\";a:2:{s:7:\"success\";i:0;s:4:\"fail\";i:0;}s:23:\"addons_activity_enabled\";s:1:\"1\";s:25:\"addons_activity_execution\";a:2:{s:7:\"success\";i:0;s:4:\"fail\";i:0;}s:31:\"show_tables_with_invalid_prefix\";s:1:\"1\";s:19:\"sidebar_is_expanded\";s:1:\"1\";s:16:\"file_lines_batch\";i:10000;s:19:\"database_rows_batch\";i:10000;s:19:\"file_content_chunks\";i:1024;s:23:\"scan_max_execution_time\";i:0;s:16:\"reduce_cpu_usage\";s:1:\"0\";s:16:\"cpu_work_time_ms\";i:1000;s:16:\"cpu_rest_time_ms\";i:10;s:16:\"api_scan_balance\";a:0:{}s:13:\"security_code\";s:25:\"ys09kb37o4gj6wr1cnm68tz_d\";s:13:\"notifications\";a:1:{s:20:\"addons_activity_info\";a:1:{s:9:\"dismissed\";b:0;}}s:9:\"keep_last\";a:0:{}s:18:\"rating_notice_date\";s:10:\"08/12/2025\";s:19:\"free_migration_done\";s:1:\"1\";s:28:\"sql_or_native_cleanup_method\";s:3:\"sql\";}', 'off'),
(348419, '_site_transient_timeout_feed_mod_9bc1b9ec726e1f508c5207949084454a', '1765256928', 'off'),
(348420, '_site_transient_feed_mod_9bc1b9ec726e1f508c5207949084454a', '1765213728', 'off'),
(348421, '_site_transient_timeout_feed_41e43183af30f3b40ed25f48cc2ea3f8', '1765256929', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(348422, '_site_transient_feed_41e43183af30f3b40ed25f48cc2ea3f8', 'a:6:{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:46:\"\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:3:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"WPShout\";s:7:\"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:20:\"https://wpshout.com/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"A hub for advanced WordPress users, developers & savvy business owners.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Oct 2025 11:36: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:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=6.8.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:\"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:145:\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:32/h:32/q:mauto/f:best/https://wpshout.com/wp-content/uploads/2024/04/cropped-main-icon1x.png\";s: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:7:\"WPShout\";s:7:\"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:20:\"https://wpshout.com/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:8:{i:0;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		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"5 Best Image Optimization Plugins for WordPress in 2025 (Tested on Real Images)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wpshout.com/best-image-optimization-plugins-tested/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wpshout.com/best-image-optimization-plugins-tested/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Oct 2025 11:36:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wpshout.com/?p=130443\";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:951:\"<img width=\"150\" height=\"150\" src=\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://wpshout.com/wp-content/uploads/2024/01/image-optimization-plugin-for-wordpress.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Image optimization plugin for wordpress.\" decoding=\"async\" srcset=\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://wpshout.com/wp-content/uploads/2024/01/image-optimization-plugin-for-wordpress.png 150w, https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/dpr:2/https://wpshout.com/wp-content/uploads/2024/01/image-optimization-plugin-for-wordpress.png 2x\" sizes=\"(max-width: 150px) 100vw, 150px\" />Looking for the best image optimization plugin for WordPress? To help you choose, we went hands-on with five popular options and ran our own tests. See the results of these tests here.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Karol K\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wpshout.com/best-image-optimization-plugins-tested/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:7:\"content\";a:2:{i:0;a:6:{s:4:\"data\";s:23:\"\n			\n			\n			\n			\n			\n		\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:41:\"https://www.youtube.com/embed/nKqJglkStZE\";s:8:\"duration\";s:3:\"528\";}}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:29:\"http://search.yahoo.com/mrss/\";a:5:{s:6:\"player\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:41:\"https://www.youtube.com/embed/nKqJglkStZE\";}}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:79:\"5 Best Image Optimization Plugins for WordPress in 2025 (Tested on Real Images)\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}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:136:\"Looking for the best image optimization plugin for WordPress? We tested the 5 most popular ones. Look inside to learn about the results.\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:141:\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:auto/h:auto/q:mauto/f:best/https://wpshout.com/wp-content/uploads/2025/10/nkqjglkstze.jpg\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"keywords\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"\"image optimization plugin for wordpress\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:7:\"\n			\n		\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:19:\"https://wpshout.com\";s:6:\"medium\";s:5:\"image\";}}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:29:\"http://search.yahoo.com/mrss/\";a:1:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"Image optimization plugin for wordpress.\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:19:\"https://wpshout.com\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:66:\"\n		\n		\n					\n		\n		\n		\n				\n		\n\n					\n		\n					\n			\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"What’s the Best Cache Plugin for WordPress? 5 Options Compared for 2025\";s:7:\"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:52:\"https://wpshout.com/best-cache-plugin-for-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wpshout.com/best-cache-plugin-for-wordpress/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Sep 2025 04:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wpshout.com/?p=118534\";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:938:\"<img width=\"150\" height=\"150\" src=\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://wpshout.com/wp-content/uploads/2023/02/Best-Cache-WordPress-Plugins.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Best Cache WordPress Plugins\" decoding=\"async\" srcset=\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://wpshout.com/wp-content/uploads/2023/02/Best-Cache-WordPress-Plugins.png 150w, https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/dpr:2/https://wpshout.com/wp-content/uploads/2023/02/Best-Cache-WordPress-Plugins.png 2x\" sizes=\"(max-width: 150px) 100vw, 150px\" />Your site is slow. People leave. Google shrugs. You tweak your theme, compress your images, scream into the void. Still slow… The problem might be your cache plugin, or rather the cache plugin you\'re not using yet.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Karol K\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wpshout.com/best-cache-plugin-for-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:19:\"https://wpshout.com\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:6:{s:4:\"data\";s:7:\"\n			\n		\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:19:\"https://wpshout.com\";s:6:\"medium\";s:5:\"image\";}}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:29:\"http://search.yahoo.com/mrss/\";a:1:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Best Cache WordPress Plugins\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}i:2;a:6:{s:4:\"data\";s:66:\"\n		\n		\n					\n		\n		\n		\n				\n		\n\n					\n		\n					\n			\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Neve WordPress Theme Review: 1,200+ Five-Star Ratings Can’t Be Wrong…or Can They?\";s:7:\"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://wpshout.com/neve-wordpress-theme-review/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wpshout.com/neve-wordpress-theme-review/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Jun 2025 09:39:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wpshout.com/?p=148418\";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:1034:\"<img width=\"150\" height=\"150\" src=\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://wpshout.com/wp-content/uploads/2025/06/Neve-review.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Neve review\" decoding=\"async\" srcset=\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://wpshout.com/wp-content/uploads/2025/06/Neve-review.png 150w, https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/dpr:2/https://wpshout.com/wp-content/uploads/2025/06/Neve-review.png 2x\" sizes=\"(max-width: 150px) 100vw, 150px\" />Neve has long been considered one of the top ten WordPress themes in the official WordPress repository. It consistently gets high ratings and is active on hundreds of thousands of websites. It\'s obvious that many people like it, but does that mean it\'s a good choice for you? In this review we peel back the curtain and give you all the information you need to make that decision.\";s: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:\"Martin Dubovic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wpshout.com/neve-wordpress-theme-review/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:19:\"https://wpshout.com\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:6:{s:4:\"data\";s:7:\"\n			\n		\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:19:\"https://wpshout.com\";s:6:\"medium\";s:5:\"image\";}}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:29:\"http://search.yahoo.com/mrss/\";a:1:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Neve review\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}i:3;a:6:{s:4:\"data\";s:66:\"\n		\n		\n					\n		\n		\n		\n				\n		\n\n					\n		\n					\n			\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"The FAIR Package Manager Just Launched as a WordPress Repository Alternative – but What Exactly Is It?\";s:7:\"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://wpshout.com/fair-package-manager-wordpress-org-alternative/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wpshout.com/fair-package-manager-wordpress-org-alternative/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 09 Jun 2025 10:16:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wpshout.com/?p=150779\";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:1212:\"<img width=\"150\" height=\"150\" src=\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://wpshout.com/wp-content/uploads/2025/06/FAIR-Package-Manager-Just-Launched-as-a-WordPress-Repository-Alternative.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"FAIR Package Manager Just Launched as a WordPress Repository Alternative\" decoding=\"async\" srcset=\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://wpshout.com/wp-content/uploads/2025/06/FAIR-Package-Manager-Just-Launched-as-a-WordPress-Repository-Alternative.png 150w, https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/dpr:2/https://wpshout.com/wp-content/uploads/2025/06/FAIR-Package-Manager-Just-Launched-as-a-WordPress-Repository-Alternative.png 2x\" sizes=\"(max-width: 150px) 100vw, 150px\" />A few days ago, the annual WordCamp Europe meetup took place in the picturesque city of Basel, Switzerland. The biggest announcement from the event was the new FAIR Package Manager - but what exactly is it? In this article we dive into the details, including Matt Mullenweg\'s reaction when asked about it on stage.\";s: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:\"Martin Dubovic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wpshout.com/fair-package-manager-wordpress-org-alternative/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:19:\"https://wpshout.com\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:6:{s:4:\"data\";s:7:\"\n			\n		\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:19:\"https://wpshout.com\";s:6:\"medium\";s:5:\"image\";}}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:29:\"http://search.yahoo.com/mrss/\";a:1:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"FAIR Package Manager Just Launched as a WordPress Repository Alternative\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}i:4;a:6:{s:4:\"data\";s:66:\"\n		\n		\n					\n		\n		\n		\n				\n		\n\n					\n		\n					\n			\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"I Tried Hostinger’s New Horizons AI Developer Tool: Is the Hype Justified?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wpshout.com/hostinger-horizons-review/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wpshout.com/hostinger-horizons-review/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 May 2025 07:40: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:1:{i:0;a:5:{s:4:\"data\";s:16:\"Software & 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:29:\"https://wpshout.com/?p=150420\";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:1085:\"<img width=\"150\" height=\"150\" src=\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://wpshout.com/wp-content/uploads/2025/05/I-Tried-Hostingers-New-Horizons-AI.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"I Tried Hostingers New Horizons AI\" decoding=\"async\" srcset=\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://wpshout.com/wp-content/uploads/2025/05/I-Tried-Hostingers-New-Horizons-AI.png 150w, https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/dpr:2/https://wpshout.com/wp-content/uploads/2025/05/I-Tried-Hostingers-New-Horizons-AI.png 2x\" sizes=\"(max-width: 150px) 100vw, 150px\" />Hostinger Horizons is marketed as an easy way for non-developers without a technical background to build their own apps, but it can also be used to build websites. I decided to try both and in this post I will share the results with you. I\'ll also provide my overall thoughts on Hostinger Horizons\'s strengths, limitations, and usefulness.\";s: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:\"Martin Dubovic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wpshout.com/hostinger-horizons-review/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:19:\"https://wpshout.com\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:6:{s:4:\"data\";s:7:\"\n			\n		\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:19:\"https://wpshout.com\";s:6:\"medium\";s:5:\"image\";}}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:29:\"http://search.yahoo.com/mrss/\";a:1:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"I Tried Hostingers New Horizons AI\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}i:5;a:6:{s:4:\"data\";s:66:\"\n		\n		\n					\n		\n		\n		\n				\n		\n\n					\n		\n					\n			\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"Google Just Released an Avalanche of New AI Tools…Here’s the Breakdown\";s:7:\"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:43:\"https://wpshout.com/google-new-ai-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wpshout.com/google-new-ai-releases/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 26 May 2025 09:27:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Software & 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:29:\"https://wpshout.com/?p=150504\";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:920:\"<img width=\"150\" height=\"150\" src=\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://wpshout.com/wp-content/uploads/2025/05/Google-I-O-New-AI-Tools.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Google I O New AI Tools\" decoding=\"async\" srcset=\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://wpshout.com/wp-content/uploads/2025/05/Google-I-O-New-AI-Tools.png 150w, https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/dpr:2/https://wpshout.com/wp-content/uploads/2025/05/Google-I-O-New-AI-Tools.png 2x\" sizes=\"(max-width: 150px) 100vw, 150px\" />During Google\'s annual I/O developer conference, they simultaneously released a combination of dozens of other AI tools and features - literally dozens. Here are the top six, along with a summary of some of the others.\";s: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:\"Martin Dubovic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wpshout.com/google-new-ai-releases/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:19:\"https://wpshout.com\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:6:{s:4:\"data\";s:7:\"\n			\n		\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:19:\"https://wpshout.com\";s:6:\"medium\";s:5:\"image\";}}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:29:\"http://search.yahoo.com/mrss/\";a:1:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Google I O New AI Tools\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}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:69:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Win a Free Spot in Modern WordPress Fast Track\";s:7:\"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://wpshout.com/win-a-free-spot-in-modern-wordpress-fast-track/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wpshout.com/win-a-free-spot-in-modern-wordpress-fast-track/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 May 2025 13:50:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Ideas & Inspiration\";s:7:\"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://wpshout.com/?p=150248\";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:1269:\"<img width=\"150\" height=\"150\" src=\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://wpshout.com/wp-content/uploads/2025/05/course-giveaway.jpg\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"course giveaway\" decoding=\"async\" srcset=\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://wpshout.com/wp-content/uploads/2025/05/course-giveaway.jpg 150w, https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/dpr:2/https://wpshout.com/wp-content/uploads/2025/05/course-giveaway.jpg 2x\" sizes=\"(max-width: 150px) 100vw, 150px\" />We believe everyone deserves access to quality WordPress development education, regardless of financial circumstances. That&#8217;s why we&#8217;re excited to announce that we&#8217;re giving away one free spot in our upcoming Modern WordPress Fast Track course to someone who couldn&#8217;t otherwise afford it. About the Course Modern WordPress Fast Track is a 10-week course that will&#8230;&#160;<a href=\"https://wpshout.com/win-a-free-spot-in-modern-wordpress-fast-track/\" rel=\"bookmark\">Read More &#187;<span class=\"screen-reader-text\">Win a Free Spot in Modern WordPress Fast Track</span></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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Milica Aleksandric\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wpshout.com/win-a-free-spot-in-modern-wordpress-fast-track/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:29:\"http://search.yahoo.com/mrss/\";a:2:{s:7:\"content\";a:2:{i:0;a:6:{s:4:\"data\";s:23:\"\n			\n			\n			\n			\n			\n		\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:41:\"https://player.vimeo.com/video/1080142443\";s:8:\"duration\";s:3:\"162\";}}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:29:\"http://search.yahoo.com/mrss/\";a:5:{s:6:\"player\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:41:\"https://player.vimeo.com/video/1080142443\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Win a Free Spot in Modern WordPress Fast Track\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}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:300:\"We believe everyone deserves access to quality WordPress development education, regardless of financial circumstances. That\'s why we\'re excited to announce that we\'re giving away one free spot in our upcoming Modern WordPress Fast Track course to someone who couldn\'t otherwise afford it. About the C\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:19:\"https://wpshout.com\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"keywords\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:7:\"\n			\n		\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:19:\"https://wpshout.com\";s:6:\"medium\";s:5:\"image\";}}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:29:\"http://search.yahoo.com/mrss/\";a:1:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"course giveaway\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:19:\"https://wpshout.com\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:66:\"\n		\n		\n					\n		\n		\n		\n				\n		\n\n					\n		\n					\n			\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"Optimole Review – I Actually Tried It. Here’s What It Did to My Images\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://wpshout.com/optimole-review/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wpshout.com/optimole-review/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 12 May 2025 10:40:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wpshout.com/?p=150178\";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:848:\"<img width=\"150\" height=\"150\" src=\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://wpshout.com/wp-content/uploads/2025/05/Optimole-Review.png\" class=\"attachment-thumbnail size-thumbnail wp-post-image\" alt=\"Optimole Review\" decoding=\"async\" srcset=\"https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/https://wpshout.com/wp-content/uploads/2025/05/Optimole-Review.png 150w, https://iotvnaw69daj.i.optimole.com/cb:FUms.67a93/w:150/h:150/q:mauto/rt:fill/g:ce/f:best/dpr:2/https://wpshout.com/wp-content/uploads/2025/05/Optimole-Review.png 2x\" sizes=\"(max-width: 150px) 100vw, 150px\" />Images can quietly wreck your site. They generally slow pages down, eat bandwidth, and frustrate users if they take too long to load - especially on mobile. Any solution to this?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Karol K\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wpshout.com/optimole-review/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:29:\"http://search.yahoo.com/mrss/\";a:2:{s:9:\"thumbnail\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"url\";s:19:\"https://wpshout.com\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"content\";a:1:{i:0;a:6:{s:4:\"data\";s:7:\"\n			\n		\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"url\";s:19:\"https://wpshout.com\";s:6:\"medium\";s:5:\"image\";}}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:29:\"http://search.yahoo.com/mrss/\";a:1:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Optimole Review\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:4:\"type\";s:4:\"html\";}}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:25:\"https://wpshout.com/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:4:\"type\";i:128;s:7:\"headers\";a:14:{s:4:\"date\";s:29:\"Mon, 08 Dec 2025 17:08:49 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:6:\"cf-ray\";s:20:\"9aadddee5ddf08e9-HKG\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:18:\"permissions-policy\";s:62:\"ch-viewport-width=(self \"https://iotvnaw69daj.i.optimole.com\")\";s:7:\"x-verti\";s:120:\"If you\'re reading this, you should visit https://careers.vertistudio.com/jobs and apply to join us, mention this header.\";s:27:\"access-control-allow-origin\";s:1:\"*\";s:4:\"link\";s:97:\"<https://wpshout.com/wp-json/>; rel=\"https://api.w.org/\", <https://wpshout.com/>; rel=\"canonical\"\";s:13:\"last-modified\";s:29:\"Tue, 02 Dec 2025 07:25:58 GMT\";s:13:\"cache-control\";s:35:\"public, max-age=0, s-maxage=2592000\";s:16:\"content-encoding\";s:4:\"gzip\";s:15:\"cf-cache-status\";s:3:\"HIT\";s:6:\"server\";s:10:\"cloudflare\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";}s:5:\"build\";i:1760618736;s:21:\"cache_expiration_time\";i:1765256929;s:23:\"__cache_expiration_time\";i:1765256929;}', 'off'),
(348423, '_site_transient_timeout_feed_mod_41e43183af30f3b40ed25f48cc2ea3f8', '1765256929', 'off'),
(348424, '_site_transient_feed_mod_41e43183af30f3b40ed25f48cc2ea3f8', '1765213729', 'off'),
(348425, '_transient_timeout_themeisle_sdk_feed_items', '1765386529', 'off'),
(348426, '_transient_themeisle_sdk_feed_items', 'a:5:{i:0;a:3:{s:5:\"title\";s:61:\"How to Use FreshRank to Turn Dying Posts Into Traffic Winners\";s:4:\"date\";i:1764580764;s:4:\"link\";s:57:\"https://themeisle.com/blog/update-content-with-freshrank/\";}i:1;a:3:{s:5:\"title\";s:73:\"We Built a Free Tool to Show You Exactly What’s Wrong With Your Content\";s:4:\"date\";i:1762957758;s:4:\"link\";s:52:\"https://themeisle.com/blog/introducing-freshrank-ai/\";}i:2;a:3:{s:5:\"title\";s:46:\"8 Best WordPress Media Library Plugins in 2025\";s:4:\"date\";i:1761568666;s:4:\"link\";s:59:\"https://themeisle.com/blog/wordpress-media-library-plugins/\";}i:3;a:3:{s:5:\"title\";s:79:\"5 Best Image Optimization Plugins for WordPress in 2025 (Tested on Real Images)\";s:4:\"date\";i:1761046570;s:4:\"link\";s:59:\"https://wpshout.com/best-image-optimization-plugins-tested/\";}i:4;a:3:{s:5:\"title\";s:47:\"Meet Masteriyo – A Free LearnDash Alternative\";s:4:\"date\";i:1758646902;s:4:\"link\";s:69:\"https://themeisle.com/blog/meet-masteriyo-free-learndash-alternative/\";}}', 'off'),
(348550, '_transient_timeout_themeisle_sdk_products', '1765268127', 'off'),
(348551, '_transient_themeisle_sdk_products', 'a:6:{i:0;a:4:{s:4:\"name\";s:4:\"Neve\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:4:\"neve\";s:8:\"installs\";i:200000;}i:1;a:4:{s:4:\"name\";s:6:\"Hestia\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:6:\"hestia\";s:8:\"installs\";i:90000;}i:2;a:4:{s:4:\"name\";s:90:\"Orbit Fox: Duplicate Page, Menu Icons, SVG Support, Cookie Notice, Custom Fonts &amp; More\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:19:\"themeisle-companion\";s:8:\"installs\";i:100000;}i:3;a:4:{s:4:\"name\";s:82:\"Otter Blocks &#8211; Gutenberg Blocks, Page Builder for Gutenberg Editor &amp; FSE\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:12:\"otter-blocks\";s:8:\"installs\";i:300000;}i:4;a:4:{s:4:\"name\";s:98:\"RSS Aggregator by Feedzy – Feed to Post, Autoblogging, News &amp; YouTube Video Feeds Aggregator\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:16:\"feedzy-rss-feeds\";s:8:\"installs\";i:40000;}i:5;a:4:{s:4:\"name\";s:51:\"Visualizer: Tables and Charts Manager for WordPress\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:10:\"visualizer\";s:8:\"installs\";i:20000;}}', 'off'),
(348431, '_transient_timeout_adbc_plugin_tables_to_repair', '1765217408', 'off'),
(348432, '_transient_adbc_plugin_tables_to_repair', 'a:0:{}', 'off'),
(348569, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1765258693', 'off');
INSERT INTO `wpom_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(348570, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:7788;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4943;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2801;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2779;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2152;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:2145;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:2140;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1973;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1706;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1664;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1627;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1561;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1518;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1515;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1508;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1387;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1371;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1318;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1285;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1183;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1161;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:1084;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:1083;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:1083;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:1071;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:1068;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:1050;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:1043;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:1014;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:989;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:956;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:955;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:938;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:936;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:913;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:903;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:866;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:824;}s:2:\"ai\";a:3:{s:4:\"name\";s:2:\"AI\";s:4:\"slug\";s:2:\"ai\";s:5:\"count\";i:801;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:790;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:786;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:776;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:773;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:765;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:757;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:728;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:726;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:712;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:706;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:700;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:696;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:694;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:677;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:665;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:665;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:653;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:652;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:652;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:651;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:640;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:626;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:626;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:619;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:616;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:614;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:612;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:607;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:597;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:590;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:587;}s:8:\"payments\";a:3:{s:4:\"name\";s:8:\"payments\";s:4:\"slug\";s:8:\"payments\";s:5:\"count\";i:584;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:583;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:580;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:578;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:571;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:561;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:539;}s:8:\"checkout\";a:3:{s:4:\"name\";s:8:\"checkout\";s:4:\"slug\";s:8:\"checkout\";s:5:\"count\";i:537;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:533;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:531;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:529;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:529;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:519;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:510;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:509;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:490;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:485;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:481;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:476;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:472;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:469;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:460;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:458;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:455;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:444;}s:7:\"chatbot\";a:3:{s:4:\"name\";s:7:\"chatbot\";s:4:\"slug\";s:7:\"chatbot\";s:5:\"count\";i:444;}s:8:\"products\";a:3:{s:4:\"name\";s:8:\"products\";s:4:\"slug\";s:8:\"products\";s:5:\"count\";i:432;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:430;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:427;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:425;}}', 'off'),
(348491, 'mainwp_extensions', 'a:1:{i:0;a:23:{s:6:\"plugin\";s:98:\"D:\\wamp64\\www\\onlineincshop\\wp-content\\plugins\\mainwp-sucuri-extension\\mainwp-sucuri-extension.php\";s:3:\"api\";s:23:\"mainwp-sucuri-extension\";s:6:\"mainwp\";b:1;s:8:\"callback\";a:2:{i:0;O:33:\"MainWP_Sucuri_Extension_Activator\":7:{s:22:\"\0*\0mainwpMainActivated\";s:8:\"5.4.0.23\";s:15:\"\0*\0childEnabled\";a:1:{s:3:\"key\";s:32:\"d35379162fde2799a3d5e1b972f9a02b\";}s:11:\"\0*\0childKey\";s:32:\"d35379162fde2799a3d5e1b972f9a02b\";s:12:\"\0*\0childFile\";s:98:\"D:\\wamp64\\www\\onlineincshop\\wp-content\\plugins\\mainwp-sucuri-extension\\mainwp-sucuri-extension.php\";s:16:\"\0*\0plugin_handle\";s:23:\"mainwp-sucuri-extension\";s:13:\"\0*\0product_id\";s:23:\"MainWP Sucuri Extension\";s:19:\"\0*\0software_version\";s:3:\"5.0\";}i:1;s:8:\"settings\";}s:10:\"apiManager\";b:1;s:4:\"slug\";s:51:\"mainwp-sucuri-extension/mainwp-sucuri-extension.php\";s:4:\"name\";s:23:\"MainWP Sucuri Extension\";s:7:\"version\";s:3:\"5.0\";s:11:\"description\";s:226:\"MainWP Sucuri Extension enables you to scan your child sites for various types of malware, spam injections, website errors, and much more. Requires the MainWP Dashboard. <cite>By <a href=\"https://mainwp.com\">MainWP</a>.</cite>\";s:6:\"author\";s:39:\"<a href=\"https://mainwp.com\">MainWP</a>\";s:4:\"icon\";s:0:\"\";s:7:\"iconURI\";s:0:\"\";s:15:\"SupportForumURI\";s:0:\"\";s:16:\"DocumentationURI\";s:63:\"https://mainwp.com/help/docs/category/mainwp-extensions/sucuri/\";s:4:\"page\";s:34:\"Extensions-Mainwp-Sucuri-Extension\";s:7:\"api_key\";s:0:\"\";s:13:\"activated_key\";s:11:\"Deactivated\";s:19:\"deactivate_checkbox\";s:3:\"off\";s:10:\"product_id\";s:0:\"\";s:11:\"instance_id\";s:0:\"\";s:16:\"software_version\";s:0:\"\";s:14:\"mainwp_version\";s:0:\"\";s:4:\"type\";s:4:\"free\";}}', 'off'),
(348498, 'mainwp_logger_check_daily', '09/12/2025', 'off'),
(348450, 'mainwp_enableLegacyBackupFeature', '0', 'off'),
(348451, 'mainwp_selected_theme', 'default', 'off'),
(348452, 'mainwp_global_uptime_monitoring_settings', 'a:10:{s:10:\"monitor_id\";i:0;s:4:\"wpid\";i:0;s:4:\"type\";s:4:\"http\";s:6:\"active\";i:0;s:7:\"keyword\";s:0:\"\";s:8:\"interval\";i:60;s:10:\"maxretries\";i:1;s:15:\"up_status_codes\";s:27:\"200,201,202,203,204,205,206\";s:6:\"method\";s:4:\"head\";s:7:\"timeout\";i:60;}', 'off'),
(348453, 'mainwp_db_version', '9.0.0.62', 'off'),
(348454, 'mainwp_module_log_settings', 'a:1:{s:7:\"enabled\";i:1;}', 'off'),
(348455, 'mainwp_api_backups_update_version', '4.1', 'auto'),
(348456, 'mainwp_plugin_version', '5.4.0.23', 'off'),
(348457, 'mainwp_sucuri_db_version', '1.5', 'auto'),
(348501, 'mainwp_showhide_events_notice', 'a:2:{s:16:\"request_reviews1\";i:30;s:26:\"request_reviews1_starttime\";i:1765214093;}', 'auto'),
(348536, 'mainwp_automatic_updates_recent_running', '[\"2025-12-09 02:13:47\"]', 'off'),
(348537, 'mainwp_automatic_updates_start_lasttime', '1765246427', 'off'),
(348538, 'mainwp_automatic_updates_is_running', '0', 'off'),
(348499, 'mainwp_actionlogs_enabled_timestamp', '1765214091', 'off'),
(348510, 'mainwp_updatescheck_dailydigest_last_timestamp', '1765246528', 'off'),
(348509, 'mainwp_dailydigest_last', '09/12/2025', 'off'),
(348511, 'mainwp_log_wait_lasttime', '1765248412', 'off'),
(348623, '_site_transient_timeout_wp_theme_files_patterns-31226429343156f31d97c2195736c2b1', '1765250126', 'off'),
(348624, '_site_transient_wp_theme_files_patterns-31226429343156f31d97c2195736c2b1', 'a:2:{s:7:\"version\";s:6:\"12.6.8\";s:8:\"patterns\";a:0:{}}', 'off'),
(348618, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1765248289;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:10:{s:49:\"advanced-database-cleaner/advanced-db-cleaner.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"w.org/plugins/advanced-database-cleaner\";s:4:\"slug\";s:25:\"advanced-database-cleaner\";s:6:\"plugin\";s:49:\"advanced-database-cleaner/advanced-db-cleaner.php\";s:11:\"new_version\";s:5:\"4.0.2\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/advanced-database-cleaner/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/advanced-database-cleaner.4.0.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/advanced-database-cleaner/assets/icon-256x256.png?rev=3405580\";s:2:\"1x\";s:78:\"https://ps.w.org/advanced-database-cleaner/assets/icon-128x128.png?rev=3405580\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/advanced-database-cleaner/assets/banner-1544x500.png?rev=3405580\";s:2:\"1x\";s:80:\"https://ps.w.org/advanced-database-cleaner/assets/banner-772x250.png?rev=3405580\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"5.0.0\";}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:11:\"amp/amp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:17:\"w.org/plugins/amp\";s:4:\"slug\";s:3:\"amp\";s:6:\"plugin\";s:11:\"amp/amp.php\";s:11:\"new_version\";s:5:\"2.5.5\";s:3:\"url\";s:34:\"https://wordpress.org/plugins/amp/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/plugin/amp.2.5.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:48:\"https://ps.w.org/amp/assets/icon.svg?rev=2527602\";s:3:\"svg\";s:48:\"https://ps.w.org/amp/assets/icon.svg?rev=2527602\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/amp/assets/banner-1544x500.png?rev=2527602\";s:2:\"1x\";s:58:\"https://ps.w.org/amp/assets/banner-772x250.png?rev=2527602\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";}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.7\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:35:\"litespeed-cache/litespeed-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/litespeed-cache\";s:4:\"slug\";s:15:\"litespeed-cache\";s:6:\"plugin\";s:35:\"litespeed-cache/litespeed-cache.php\";s:11:\"new_version\";s:5:\"7.6.2\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/litespeed-cache/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/litespeed-cache.7.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-256x256.png?rev=2554181\";s:2:\"1x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-128x128.png?rev=2554181\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/litespeed-cache/assets/banner-1544x500.png?rev=2554181\";s:2:\"1x\";s:70:\"https://ps.w.org/litespeed-cache/assets/banner-772x250.png?rev=2554181\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:23:\"loginizer/loginizer.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/loginizer\";s:4:\"slug\";s:9:\"loginizer\";s:6:\"plugin\";s:23:\"loginizer/loginizer.php\";s:11:\"new_version\";s:5:\"2.0.3\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/loginizer/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/loginizer.2.0.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/loginizer/assets/icon-256x256.png?rev=1381093\";s:2:\"1x\";s:62:\"https://ps.w.org/loginizer/assets/icon-128x128.png?rev=1381093\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/loginizer/assets/banner-1544x500.png?rev=3131676\";s:2:\"1x\";s:64:\"https://ps.w.org/loginizer/assets/banner-772x250.png?rev=3131676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";}s:17:\"mainwp/mainwp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"w.org/plugins/mainwp\";s:4:\"slug\";s:6:\"mainwp\";s:6:\"plugin\";s:17:\"mainwp/mainwp.php\";s:11:\"new_version\";s:8:\"5.4.0.23\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/mainwp/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/mainwp.5.4.0.23.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/mainwp/assets/icon-256x256.png?rev=2734946\";s:2:\"1x\";s:59:\"https://ps.w.org/mainwp/assets/icon-128x128.png?rev=2734946\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/mainwp/assets/banner-1544x500.png?rev=3119256\";s:2:\"1x\";s:61:\"https://ps.w.org/mainwp/assets/banner-772x250.png?rev=3119256\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/mainwp/assets/banner-1544x500-rtl.jpg?rev=2712921\";s:2:\"1x\";s:65:\"https://ps.w.org/mainwp/assets/banner-772x250-rtl.jpg?rev=2712921\";}s:8:\"requires\";s:3:\"6.2\";}s:47:\"robin-image-optimizer/robin-image-optimizer.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:35:\"w.org/plugins/robin-image-optimizer\";s:4:\"slug\";s:21:\"robin-image-optimizer\";s:6:\"plugin\";s:47:\"robin-image-optimizer/robin-image-optimizer.php\";s:11:\"new_version\";s:5:\"1.9.0\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/robin-image-optimizer/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/robin-image-optimizer.1.9.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/robin-image-optimizer/assets/icon-256x256.gif?rev=2395842\";s:2:\"1x\";s:74:\"https://ps.w.org/robin-image-optimizer/assets/icon-128x128.gif?rev=2395842\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";}s:39:\"robots-txt-editor/robots-txt-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:31:\"w.org/plugins/robots-txt-editor\";s:4:\"slug\";s:17:\"robots-txt-editor\";s:6:\"plugin\";s:39:\"robots-txt-editor/robots-txt-editor.php\";s:11:\"new_version\";s:5:\"1.1.4\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/robots-txt-editor/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/robots-txt-editor.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/robots-txt-editor/assets/icon-256x256.jpg?rev=2081244\";s:2:\"1x\";s:70:\"https://ps.w.org/robots-txt-editor/assets/icon-128x128.jpg?rev=2081244\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/robots-txt-editor/assets/banner-772x250.jpg?rev=2080968\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:35:\"insert-headers-and-footers/ihaf.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:40:\"w.org/plugins/insert-headers-and-footers\";s:4:\"slug\";s:26:\"insert-headers-and-footers\";s:6:\"plugin\";s:35:\"insert-headers-and-footers/ihaf.php\";s:11:\"new_version\";s:5:\"2.3.1\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/insert-headers-and-footers/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/insert-headers-and-footers.2.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/insert-headers-and-footers/assets/icon-256x256.png?rev=2758516\";s:2:\"1x\";s:79:\"https://ps.w.org/insert-headers-and-footers/assets/icon-128x128.png?rev=2758516\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/insert-headers-and-footers/assets/banner-1544x500.png?rev=2758516\";s:2:\"1x\";s:81:\"https://ps.w.org/insert-headers-and-footers/assets/banner-772x250.png?rev=2758516\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}}s:7:\"checked\";a:18:{s:49:\"advanced-database-cleaner/advanced-db-cleaner.php\";s:5:\"4.0.2\";s:19:\"akismet/akismet.php\";s:3:\"5.6\";s:11:\"amp/amp.php\";s:5:\"2.5.5\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.7\";s:35:\"litespeed-cache/litespeed-cache.php\";s:5:\"7.6.2\";s:23:\"loginizer/loginizer.php\";s:5:\"2.0.3\";s:17:\"mainwp/mainwp.php\";s:8:\"5.4.0.23\";s:51:\"mainwp-sucuri-extension/mainwp-sucuri-extension.php\";s:3:\"5.0\";s:47:\"robin-image-optimizer/robin-image-optimizer.php\";s:5:\"1.9.0\";s:39:\"robots-txt-editor/robots-txt-editor.php\";s:5:\"1.1.4\";s:37:\"td-cloud-library/td-cloud-library.php\";s:31:\"3.7 | built on 26.09.2024 10:39\";s:27:\"td-composer/td-composer.php\";s:31:\"5.2 | built on 26.09.2024 10:39\";s:37:\"td-mobile-plugin/td-mobile-plugin.php\";s:30:\"2.6 | built on 31.05.2024 8:20\";s:31:\"td-newsletter/td-newsletter.php\";s:30:\"2.1 | built on 31.05.2024 8:20\";s:35:\"td-subscription/td-subscription.php\";s:32:\"1.7.2 | built on 14.10.2025 9:58\";s:39:\"td-social-counter/td-social-counter.php\";s:30:\"5.6 | built on 31.05.2024 8:20\";s:37:\"td-standard-pack/td-standard-pack.php\";s:30:\"2.7 | built on 14.11.2024 7:59\";s:35:\"insert-headers-and-footers/ihaf.php\";s:5:\"2.3.1\";}}', 'off'),
(348598, '_site_transient_timeout_available_translations', '1765258928', 'off');

-- --------------------------------------------------------

--
-- Table structure for table `wpom_postmeta`
--

DROP TABLE IF EXISTS `wpom_postmeta`;
CREATE TABLE IF NOT EXISTS `wpom_postmeta` (
  `meta_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `post_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=2697 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_postmeta`
--

INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(6, 3, 'tdc_google_fonts_settings', 'a:0:{}'),
(5, 2, 'tdc_google_fonts_settings', 'a:0:{}'),
(7, 7, 'tdc_dirty_content', '1'),
(8, 7, 'tdc_icon_fonts', 'a:0:{}'),
(9, 7, 'tds_new_values', '1'),
(10, 7, 'tds_locker_settings', 'a:6:{s:9:\"tds_title\";s:36:\"This Content Is Only For Subscribers\";s:11:\"tds_message\";s:72:\"Please subscribe to unlock this content. Enter your email to get access.\";s:21:\"tds_input_placeholder\";s:32:\"Please enter your email address.\";s:19:\"tds_submit_btn_text\";s:19:\"Subscribe to unlock\";s:18:\"tds_after_btn_text\";s:42:\"Your email address is 100% safe from spam!\";s:10:\"tds_pp_msg\";s:109:\"I consent to processing of my data according to <a href=\"#\">Terms of Use</a> & <a href=\"#\">Privacy Policy</a>\";}'),
(11, 7, 'tds_locker_preview', 'a:0:{}'),
(12, 7, 'tds_locker_access_settings', 'a:1:{s:21:\"tds_locker_email_list\";i:3;}'),
(13, 8, 'tdc_dirty_content', '1'),
(14, 8, 'tdc_icon_fonts', 'a:0:{}'),
(15, 8, 'tdc_google_fonts_settings', 'a:1:{s:7:\"DEFAULT\";a:1:{i:0;s:3:\"400\";}}'),
(16, 9, 'tdc_dirty_content', '1'),
(17, 9, 'tdc_icon_fonts', 'a:0:{}'),
(18, 9, 'tdc_google_fonts_settings', 'a:1:{s:7:\"DEFAULT\";a:1:{i:0;s:3:\"400\";}}'),
(19, 10, 'tdc_dirty_content', '1'),
(20, 10, 'tdc_icon_fonts', 'a:0:{}'),
(21, 10, 'tdc_google_fonts_settings', 'a:0:{}'),
(22, 11, '_wp_attached_file', '2022/02/45.jpg'),
(23, 11, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:14:\"2022/02/45.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"45-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"45-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"45-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"45-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:14:\"45-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:14:\"45-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:14:\"45-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:14:\"45-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:14:\"45-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:14:\"45-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:15:\"45-1068x713.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(24, 11, 'td_demo_attachment', 'td_pic_1'),
(25, 12, '_wp_attached_file', '2022/02/44.jpg'),
(26, 12, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:14:\"2022/02/44.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"44-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"44-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"44-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"44-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:14:\"44-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:14:\"44-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:14:\"44-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:14:\"44-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:14:\"44-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:14:\"44-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:15:\"44-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:94:\"Romantic girl lying on gray pillows. Indoor photo of cheerful ginger lady posing in cozy room.\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2019 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:61:\"Romantic,Girl,Lying,On,Gray,Pillows.,Indoor,Photo,Of,Cheerful\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"cozy,caucasian,happy,smile,white,casual,model,sweater,female,day\";}}}'),
(27, 12, 'td_demo_attachment', 'td_pic_2'),
(28, 13, '_wp_attached_file', '2022/02/43.jpg'),
(29, 13, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:14:\"2022/02/43.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"43-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"43-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"43-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"43-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:14:\"43-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:14:\"43-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:14:\"43-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:14:\"43-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:14:\"43-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:14:\"43-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:15:\"43-1068x713.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:110:\"Image of smiling young woman wearing girlish clothes eating sweet cotton candy while walking in amusement park\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2019 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:65:\"Image,Of,Smiling,Young,Woman,Wearing,Girlish,Clothes,Eating,Sweet\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"funfair,woman,candy,entertainment,rollercoaster,young,caucasian,\";}}}'),
(30, 13, 'td_demo_attachment', 'td_pic_3'),
(31, 14, '_wp_attached_file', '2022/02/42.jpg'),
(32, 14, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1016;s:4:\"file\";s:14:\"2022/02/42.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"42-300x238.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"42-1024x813.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:813;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"42-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"42-768x610.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:14:\"42-150x119.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:14:\"42-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:14:\"42-300x238.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:14:\"42-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:14:\"42-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:14:\"42-696x552.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:552;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:15:\"42-1068x848.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(33, 14, 'td_demo_attachment', 'td_pic_4'),
(34, 15, '_wp_attached_file', '2022/02/41.jpg'),
(35, 15, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:14:\"2022/02/41.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"41-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"41-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"41-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"41-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:14:\"41-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:14:\"41-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:14:\"41-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:14:\"41-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:14:\"41-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:14:\"41-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:15:\"41-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(36, 15, 'td_demo_attachment', 'td_pic_5'),
(37, 16, '_wp_attached_file', '2022/02/40.jpg'),
(38, 16, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:738;s:4:\"file\";s:14:\"2022/02/40.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"40-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"40-1024x590.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:590;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"40-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"40-768x443.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:13:\"40-150x86.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:14:\"40-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:14:\"40-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:14:\"40-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:14:\"40-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:14:\"40-696x401.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:15:\"40-1068x616.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:616;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(39, 16, 'td_demo_attachment', 'td_pic_6'),
(40, 17, '_wp_attached_file', '2022/02/39.jpg'),
(41, 17, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:14:\"2022/02/39.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"39-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"39-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"39-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"39-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:14:\"39-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:14:\"39-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:14:\"39-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:14:\"39-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:14:\"39-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:14:\"39-696x522.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:15:\"39-1068x801.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(42, 17, 'td_demo_attachment', 'td_pic_7'),
(43, 18, '_wp_attached_file', '2022/02/37.jpg'),
(44, 18, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:14:\"2022/02/37.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"37-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"37-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"37-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"37-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:14:\"37-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:14:\"37-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:14:\"37-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:14:\"37-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:14:\"37-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:14:\"37-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:15:\"37-1068x713.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2020 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(45, 18, 'td_demo_attachment', 'td_pic_8'),
(46, 19, '_wp_attached_file', '2022/02/38.jpg'),
(47, 19, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:14:\"2022/02/38.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"38-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"38-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"38-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"38-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:14:\"38-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:14:\"38-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:14:\"38-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:14:\"38-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:14:\"38-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:14:\"38-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:15:\"38-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(48, 19, 'td_demo_attachment', 'td_pic_9'),
(49, 20, '_wp_attached_file', '2022/02/36.jpg'),
(50, 20, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:14:\"2022/02/36.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"36-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"36-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"36-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"36-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:14:\"36-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:14:\"36-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:14:\"36-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:14:\"36-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:14:\"36-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:14:\"36-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:15:\"36-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(51, 20, 'td_demo_attachment', 'td_pic_10'),
(52, 21, '_wp_attached_file', '2022/02/p1.jpg'),
(53, 21, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:14:\"2022/02/p1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"p1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"p1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"p1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"p1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:14:\"p1-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:14:\"p1-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:14:\"p1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:14:\"p1-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:14:\"p1-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:14:\"p1-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:15:\"p1-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2015 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(54, 21, 'td_demo_attachment', 'tdx_pic_1'),
(55, 22, '_wp_attached_file', '2022/02/p2.jpg'),
(56, 22, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:821;s:4:\"file\";s:14:\"2022/02/p2.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"p2-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"p2-1024x657.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"p2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"p2-768x493.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:493;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:13:\"p2-150x96.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:14:\"p2-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:14:\"p2-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:14:\"p2-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:14:\"p2-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:14:\"p2-696x446.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:15:\"p2-1068x685.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(57, 22, 'td_demo_attachment', 'tdx_pic_2'),
(58, 23, '_wp_attached_file', '2022/02/rec-sb.jpg'),
(59, 23, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:312;s:6:\"height\";i:424;s:4:\"file\";s:18:\"2022/02/rec-sb.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"rec-sb-221x300.jpg\";s:5:\"width\";i:221;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"rec-sb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:18:\"rec-sb-150x204.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:18:\"rec-sb-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:18:\"rec-sb-300x408.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:18:\"rec-sb-312x400.jpg\";s:5:\"width\";i:312;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:18:\"rec-sb-312x360.jpg\";s:5:\"width\";i:312;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(60, 23, 'td_demo_attachment', 'tdx_pic_3'),
(61, 24, '_wp_attached_file', '2022/02/rec-sb@2x.jpg'),
(62, 24, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:624;s:6:\"height\";i:848;s:4:\"file\";s:21:\"2022/02/rec-sb@2x.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"rec-sb@2x-221x300.jpg\";s:5:\"width\";i:221;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"rec-sb@2x-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:21:\"rec-sb@2x-150x204.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:21:\"rec-sb@2x-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:21:\"rec-sb@2x-300x408.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:21:\"rec-sb@2x-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:21:\"rec-sb@2x-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(63, 24, 'td_demo_attachment', 'tdx_pic_4'),
(64, 25, '_wp_attached_file', '2022/02/1.jpg'),
(65, 25, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:13:\"2022/02/1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:13:\"1-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:13:\"1-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:13:\"1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:13:\"1-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:13:\"1-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:13:\"1-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:14:\"1-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2017 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(66, 25, 'td_demo_attachment', 'tdx_pic_5'),
(67, 26, '_wp_attached_file', '2022/02/rec-co.jpg'),
(68, 26, '_wp_attachment_metadata', 'a:5:{s:5:\"width\";i:976;s:6:\"height\";i:104;s:4:\"file\";s:18:\"2022/02/rec-co.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"rec-co-300x32.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"rec-co-150x104.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"rec-co-768x82.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:17:\"rec-co-150x16.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:16;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:18:\"rec-co-218x104.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:17:\"rec-co-300x32.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:18:\"rec-co-324x104.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:18:\"rec-co-485x104.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:104;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:17:\"rec-co-696x74.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:74;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(69, 26, 'td_demo_attachment', 'tdx_pic_6'),
(70, 27, 'tdc_dirty_content', ''),
(71, 27, 'tdc_icon_fonts', 'a:0:{}'),
(72, 27, 'tdc_google_fonts_settings', 'a:1:{i:456;a:1:{i:0;s:3:\"700\";}}'),
(73, 27, 'td_demo_content', '1'),
(74, 27, 'tdc_template_name', 'tds_checkout.txt'),
(75, 28, 'tdc_dirty_content', ''),
(76, 28, 'tdc_icon_fonts', 'a:0:{}'),
(77, 28, 'tdc_google_fonts_settings', 'a:2:{i:456;a:1:{i:0;s:3:\"700\";}i:653;a:1:{i:0;s:3:\"400\";}}'),
(78, 28, 'td_demo_content', '1'),
(79, 28, 'tdc_template_name', 'tds_my_account.txt'),
(80, 29, 'tdc_dirty_content', ''),
(81, 29, 'tdc_icon_fonts', 'a:0:{}'),
(82, 29, 'tdc_google_fonts_settings', 'a:1:{i:456;a:1:{i:0;s:3:\"700\";}}'),
(83, 29, 'td_demo_content', '1'),
(84, 29, 'tdc_template_name', 'tds_login_register.txt'),
(85, 30, 'tdc_dirty_content', ''),
(86, 30, 'tdc_icon_fonts', 'a:1:{s:12:\"font_awesome\";a:5:{s:4:\"name\";s:12:\"Font Awesome\";s:12:\"family_class\";s:2:\"fa\";s:8:\"css_file\";s:43:\"/assets/fonts/font-awesome/font-awesome.css\";s:13:\"template_file\";s:16:\"font-awesome.php\";s:4:\"load\";b:1;}}'),
(87, 30, 'tdc_google_fonts_settings', 'a:2:{i:456;a:2:{i:0;s:3:\"700\";i:1;s:3:\"600\";}i:653;a:4:{i:0;s:3:\"400\";i:1;s:3:\"700\";i:2;s:3:\"500\";i:3;s:3:\"600\";}}'),
(88, 30, 'td_demo_content', '1'),
(89, 30, 'tdc_template_name', 'plans.txt'),
(90, 30, 'demo_unique_id', '961b9c838155cc'),
(91, 31, 'tdc_dirty_content', ''),
(92, 31, 'tdc_icon_fonts', 'a:0:{}'),
(93, 31, 'tdc_google_fonts_settings', 'a:1:{i:653;a:3:{i:0;s:3:\"700\";i:1;s:3:\"600\";i:2;s:3:\"500\";}}'),
(94, 31, 'td_demo_content', '1'),
(95, 31, 'tdc_template_name', 'mega_menu.txt'),
(96, 31, 'demo_unique_id', '1261b9c83818910'),
(97, 32, 'tdc_dirty_content', '0'),
(98, 32, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(99, 32, 'tdc_google_fonts_settings', 'a:3:{i:456;a:3:{i:0;s:3:\"700\";i:1;s:3:\"400\";i:2;s:3:\"600\";}i:653;a:4:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"400\";i:3;s:3:\"700\";}s:7:\"DEFAULT\";a:2:{i:0;s:3:\"400\";i:1;s:3:\"600\";}}'),
(100, 32, 'td_demo_content', '1'),
(101, 32, 'tdc_template_name', 'homepage.txt'),
(102, 32, 'demo_unique_id', '4461b9c8381bc85'),
(103, 33, 'tds_new_values', '1'),
(104, 33, 'tdc_dirty_content', '1'),
(105, 33, 'tdc_icon_fonts', 'a:0:{}'),
(106, 33, 'td_demo_content', '1'),
(107, 33, 'tds_locker_settings', 'a:9:{s:9:\"tds_title\";s:36:\"This Content Is Only For Subscribers\";s:11:\"tds_message\";s:72:\"Please subscribe to unlock this content. Enter your email to get access.\";s:21:\"tds_input_placeholder\";s:31:\"Please enter your email address\";s:19:\"tds_submit_btn_text\";s:19:\"Subscribe to unlock\";s:18:\"tds_after_btn_text\";s:42:\"Your email address is 100% safe from spam!\";s:10:\"tds_pp_msg\";s:109:\"I consent to processing of my data according to <a href=\"#\">Terms of Use</a> & <a href=\"#\">Privacy Policy</a>\";s:20:\"tds_locker_cf_1_name\";s:14:\"Custom field 1\";s:20:\"tds_locker_cf_2_name\";s:14:\"Custom field 2\";s:20:\"tds_locker_cf_3_name\";s:14:\"Custom field 3\";}'),
(108, 33, 'tds_locker_styles', 'a:13:{s:14:\"all_tds_shadow\";s:2:\"20\";s:20:\"all_tds_shadow_color\";s:7:\"#e2e2e2\";s:23:\"tds_submit_btn_bg_color\";s:7:\"#ec3535\";s:25:\"tds_submit_btn_bg_color_h\";s:7:\"#ff523f\";s:22:\"tds_pp_msg_links_color\";s:7:\"#ec3535\";s:24:\"tds_pp_msg_links_color_h\";s:7:\"#ff523f\";s:23:\"tds_general_font_family\";s:3:\"653\";s:21:\"tds_title_font_weight\";s:3:\"700\";s:21:\"tds_message_font_size\";s:2:\"14\";s:31:\"tds_submit_btn_text_font_weight\";s:3:\"600\";s:34:\"tds_submit_btn_text_font_transform\";s:9:\"uppercase\";s:28:\"tds_after_btn_text_font_size\";s:2:\"13\";s:20:\"tds_pp_msg_font_size\";s:2:\"13\";}'),
(109, 33, 'tds_locker_types', 'a:3:{s:11:\"tds_payable\";s:17:\"paid_subscription\";s:21:\"tds_paid_subs_page_id\";i:30;s:22:\"tds_paid_subs_plan_ids\";a:3:{i:0;i:1;i:1;i:2;i:2;i:3;}}'),
(909, 180, 'tdc_dirty_content', '1'),
(910, 181, '_wp_attached_file', '2022/03/tinplate-coil-suppliers-min-scaled.jpg'),
(907, 180, '_edit_lock', '1648223505:1'),
(908, 180, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(644, 32, 'tdc_content', '[tdc_zone type=\"tdc_content\"][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiIzMCIsInBhZGRpbmctcmlnaHQiOiI2MCIsInBhZGRpbmctYm90dG9tIjoiMTIwIiwicGFkZGluZy1sZWZ0IjoiNjAiLCJiYWNrZ3JvdW5kLWNvbG9yIjoiI2Y3ZjdmNyIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7InBhZGRpbmctdG9wIjoiMjAiLCJwYWRkaW5nLWJvdHRvbSI6IjExMCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsicGFkZGluZy10b3AiOiIxNSIsInBhZGRpbmctYm90dG9tIjoiMTAwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJwYWRkaW5nLXJpZ2h0IjoiNTAiLCJwYWRkaW5nLWJvdHRvbSI6IjMwIiwicGFkZGluZy1sZWZ0IjoiNTAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][vc_column][td_flex_block_1 modules_on_row=\"eyJhbGwiOiIyNSUiLCJwaG9uZSI6IjEwMCUifQ==\" image_size=\"\" image_floated=\"hidden\" image_width=\"eyJwaG9uZSI6IjMwIn0=\" image_height=\"eyJwaG9uZSI6IjExMCJ9\" show_btn=\"none\" show_excerpt=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_com=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_author=\"none\" show_cat=\"none\" meta_padding=\"0\" f_title_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjE0IiwicG9ydHJhaXQiOiIxMyJ9\" f_title_font_line_height=\"1.3\" f_title_font_weight=\"600\" all_modules_space=\"eyJwaG9uZSI6IjMwIiwiYWxsIjoiMCJ9\" category_id=\"\" show_date=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" art_excerpt=\"0\" show_review=\"none\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" f_title_font_family=\"456\" mc1_el=\"10\" title_txt_hover=\"#f43f3f\" title_txt=\"#000000\" f_meta_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTAiLCJsYW5kc2NhcGUiOiIxMSJ9\" f_meta_font_line_height=\"1\" f_meta_font_weight=\"400\" f_meta_font_family=\"653\" limit=\"4\" modules_category=\"\" modules_category_padding=\"0\" cat_bg=\"rgba(255,255,255,0)\" cat_txt=\"#f43f3f\" f_title_font_transform=\"\" modules_gap=\"eyJwb3J0cmFpdCI6IjEwIiwicGhvbmUiOiIwIiwibGFuZHNjYXBlIjoiMjAifQ==\" sort=\"\" el_class=\"td-week-slider\" ajax_pagination=\"next_prev\" td_ajax_preloading=\"preload\" pag_space=\"0\" pag_border_width=\"0\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"21\" pag_text=\"#ffffff\" pag_h_text=\"#ffffff\" pag_bg=\"#dddddd\" pag_h_bg=\"#aaaaaa\" pag_border_radius=\"100\" time_ago=\"yes\" show_modified_date=\"yes\" date_txt=\"#000000\" f_title_font_spacing=\"-0.5\" art_title=\"eyJwb3J0cmFpdCI6IjAifQ==\" excl_padd=\"3px 5px\" excl_margin=\"-4px 5px 0 0\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_family=\"653\" f_excl_font_transform=\"uppercase\" f_excl_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_weight=\"500\" f_excl_font_line_height=\"1\" f_excl_font_spacing=\"-0.5\" excl_radius=\"2\" excl_show=\"\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii05MCIsIm1hcmdpbi1ib3R0b20iOiI0MCIsImRpc3BsYXkiOiIifSwicGhvbmUiOnsibWFyZ2luLXRvcCI6IjAiLCJtYXJnaW4tYm90dG9tIjoiNjAiLCJwYWRkaW5nLXRvcCI6IjQwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2NywibGFuZHNjYXBlIjp7Im1hcmdpbi10b3AiOiItODAiLCJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi10b3AiOiItNzUiLCJtYXJnaW4tYm90dG9tIjoiMzAiLCJwYWRkaW5nLXJpZ2h0IjoiNSIsInBhZGRpbmctbGVmdCI6IjUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" gap=\"eyJwb3J0cmFpdCI6IjUiLCJhbGwiOiIxMCIsImxhbmRzY2FwZSI6IjUiLCJwaG9uZSI6IjAifQ==\"][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0xMCIsIndpZHRoIjoiMjAlIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLXRvcCI6Ii0yIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiI0MCIsIndpZHRoIjoiMTAwJSIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\"][tdm_block_column_title title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"653\" tds_title1-f_title_font_weight=\"700\" tds_title1-f_title_font_size=\"eyJhbGwiOiIzMiIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIyNiJ9\" tds_title1-title_color=\"#000000\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" tds_title1-f_title_font_spacing=\"-1\" tds_title1-f_title_font_line_height=\"1\" title_text=\"RnJlc2glMjBzdG9yaWVz\"][tdm_block_column_title title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"653\" tds_title1-f_title_font_weight=\"600\" tds_title1-f_title_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSJ9\" tds_title1-title_color=\"#000000\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0xMiIsIndpZHRoIjoiOTAlIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLXRvcCI6Ii0xNCIsIndpZHRoIjoiMTAwJSIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsibWFyZ2luLXRvcCI6Ii0xNiIsIndpZHRoIjoiMTAwJSIsImRpc3BsYXkiOiJub25lIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7IndpZHRoIjoiNzAlIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" tds_title1-f_title_font_line_height=\"1.2\" title_text=\"VG9kYXklM0ElMjBCcm93c2UlMjBvdXIlMjBlZGl0b3IncyUyMGhhbmQlMjBwaWNrZWQlMjBhcnRpY2xlcyE=\" tds_title1-f_title_font_transform=\"uppercase\"][/vc_column][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsid2lkdGgiOiI0MCUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjMwIiwid2lkdGgiOiIxMDAlIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\"][td_flex_block_2 modules_on_row=\"\" limit=\"1\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiI0MCIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIzMCIsInBob25lIjoiMzAifQ==\" f_title_font_line_height=\"eyJhbGwiOiIxIiwicG9ydHJhaXQiOiIxLjEifQ==\" show_cat=\"\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIwIDI1cHggMjVweCIsImxhbmRzY2FwZSI6IjAgMjBweCAyMHB4IiwicG9ydHJhaXQiOiIwIDE1cHggMTVweCIsInBob25lIjoiMCAyMHB4IDIwcHgifQ==\" modules_divider=\"\" image_size=\"td_1068x0\" meta_info_align=\"bottom\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"700\" image_height=\"eyJhbGwiOiIxMDAiLCJwb3J0cmFpdCI6IjE0MCJ9\" all_modules_space=\"0\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiIxNnB4IDAgMTJweCAwIiwibGFuZHNjYXBlIjoiMTJweCAwIDEwcHggMCIsInBvcnRyYWl0IjoiMTBweCAwIDZweCAwIiwicGhvbmUiOiIxMnB4IDAgMTBweCAwIn0=\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_ex_font_weight=\"500\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" f_ex_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTQiLCJsYW5kc2NhcGUiOiIxNSIsInBob25lIjoiMTUifQ==\" f_ex_font_line_height=\"1.4\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"none\" show_author=\"none\" mc1_el=\"10\" f_title_font_family=\"653\" f_title_font_transform=\"\" f_ex_font_family=\"653\" title_txt=\"#ffffff\" title_txt_hover=\"rgba(255,255,255,0.8)\" ex_txt=\"#ffffff\" cat_txt=\"#ffffff\" cat_bg=\"#ec3535\" cat_bg_hover=\"#000000\" author_txt=\"#000000\" modules_category_padding=\"eyJhbGwiOiI1cHggOHB4IiwicG9ydHJhaXQiOiI0cHggNnB4In0=\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTIifQ==\" f_cat_font_line_height=\"1\" excerpt_middle=\"yes\" cat_txt_hover=\"#ffffff\" modules_gap=\"0\" modules_space=\"0\" modules_height=\"eyJhbGwiOiI2MDAiLCJsYW5kc2NhcGUiOiI1NDAiLCJwb3J0cmFpdCI6IjQ2MCIsInBob25lIjoiNTAwIn0=\" image_margin=\"0\" offset=\"6\" color_overlay=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\" mc2_el=\"26\" modules_category_radius=\"2\" excl_padd=\"5px 8px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\"][/vc_column][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsid2lkdGgiOiIyMCUiLCJkaXNwbGF5IjoiIn0sInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiI0MCIsIndpZHRoIjoiMTAwJSIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\"][td_flex_block_1 modules_on_row=\"\" limit=\"2\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"eyJwb3J0cmFpdCI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTMiLCJsYW5kc2NhcGUiOiIxNCJ9\" f_title_font_line_height=\"1.3\" show_cat=\"\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIxNnB4IDMwcHggMCAwIiwibGFuZHNjYXBlIjoiMTRweCAwIDAgMCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9\" modules_divider=\"\" image_size=\"\" meta_info_align=\"\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"600\" image_height=\"eyJhbGwiOiI3MiIsImxhbmRzY2FwZSI6Ijg1IiwicG9ydHJhaXQiOiI5MCJ9\" all_modules_space=\"eyJhbGwiOiIyMCIsInBob25lIjoiMzAiLCJwb3J0cmFpdCI6IjE2In0=\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiI4cHggMCAwIDAiLCJsYW5kc2NhcGUiOiI2cHggMCAwIDAiLCJwb3J0cmFpdCI6IjRweCAwIDAgMCJ9\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"none\" show_author=\"none\" mc1_el=\"10\" f_title_font_family=\"456\" f_title_font_transform=\"\" title_txt=\"#000000\" title_txt_hover=\"#f43f3f\" cat_txt=\"#000000\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" modules_category_padding=\"0\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIn0=\" f_cat_font_line_height=\"1\" modules_gap=\"0\" modules_category_margin=\"0\" modules_cat_border=\"0\" modules_category_radius=\"undefined\" f_cat_font_style=\"undefined\" f_cat_font_spacing=\"-0.5\" cat_txt_hover=\"#ec3535\" offset=\"12\" excl_padd=\"3px 5px\" excl_radius=\"2\" f_excl_font_family=\"653\" f_excl_font_transform=\"uppercase\" f_excl_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_weight=\"500\" f_excl_font_line_height=\"1\" f_excl_font_spacing=\"-0.5\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" excl_margin=\"-4px 5px 0 0\"][/vc_column][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0xMCIsIndpZHRoIjoiMjAlIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLXRvcCI6Ii0yIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwaG9uZSI6eyJ3aWR0aCI6IjEwMCUiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][tdm_block_column_title title_text=\"UG9wdWxhcg==\" title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"653\" tds_title1-f_title_font_weight=\"700\" tds_title1-f_title_font_size=\"eyJhbGwiOiIzMiIsImxhbmRzY2FwZSI6IjI2IiwicG9ydHJhaXQiOiIyMCJ9\" tds_title1-title_color=\"#000000\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" tds_title1-f_title_font_spacing=\"-1\" tds_title1-f_title_font_line_height=\"1\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" flex_layout=\"eyJhbGwiOiJyb3ciLCJwaG9uZSI6ImNvbHVtbiJ9\" flex_vert_align=\"center\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiMCIsIm1hcmdpbi1ib3R0b20iOiI0MCIsIm1hcmdpbi1sZWZ0IjoiMCIsImJvcmRlci10b3Atd2lkdGgiOiIxIiwiYm9yZGVyLWJvdHRvbS13aWR0aCI6IjEiLCJwYWRkaW5nLXRvcCI6IjMiLCJib3JkZXItY29sb3IiOiIjZWFlYWVhIiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNzAiLCJwYWRkaW5nLXRvcCI6IjEwIiwicGFkZGluZy1ib3R0b20iOiIxMCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3NjcsImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi1ib3R0b20iOiIzMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=\" stretch_off=\"yes\"][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsid2lkdGgiOiIyNSUiLCJkaXNwbGF5IjoiIn0sInBob25lIjp7IndpZHRoIjoiMTAwJSIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\"][tdm_block_column_title title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"653\" tds_title1-f_title_font_weight=\"600\" tds_title1-f_title_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" tds_title1-title_color=\"#000000\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWxlZnQiOiItMjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi1sZWZ0IjoiMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLWxlZnQiOiIwIiwiY29udGVudC1oLWFsaWduIjoiY29udGVudC1ob3Jpei1jZW50ZXIiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" tds_title1-f_title_font_line_height=\"1.2\" tds_title1-f_title_font_transform=\"uppercase\" title_text=\"Sm9pbiUyMG9yJTIwc29jaWFsJTIwbWVkaWE=\"][/vc_column][vc_column width=\"1/2\" tdc_css=\"eyJhbGwiOnsid2lkdGgiOiI1MCUiLCJkaXNwbGF5IjoiIn0sInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiI4Iiwid2lkdGgiOiIxMDAlIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\"][tdm_block_column_title title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"456\" tds_title1-f_title_font_weight=\"700\" tds_title1-f_title_font_size=\"eyJhbGwiOiIyMCIsInBvcnRyYWl0IjoiMTgifQ==\" tds_title1-title_color=\"#000000\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7IndpZHRoIjoiMTAwJSIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" tds_title1-f_title_font_line_height=\"1.2\" title_text=\"Rm9yJTIwZXZlbiUyMG1vcmUlMjBleGNsdXNpdmUlMjBjb250ZW50IQ==\" content_align_horizontal=\"content-horiz-center\"][/vc_column][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsid2lkdGgiOiIyNSUiLCJkaXNwbGF5IjoiIn0sInBob25lIjp7IndpZHRoIjoiMTAwJSIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\"][tdm_block_socials facebook=\"#\" twitter=\"#\" instagram=\"#\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiLTIwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJtYXJnaW4tcmlnaHQiOiIwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJtYXJnaW4tcmlnaHQiOiIwIiwiY29udGVudC1oLWFsaWduIjoiY29udGVudC1ob3Jpei1jZW50ZXIiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" content_align_horizontal=\"content-horiz-right\" icons_padding=\"2\" icons_spacing=\"6\" tds_social1-icons_color=\"#ec3535\" tds_social1-icons_hover_color=\"#000000\" icons_size=\"eyJhbGwiOjE0LCJwb3J0cmFpdCI6IjEyIn0=\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiMCIsIm1hcmdpbi1ib3R0b20iOiI2MCIsIm1hcmdpbi1sZWZ0IjoiMCIsInBhZGRpbmctdG9wIjoiMjQiLCJwYWRkaW5nLWJvdHRvbSI6IjI0IiwiYmFja2dyb3VuZC1jb2xvciI6IiNmN2Y3ZjciLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJwYWRkaW5nLXRvcCI6IjIwIiwicGFkZGluZy1ib3R0b20iOiIyMCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwicGFkZGluZy10b3AiOiIxNSIsInBhZGRpbmctYm90dG9tIjoiMTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7InBhZGRpbmctdG9wIjoiMTUiLCJwYWRkaW5nLWJvdHRvbSI6IjE1IiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" stretch_off=\"yes\"][vc_column][vc_row_inner absolute_position=\"yes\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0zMiIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsibWFyZ2luLXRvcCI6Ii0yMiIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwibGFuZHNjYXBlIjp7Im1hcmdpbi10b3AiOiItMjgiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\"][vc_column_inner][tdm_block_inline_text description=\"QnJlYWtpbmc=\" display_inline=\"yes\" f_descr_font_family=\"456\" f_descr_font_size=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE4IiwicG9ydHJhaXQiOiIxNiJ9\" f_descr_font_weight=\"700\" f_descr_font_style=\"italic\" description_color=\"#ffffff\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWxlZnQiOiIyMCIsInBhZGRpbmctdG9wIjoiOCIsInBhZGRpbmctcmlnaHQiOiIxNiIsInBhZGRpbmctYm90dG9tIjoiMTAiLCJwYWRkaW5nLWxlZnQiOiIxNCIsImJhY2tncm91bmQtY29sb3IiOiIjZWMzNTM1Iiwiei1pbmRleCI6IjEiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJwYWRkaW5nLXRvcCI6IjYiLCJwYWRkaW5nLXJpZ2h0IjoiMTQiLCJwYWRkaW5nLWJvdHRvbSI6IjgiLCJwYWRkaW5nLWxlZnQiOiIxMiIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsibWFyZ2luLWxlZnQiOiIxNSIsInBhZGRpbmctdG9wIjoiNCIsInBhZGRpbmctcmlnaHQiOiIxMiIsInBhZGRpbmctYm90dG9tIjoiNiIsInBhZGRpbmctbGVmdCI6IjEwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" f_descr_font_spacing=\"0.5\"][/vc_column_inner][/vc_row_inner][td_block_big_grid_flex_1 grid_layout=\"4\" image_height=\"120\" image_zoom=\"yes\" meta_info_vert=\"content-vert-bottom\" modules_category=\"above\" overlay_general=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwKSIsInBlcmNlbnRhZ2UiOjQxfV0sImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMCkgNDElLHJnYmEoMCwwLDAsMCkpO2JhY2tncm91bmQ6IGxpbmVhci1ncmFkaWVudCgwZGVnLHJnYmEoMCwwLDAsMC44KSxyZ2JhKDAsMCwwLDApIDQxJSxyZ2JhKDAsMCwwLDApKTsiLCJjc3NQYXJhbXMiOiIwZGVnLHJnYmEoMCwwLDAsMC44KSxyZ2JhKDAsMCwwLDApIDQxJSxyZ2JhKDAsMCwwLDApIn0=\" cat_bg_hover=\"#ec3535\" review_stars=\"#fff\" f_title_font_size=\"eyJwb3J0cmFpdCI6IjE0IiwiYWxsIjoiMjIiLCJwaG9uZSI6IjI0IiwibGFuZHNjYXBlIjoiMTYifQ==\" f_title_font_line_height=\"1.1\" modules_gap=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjEwIiwicG9ydHJhaXQiOiI1In0=\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjIyIiwiYm9yZGVyLWJvdHRvbS13aWR0aCI6IjEiLCJwYWRkaW5nLWJvdHRvbSI6IjIyIiwiYm9yZGVyLWNvbG9yIjoiI2RkZGRkZCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi1ib3R0b20iOiIxOCIsInBhZGRpbmctYm90dG9tIjoiMTgiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi1ib3R0b20iOiIxNSIsInBhZGRpbmctYm90dG9tIjoiMTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImJvcmRlci1ib3R0b20td2lkdGgiOiIwIiwicGFkZGluZy1ib3R0b20iOiIwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" meta_padding=\"eyJhbGwiOiIwIDE1cHggMTVweCAyMHB4IiwibGFuZHNjYXBlIjoiMCAxMHB4IDEwcHggMTJweCIsInBvcnRyYWl0IjoiMCA4cHggOHB4IDEwcHgifQ==\" f_title_font_family=\"653\" f_title_font_weight=\"700\" art_title=\"eyJhbGwiOiIxMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiNnB4IDAgMCAwIiwicG9ydHJhaXQiOiI0cHggMCAwIDAifQ==\" modules_category_padding=\"eyJhbGwiOiI0cHggOHB4IiwibGFuZHNjYXBlIjoiM3B4IDZweCJ9\" show_author=\"none\" show_date=\"none\" f_cat_font_family=\"653\" f_cat_font_transform=\"uppercase\" f_cat_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTEifQ==\" f_cat_font_line_height=\"1.2\" f_cat_font_weight=\"600\" title_txt=\"#ffffff\" title_txt_hover=\"#ffffff\" all_underline_color=\"\" title_shadow=\"yes\" cat_bg=\"#ec3535\" cat_txt=\"#ffffff\" cat_txt_hover=\"#ffffff\" post_ids=\"\" modules_category_radius=\"2\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\"][vc_column width=\"3/4\" tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI1IiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNjAiLCJwYWRkaW5nLXRvcCI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJwYWRkaW5nLXRvcCI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\"][td_flex_block_1 modules_on_row=\"eyJwaG9uZSI6IjEwMCUifQ==\" modules_category=\"\" show_btn=\"none\" show_excerpt=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiIzMCIsImxhbmRzY2FwZSI6IjI0IiwicG9ydHJhaXQiOiIyMCIsInBob25lIjoiMjQifQ==\" f_title_font_line_height=\"1.1\" show_cat=\"\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIwIDAgMCAzMHB4IiwibGFuZHNjYXBlIjoiMCAwIDAgMjBweCIsInBvcnRyYWl0IjoiMCAwIDAgMTVweCIsInBob25lIjoiMjBweCAwIDAgMCJ9\" modules_divider=\"\" image_size=\"\" meta_info_align=\"center\" image_floated=\"eyJhbGwiOiJmbG9hdF9sZWZ0IiwicGhvbmUiOiJub19mbG9hdCJ9\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjI1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjIwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiI0MCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"600\" image_height=\"70\" all_modules_space=\"eyJwb3J0cmFpdCI6IjE1IiwiYWxsIjoiMzAiLCJsYW5kc2NhcGUiOiIyMCJ9\" art_excerpt=\"eyJhbGwiOiIxMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiNnB4IDAgMCAwIiwicG9ydHJhaXQiOiIwIn0=\" art_title=\"eyJsYW5kc2NhcGUiOiIwIDAgMTBweCAwIiwicG9ydHJhaXQiOiIwIDAgOHB4IDAiLCJhbGwiOiIwIDAgMTJweCAwIn0=\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"\" show_author=\"eyJwb3J0cmFpdCI6Im5vbmUiLCJsYW5kc2NhcGUiOiJub25lIn0=\" f_title_font_family=\"456\" f_title_font_transform=\"\" title_txt=\"#000000\" title_txt_hover=\"#f43f3f\" cat_txt=\"#000000\" cat_bg=\"rgba(255,255,255,0)\" modules_category_padding=\"5px 0\" f_cat_font_family=\"653\" modules_gap=\"eyJhbGwiOiIwIiwicGhvbmUiOiIwIn0=\" modules_category_margin=\"eyJhbGwiOiIwIDEycHggMCAwIiwicG9ydHJhaXQiOiIwIDhweCAwIDAiLCJsYW5kc2NhcGUiOiIwIDEwcHggMCAwIn0=\" modules_cat_border=\"0\" modules_category_radius=\"2\" f_cat_font_style=\"undefined\" columns=\"33.33333333%\" columns_gap=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE1IiwicG9ydHJhaXQiOiIxMCIsInBob25lIjoiMCJ9\" modules_space1=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE1IiwicG9ydHJhaXQiOiIxMiIsInBob25lIjoiMzAifQ==\" hide_image3=\"yes\" image_height1=\"70\" modules_space2=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE2IiwicG9ydHJhaXQiOiIxMCJ9\" meta_padding2=\"0\" art_title1=\"eyJhbGwiOiIwIDAgMTJweCAwIiwibGFuZHNjYXBlIjoiMCAwIDEwcHgiLCJwb3J0cmFpdCI6IjAgMCA4cHgifQ==\" art_title2=\"eyJhbGwiOiIwIDAgOHB4IDAiLCJwb3J0cmFpdCI6IjAiLCJsYW5kc2NhcGUiOiIwIDAgNnB4IDAifQ==\" f_title1_font_family=\"456\" f_title2_font_family=\"653\" f_title1_font_size=\"eyJhbGwiOiIyNiIsImxhbmRzY2FwZSI6IjE5IiwicG9ydHJhaXQiOiIxNyJ9\" f_title1_font_line_height=\"1.1\" f_title1_font_style=\"undefined\" f_title2_font_style=\"undefined\" f_title1_font_weight=\"600\" f_title2_font_weight=\"600\" f_title1_font_transform=\"\" f_title2_font_transform=\"\" title_txt2=\"#000000\" title_txt_hover2=\"#f43f3f\" show_excerpt2=\"none\" show_com2=\"none\" show_date2=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" show_author2=\"none\" modules_category3=\"\" modules_category_margin1=\"0\" modules_category_margin2=\"0\" modules_category_padding1=\"0\" modules_category_padding2=\"0\" modules_cat_border1=\"0\" modules_cat_border2=\"0\" cat_bg2=\"rgba(255,255,255,0)\" cat_txt2=\"#ec3535\" author_photo_radius1=\"100%\" author_photo_radius2=\"100%\" review_size2=\"eyJhbGwiOiIyLjUiLCJwb3J0cmFpdCI6IjAifQ==\" f_meta1_font_family=\"653\" f_meta2_font_family=\"653\" f_meta1_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta1_font_line_height=\"1\" f_meta1_font_style=\"undefined\" f_meta2_font_style=\"undefined\" f_meta1_font_weight=\"500\" f_meta2_font_weight=\"500\" f_meta1_font_transform=\"capitalize\" f_meta2_font_transform=\"capitalize\" f_meta1_font_spacing=\"-0.5\" meta_info_align1=\"\" meta_padding1=\"eyJhbGwiOiIyMHB4IDAiLCJsYW5kc2NhcGUiOiIxNXB4IDAiLCJwb3J0cmFpdCI6IjEycHggMCIsInBob25lIjoiMjBweCAwIDAifQ==\" show_author1=\"eyJsYW5kc2NhcGUiOiJub25lIiwicG9ydHJhaXQiOiJub25lIn0=\" show_com1=\"none\" show_excerpt1=\"none\" modules_border_size1=\"eyJhbGwiOiIwIDAgMXB4IDAiLCJwaG9uZSI6IjAifQ==\" show_cat1=\"none\" show_cat2=\"none\" author_photo=\"yes\" f_title2_font_size=\"eyJhbGwiOiIxNiIsImxhbmRzY2FwZSI6IjE1IiwicG9ydHJhaXQiOiIxMyJ9\" f_title2_font_line_height=\"1.2\" f_meta2_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta2_font_line_height=\"1\" f_meta2_font_spacing=\"-0.5\" all_underline_color1=\"\" author_txt=\"#000000\" author_txt_hover=\"#ec3535\" date_txt=\"#000000\" all_underline_color2=\"\" date_txt2=\"#000000\" cat_bg_hover=\"rgba(255,255,255,0)\" author_photo_radius=\"100%\" review_size=\"eyJhbGwiOiIyLjUiLCJwb3J0cmFpdCI6IjAifQ==\" f_meta_font_family=\"653\" f_meta_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta_font_line_height=\"1\" f_meta_font_style=\"undefined\" f_meta_font_weight=\"500\" f_meta_font_transform=\"capitalize\" f_meta_font_spacing=\"-0.5\" image_width=\"eyJhbGwiOiI1MCIsInBob25lIjoiMTAwIn0=\" f_title_font_style=\"undefined\" excl_margin=\"eyJhbGwiOiItNHB4IDEwcHggMCAwIiwicG9ydHJhaXQiOiItMnB4IDhweCAwIDAifQ==\" excl_padd=\"4px 6px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTEiLCJsYW5kc2NhcGUiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" f_ex_font_family=\"653\" f_ex_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTQiLCJsYW5kc2NhcGUiOiIxNSIsInBob25lIjoiMTUifQ==\" f_ex_font_line_height=\"1.4\" f_ex_font_style=\"undefined\" f_ex_font_weight=\"500\" f_ex_font_transform=\"undefined\" f_ex_font_spacing=\"undefined\" ex_txt=\"#000000\" f_cat_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTIifQ==\" f_cat_font_line_height=\"1\" f_cat_font_spacing=\"undefined\" cat_txt_hover=\"#ec3535\" limit=\"1\"][vc_row_inner flex_layout=\"block\" flex_vert_align=\"flex-start\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiMCIsIm1hcmdpbi1ib3R0b20iOiI0MCIsIm1hcmdpbi1sZWZ0IjoiMCIsImJvcmRlci1ib3R0b20td2lkdGgiOiIzIiwicGFkZGluZy1ib3R0b20iOiIxNSIsImJvcmRlci1jb2xvciI6IiNlYzM1MzUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJwYWRkaW5nLWJvdHRvbSI6IjEyIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMjUiLCJwYWRkaW5nLWJvdHRvbSI6IjEwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][vc_column_inner flex_layout=\"row\" flex_vert_align=\"center\"][td_flex_block_1 modules_on_row=\"33.33333333%\" limit=\"3\" hide_audio=\"yes\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" is_sticky=\"yes\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjY1IiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiNDUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiNDUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\"][vc_column width=\"1/1\" tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI1IiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJwYWRkaW5nLXRvcCI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJwYWRkaW5nLXRvcCI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\"][vc_column][td_flex_block_2 modules_on_row=\"\" limit=\"1\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"none\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiIyMCIsInBvcnRyYWl0IjoiMTYiLCJwaG9uZSI6IjMwIiwibGFuZHNjYXBlIjoiMTgifQ==\" f_title_font_line_height=\"1\" show_cat=\"none\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIwIDE1cHggMjBweCAxOHB4IiwibGFuZHNjYXBlIjoiMCAxMHB4IDE1cHggMTJweCIsInBvcnRyYWl0IjoiMCA1cHggMTVweCAxMHB4IiwicGhvbmUiOiIwIDIwcHggMjBweCJ9\" modules_divider=\"\" image_size=\"td_696x0\" meta_info_align=\"bottom\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0yNCIsIm1hcmdpbi1ib3R0b20iOiIzMCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi10b3AiOiItMjAiLCJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi10b3AiOiItMTYiLCJtYXJnaW4tYm90dG9tIjoiMTYiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"700\" image_height=\"eyJhbGwiOiIxMDAiLCJwb3J0cmFpdCI6IjE0MCJ9\" all_modules_space=\"0\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiIxNnB4IDAgMTJweCAwIiwibGFuZHNjYXBlIjoiMTJweCAwIDhweCAwIiwicG9ydHJhaXQiOiIxMHB4IDAgNnB4IDAiLCJwaG9uZSI6IjEycHggMCAxMHB4IDAifQ==\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"\" show_author=\"eyJsYW5kc2NhcGUiOiJub25lIiwicG9ydHJhaXQiOiJub25lIn0=\" mc1_el=\"10\" f_title_font_family=\"653\" f_title_font_transform=\"\" title_txt=\"#ffffff\" title_txt_hover=\"rgba(255,255,255,0.8)\" ex_txt=\"#ffffff\" cat_txt=\"#ffffff\" cat_bg=\"#ec3535\" cat_bg_hover=\"#000000\" author_txt=\"#ffffff\" modules_category_padding=\"eyJhbGwiOiI1cHggOHB4IiwicG9ydHJhaXQiOiI0cHggNnB4In0=\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTIiLCJwaG9uZSI6IjEyIn0=\" f_cat_font_line_height=\"1\" excerpt_middle=\"yes\" cat_txt_hover=\"#ffffff\" modules_gap=\"0\" modules_space=\"0\" modules_height=\"eyJwb3J0cmFpdCI6IjI4MCIsImFsbCI6IjQyMCIsImxhbmRzY2FwZSI6IjM0MCIsInBob25lIjoiNDUwIn0=\" image_margin=\"0\" color_overlay=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\" mc2_el=\"26\" modules_category_radius=\"2\" excl_padd=\"5px 8px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" pag_border_width=\"0\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"20\" pag_border_radius=\"2\" pag_padding=\"0\" excl_show=\"none\" author_txt_hover=\"rgba(255,255,255,0.8)\" date_txt=\"#ffffff\" f_meta_font_family=\"653\" f_meta_font_transform=\"capitalize\" f_meta_font_weight=\"500\" f_meta_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta_font_line_height=\"1.2\" block_template_id=\"td_block_template_2\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiMCIsIm1hcmdpbi1ib3R0b20iOiI2MCIsIm1hcmdpbi1sZWZ0IjoiMCIsInBhZGRpbmctdG9wIjoiMjQiLCJwYWRkaW5nLXJpZ2h0IjoiMTUiLCJwYWRkaW5nLWJvdHRvbSI6IjI0IiwicGFkZGluZy1sZWZ0IjoiMTUiLCJzaGFkb3ctc2l6ZSI6IjIwIiwic2hhZG93LWNvbG9yIjoicmdiYSgwLDAsMCwwLjA5KSIsInNoYWRvdy1vZmZzZXQtdiI6IjQiLCJiYWNrZ3JvdW5kLWNvbG9yIjoiI2ZmZmZmZiIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi1ib3R0b20iOiI0MCIsInBhZGRpbmctdG9wIjoiMjAiLCJwYWRkaW5nLXJpZ2h0IjoiMTAiLCJwYWRkaW5nLWJvdHRvbSI6IjIwIiwicGFkZGluZy1sZWZ0IjoiMTAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi1ib3R0b20iOiI0MCIsInBhZGRpbmctdG9wIjoiMTUiLCJwYWRkaW5nLXJpZ2h0IjoiMTAiLCJwYWRkaW5nLWJvdHRvbSI6IjE1IiwicGFkZGluZy1sZWZ0IjoiMTAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7InBhZGRpbmctdG9wIjoiMTUiLCJwYWRkaW5nLWJvdHRvbSI6IjE1IiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" stretch_off=\"yes\" gap=\"eyJhbGwiOiIxMCIsImxhbmRzY2FwZSI6IjgiLCJwb3J0cmFpdCI6IjUiLCJwaG9uZSI6IjAifQ==\"][vc_column width=\"5\" tdc_css=\"eyJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][vc_row_inner absolute_position=\"yes\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0zMiIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsibWFyZ2luLXRvcCI6Ii0yMiIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwibGFuZHNjYXBlIjp7Im1hcmdpbi10b3AiOiItMjgiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\"][vc_column_inner][/vc_column_inner][/vc_row_inner][td_flex_block_2 modules_on_row=\"\" limit=\"1\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiI0MCIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIzMCIsInBob25lIjoiMzAifQ==\" f_title_font_line_height=\"eyJhbGwiOiIxIiwicG9ydHJhaXQiOiIxLjEifQ==\" show_cat=\"none\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIwIDI1cHggMjVweCIsImxhbmRzY2FwZSI6IjAgMjBweCAyMHB4IiwicG9ydHJhaXQiOiIwIDE1cHggMTVweCIsInBob25lIjoiMCAyMHB4IDIwcHgifQ==\" modules_divider=\"\" image_size=\"td_1068x0\" meta_info_align=\"bottom\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"700\" image_height=\"eyJhbGwiOiIxMDAiLCJwb3J0cmFpdCI6IjE0MCJ9\" all_modules_space=\"0\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiIwIDAgMTJweCAwIiwibGFuZHNjYXBlIjoiMTJweCAwIDEwcHggMCIsInBvcnRyYWl0IjoiMTBweCAwIDZweCAwIiwicGhvbmUiOiIxMnB4IDAgMTBweCAwIn0=\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_ex_font_weight=\"500\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" f_ex_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTQiLCJsYW5kc2NhcGUiOiIxNSIsInBob25lIjoiMTUifQ==\" f_ex_font_line_height=\"1.4\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"none\" show_author=\"none\" mc1_el=\"10\" f_title_font_family=\"653\" f_title_font_transform=\"\" f_ex_font_family=\"653\" title_txt=\"#ffffff\" title_txt_hover=\"rgba(255,255,255,0.8)\" ex_txt=\"#ffffff\" cat_txt=\"#ffffff\" cat_bg=\"#ec3535\" cat_bg_hover=\"#000000\" author_txt=\"#000000\" modules_category_padding=\"eyJhbGwiOiI1cHggOHB4IiwicG9ydHJhaXQiOiI0cHggNnB4In0=\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTIifQ==\" f_cat_font_line_height=\"1\" excerpt_middle=\"yes\" cat_txt_hover=\"#ffffff\" modules_gap=\"0\" modules_space=\"0\" modules_height=\"eyJhbGwiOiI2MDAiLCJwb3J0cmFpdCI6IjQwMCIsInBob25lIjoiNTAwIiwibGFuZHNjYXBlIjoiNTAwIn0=\" image_margin=\"0\" color_overlay=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\" mc2_el=\"26\" modules_category_radius=\"2\" locked_only=\"yes\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" excl_radius=\"2\" excl_padd=\"5px 8px\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" excl_margin=\"-2px 10px 0 0\"][/vc_column][vc_column width=\"7\"][td_flex_block_1 modules_on_row=\"eyJhbGwiOiI1MCUiLCJwaG9uZSI6IjEwMCUifQ==\" limit=\"4\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"eyJwb3J0cmFpdCI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTMiLCJsYW5kc2NhcGUiOiIxNCJ9\" f_title_font_line_height=\"1.3\" show_cat=\"\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIxNnB4IDAgMCAwIiwibGFuZHNjYXBlIjoiMTRweCAwIDAgMCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9\" modules_divider=\"\" image_size=\"\" meta_info_align=\"\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"600\" image_height=\"54\" all_modules_space=\"eyJhbGwiOiIzMCIsInBob25lIjoiMjAiLCJwb3J0cmFpdCI6IjE2IiwibGFuZHNjYXBlIjoiMjAifQ==\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiI4cHggMCAwIDAiLCJsYW5kc2NhcGUiOiI2cHggMCAwIDAiLCJwb3J0cmFpdCI6IjRweCAwIDAgMCJ9\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"none\" show_author=\"none\" mc1_el=\"10\" f_title_font_family=\"456\" f_title_font_transform=\"\" title_txt=\"#000000\" title_txt_hover=\"#f43f3f\" cat_txt=\"#000000\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" modules_category_padding=\"0\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMiJ9\" f_cat_font_line_height=\"1\" modules_gap=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE1IiwicG9ydHJhaXQiOiIxMCIsInBob25lIjoiMCJ9\" modules_category_margin=\"0\" modules_cat_border=\"0\" modules_category_radius=\"undefined\" f_cat_font_style=\"undefined\" f_cat_font_spacing=\"-0.5\" cat_txt_hover=\"#ec3535\" offset=\"1\" locked_only=\"yes\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTEiLCJwaG9uZSI6IjExIiwibGFuZHNjYXBlIjoiMTEifQ==\" f_excl_font_line_height=\"1\" excl_padd=\"4px 6px\" excl_radius=\"2\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_margin=\"-4px 8px 0 0\" post_ids=\"\"][/vc_column][/vc_row][/tdc_zone]'),
(2384, 524, '_wpcode_auto_insert_number', '1'),
(2385, 525, '_wpcode_auto_insert', '1'),
(2386, 525, '_wpcode_library_id', '12'),
(2387, 526, '_wpcode_auto_insert', '1'),
(2388, 526, '_wpcode_auto_insert_number', '1'),
(2389, 526, '_wpcode_conditional_logic_enabled', ''),
(2390, 526, '_wpcode_conditional_logic', 'a:0:{}'),
(2391, 526, '_wpcode_priority', '10'),
(2392, 526, '_wpcode_note', ''),
(2393, 526, '_wpcode_location_extra', ''),
(2394, 526, '_wpcode_shortcode_attributes', 'a:0:{}'),
(2395, 526, '_edit_lock', '1765248168:9467'),
(2400, 85, 'post_views_count', '2'),
(2401, 89, 'post_views_count', '2'),
(2402, 86, 'post_views_count', '2'),
(2403, 92, 'post_views_count', '2'),
(2404, 90, 'post_views_count', '1'),
(2405, 91, 'post_views_count', '1'),
(2406, 87, 'post_views_count', '3'),
(2407, 88, 'post_views_count', '2'),
(921, 189, '_edit_lock', '1653892073:1'),
(922, 189, 'tdc_dirty_content', '1'),
(923, 189, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(924, 190, '_wp_attached_file', '2022/05/content-pixie-WdJ4WnLxyDs-unsplash.jpg'),
(925, 190, '_wp_attachment_metadata', 'a:8:{s:5:\"width\";i:1600;s:6:\"height\";d:1067;s:4:\"file\";s:46:\"2022/05/content-pixie-WdJ4WnLxyDs-unsplash.jpg\";s:8:\"filesize\";i:102257;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"content-pixie-WdJ4WnLxyDs-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4609;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"content-pixie-WdJ4WnLxyDs-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23749;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"content-pixie-WdJ4WnLxyDs-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2533;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"content-pixie-WdJ4WnLxyDs-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15271;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"content-pixie-WdJ4WnLxyDs-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49491;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:46:\"content-pixie-WdJ4WnLxyDs-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2354;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:46:\"content-pixie-WdJ4WnLxyDs-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3372;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:46:\"content-pixie-WdJ4WnLxyDs-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4609;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:46:\"content-pixie-WdJ4WnLxyDs-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5858;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:46:\"content-pixie-WdJ4WnLxyDs-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8338;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:46:\"content-pixie-WdJ4WnLxyDs-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13164;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:47:\"content-pixie-WdJ4WnLxyDs-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25492;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:9:\"old_width\";i:1920;s:10:\"old_height\";i:1280;}'),
(935, 193, 'tdc_dirty_content', '1'),
(928, 189, '_thumbnail_id', '190'),
(934, 193, '_edit_lock', '1654670262:1'),
(932, 189, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(933, 189, 'post_views_count', '298'),
(936, 193, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(937, 194, '_wp_attached_file', '2022/06/olieman-eth-w9coDxtsfts-unsplash.jpg');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(938, 194, '_wp_attachment_metadata', 'a:8:{s:5:\"width\";i:1600;s:6:\"height\";d:1068;s:4:\"file\";s:44:\"2022/06/olieman-eth-w9coDxtsfts-unsplash.jpg\";s:8:\"filesize\";i:366677;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"olieman-eth-w9coDxtsfts-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9840;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"olieman-eth-w9coDxtsfts-unsplash-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73162;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"olieman-eth-w9coDxtsfts-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4410;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"olieman-eth-w9coDxtsfts-unsplash-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42723;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"olieman-eth-w9coDxtsfts-unsplash-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161901;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:44:\"olieman-eth-w9coDxtsfts-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4055;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:44:\"olieman-eth-w9coDxtsfts-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6599;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:44:\"olieman-eth-w9coDxtsfts-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9784;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:44:\"olieman-eth-w9coDxtsfts-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14746;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:44:\"olieman-eth-w9coDxtsfts-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21002;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:44:\"olieman-eth-w9coDxtsfts-unsplash-696x465.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35873;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:45:\"olieman-eth-w9coDxtsfts-unsplash-1068x713.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79953;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:9:\"old_width\";i:1920;s:10:\"old_height\";i:1282;}'),
(942, 193, '_edit_last', '1'),
(941, 193, '_thumbnail_id', '194'),
(948, 196, '_edit_lock', '1654672013:1'),
(947, 193, 'post_views_count', '313'),
(946, 193, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(949, 196, 'tdc_dirty_content', '1'),
(950, 196, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(951, 197, '_wp_attached_file', '2022/06/tim-b-motivv-OYvjvIANSD0-unsplash.jpg'),
(952, 197, '_wp_attachment_metadata', 'a:8:{s:5:\"width\";i:1600;s:6:\"height\";d:1068;s:4:\"file\";s:45:\"2022/06/tim-b-motivv-OYvjvIANSD0-unsplash.jpg\";s:8:\"filesize\";i:369958;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"tim-b-motivv-OYvjvIANSD0-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12459;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"tim-b-motivv-OYvjvIANSD0-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96470;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"tim-b-motivv-OYvjvIANSD0-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5980;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"tim-b-motivv-OYvjvIANSD0-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59088;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"tim-b-motivv-OYvjvIANSD0-unsplash-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190406;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:45:\"tim-b-motivv-OYvjvIANSD0-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4300;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:45:\"tim-b-motivv-OYvjvIANSD0-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7766;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:45:\"tim-b-motivv-OYvjvIANSD0-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12462;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:45:\"tim-b-motivv-OYvjvIANSD0-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24909;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:45:\"tim-b-motivv-OYvjvIANSD0-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30467;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:45:\"tim-b-motivv-OYvjvIANSD0-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50313;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:46:\"tim-b-motivv-OYvjvIANSD0-unsplash-1068x713.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103938;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:9:\"old_width\";i:1920;s:10:\"old_height\";i:1281;}'),
(956, 196, '_edit_last', '1'),
(955, 196, '_thumbnail_id', '197'),
(1079, 229, 'post_views_count', '299'),
(970, 201, '_edit_last', '1'),
(960, 196, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(961, 196, 'post_views_count', '268'),
(962, 201, '_edit_lock', '1658473886:1'),
(963, 201, 'tdc_dirty_content', '1'),
(964, 201, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(976, 204, '_wp_attached_file', '2022/07/dollar-gill-tuK5YKAlxWo-unsplash.jpg'),
(977, 204, '_wp_attachment_metadata', 'a:8:{s:5:\"width\";i:1600;s:6:\"height\";d:1067;s:4:\"file\";s:44:\"2022/07/dollar-gill-tuK5YKAlxWo-unsplash.jpg\";s:8:\"filesize\";i:445614;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"dollar-gill-tuK5YKAlxWo-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15005;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"dollar-gill-tuK5YKAlxWo-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131779;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"dollar-gill-tuK5YKAlxWo-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6483;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"dollar-gill-tuK5YKAlxWo-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79635;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"dollar-gill-tuK5YKAlxWo-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:256182;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:44:\"dollar-gill-tuK5YKAlxWo-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4773;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:44:\"dollar-gill-tuK5YKAlxWo-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8978;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:44:\"dollar-gill-tuK5YKAlxWo-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15005;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:44:\"dollar-gill-tuK5YKAlxWo-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28223;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:44:\"dollar-gill-tuK5YKAlxWo-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38907;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:44:\"dollar-gill-tuK5YKAlxWo-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67164;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:45:\"dollar-gill-tuK5YKAlxWo-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141613;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:9:\"old_width\";i:1920;s:10:\"old_height\";i:1280;}'),
(978, 201, '_thumbnail_id', '204'),
(974, 201, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(975, 201, 'post_views_count', '264'),
(986, 205, 'tdc_dirty_content', '1'),
(987, 205, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(988, 206, 'tdc_dirty_content', '1'),
(989, 206, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(990, 207, 'tdc_dirty_content', '1'),
(991, 207, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(992, 205, '_wp_old_slug', '1_email_1'),
(993, 208, '_edit_lock', '1658833606:1'),
(994, 208, 'tdc_dirty_content', '1'),
(995, 208, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(996, 208, 'tdc_google_fonts_settings', 'a:1:{s:7:\"DEFAULT\";a:1:{i:0;s:3:\"600\";}}'),
(997, 208, '_edit_last', '1'),
(998, 208, 'td_homepage_loop', 'a:2:{s:5:\"limit\";s:2:\"10\";s:16:\"time_ago_add_txt\";s:3:\"ago\";}'),
(999, 210, '_wp_attached_file', '2022/07/cathryn-lavery-fMD_Cru6OTk-unsplash-1.jpg'),
(1000, 210, '_wp_attachment_metadata', 'a:8:{s:5:\"width\";i:1600;s:6:\"height\";d:1067;s:4:\"file\";s:49:\"2022/07/cathryn-lavery-fMD_Cru6OTk-unsplash-1.jpg\";s:8:\"filesize\";i:878059;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"cathryn-lavery-fMD_Cru6OTk-unsplash-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12777;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"cathryn-lavery-fMD_Cru6OTk-unsplash-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125363;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"cathryn-lavery-fMD_Cru6OTk-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6015;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"cathryn-lavery-fMD_Cru6OTk-unsplash-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70611;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"cathryn-lavery-fMD_Cru6OTk-unsplash-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:279034;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:51:\"cathryn-lavery-fMD_Cru6OTk-unsplash-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:485238;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:49:\"cathryn-lavery-fMD_Cru6OTk-unsplash-1-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4578;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:49:\"cathryn-lavery-fMD_Cru6OTk-unsplash-1-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7817;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:49:\"cathryn-lavery-fMD_Cru6OTk-unsplash-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12777;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:49:\"cathryn-lavery-fMD_Cru6OTk-unsplash-1-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23568;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:49:\"cathryn-lavery-fMD_Cru6OTk-unsplash-1-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32924;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:49:\"cathryn-lavery-fMD_Cru6OTk-unsplash-1-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58476;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:50:\"cathryn-lavery-fMD_Cru6OTk-unsplash-1-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136381;}s:9:\"td_1920x0\";a:5:{s:4:\"file\";s:51:\"cathryn-lavery-fMD_Cru6OTk-unsplash-1-1920x1280.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:427810;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:9:\"old_width\";i:2400;s:10:\"old_height\";i:1600;}'),
(1001, 208, 'tdc_content', '[tdc_zone type=\"tdc_content\"][vc_row][vc_column][vc_single_image media_size_image_height=\"200\" media_size_image_width=\"300\" image=\"210\" height=\"700\"][/vc_column][/vc_row][vc_row][vc_column][tdm_block_inline_text description=\"MSklMjBBbiUyMHVuaXF1ZSUyMHBpZWNlJTIwb2YlMjB3cml0aW5nJTIwaXMlMjByZXF1aXJlZCUyMGZvciUyMGElMjBndWVzdCUyMHBvc3QuJTNDYnIlM0UlMEEyKSUyMEluY2x1ZGVzJTIwdHdvJTIwcGhvdG9zJTIwYW5kJTIwYSUyMG1pbmltdW0lMjBvZiUyMDUwMCUyMHdvcmRzLiUyME9uZSUyMGRvLWZvbGxvdyUyMGxpbmslMjBpcyUyMHByb3ZpZGVkJTIwYnklMjBvbmxpbmVpbmNzaG9wLiUzQ2JyJTNFJTBBMyklMjBEdWJhaSUyQyUyMEFidSUyMERoYWJpJTJDJTIwYW5kJTIwU2hhcmphaCUyMHBvc3RzJTIwYXJlJTIwd2VsY29tZSUyMHdpdGglMjBlbnRodXNpYXNtLiUzQ2JyJTNFJTBBJTBBNCklMjBZb3UlMjBzaG91bGQlMjBnaXZlJTIwdXBkYXRlcyUyMG9uJTIwZGlnaXRhbCUyMG1hcmtldGluZyUyMGFuZCUyMFNFTy4lMjA1LiUyMExpbmtzJTIwdG8lMjB3ZWJzaXRlcyUyMHdpdGglMjBzcGFtJTIwYXJlJTIwbm90JTIwYWxsb3dlZC4=\" display_inline=\"yes\" f_descr_font_weight=\"600\" f_descr_font_size=\"18\"][/vc_column][/vc_row][vc_row][/vc_row][/tdc_zone]'),
(1002, 208, '_wpb_vc_js_status', ''),
(1010, 95, '_wp_old_date', '2022-02-22'),
(1011, 95, 'td_mega_menu_cat', ''),
(1012, 95, 'td_mega_menu_page_id', ''),
(1022, 95, '_wp_old_date', '2022-07-25'),
(1096, 245, '_wp_attached_file', '2022/11/florian-wehde-WBGjg0DsO_g-unsplash.jpg'),
(1094, 244, 'tdc_dirty_content', '1'),
(1095, 244, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1034, 95, '_wp_old_date', '2022-07-26'),
(1035, 228, 'tdc_dirty_content', '1'),
(1036, 228, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1037, 228, '_menu_item_type', 'custom'),
(1038, 228, '_menu_item_menu_item_parent', '0'),
(1039, 228, '_menu_item_object_id', '228'),
(1040, 228, '_menu_item_object', 'custom'),
(1041, 228, '_menu_item_target', ''),
(1042, 228, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(1043, 228, '_menu_item_xfn', ''),
(1044, 228, '_menu_item_url', 'https://onlineincshop.com/contact-us/'),
(1064, 228, 'td_mega_menu_cat', ''),
(1046, 98, '_wp_old_date', '2022-02-22'),
(1047, 98, 'td_mega_menu_page_id', ''),
(1048, 99, '_wp_old_date', '2022-02-22'),
(1049, 99, 'td_mega_menu_page_id', ''),
(1050, 100, '_wp_old_date', '2022-02-22'),
(1051, 100, 'td_mega_menu_page_id', ''),
(1052, 101, '_wp_old_date', '2022-02-22'),
(1053, 101, 'td_mega_menu_page_id', ''),
(1054, 102, '_wp_old_date', '2022-02-22'),
(1055, 102, 'td_mega_menu_page_id', ''),
(1056, 103, '_wp_old_date', '2022-02-22'),
(1057, 103, 'td_mega_menu_page_id', ''),
(1058, 104, '_wp_old_date', '2022-02-22'),
(1059, 104, 'td_mega_menu_page_id', ''),
(1060, 105, '_wp_old_date', '2022-02-22'),
(1061, 105, 'td_mega_menu_page_id', ''),
(1062, 106, '_wp_old_date', '2022-02-22'),
(1063, 106, 'td_mega_menu_page_id', ''),
(1065, 228, 'td_mega_menu_page_id', ''),
(1066, 229, '_edit_lock', '1658915459:1'),
(1067, 230, '_wp_attached_file', '2022/07/crystalweed-cannabis-Qd37vTyByBs-unsplash.jpg'),
(1068, 230, '_wp_attachment_metadata', 'a:8:{s:5:\"width\";i:1600;s:6:\"height\";d:1067;s:4:\"file\";s:53:\"2022/07/crystalweed-cannabis-Qd37vTyByBs-unsplash.jpg\";s:8:\"filesize\";i:88921;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"crystalweed-cannabis-Qd37vTyByBs-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5939;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"crystalweed-cannabis-Qd37vTyByBs-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30373;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"crystalweed-cannabis-Qd37vTyByBs-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3553;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"crystalweed-cannabis-Qd37vTyByBs-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20030;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:55:\"crystalweed-cannabis-Qd37vTyByBs-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54964;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:53:\"crystalweed-cannabis-Qd37vTyByBs-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2814;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:53:\"crystalweed-cannabis-Qd37vTyByBs-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4270;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:53:\"crystalweed-cannabis-Qd37vTyByBs-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5939;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:53:\"crystalweed-cannabis-Qd37vTyByBs-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10431;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:53:\"crystalweed-cannabis-Qd37vTyByBs-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11809;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:53:\"crystalweed-cannabis-Qd37vTyByBs-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17607;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:54:\"crystalweed-cannabis-Qd37vTyByBs-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32297;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:9:\"old_width\";i:1920;s:10:\"old_height\";i:1280;}'),
(1074, 229, '_edit_last', '1'),
(1071, 229, 'tdc_dirty_content', '1'),
(1072, 229, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1073, 229, '_thumbnail_id', '230'),
(1101, 244, '_edit_last', '1'),
(1105, 244, 'post_views_count', '231'),
(1078, 229, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1080, 207, '_wp_old_slug', '2_email_'),
(643, 92, 'tdc_footer_template_id', '92'),
(443, 84, 'tdb_template_type', 'header'),
(444, 84, 'td_demo_content', '1'),
(445, 84, 'tdc_dirty_content', '0'),
(446, 84, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(447, 84, 'tdc_google_fonts_settings', 'a:3:{i:456;a:1:{i:0;s:3:\"700\";}i:653;a:3:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"400\";}s:7:\"DEFAULT\";a:2:{i:0;s:3:\"400\";i:1;s:3:\"600\";}}'),
(1085, 86, 'tdc_content', '[tdc_zone type=\"tdc_content\"][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjE4MCIsInBhZGRpbmctdG9wIjoiNjAiLCJiYWNrZ3JvdW5kLWNvbG9yIjoiI2Y0ZjRmNCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjEwMCIsInBhZGRpbmctdG9wIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiMTQwIiwicGFkZGluZy10b3AiOiI1MCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwicGFkZGluZy10b3AiOiI1MCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\"][vc_column tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6Ii0xMDAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiLTgwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiLTYwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiLTgwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\"][tdb_title content_align_horizontal=\"content-horiz-center\" f_title_font_size=\"eyJhbGwiOiI0MiIsImxhbmRzY2FwZSI6IjM2IiwicGhvbmUiOiIzMCIsInBvcnRyYWl0IjoiMzIifQ==\" f_title_font_line_height=\"1\" f_title_font_weight=\"700\" f_title_font_family=\"456\" f_title_font_transform=\"none\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjMwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjI1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" title_color=\"#000000\"][tdb_category_sibling_categories show_background_color=\"\" content_align_horizontal=\"content-horiz-center\" cat_padding=\"0\" cat_space=\"0 14px 0 0\" cat_border=\"0\" tdb_sibling_categories_limit=\"6\" bg_color=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDI1NSwyNTUsMjU1LDApIiwiY29sb3IyIjoicmdiYSgyNTUsMjU1LDI1NSwwKSIsIm1peGVkQ29sb3JzIjpbXSwiZGVncmVlIjoiLTkwIiwiY3NzIjoiYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyNTUsMjU1LDI1NSwwKTsiLCJjc3NQYXJhbXMiOiIwZGVnLHJnYmEoMjU1LDI1NSwyNTUsMCkscmdiYSgyNTUsMjU1LDI1NSwwKSJ9\" bg_hover_color=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDI1NSwyNTUsMjU1LDApIiwiY29sb3IyIjoicmdiYSgyNTUsMjU1LDI1NSwwKSIsIm1peGVkQ29sb3JzIjpbXSwiZGVncmVlIjoiLTkwIiwiY3NzIjoiYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyNTUsMjU1LDI1NSwwKTsiLCJjc3NQYXJhbXMiOiIwZGVnLHJnYmEoMjU1LDI1NSwyNTUsMCkscmdiYSgyNTUsMjU1LDI1NSwwKSJ9\" active_bg_color=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDI1NSwyNTUsMjU1LDApIiwiY29sb3IyIjoicmdiYSgyNTUsMjU1LDI1NSwwKSIsIm1peGVkQ29sb3JzIjpbXSwiZGVncmVlIjoiLTkwIiwiY3NzIjoiYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyNTUsMjU1LDI1NSwwKTsiLCJjc3NQYXJhbXMiOiIwZGVnLHJnYmEoMjU1LDI1NSwyNTUsMCkscmdiYSgyNTUsMjU1LDI1NSwwKSJ9\" text_color=\"#000000\" text_hover_color=\"#ec3535\" active_color=\"#ec3535\" f_cats_font_family=\"653\" f_list_font_family=\"653\" f_cats_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTMiLCJsYW5kc2NhcGUiOiIxNCIsInBob25lIjoiMTMifQ==\" f_cats_font_line_height=\"1.2\" f_cats_font_weight=\"600\" f_cats_font_transform=\"uppercase\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjUwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiIzMCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" btn_border_size=\"eyJwaG9uZSI6IjAifQ==\" f_list_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTMiLCJsYW5kc2NhcGUiOiIxNCIsInBob25lIjoiMTMifQ==\" f_list_font_transform=\"uppercase\" f_list_font_line_height=\"1.2\" f_list_font_weight=\"600\" btn_icon_align=\"eyJhbGwiOjAsInBob25lIjoiLTMifQ==\" list_border=\"eyJhbGwiOjEsInBob25lIjoiMCJ9\" btn_icon_size=\"eyJhbGwiOjEwLCJwaG9uZSI6IjgifQ==\" btn_txt=\"#ffffff\" btn_h_txt=\"#ffffff\"][td_block_big_grid_flex_1 grid_layout=\"4\" image_height=\"120\" image_zoom=\"yes\" meta_info_vert=\"content-vert-bottom\" modules_category=\"above\" overlay_general=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwKSIsInBlcmNlbnRhZ2UiOjQxfV0sImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMCkgNDElLHJnYmEoMCwwLDAsMCkpO2JhY2tncm91bmQ6IGxpbmVhci1ncmFkaWVudCgwZGVnLHJnYmEoMCwwLDAsMC44KSxyZ2JhKDAsMCwwLDApIDQxJSxyZ2JhKDAsMCwwLDApKTsiLCJjc3NQYXJhbXMiOiIwZGVnLHJnYmEoMCwwLDAsMC44KSxyZ2JhKDAsMCwwLDApIDQxJSxyZ2JhKDAsMCwwLDApIn0=\" cat_bg_hover=\"#ec3535\" review_stars=\"#fff\" f_title_font_size=\"eyJwb3J0cmFpdCI6IjE0IiwiYWxsIjoiMjIiLCJwaG9uZSI6IjI0IiwibGFuZHNjYXBlIjoiMTYifQ==\" f_title_font_line_height=\"1.1\" modules_gap=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjEwIiwicG9ydHJhaXQiOiI1In0=\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJib3JkZXItY29sb3IiOiIjZGRkZGRkIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" meta_padding=\"eyJhbGwiOiIwIDE1cHggMTVweCAyMHB4IiwibGFuZHNjYXBlIjoiMCAxMHB4IDEwcHggMTJweCIsInBvcnRyYWl0IjoiMCA4cHggOHB4IDEwcHgifQ==\" f_title_font_family=\"653\" f_title_font_weight=\"700\" art_title=\"eyJhbGwiOiIxMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiNnB4IDAgMCAwIiwicG9ydHJhaXQiOiI0cHggMCAwIDAifQ==\" modules_category_padding=\"eyJhbGwiOiI0cHggOHB4IiwibGFuZHNjYXBlIjoiM3B4IDZweCJ9\" show_author=\"none\" show_date=\"none\" f_cat_font_family=\"653\" f_cat_font_transform=\"uppercase\" f_cat_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTEifQ==\" f_cat_font_line_height=\"1.2\" f_cat_font_weight=\"600\" title_txt=\"#ffffff\" title_txt_hover=\"#ffffff\" all_underline_color=\"\" title_shadow=\"yes\" cat_bg=\"#ec3535\" cat_txt=\"#ffffff\" cat_txt_hover=\"#ffffff\" modules_category_radius=\"2\" category_id=\"\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjEwMCIsImRpc3BsYXkiOiIifSwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2NywibGFuZHNjYXBlIjp7Im1hcmdpbi1ib3R0b20iOiI4MCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" flex_layout=\"block\" flex_vert_align=\"flex-start\"][vc_column width=\"3/4\" tdc_css=\"eyJsYW5kc2NhcGUiOnsid2lkdGgiOiI3MCUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7IndpZHRoIjoiNzAlIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][tdb_loop modules_on_row=\"\" modules_gap=\"0\" modules_category=\"\" show_excerpt=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" show_btn=\"none\" ajax_pagination=\"numbered\" hide_audio=\"yes\" meta_info_horiz=\"\" hide_image=\"\" image_width=\"eyJhbGwiOiI1MCIsInBob25lIjoiMTAwIn0=\" image_floated=\"eyJhbGwiOiJmbG9hdF9sZWZ0IiwicGhvbmUiOiJub19mbG9hdCJ9\" meta_padding=\"eyJhbGwiOiIwIDAgMCAyNXB4IiwicG9ydHJhaXQiOiIwIDAgMCAxNXB4IiwicGhvbmUiOiIyMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiMCAwIDAgMjBweCJ9\" image_radius=\"\" modules_category_margin=\"eyJhbGwiOiIwIDEycHggMCAwIiwicG9ydHJhaXQiOiIwIDhweCAwIDAiLCJsYW5kc2NhcGUiOiIwIDEwcHggMCAwIn0=\" show_author=\"eyJwb3J0cmFpdCI6ImlubGluZS1ibG9jayJ9\" show_date=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" show_review=\"none\" show_com=\"none\" meta_info_align=\"center\" modules_category_padding=\"5px 0\" art_title=\"eyJsYW5kc2NhcGUiOiIwIDAgMTBweCAwIiwicG9ydHJhaXQiOiIwIDAgOHB4IDAiLCJhbGwiOiIwIDAgMTJweCAwIn0=\" f_title_font_family=\"456\" f_title_font_size=\"eyJhbGwiOiIzMCIsImxhbmRzY2FwZSI6IjI0IiwicG9ydHJhaXQiOiIyMCIsInBob25lIjoiMjQifQ==\" f_title_font_line_height=\"1.1\" f_title_font_weight=\"600\" f_title_font_transform=\"\" title_txt=\"#000000\" title_txt_hover=\"#f43f3f\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTIifQ==\" f_cat_font_line_height=\"1\" f_cat_font_weight=\"600\" f_cat_font_transform=\"uppercase\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" pag_border_width=\"0\" pag_text=\"#000000\" pag_h_text=\"#ffffff\" pag_a_text=\"#ffffff\" pag_bg=\"rgba(255,255,255,0)\" pag_h_bg=\"#ec3535\" pag_a_bg=\"#ec3535\" f_pag_font_family=\"653\" f_pag_font_size=\"13\" limit=\"5\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\" pag_space=\"40\" all_modules_space=\"eyJwaG9uZSI6IjQwIiwiYWxsIjoiNDAiLCJsYW5kc2NhcGUiOiIzMCIsInBvcnRyYWl0IjoiMjAifQ==\" offset=\"4\" show_cat=\"\" image_height=\"70\" f_pag_font_weight=\"500\" art_excerpt=\"eyJhbGwiOiIxMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiNnB4IDAgMCAwIiwicG9ydHJhaXQiOiIwIn0=\" f_ex_font_family=\"653\" f_ex_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTQiLCJsYW5kc2NhcGUiOiIxNSIsInBob25lIjoiMTUifQ==\" f_ex_font_line_height=\"1.4\" f_ex_font_style=\"undefined\" f_ex_font_weight=\"500\" f_ex_font_transform=\"undefined\" f_ex_font_spacing=\"undefined\" ex_txt=\"#000000\" f_title_font_style=\"undefined\" f_title_font_spacing=\"undefined\" author_photo_size=\"undefined\" author_photo_space=\"undefined\" author_photo_radius=\"100%\" review_size=\"eyJhbGwiOiIyLjUiLCJwb3J0cmFpdCI6IjAifQ==\" f_meta_font_family=\"653\" f_meta_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta_font_line_height=\"1\" f_meta_font_style=\"undefined\" f_meta_font_weight=\"500\" f_meta_font_transform=\"capitalize\" f_meta_font_spacing=\"-0.5\" author_txt=\"#000000\" author_txt_hover=\"#ec3535\" f_cat_font_spacing=\"undefined\" modules_cat_border=\"0\" modules_category_radius=\"2\" f_cat_font_style=\"undefined\" cat_txt=\"#000000\" cat_txt_hover=\"#ec3535\" date_txt=\"#000000\" excl_margin=\"-4px 10px 0 0\" excl_padd=\"4px 6px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" author_photo=\"yes\"][/vc_column][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsid2lkdGgiOiIzMCUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7IndpZHRoIjoiMzAlIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" is_sticky=\"yes\"][tdm_block_inline_text description=\"UG9wdWxhcg==\" display_inline=\"yes\" f_descr_font_family=\"456\" f_descr_font_size=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE4IiwicG9ydHJhaXQiOiIxNiJ9\" f_descr_font_weight=\"700\" f_descr_font_style=\"italic\" description_color=\"#ffffff\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWxlZnQiOiIyMCIsInBhZGRpbmctdG9wIjoiOCIsInBhZGRpbmctcmlnaHQiOiIxNiIsInBhZGRpbmctYm90dG9tIjoiMTAiLCJwYWRkaW5nLWxlZnQiOiIxNCIsImJhY2tncm91bmQtY29sb3IiOiIjZWMzNTM1Iiwiei1pbmRleCI6IjEiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJtYXJnaW4tbGVmdCI6IjE1IiwicGFkZGluZy10b3AiOiI2IiwicGFkZGluZy1yaWdodCI6IjE0IiwicGFkZGluZy1ib3R0b20iOiI4IiwicGFkZGluZy1sZWZ0IjoiMTIiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi1sZWZ0IjoiMTAiLCJwYWRkaW5nLXRvcCI6IjQiLCJwYWRkaW5nLXJpZ2h0IjoiMTIiLCJwYWRkaW5nLWJvdHRvbSI6IjYiLCJwYWRkaW5nLWxlZnQiOiIxMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=\" f_descr_font_spacing=\"0.5\"][td_flex_block_2 modules_on_row=\"\" limit=\"1\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"none\" ajax_pagination=\"next_prev\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiIyMCIsInBvcnRyYWl0IjoiMTYiLCJwaG9uZSI6IjMwIiwibGFuZHNjYXBlIjoiMTgifQ==\" f_title_font_line_height=\"1\" show_cat=\"none\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIwIDE1cHggMjBweCAxOHB4IiwibGFuZHNjYXBlIjoiMCAxMHB4IDE1cHggMTJweCIsInBvcnRyYWl0IjoiMCA1cHggMTVweCAxMHB4IiwicGhvbmUiOiIwIDIwcHggMjBweCJ9\" modules_divider=\"\" image_size=\"td_696x0\" meta_info_align=\"bottom\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0yNCIsIm1hcmdpbi1ib3R0b20iOiI0MCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi10b3AiOiItMjAiLCJtYXJnaW4tYm90dG9tIjoiMzUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi10b3AiOiItMTYiLCJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"700\" image_height=\"eyJhbGwiOiIxMDAiLCJwb3J0cmFpdCI6IjE0MCJ9\" all_modules_space=\"0\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiIxNnB4IDAgMTJweCAwIiwibGFuZHNjYXBlIjoiMTJweCAwIDhweCAwIiwicG9ydHJhaXQiOiIxMHB4IDAgNnB4IDAiLCJwaG9uZSI6IjEycHggMCAxMHB4IDAifQ==\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"\" show_author=\"eyJsYW5kc2NhcGUiOiJub25lIiwicG9ydHJhaXQiOiJub25lIn0=\" mc1_el=\"10\" f_title_font_family=\"653\" f_title_font_transform=\"\" title_txt=\"#ffffff\" title_txt_hover=\"rgba(255,255,255,0.8)\" ex_txt=\"#ffffff\" cat_txt=\"#ffffff\" cat_bg=\"#ec3535\" cat_bg_hover=\"#000000\" author_txt=\"#ffffff\" modules_category_padding=\"eyJhbGwiOiI1cHggOHB4IiwicG9ydHJhaXQiOiI0cHggNnB4In0=\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTIiLCJwaG9uZSI6IjEyIn0=\" f_cat_font_line_height=\"1\" excerpt_middle=\"yes\" cat_txt_hover=\"#ffffff\" modules_gap=\"0\" modules_space=\"0\" modules_height=\"eyJwb3J0cmFpdCI6IjI4MCIsImFsbCI6IjQyMCIsImxhbmRzY2FwZSI6IjM0MCIsInBob25lIjoiNDUwIn0=\" image_margin=\"0\" color_overlay=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\" mc2_el=\"26\" modules_category_radius=\"2\" excl_padd=\"5px 8px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" pag_border_width=\"0\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"20\" pag_border_radius=\"2\" pag_padding=\"0\" excl_show=\"none\" author_txt_hover=\"rgba(255,255,255,0.8)\" date_txt=\"#ffffff\" f_meta_font_family=\"653\" f_meta_font_transform=\"capitalize\" f_meta_font_weight=\"500\" f_meta_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta_font_line_height=\"1.2\" block_template_id=\"td_block_template_2\"][tds_leads title_text=\"Subscribe\" input_placeholder=\"Email address\" btn_horiz_align=\"content-horiz-center\" pp_checkbox=\"yes\" pp_msg=\"SSd2ZSUyMHJlYWQlMjBhbmQlMjBhY2NlcHQlMjB0aGUlMjAlM0NhJTIwaHJlZiUzRCUyMiUyMyUyMiUzRVByaXZhY3klMjBQb2xpY3klM0MlMkZhJTNFLg==\" f_title_font_family=\"653\" f_title_font_size=\"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIyMiJ9\" f_title_font_line_height=\"1\" f_title_font_weight=\"700\" f_title_font_spacing=\"-1\" msg_composer=\"success\" display=\"column\" gap=\"10\" input_padd=\"eyJhbGwiOiIxNXB4IDEwcHgiLCJsYW5kc2NhcGUiOiIxMnB4IDhweCIsInBvcnRyYWl0IjoiMTBweCA2cHgifQ==\" input_border=\"1\" btn_text=\"I want in\" btn_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" btn_icon_size=\"eyJhbGwiOiIxOSIsImxhbmRzY2FwZSI6IjE3IiwicG9ydHJhaXQiOiIxNSJ9\" btn_icon_space=\"eyJhbGwiOiI1IiwicG9ydHJhaXQiOiIzIn0=\" btn_radius=\"3\" input_radius=\"3\" f_msg_font_family=\"653\" f_msg_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_msg_font_weight=\"600\" f_msg_font_line_height=\"1.4\" f_input_font_family=\"653\" f_input_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjEzIiwicG9ydHJhaXQiOiIxMiJ9\" f_input_font_line_height=\"1.2\" f_btn_font_family=\"653\" f_input_font_weight=\"500\" f_btn_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSJ9\" f_btn_font_line_height=\"1.2\" f_btn_font_weight=\"700\" f_pp_font_family=\"653\" f_pp_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSJ9\" f_pp_font_line_height=\"1.2\" pp_check_color=\"#000000\" pp_check_color_a=\"#ec3535\" pp_check_color_a_h=\"#c11f1f\" f_btn_font_transform=\"uppercase\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjM1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" msg_succ_radius=\"2\" btn_bg=\"#ec3535\" btn_bg_h=\"#c11f1f\" title_space=\"eyJwb3J0cmFpdCI6IjEyIiwibGFuZHNjYXBlIjoiMTQiLCJhbGwiOiIxOCJ9\" msg_space=\"eyJsYW5kc2NhcGUiOiIwIDAgMTJweCJ9\" btn_padd=\"eyJsYW5kc2NhcGUiOiIxMiIsInBvcnRyYWl0IjoiMTBweCJ9\" msg_padd=\"eyJwb3J0cmFpdCI6IjZweCAxMHB4In0=\"][td_block_ad_box spot_img_horiz=\"content-horiz-center\" media_size_image_height=\"848\" media_size_image_width=\"624\" spot_img_all=\"23\" spot_img_mob=\"24\" spot_url=\"https://themeforest.net/item/newspaper/5489609\" spot_url_rel=\"noopener\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwibGFuZHNjYXBlIjp7ImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOX0=\"][/vc_column][/vc_row][/tdc_zone]'),
(448, 84, 'tdc_header_template_id', '84'),
(449, 84, 'header_mobile_menu_id', '15'),
(450, 85, 'tdb_template_type', 'author'),
(451, 85, 'td_demo_content', '1'),
(452, 85, 'tdc_dirty_content', ''),
(453, 85, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(454, 85, 'tdc_google_fonts_settings', 'a:2:{i:456;a:2:{i:0;s:3:\"700\";i:1;s:3:\"600\";}i:653;a:4:{i:0;s:3:\"500\";i:1;s:3:\"400\";i:2;s:3:\"600\";i:3;s:3:\"700\";}}'),
(455, 86, 'tdb_template_type', 'category'),
(456, 86, 'td_demo_content', '1'),
(457, 86, 'tdc_dirty_content', '0'),
(458, 86, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(459, 86, 'tdc_google_fonts_settings', 'a:2:{i:456;a:2:{i:0;s:3:\"700\";i:1;s:3:\"600\";}i:653;a:4:{i:0;s:3:\"600\";i:1;s:3:\"700\";i:2;s:3:\"500\";i:3;s:3:\"400\";}}'),
(460, 87, 'tdb_template_type', 'tag'),
(461, 87, 'td_demo_content', '1'),
(462, 87, 'tdc_dirty_content', ''),
(463, 87, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(464, 87, 'tdc_google_fonts_settings', 'a:2:{i:456;a:2:{i:0;s:3:\"700\";i:1;s:3:\"600\";}i:653;a:4:{i:0;s:3:\"400\";i:1;s:3:\"700\";i:2;s:3:\"600\";i:3;s:3:\"500\";}}'),
(465, 88, 'tdb_template_type', 'search'),
(466, 88, 'td_demo_content', '1'),
(467, 88, 'tdc_dirty_content', ''),
(468, 88, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(469, 88, 'tdc_google_fonts_settings', 'a:2:{i:456;a:2:{i:0;s:3:\"700\";i:1;s:3:\"600\";}i:653;a:4:{i:0;s:3:\"400\";i:1;s:3:\"700\";i:2;s:3:\"600\";i:3;s:3:\"500\";}}'),
(470, 89, 'tdb_template_type', 'single'),
(471, 89, 'td_demo_content', '1'),
(472, 89, 'tdc_dirty_content', ''),
(473, 89, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(474, 89, 'tdc_google_fonts_settings', 'a:3:{i:653;a:4:{i:0;s:3:\"600\";i:1;s:3:\"400\";i:2;s:3:\"500\";i:3;s:3:\"700\";}i:456;a:3:{i:0;s:3:\"700\";i:1;s:3:\"400\";i:2;s:3:\"600\";}s:9:\"undefined\";a:1:{i:0;s:9:\"undefined\";}}'),
(475, 90, 'tdb_template_type', '404'),
(476, 90, 'td_demo_content', '1'),
(477, 90, 'tdc_dirty_content', ''),
(478, 90, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(479, 90, 'tdc_google_fonts_settings', 'a:2:{i:456;a:2:{i:0;s:3:\"700\";i:1;s:3:\"600\";}i:653;a:4:{i:0;s:3:\"400\";i:1;s:3:\"700\";i:2;s:3:\"600\";i:3;s:3:\"500\";}}'),
(480, 91, 'tdb_template_type', 'date'),
(481, 91, 'td_demo_content', '1'),
(482, 91, 'tdc_dirty_content', ''),
(483, 91, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(484, 91, 'tdc_google_fonts_settings', 'a:2:{i:456;a:2:{i:0;s:3:\"700\";i:1;s:3:\"600\";}i:653;a:4:{i:0;s:3:\"400\";i:1;s:3:\"700\";i:2;s:3:\"600\";i:3;s:3:\"500\";}}'),
(485, 92, 'tdb_template_type', 'footer'),
(486, 92, 'td_demo_content', '1'),
(487, 92, 'tdc_dirty_content', '0'),
(488, 92, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(489, 92, 'tdc_google_fonts_settings', 'a:2:{i:456;a:2:{i:0;s:3:\"700\";i:1;s:3:\"400\";}i:653;a:3:{i:0;s:3:\"500\";i:1;s:3:\"600\";i:2;s:3:\"700\";}}'),
(490, 93, 'tdc_dirty_content', '1'),
(491, 93, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(492, 93, '_menu_item_type', 'custom'),
(493, 93, '_menu_item_menu_item_parent', '0'),
(494, 93, '_menu_item_object_id', '93'),
(495, 93, '_menu_item_object', 'custom'),
(496, 93, '_menu_item_target', ''),
(497, 93, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(498, 93, '_menu_item_xfn', ''),
(499, 93, '_menu_item_url', '#'),
(510, 95, 'tdc_dirty_content', '1'),
(511, 95, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(512, 95, '_menu_item_type', 'custom'),
(513, 95, '_menu_item_menu_item_parent', '0'),
(514, 95, '_menu_item_object_id', '95'),
(515, 95, '_menu_item_object', 'custom'),
(516, 95, '_menu_item_target', ''),
(517, 95, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(518, 95, '_menu_item_xfn', ''),
(519, 95, '_menu_item_url', 'https://onlineincshop.com/contact-us/'),
(1093, 244, '_edit_lock', '1669008150:1'),
(1110, 250, '_edit_lock', '1671428953:1'),
(1025, 223, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1024, 223, 'tdc_dirty_content', '1'),
(540, 98, 'tdc_dirty_content', '1'),
(541, 98, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(542, 98, '_menu_item_type', 'custom'),
(543, 98, '_menu_item_menu_item_parent', '0'),
(544, 98, '_menu_item_object_id', '98'),
(545, 98, '_menu_item_object', 'custom'),
(546, 98, '_menu_item_target', ''),
(547, 98, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(548, 98, '_menu_item_xfn', ''),
(549, 98, '_menu_item_url', 'https://onlineincshop.com/category/music/'),
(550, 98, 'td_mega_menu_cat', '9'),
(551, 99, 'tdc_dirty_content', '1'),
(552, 99, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(553, 99, '_menu_item_type', 'custom'),
(554, 99, '_menu_item_menu_item_parent', '0'),
(555, 99, '_menu_item_object_id', '99'),
(556, 99, '_menu_item_object', 'custom'),
(557, 99, '_menu_item_target', ''),
(558, 99, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(559, 99, '_menu_item_xfn', ''),
(560, 99, '_menu_item_url', 'https://onlineincshop.com/category/celebrity/'),
(561, 99, 'td_mega_menu_cat', '4'),
(562, 100, 'tdc_dirty_content', '1');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(563, 100, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(564, 100, '_menu_item_type', 'custom'),
(565, 100, '_menu_item_menu_item_parent', '0'),
(566, 100, '_menu_item_object_id', '100'),
(567, 100, '_menu_item_object', 'custom'),
(568, 100, '_menu_item_target', ''),
(569, 100, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(570, 100, '_menu_item_xfn', ''),
(571, 100, '_menu_item_url', 'https://onlineincshop.com/category/politics/'),
(572, 100, 'td_mega_menu_cat', '10'),
(573, 101, 'tdc_dirty_content', '1'),
(574, 101, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(575, 101, '_menu_item_type', 'custom'),
(576, 101, '_menu_item_menu_item_parent', '0'),
(577, 101, '_menu_item_object_id', '101'),
(578, 101, '_menu_item_object', 'custom'),
(579, 101, '_menu_item_target', ''),
(580, 101, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(581, 101, '_menu_item_xfn', ''),
(582, 101, '_menu_item_url', 'https://onlineincshop.com/category/finance/'),
(583, 101, 'td_mega_menu_cat', '5'),
(584, 102, 'tdc_dirty_content', '1'),
(585, 102, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(586, 102, '_menu_item_type', 'custom'),
(587, 102, '_menu_item_menu_item_parent', '0'),
(588, 102, '_menu_item_object_id', '102'),
(589, 102, '_menu_item_object', 'custom'),
(590, 102, '_menu_item_target', ''),
(591, 102, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(592, 102, '_menu_item_xfn', ''),
(593, 102, '_menu_item_url', 'https://onlineincshop.com/category/travel/'),
(594, 102, 'td_mega_menu_cat', '12'),
(595, 103, 'tdc_dirty_content', '1'),
(596, 103, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(597, 103, '_menu_item_type', 'custom'),
(598, 103, '_menu_item_menu_item_parent', '0'),
(599, 103, '_menu_item_object_id', '103'),
(600, 103, '_menu_item_object', 'custom'),
(601, 103, '_menu_item_target', ''),
(602, 103, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(603, 103, '_menu_item_xfn', ''),
(604, 103, '_menu_item_url', 'https://onlineincshop.com/category/food/'),
(605, 103, 'td_mega_menu_cat', '6'),
(606, 104, 'tdc_dirty_content', '1'),
(607, 104, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(608, 104, '_menu_item_type', 'custom'),
(609, 104, '_menu_item_menu_item_parent', '0'),
(610, 104, '_menu_item_object_id', '104'),
(611, 104, '_menu_item_object', 'custom'),
(612, 104, '_menu_item_target', ''),
(613, 104, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(614, 104, '_menu_item_xfn', ''),
(615, 104, '_menu_item_url', 'https://onlineincshop.com/category/marketing/'),
(616, 104, 'td_mega_menu_cat', '8'),
(617, 105, 'tdc_dirty_content', '1'),
(618, 105, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(619, 105, '_menu_item_type', 'custom'),
(620, 105, '_menu_item_menu_item_parent', '0'),
(621, 105, '_menu_item_object_id', '105'),
(622, 105, '_menu_item_object', 'custom'),
(623, 105, '_menu_item_target', ''),
(624, 105, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(625, 105, '_menu_item_xfn', ''),
(626, 105, '_menu_item_url', 'https://onlineincshop.com/category/tech/'),
(627, 105, 'td_mega_menu_cat', '11'),
(628, 106, 'tdc_dirty_content', '1'),
(629, 106, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(630, 106, '_menu_item_type', 'custom'),
(631, 106, '_menu_item_menu_item_parent', '0'),
(632, 106, '_menu_item_object_id', '106'),
(633, 106, '_menu_item_object', 'custom'),
(634, 106, '_menu_item_target', ''),
(635, 106, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(636, 106, '_menu_item_xfn', ''),
(637, 106, '_menu_item_url', 'https://onlineincshop.com/category/make-up/'),
(638, 106, 'td_mega_menu_cat', '7'),
(645, 32, '_wpb_vc_js_status', ''),
(668, 115, 'tdc_dirty_content', '1'),
(669, 115, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(670, 114, '_edit_lock', '1645874424:1'),
(671, 116, '_wp_attached_file', '2022/02/CRUISING-Dubai-min-scaled.jpg'),
(672, 116, '_wp_attachment_metadata', 'a:8:{s:5:\"width\";i:1600;s:6:\"height\";d:1200;s:4:\"file\";s:37:\"2022/02/CRUISING-Dubai-min-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"CRUISING-Dubai-min-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"CRUISING-Dubai-min-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"CRUISING-Dubai-min-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"CRUISING-Dubai-min-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"CRUISING-Dubai-min-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"CRUISING-Dubai-min-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:30:\"CRUISING-Dubai-min-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:30:\"CRUISING-Dubai-min-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:30:\"CRUISING-Dubai-min-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:30:\"CRUISING-Dubai-min-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:30:\"CRUISING-Dubai-min-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:30:\"CRUISING-Dubai-min-696x522.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:31:\"CRUISING-Dubai-min-1068x801.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1920x0\";a:4:{s:4:\"file\";s:32:\"CRUISING-Dubai-min-1920x1440.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"CRUISING-Dubai-min.jpg\";s:9:\"old_width\";i:2560;s:10:\"old_height\";i:1920;}'),
(673, 116, '_wp_attachment_image_alt', 'Yacht rental Dubai'),
(674, 114, 'tdc_dirty_content', '1'),
(675, 114, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(679, 114, '_edit_last', '1'),
(678, 114, '_thumbnail_id', '116'),
(682, 114, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(683, 114, 'post_views_count', '296'),
(884, 171, '_edit_last', '1'),
(873, 171, '_edit_lock', '1646471665:1'),
(874, 171, 'tdc_dirty_content', '1'),
(875, 171, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(876, 172, '_wp_attached_file', '2022/03/Dhow-wooden-ship-min-scaled.jpg'),
(877, 172, '_wp_attachment_metadata', 'a:8:{s:5:\"width\";i:1600;s:6:\"height\";d:1067;s:4:\"file\";s:39:\"2022/03/Dhow-wooden-ship-min-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Dhow-wooden-ship-min-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Dhow-wooden-ship-min-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Dhow-wooden-ship-min-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Dhow-wooden-ship-min-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"Dhow-wooden-ship-min-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:34:\"Dhow-wooden-ship-min-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:32:\"Dhow-wooden-ship-min-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:32:\"Dhow-wooden-ship-min-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:32:\"Dhow-wooden-ship-min-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:32:\"Dhow-wooden-ship-min-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:32:\"Dhow-wooden-ship-min-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:32:\"Dhow-wooden-ship-min-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:33:\"Dhow-wooden-ship-min-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1920x0\";a:4:{s:4:\"file\";s:34:\"Dhow-wooden-ship-min-1920x1280.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"Dhow-wooden-ship-min.jpg\";s:9:\"old_width\";i:2560;s:10:\"old_height\";i:1707;}'),
(878, 172, '_wp_attachment_image_alt', 'Dhow cruise Dubai'),
(879, 173, '_wp_attached_file', '2022/03/dhow-cruise-min-scaled.jpg'),
(880, 173, '_wp_attachment_metadata', 'a:8:{s:5:\"width\";i:1600;s:6:\"height\";d:1200;s:4:\"file\";s:34:\"2022/03/dhow-cruise-min-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"dhow-cruise-min-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"dhow-cruise-min-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"dhow-cruise-min-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"dhow-cruise-min-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"dhow-cruise-min-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"dhow-cruise-min-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:27:\"dhow-cruise-min-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:27:\"dhow-cruise-min-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:27:\"dhow-cruise-min-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:27:\"dhow-cruise-min-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:27:\"dhow-cruise-min-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:27:\"dhow-cruise-min-696x522.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:28:\"dhow-cruise-min-1068x801.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1920x0\";a:4:{s:4:\"file\";s:29:\"dhow-cruise-min-1920x1440.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"dhow-cruise-min.jpg\";s:9:\"old_width\";i:2560;s:10:\"old_height\";i:1920;}'),
(883, 171, '_thumbnail_id', '172'),
(901, 175, '_edit_last', '1'),
(888, 171, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(889, 171, 'post_views_count', '321'),
(890, 175, '_edit_lock', '1646472608:1'),
(891, 175, 'tdc_dirty_content', '1'),
(892, 175, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(893, 176, '_wp_attached_file', '2022/03/car-rental-Near-Me-min-scaled.jpg'),
(894, 176, '_wp_attachment_metadata', 'a:8:{s:5:\"width\";i:1600;s:6:\"height\";d:1067;s:4:\"file\";s:41:\"2022/03/car-rental-Near-Me-min-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"car-rental-Near-Me-min-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"car-rental-Near-Me-min-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"car-rental-Near-Me-min-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"car-rental-Near-Me-min-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"car-rental-Near-Me-min-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:36:\"car-rental-Near-Me-min-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:34:\"car-rental-Near-Me-min-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:34:\"car-rental-Near-Me-min-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:34:\"car-rental-Near-Me-min-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:34:\"car-rental-Near-Me-min-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:34:\"car-rental-Near-Me-min-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:34:\"car-rental-Near-Me-min-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:35:\"car-rental-Near-Me-min-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1920x0\";a:4:{s:4:\"file\";s:36:\"car-rental-Near-Me-min-1920x1280.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:26:\"car-rental-Near-Me-min.jpg\";s:9:\"old_width\";i:2560;s:10:\"old_height\";i:1707;}'),
(895, 177, '_wp_attached_file', '2022/03/car-rental-min-scaled.jpg'),
(896, 177, '_wp_attachment_metadata', 'a:8:{s:5:\"width\";i:1600;s:6:\"height\";d:1200;s:4:\"file\";s:33:\"2022/03/car-rental-min-scaled.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"car-rental-min-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"car-rental-min-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:18:\"car-rental-min.jpg\";s:9:\"old_width\";i:2560;s:10:\"old_height\";i:1920;}'),
(897, 177, '_wp_attachment_image_alt', 'Rent a car in Dubai'),
(900, 175, '_thumbnail_id', '176'),
(920, 180, 'post_views_count', '272'),
(905, 175, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(906, 175, 'post_views_count', '315'),
(911, 181, '_wp_attachment_metadata', 'a:8:{s:5:\"width\";i:1600;s:6:\"height\";d:1067;s:4:\"file\";s:46:\"2022/03/tinplate-coil-suppliers-min-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"tinplate-coil-suppliers-min-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"tinplate-coil-suppliers-min-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"tinplate-coil-suppliers-min-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"tinplate-coil-suppliers-min-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"tinplate-coil-suppliers-min-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:41:\"tinplate-coil-suppliers-min-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_150x0\";a:4:{s:4:\"file\";s:39:\"tinplate-coil-suppliers-min-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_218x150\";a:4:{s:4:\"file\";s:39:\"tinplate-coil-suppliers-min-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_300x0\";a:4:{s:4:\"file\";s:39:\"tinplate-coil-suppliers-min-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_324x400\";a:4:{s:4:\"file\";s:39:\"tinplate-coil-suppliers-min-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"td_485x360\";a:4:{s:4:\"file\";s:39:\"tinplate-coil-suppliers-min-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"td_696x0\";a:4:{s:4:\"file\";s:39:\"tinplate-coil-suppliers-min-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1068x0\";a:4:{s:4:\"file\";s:40:\"tinplate-coil-suppliers-min-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"td_1920x0\";a:4:{s:4:\"file\";s:41:\"tinplate-coil-suppliers-min-1920x1280.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:31:\"tinplate-coil-suppliers-min.jpg\";s:9:\"old_width\";i:2560;s:10:\"old_height\";i:1707;}'),
(912, 181, '_wp_attachment_image_alt', 'tinplate coil suppliers'),
(916, 180, '_edit_last', '1'),
(915, 180, '_thumbnail_id', '181'),
(929, 189, '_edit_last', '1'),
(919, 180, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1086, 86, '_wpb_vc_js_status', ''),
(1097, 245, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:46:\"2022/11/florian-wehde-WBGjg0DsO_g-unsplash.jpg\";s:8:\"filesize\";i:592892;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"florian-wehde-WBGjg0DsO_g-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19511;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"florian-wehde-WBGjg0DsO_g-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166227;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"florian-wehde-WBGjg0DsO_g-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8520;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"florian-wehde-WBGjg0DsO_g-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100680;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"florian-wehde-WBGjg0DsO_g-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:322221;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:46:\"florian-wehde-WBGjg0DsO_g-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6179;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:46:\"florian-wehde-WBGjg0DsO_g-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11769;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:46:\"florian-wehde-WBGjg0DsO_g-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19511;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:46:\"florian-wehde-WBGjg0DsO_g-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38405;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:46:\"florian-wehde-WBGjg0DsO_g-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50515;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:46:\"florian-wehde-WBGjg0DsO_g-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85099;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:47:\"florian-wehde-WBGjg0DsO_g-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178259;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1112, 250, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1100, 244, '_thumbnail_id', '245'),
(1104, 244, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1111, 250, 'tdc_dirty_content', '1'),
(1113, 251, '_wp_attached_file', '2022/12/jaimie-harmsen-8d9jdqyGaQA-unsplash.jpg'),
(1114, 251, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:47:\"2022/12/jaimie-harmsen-8d9jdqyGaQA-unsplash.jpg\";s:8:\"filesize\";i:311532;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"jaimie-harmsen-8d9jdqyGaQA-unsplash-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13549;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"jaimie-harmsen-8d9jdqyGaQA-unsplash-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94425;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"jaimie-harmsen-8d9jdqyGaQA-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6740;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"jaimie-harmsen-8d9jdqyGaQA-unsplash-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58813;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"jaimie-harmsen-8d9jdqyGaQA-unsplash-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181069;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:47:\"jaimie-harmsen-8d9jdqyGaQA-unsplash-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5158;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:47:\"jaimie-harmsen-8d9jdqyGaQA-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7973;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:47:\"jaimie-harmsen-8d9jdqyGaQA-unsplash-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13549;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:47:\"jaimie-harmsen-8d9jdqyGaQA-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26508;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:47:\"jaimie-harmsen-8d9jdqyGaQA-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27980;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:47:\"jaimie-harmsen-8d9jdqyGaQA-unsplash-696x522.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50489;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:48:\"jaimie-harmsen-8d9jdqyGaQA-unsplash-1068x801.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101424;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1118, 250, '_edit_last', '1'),
(1122, 250, 'post_views_count', '260'),
(1117, 250, '_thumbnail_id', '251'),
(1131, 254, '_edit_last', '1'),
(1121, 250, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1123, 254, '_edit_lock', '1672203525:1'),
(1124, 254, 'tdc_dirty_content', '1'),
(1125, 254, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1126, 255, '_wp_attached_file', '2022/12/product-image-1764992751.webp'),
(1127, 255, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:37:\"2022/12/product-image-1764992751.webp\";s:8:\"filesize\";i:90176;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"product-image-1764992751-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19352;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"product-image-1764992751-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7334;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"product-image-1764992751-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:66038;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:37:\"product-image-1764992751-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7334;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:37:\"product-image-1764992751-218x150.webp\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8412;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:37:\"product-image-1764992751-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19352;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:37:\"product-image-1764992751-324x400.webp\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24344;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:37:\"product-image-1764992751-485x360.webp\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:26528;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:37:\"product-image-1764992751-696x696.webp\";s:5:\"width\";i:696;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:58772;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1135, 254, 'post_views_count', '263'),
(1130, 254, '_thumbnail_id', '255'),
(1144, 257, '_edit_last', '1'),
(1134, 254, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1136, 257, '_edit_lock', '1672381176:1'),
(1137, 257, 'tdc_dirty_content', '1'),
(1138, 257, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1139, 258, '_wp_attached_file', '2022/12/myriam-jessier-CElY_ESswGU-unsplash.jpg'),
(1140, 258, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1393;s:4:\"file\";s:47:\"2022/12/myriam-jessier-CElY_ESswGU-unsplash.jpg\";s:8:\"filesize\";i:287907;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"myriam-jessier-CElY_ESswGU-unsplash-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11781;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"myriam-jessier-CElY_ESswGU-unsplash-1024x743.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:743;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79009;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"myriam-jessier-CElY_ESswGU-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5620;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"myriam-jessier-CElY_ESswGU-unsplash-768x557.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:557;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49124;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"myriam-jessier-CElY_ESswGU-unsplash-1536x1114.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1114;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155588;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:47:\"myriam-jessier-CElY_ESswGU-unsplash-150x109.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:109;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4512;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:47:\"myriam-jessier-CElY_ESswGU-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7284;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:47:\"myriam-jessier-CElY_ESswGU-unsplash-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11779;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:47:\"myriam-jessier-CElY_ESswGU-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20722;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:47:\"myriam-jessier-CElY_ESswGU-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24719;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:47:\"myriam-jessier-CElY_ESswGU-unsplash-696x505.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42093;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:48:\"myriam-jessier-CElY_ESswGU-unsplash-1068x775.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:775;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84696;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1148, 257, 'post_views_count', '270'),
(1143, 257, '_thumbnail_id', '258'),
(1149, 261, '_edit_lock', '1674029801:1'),
(1147, 257, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1150, 261, 'tdc_dirty_content', '1'),
(1151, 261, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1152, 261, '_edit_last', '1'),
(1153, 261, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1154, 261, 'post_views_count', '230'),
(1155, 263, '_wp_attached_file', '2023/01/product-image-1986828354.webp'),
(1156, 263, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:37:\"2023/01/product-image-1986828354.webp\";s:8:\"filesize\";i:87420;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"product-image-1986828354-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"product-image-1986828354-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7424;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"product-image-1986828354-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:65000;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:37:\"product-image-1986828354-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7424;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:37:\"product-image-1986828354-218x150.webp\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9438;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:37:\"product-image-1986828354-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18700;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:37:\"product-image-1986828354-324x400.webp\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25732;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:37:\"product-image-1986828354-485x360.webp\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27478;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:37:\"product-image-1986828354-696x696.webp\";s:5:\"width\";i:696;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:58272;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1159, 261, '_thumbnail_id', '263'),
(1325, 292, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1166, 266, '_wp_attached_file', '2023/01/dollar-gill-SoG-vKZ9bU4-unsplash-1.jpg'),
(1167, 266, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:46:\"2023/01/dollar-gill-SoG-vKZ9bU4-unsplash-1.jpg\";s:8:\"filesize\";i:326961;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"dollar-gill-SoG-vKZ9bU4-unsplash-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14043;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"dollar-gill-SoG-vKZ9bU4-unsplash-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99707;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"dollar-gill-SoG-vKZ9bU4-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6255;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"dollar-gill-SoG-vKZ9bU4-unsplash-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62180;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"dollar-gill-SoG-vKZ9bU4-unsplash-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187683;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:46:\"dollar-gill-SoG-vKZ9bU4-unsplash-1-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4979;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:46:\"dollar-gill-SoG-vKZ9bU4-unsplash-1-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8807;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:46:\"dollar-gill-SoG-vKZ9bU4-unsplash-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14043;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:46:\"dollar-gill-SoG-vKZ9bU4-unsplash-1-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24573;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:46:\"dollar-gill-SoG-vKZ9bU4-unsplash-1-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32457;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:46:\"dollar-gill-SoG-vKZ9bU4-unsplash-1-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53314;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:47:\"dollar-gill-SoG-vKZ9bU4-unsplash-1-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106131;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1417, 308, '_edit_last', '1'),
(1418, 309, '_wp_attached_file', '2023/07/alonso-reyes-Ca4XZM3xABg-unsplash.jpg'),
(1419, 309, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1279;s:4:\"file\";s:45:\"2023/07/alonso-reyes-Ca4XZM3xABg-unsplash.jpg\";s:8:\"filesize\";i:509306;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"alonso-reyes-Ca4XZM3xABg-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14405;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"alonso-reyes-Ca4XZM3xABg-unsplash-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112581;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"alonso-reyes-Ca4XZM3xABg-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8161;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"alonso-reyes-Ca4XZM3xABg-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66177;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"alonso-reyes-Ca4XZM3xABg-unsplash-1536x1023.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229796;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:45:\"alonso-reyes-Ca4XZM3xABg-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6712;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:45:\"alonso-reyes-Ca4XZM3xABg-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9907;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:45:\"alonso-reyes-Ca4XZM3xABg-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14407;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:45:\"alonso-reyes-Ca4XZM3xABg-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26728;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:45:\"alonso-reyes-Ca4XZM3xABg-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33424;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:45:\"alonso-reyes-Ca4XZM3xABg-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55485;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:46:\"alonso-reyes-Ca4XZM3xABg-unsplash-1068x711.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120506;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1324, 292, '_edit_lock', '1687857086:1'),
(1180, 272, '_elementor_edit_mode', 'builder'),
(1181, 272, '_elementor_template_type', 'kit'),
(1182, 272, 'tdc_dirty_content', '1'),
(1183, 272, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1184, 273, '_edit_lock', '1685354515:1'),
(1185, 273, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1186, 274, '_wp_attached_file', '2023/05/kent-tupas-8tyxHW3uDU8-unsplash.jpg'),
(1187, 274, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:43:\"2023/05/kent-tupas-8tyxHW3uDU8-unsplash.jpg\";s:8:\"filesize\";i:648477;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"kent-tupas-8tyxHW3uDU8-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21264;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"kent-tupas-8tyxHW3uDU8-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164579;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"kent-tupas-8tyxHW3uDU8-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10848;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"kent-tupas-8tyxHW3uDU8-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99359;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"kent-tupas-8tyxHW3uDU8-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:319575;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:43:\"kent-tupas-8tyxHW3uDU8-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8455;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:43:\"kent-tupas-8tyxHW3uDU8-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13812;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:43:\"kent-tupas-8tyxHW3uDU8-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21264;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:43:\"kent-tupas-8tyxHW3uDU8-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38331;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:43:\"kent-tupas-8tyxHW3uDU8-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50409;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:43:\"kent-tupas-8tyxHW3uDU8-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84246;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:44:\"kent-tupas-8tyxHW3uDU8-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176469;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1188, 274, '_wp_attachment_image_alt', 'abu dhabi mall hotels'),
(1193, 273, '_edit_last', '1'),
(1191, 273, 'tdc_dirty_content', '1'),
(1192, 273, '_thumbnail_id', '274'),
(1233, 279, '_edit_lock', '1685355055:1'),
(1197, 273, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1198, 273, '_yoast_wpseo_primary_category', '12'),
(1199, 273, '_yoast_wpseo_focuskw', 'abu dhabi mall hotels'),
(1200, 273, '_yoast_wpseo_title', 'Abu Dhabi Mall Hotels: Unforgettable Experiences Await');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1201, 273, '_yoast_wpseo_metadesc', 'Indulge in unforgettable experiences at Abu Dhabi Mall Hotels. Discover luxury accommodations, superb amenities, and convenient access to shopping, dining, and entertainment. Elevate your stay in Abu Dhabi.'),
(1202, 273, '_yoast_wpseo_linkdex', '32'),
(1203, 273, '_yoast_wpseo_estimated-reading-time-minutes', '5'),
(1204, 273, '_yoast_wpseo_wordproof_timestamp', ''),
(1205, 273, '_elementor_edit_mode', 'builder'),
(1206, 273, '_elementor_template_type', 'wp-post'),
(1207, 273, '_elementor_version', '3.13.4'),
(1209, 273, 'post_views_count', '210'),
(1220, 273, '_wp_page_template', 'default'),
(1221, 273, '_elementor_data', '[{\"id\":\"4e0a4e1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e0af23\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8061971\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: 400;\\\">Are you planning a trip to Abu Dhabi and looking for the perfect place to stay? Look no further than Abu Dhabi Mall hotels, where luxury and convenience blend seamlessly. In this article, we\'ll explore the world of Abu Dhabi Mall hotels, their benefits, top options, and the incredible experiences they offer. Get ready to immerse yourself in the vibrant atmosphere and discover why these hotels are the ideal choice for your stay in Abu Dhabi.<\\/span><\\/p><h2><b>Introduction<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">Abu Dhabi Mall hotels are located in close proximity to the city\'s premier shopping destination, the Abu Dhabi Mall. These hotels offer a unique and unforgettable experience, combining luxurious accommodations with world-class amenities and exceptional services. Whether you\'re traveling for business or leisure, Abu Dhabi Mall hotels provide a comfortable and convenient base for your stay.<\\/span><\\/p><h2><b>What are Abu Dhabi Mall Hotels?<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">Abu Dhabi Mall hotels are upscale accommodations situated within or adjacent to the Abu Dhabi Mall. They cater to a wide range of travelers, including tourists, business professionals, and families. These hotels offer an array of room options, from standard rooms to lavish suites, ensuring there\'s something to suit every traveler\'s needs.<\\/span><\\/p><h2><b>Benefits of Staying at Abu Dhabi Mall Hotels<\\/b><\\/h2><h3><b>Convenience<\\/b><\\/h3><p><span style=\\\"font-weight: 400;\\\"> Staying at Abu Dhabi Mall hotels means having everything you need right at your doorstep. You can easily access the mall\'s shops, restaurants, and entertainment venues without having to travel far.<\\/span><\\/p><h3><b>Luxury<\\/b><\\/h3><p><span style=\\\"font-weight: 400;\\\">Abu Dhabi Mall hotels boast elegant and stylish interiors, providing a luxurious atmosphere for guests. From opulent furnishings to breathtaking views, every aspect of these hotels is designed to create a memorable experience.<\\/span><\\/p><h3><b>World-Class Amenities<\\/b><\\/h3><p><span style=\\\"font-weight: 400;\\\">\\u00a0Guests can indulge in a wide range of amenities, including state-of-the-art fitness centers, rejuvenating spas, and sparkling swimming pools. These amenities ensure that guests have a relaxing and enjoyable stay.<\\/span><\\/p><h3><b>Impeccable Service<\\/b><\\/h3><p><span style=\\\"font-weight: 400;\\\"> The staff at Abu Dhabi Mall hotels are known for their warm hospitality and attention to detail. They strive to make every guest feel welcomed and ensure that their needs are met throughout their stay.<\\/span><\\/p><h2><b>Top Abu Dhabi Mall Hotels<\\/b><\\/h2><h3><b>The Grand Tower Hotel<\\/b><\\/h3><p><span style=\\\"font-weight: 400;\\\"> Offering panoramic views of the city skyline, The Grand Tower Hotel is a luxurious retreat within walking distance of Abu Dhabi Mall. With its spacious rooms, gourmet dining options, and extensive leisure facilities, this hotel provides an exceptional experience for guests.<\\/span><\\/p><h3><b>Royal Suites Hotel<\\/b><\\/h3><p><span style=\\\"font-weight: 400;\\\">\\u00a0Situated adjacent to Abu Dhabi Mall, Royal Suites Hotel offers stylish and contemporary accommodations. Guests can enjoy the hotel\'s rooftop pool, fine dining restaurants, and convenient access to shopping and entertainment.<\\/span><\\/p><h3><b>Oasis Resort &amp; Spa<\\/b><\\/h3><p><span style=\\\"font-weight: 400;\\\">\\u00a0Nestled in a tranquil oasis, Oasis Resort &amp; Spa provides a serene escape from the bustling city. This hotel offers lush gardens, a rejuvenating spa, and elegant rooms, ensuring a relaxing stay for guests.<\\/span><\\/p><h2><b>Luxurious Amenities at Abu Dhabi Mall Hotels<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">Abu Dhabi Mall hotels offer a wide range of luxurious amenities to enhance your stay. From plush bedding to state-of-the-art technology, these hotels prioritize comfort and convenience. Some notable amenities include:<\\/span><\\/p><ul><li style=\\\"font-weight: 400;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400;\\\">Spacious and well-appointed rooms with modern furnishings<\\/span><\\/li><li style=\\\"font-weight: 400;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400;\\\">High-speed internet access and smart TVs in every room<\\/span><\\/li><li style=\\\"font-weight: 400;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400;\\\">Fitness centers equipped with the latest exercise equipment<\\/span><\\/li><li style=\\\"font-weight: 400;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400;\\\">On-site spa and wellness facilities for ultimate relaxation<\\/span><\\/li><li style=\\\"font-weight: 400;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400;\\\">Gourmet restaurants serving a variety of cuisines<\\/span><\\/li><li style=\\\"font-weight: 400;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400;\\\">Rooftop pools with stunning views of the city<\\/span><\\/li><li style=\\\"font-weight: 400;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400;\\\">24\\/7 concierge services to cater to guests\' needs<\\/span><\\/li><\\/ul><h2><b>Shopping and Dining Experiences<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">One of the highlights of staying at Abu Dhabi Mall hotels is the unparalleled shopping and dining experiences they offer. Abu Dhabi Mall, located just steps away, features a vast array of international and local brands, allowing guests to indulge in a world-class shopping spree. Additionally, the mall houses numerous restaurants and cafes, providing a diverse culinary journey for every palate.<\\/span><\\/p><h2><b>Proximity to Attractions and Entertainment<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">Abu Dhabi Mall hotels are strategically located near popular attractions and entertainment venues, making it easy for guests to explore the city\'s vibrant offerings. Some nearby attractions include:<\\/span><\\/p><ul><li style=\\\"font-weight: 400;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400;\\\">Sheikh Zayed Grand Mosque: A magnificent architectural marvel that showcases the rich cultural heritage of the UAE.<\\/span><\\/li><li style=\\\"font-weight: 400;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400;\\\">Ferrari World Abu Dhabi: An exhilarating theme park that offers thrilling rides and experiences for the whole family.<\\/span><\\/li><li style=\\\"font-weight: 400;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400;\\\">Corniche Beach: A pristine stretch of coastline where visitors can relax and enjoy the azure waters of the Arabian Gulf.<\\/span><\\/li><\\/ul><h2><b>Events and Activities<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">Abu Dhabi Mall hotels often host special events and activities to enrich guests\' experiences. From live music performances to culinary workshops, there\'s always something happening within the hotel premises. These events provide opportunities for guests to immerse themselves in the local culture and create lasting memories.<\\/span><\\/p><h2><b>Business Facilities<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">For business travelers, Abu Dhabi Mall hotels offer a range of business facilities and services. With well-equipped meeting rooms, high-speed internet access, and professional staff, these hotels provide an ideal setting for conferences, seminars, and corporate events.<\\/span><\\/p><h2><b>Transportation and Accessibility<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">Abu Dhabi Mall hotels are well-connected to the city\'s transportation network, making it convenient for guests to explore Abu Dhabi. Public transportation options, such as taxis and buses, are readily available, and the hotels also provide car rental services for guests who prefer to drive. Additionally, Abu Dhabi International Airport is just a short drive away, ensuring a smooth arrival and departure experience.<\\/span><\\/p><h2><b>Tips for Choosing the Right Abu Dhabi Mall Hotel<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">When selecting an Abu Dhabi Mall hotel for your stay, consider the following tips:<\\/span><\\/p><h3><b>Location<\\/b><\\/h3><p><span style=\\\"font-weight: 400;\\\"> Choose a hotel that is conveniently located near attractions and amenities you plan to visit.<\\/span><\\/p><h3><b>Budget<\\/b><\\/h3><p><span style=\\\"font-weight: 400;\\\"> Determine your budget and find a hotel that offers the best value for your money.<\\/span><\\/p><h3><b>Reviews and Ratings<\\/b><\\/h3><p><span style=\\\"font-weight: 400;\\\">\\u00a0Read reviews and check ratings from previous guests to gauge the hotel\'s quality and service.<\\/span><\\/p><h3><b>Amenities<\\/b><\\/h3><p><span style=\\\"font-weight: 400;\\\"> Consider the amenities that are important to you, such as fitness facilities, dining options, or business services.<\\/span><\\/p><h3><b>Special Offers<\\/b><\\/h3><p><span style=\\\"font-weight: 400;\\\">\\u00a0Look out for any special promotions or packages that can enhance your stay.<\\/span><\\/p><h4><b>Conclusion<\\/b><\\/h4><p><span style=\\\"font-weight: 400;\\\">Abu Dhabi Mall hotels provide an exceptional experience for travelers visiting Abu Dhabi. From their convenient locations to luxurious amenities and proximity to shopping and entertainment, these hotels offer a perfect blend of comfort and style. Whether you\'re traveling for business or leisure, staying at an Abu Dhabi Mall hotel ensures a memorable stay in this dynamic city.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),
(1231, 273, '_yoast_wpseo_content_score', '90'),
(1326, 292, 'tdc_dirty_content', '1'),
(1327, 293, '_wp_attached_file', '2023/06/peter-broomfield-m3m-lnR90uM-unsplash-1.jpg'),
(1234, 279, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1235, 280, '_wp_attached_file', '2023/05/wael-hneini-QJKEa9n3yN8-unsplash.jpg'),
(1236, 280, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:44:\"2023/05/wael-hneini-QJKEa9n3yN8-unsplash.jpg\";s:8:\"filesize\";i:725668;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"wael-hneini-QJKEa9n3yN8-unsplash-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23913;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"wael-hneini-QJKEa9n3yN8-unsplash-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182276;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"wael-hneini-QJKEa9n3yN8-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10724;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"wael-hneini-QJKEa9n3yN8-unsplash-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109624;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"wael-hneini-QJKEa9n3yN8-unsplash-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:363372;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:44:\"wael-hneini-QJKEa9n3yN8-unsplash-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9494;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:44:\"wael-hneini-QJKEa9n3yN8-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13662;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:44:\"wael-hneini-QJKEa9n3yN8-unsplash-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23913;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:44:\"wael-hneini-QJKEa9n3yN8-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35992;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:44:\"wael-hneini-QJKEa9n3yN8-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50092;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:44:\"wael-hneini-QJKEa9n3yN8-unsplash-696x522.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93823;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:45:\"wael-hneini-QJKEa9n3yN8-unsplash-1068x801.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197751;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1237, 280, '_wp_attachment_image_alt', 'destination management company dubai'),
(1238, 279, 'tdc_dirty_content', '1'),
(1239, 279, '_thumbnail_id', '280'),
(1240, 279, '_edit_last', '1'),
(1241, 279, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1242, 279, '_yoast_wpseo_primary_category', '12'),
(1243, 279, '_yoast_wpseo_focuskw', 'destination management company dubai'),
(1244, 279, '_yoast_wpseo_title', 'Discover the Best Destination Management Company in Dubai | Unforgettable Travel Experience Guaranteed'),
(1245, 279, '_yoast_wpseo_metadesc', 'Looking for a Destination Management Company (DMC) in Dubai? Find out how DMCs can enhance your travel experience with their local expertise, seamless logistics, and customized services.'),
(1246, 279, '_yoast_wpseo_linkdex', '40'),
(1247, 279, '_yoast_wpseo_estimated-reading-time-minutes', '6'),
(1248, 279, '_yoast_wpseo_wordproof_timestamp', ''),
(1249, 279, '_elementor_edit_mode', 'builder'),
(1250, 279, '_elementor_template_type', 'wp-post'),
(1251, 279, '_elementor_version', '3.13.4'),
(1252, 279, 'post_views_count', '213'),
(1261, 279, '_wp_page_template', 'default'),
(1262, 279, '_elementor_data', '[{\"id\":\"3160f33\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dfd455a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b1deff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: 400;\\\">Dubai, with its awe-inspiring skyline, luxurious resorts, and vibrant culture, has become a top tourist destination attracting millions of visitors each year. Exploring the wonders of this city can be an exhilarating experience, but to truly make the most of your trip, it\'s essential to partner with a reliable and proficient Destination Management Company (DMC). In this article, we will delve into the world of DMCs in Dubai, highlighting their role in the city\'s tourism industry, the services they provide, and the benefits of hiring them for your travel needs.<\\/span><\\/p><h2><b>What is a Destination Management Company (DMC)?<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">A Destination Management Company (DMC) is a professional entity that specializes in managing and coordinating all aspects of a visitor\'s travel experience in a particular destination. DMCs act as local experts, providing a comprehensive range of services to ensure a seamless and unforgettable journey. From event planning and transportation logistics to accommodation selection and cultural experiences, DMCs take care of every detail, allowing travelers to focus on enjoying their trip.<\\/span><\\/p><h2><b>The Role of DMCs in Dubai\'s Tourism Industry<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">Dubai\'s tourism industry thrives on providing exceptional experiences to travelers, and DMCs play a pivotal role in achieving this goal. These companies possess an in-depth understanding of Dubai\'s unique attractions, cultural nuances, and hidden gems. They collaborate closely with hotels, tour operators, and local suppliers to curate tailored itineraries that showcase the best of the city. By working hand in hand with DMCs, visitors can explore Dubai\'s iconic landmarks, immerse themselves in local traditions, and create cherished memories.<\\/span><\\/p><h2><b>Benefits of Hiring a DMC in Dubai<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">Partnering with a DMC in Dubai offers numerous benefits for travelers. Firstly, DMCs have extensive knowledge of the local market and can provide insider recommendations and insights that are often inaccessible to independent travelers. Their expertise ensures that you can explore Dubai like a local, discovering off-the-beaten-path attractions and engaging in authentic cultural experiences.<\\/span><\\/p><p><span style=\\\"font-weight: 400;\\\">Secondly, DMCs have established networks and relationships with reliable suppliers and service providers, guaranteeing the highest standards of quality and professionalism. Whether it\'s arranging airport transfers, securing exclusive reservations at top restaurants, or organizing unique activities, DMCs have the connections to make it happen seamlessly.<\\/span><\\/p><h2><b>Services Provided by DMCs in Dubai<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">DMCs in Dubai offer a wide array of services designed to cater to the diverse needs and preferences of travelers. Some of the key services include:<\\/span><\\/p><h2><b>Event Planning and Management<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">If you\'re organizing a corporate event, conference, or special celebration in Dubai, a DMC can handle all the intricate details. From conceptualizing the event theme to venue selection, catering arrangements, audiovisual setups, and entertainment, the DMC ensures a flawlessly executed event that leaves a lasting impression.<\\/span><\\/p><h2><b>Transportation and Logistics<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">Navigating Dubai\'s sprawling cityscape can be challenging, but with a DMC by your side, you can leave the logistics to the experts. DMCs coordinate airport transfers, chauffeur-driven car rentals, group transportation, and even luxury yacht or helicopter charters. Their meticulous planning ensures you reach your destinations on time, hassle-free.<\\/span><\\/p><h2><b>Accommodation and Venue Selection<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">Dubai boasts a wide range of luxurious hotels and unique venues, and selecting the right one can be overwhelming. DMCs help you find the perfect accommodation based on your preferences, budget, and location requirements. Whether it\'s a stylish city hotel, a tranquil beach resort, or an opulent desert retreat, DMCs have access to exclusive rates and insider deals.<\\/span><\\/p><h2><b>Sightseeing and Excursions<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">Dubai offers a plethora of captivating attractions, from the iconic Burj Khalifa to the bustling traditional markets (souks) and the enchanting Palm Jumeirah. DMCs organize sightseeing tours and excursions that cater to different interests, whether you want to explore the city\'s modern architecture, delve into its historical heritage, or indulge in thrilling desert adventures.<\\/span><\\/p><h2><b>Cultural Experiences and Activities<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">To truly immerse yourself in Dubai\'s rich culture and traditions, DMCs can arrange authentic experiences and activities. From camel riding and falconry demonstrations to traditional Emirati dining experiences and henna painting, these activities provide a deeper understanding of the local culture, making your visit even more meaningful.<\\/span><\\/p><h2><b>The Expertise and Local Knowledge of DMCs in Dubai<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">One of the significant advantages of partnering with a DMC in Dubai is their unmatched expertise and local knowledge. DMCs have a finger on the pulse of the city, staying up-to-date with the latest attractions, events, and trends. They can recommend the best times to visit specific attractions, guide you to hidden gems, and suggest unique experiences that align with your preferences. Their personalized approach ensures that every aspect of your trip is tailored to your needs, making it truly exceptional.<\\/span><\\/p><h2><b>How DMCs Ensure a Seamless Travel Experience<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">DMCs are committed to providing a seamless travel experience for their clients. They meticulously plan every detail, paying close attention to logistics, timing, and quality. From the moment you arrive in Dubai until your departure, DMCs are available to assist you 24\\/7, ensuring that your journey unfolds effortlessly. Their goal is to remove any stress or uncertainties, allowing you to relax and enjoy the city\'s wonders with peace of mind.<\\/span><\\/p><h2><b>The Importance of DMCs for Corporate Events and Incentive Travel<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">Dubai has become a sought-after destination for corporate events, meetings, and incentive travel. DMCs play a vital role in organizing these trips, leveraging their expertise to create tailored experiences that leave a lasting impression on attendees. Whether it\'s an executive conference, team-building activities, or incentive trips to reward top performers, DMCs bring creativity and professionalism to ensure the event\'s success.<\\/span><\\/p><h2><b>Selecting the Right DMC in Dubai<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">When choosing a DMC in Dubai, several factors should be considered:<\\/span><\\/p><ul><li style=\\\"font-weight: 400;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400;\\\">Reputation and Experience: Look for DMCs with a proven track record and positive reviews from previous clients.<\\/span><\\/li><li style=\\\"font-weight: 400;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400;\\\">Client Testimonials and References: Request testimonials or references from past clients to gauge their satisfaction levels.<\\/span><\\/li><li style=\\\"font-weight: 400;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400;\\\">Customization and Creativity: Ensure that the DMC can tailor their services to your specific needs and preferences, adding a creative touch to your itinerary.<\\/span><\\/li><li style=\\\"font-weight: 400;\\\" aria-level=\\\"1\\\"><span style=\\\"font-weight: 400;\\\">Network and Resources: Assess the DMC\'s connections with local suppliers, venues, and attractions to ensure access to exclusive experiences and competitive rates.<\\/span><\\/li><\\/ul><h2><b>The Future of Destination Management Companies in Dubai<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">As Dubai continues to evolve as a global tourism hub, the future of destination management companies in the city looks promising. The demand for personalized, immersive travel experiences is on the rise, and DMCs are poised to meet this demand. With their ability to curate bespoke itineraries, provide insider knowledge, and ensure seamless logistics, DMCs will continue to play a vital role in enhancing the travel experiences of visitors to Dubai.<\\/span><\\/p><h3><b>Conclusion<\\/b><\\/h3><p><span style=\\\"font-weight: 400;\\\">Partnering with a Destination Management Company in Dubai opens the doors to a world of unforgettable experiences. These professionals bring together their local expertise, network of resources, and creative vision to create tailor-made journeys that exceed expectations. From planning corporate events to organizing sightseeing tours and cultural experiences, DMCs in Dubai handle every aspect of your trip, ensuring a seamless and remarkable adventure. So, embrace the expertise of a DMC and embark on a journey through Dubai\'s wonders like never before.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),
(1270, 279, '_yoast_wpseo_content_score', '60'),
(1271, 285, '_edit_lock', '1685355511:1'),
(1272, 285, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1273, 286, '_wp_attached_file', '2023/05/sagar-bhujel-M_CpMaeDPJE-unsplash.jpg'),
(1274, 286, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:45:\"2023/05/sagar-bhujel-M_CpMaeDPJE-unsplash.jpg\";s:8:\"filesize\";i:596037;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"sagar-bhujel-M_CpMaeDPJE-unsplash-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18261;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"sagar-bhujel-M_CpMaeDPJE-unsplash-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146839;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"sagar-bhujel-M_CpMaeDPJE-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8639;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"sagar-bhujel-M_CpMaeDPJE-unsplash-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87812;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"sagar-bhujel-M_CpMaeDPJE-unsplash-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:292976;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:45:\"sagar-bhujel-M_CpMaeDPJE-unsplash-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7647;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:45:\"sagar-bhujel-M_CpMaeDPJE-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10790;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:45:\"sagar-bhujel-M_CpMaeDPJE-unsplash-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18261;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:45:\"sagar-bhujel-M_CpMaeDPJE-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29854;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:45:\"sagar-bhujel-M_CpMaeDPJE-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39292;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:45:\"sagar-bhujel-M_CpMaeDPJE-unsplash-696x522.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74654;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:46:\"sagar-bhujel-M_CpMaeDPJE-unsplash-1068x801.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159231;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1275, 286, '_wp_attachment_image_alt', 'dubai expo 2020 city'),
(1276, 285, 'tdc_dirty_content', '1'),
(1277, 285, '_thumbnail_id', '286'),
(1278, 285, '_edit_last', '1'),
(1279, 285, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1280, 285, '_yoast_wpseo_primary_category', '12'),
(1281, 285, '_yoast_wpseo_focuskw', 'dubai expo 2020 city'),
(1282, 285, '_yoast_wpseo_title', 'Dubai Expo 2020: Discover the Vibrant City'),
(1283, 285, '_yoast_wpseo_metadesc', 'Immerse yourself in the vibrant city of Dubai Expo 2020. Explore innovative exhibits, cultural showcases, and global connections in this extraordinary international event. Don\'t miss out on the excitement!'),
(1284, 285, '_yoast_wpseo_linkdex', '47'),
(1285, 285, '_yoast_wpseo_estimated-reading-time-minutes', '4'),
(1286, 285, '_yoast_wpseo_wordproof_timestamp', ''),
(1287, 285, '_elementor_edit_mode', 'builder'),
(1288, 285, '_elementor_template_type', 'wp-post'),
(1289, 285, '_elementor_version', '3.13.4'),
(1290, 285, 'post_views_count', '214'),
(1299, 285, '_wp_page_template', 'default'),
(1300, 285, '_elementor_data', '[{\"id\":\"b7b707a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"628f2e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b64eed8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-weight: 400;\\\">Dubai Expo 2020 is a global event that captures the essence of innovation, culture, and collaboration. As one of the most anticipated expos in recent times, Dubai Expo 2020 brings together nations from around the world to showcase their achievements and foster meaningful connections. In this article, we will delve into the fascinating world of Dubai Expo 2020, exploring its history, architecture, exhibitions, and the overall impact it has on the city of Dubai.<\\/span><\\/p><h2><b>History and Background of Dubai Expo 2020<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">Dubai\'s selection as the host city for Expo 2020 marked a significant milestone for the United Arab Emirates (UAE). The Expo, originally scheduled for 2020 but postponed to 2021 due to the global pandemic, is a testament to Dubai\'s status as a thriving cosmopolitan hub. The theme of Dubai Expo 2020 is \\\"Connecting Minds, Creating the Future,\\\" with subthemes focused on Opportunity, Mobility, and Sustainability.<\\/span><\\/p><h2><b>Architecture and Infrastructure of Dubai Expo 2020<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">One cannot discuss Dubai Expo 2020 without admiring the awe-inspiring architecture and infrastructure that define the event. Iconic structures such as the Al Wasl Plaza, designed to resemble a massive dome of woven steel, serve as the heart of the expo. Visitors will also be treated to an array of stunning pavilions representing different countries, each showcasing their unique heritage, technological advancements, and cultural treasures. Sustainability is at the core of Dubai Expo 2020, with initiatives in place to minimize environmental impact and promote renewable energy sources.<\\/span><\\/p><h2><b>Exhibitions and Events at Dubai Expo 2020<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">Dubai Expo 2020 is a melting pot of cultures, traditions, and ideas. Visitors can embark on a journey across the world by exploring the diverse range of country pavilions, each offering a glimpse into their nation\'s achievements and aspirations. From interactive displays to cultural performances, the exhibitions and events at Dubai Expo 2020 aim to foster understanding, collaboration, and appreciation of global diversity. The expo provides a platform for nations to share ideas, forge partnerships, and create a better future together.<\\/span><\\/p><h2><b>Innovation and Technology at Dubai Expo 2020<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">Dubai Expo 2020 is a hub of innovation and technological advancements. The event serves as a launchpad for cutting-edge inventions and ideas, offering startups and entrepreneurs an unparalleled opportunity to showcase their solutions to a global audience. Visitors can expect to witness futuristic technologies such as augmented reality, artificial intelligence, and sustainable innovations that are poised to shape the world we live in. Dubai Expo 2020 is a testament to the city\'s commitment to embracing the future and driving innovation.<\\/span><\\/p><h2><b>Economic Impact of Dubai Expo 2020<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">Hosting Dubai Expo 2020 has far-reaching economic implications for the city of Dubai and the wider UAE. The event is expected to attract millions of visitors, resulting in a significant boost to the tourism industry. With increased tourism comes job creation and economic growth, as new opportunities emerge across various sectors. Dubai Expo 2020 serves as a catalyst for trade and investment, fostering partnerships between businesses and driving economic diversification.<\\/span><\\/p><h2><b>Cultural Exchange and Diversity at Dubai Expo 2020<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">Dubai Expo 2020 celebrates the rich tapestry of cultures that exist around the world. Visitors have the opportunity to immerse themselves in the traditions, customs, and cuisines of different nations, fostering cross-cultural understanding and appreciation. The expo serves as a global platform for cultural exchange, breaking down barriers and promoting dialogue between people from diverse backgrounds. Dubai Expo 2020 is a testament to the power of unity and collaboration in a rapidly changing world.<\\/span><\\/p><h2><b>Legacy and Sustainability of Dubai Expo 2020<\\/b><\\/h2><p><span style=\\\"font-weight: 400;\\\">While Dubai Expo 2020 is a temporary event, its legacy extends far beyond its duration. The infrastructure created for the expo will be repurposed for various uses, ensuring long-term benefits for the city and its residents. Additionally, sustainability is a key focus of the expo, with initiatives in place to minimize waste, promote eco-friendly practices, and leave a positive environmental footprint. Dubai Expo 2020 showcases the city\'s commitment to sustainable development and serves as a model for future global events.<\\/span><\\/p><h3><b>Conclusion<\\/b><\\/h3><p><span style=\\\"font-weight: 400;\\\">Dubai Expo 2020 is a testament to Dubai\'s vision, ambition, and ability to bring the world together. The event offers a unique opportunity to experience the vibrancy of different cultures, witness technological marvels, and embrace the future of innovation. Dubai Expo 2020 is not just an expo; it is a celebration of humanity, collaboration, and the limitless possibilities that arise when nations unite.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),
(2356, 509, 'tdn_pic', 'tdn_pic_1'),
(2357, 509, '_wp_attached_file', 'tdn_pic_1.png'),
(2358, 509, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:600;s:6:\"height\";i:407;s:4:\"file\";s:13:\"tdn_pic_1.png\";s:8:\"filesize\";i:22393;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"tdn_pic_1-300x204.png\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12185;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"tdn_pic_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7977;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2359, 510, 'tdn_pic', 'tdn_pic_2'),
(2360, 510, '_wp_attached_file', 'tdn_pic_2.png'),
(2361, 510, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:500;s:6:\"height\";i:339;s:4:\"file\";s:13:\"tdn_pic_2.png\";s:8:\"filesize\";i:38534;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"tdn_pic_2-300x203.png\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11830;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"tdn_pic_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7467;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2362, 511, 'tdn_pic', 'tdn_pic_3'),
(2363, 511, '_wp_attached_file', 'tdn_pic_3.png'),
(2364, 511, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:500;s:6:\"height\";i:360;s:4:\"file\";s:13:\"tdn_pic_3.png\";s:8:\"filesize\";i:62685;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"tdn_pic_3-300x216.png\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19168;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"tdn_pic_3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11338;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1308, 285, '_yoast_wpseo_content_score', '60'),
(1328, 293, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1134;s:4:\"file\";s:51:\"2023/06/peter-broomfield-m3m-lnR90uM-unsplash-1.jpg\";s:8:\"filesize\";i:136189;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"peter-broomfield-m3m-lnR90uM-unsplash-1-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9799;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"peter-broomfield-m3m-lnR90uM-unsplash-1-1024x605.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:605;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42194;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"peter-broomfield-m3m-lnR90uM-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6903;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"peter-broomfield-m3m-lnR90uM-unsplash-1-768x454.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:454;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29084;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"peter-broomfield-m3m-lnR90uM-unsplash-1-1536x907.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:907;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72489;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:50:\"peter-broomfield-m3m-lnR90uM-unsplash-1-150x89.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5712;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:51:\"peter-broomfield-m3m-lnR90uM-unsplash-1-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8146;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:51:\"peter-broomfield-m3m-lnR90uM-unsplash-1-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9801;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:51:\"peter-broomfield-m3m-lnR90uM-unsplash-1-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15438;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:51:\"peter-broomfield-m3m-lnR90uM-unsplash-1-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20070;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:51:\"peter-broomfield-m3m-lnR90uM-unsplash-1-696x411.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25629;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:52:\"peter-broomfield-m3m-lnR90uM-unsplash-1-1068x631.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44557;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1416, 308, '_edit_lock', '1690282486:1'),
(1329, 293, '_wp_attachment_image_alt', 'Cars Dubai'),
(1333, 292, '_edit_last', '1'),
(1332, 292, '_thumbnail_id', '293'),
(1346, 295, '_edit_lock', '1687857402:1'),
(1337, 292, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1338, 292, '_yoast_wpseo_primary_category', '2'),
(1339, 292, '_yoast_wpseo_focuskw', 'Cars Dubai'),
(1340, 292, '_yoast_wpseo_title', 'Unleash Your Automotive Dreams with Cars Dubai - The Ultimate Destination for Luxury Cars'),
(1341, 292, '_yoast_wpseo_metadesc', 'Explore the world of luxury cars in Dubai, where automotive enthusiasts can indulge in their passion and experience the epitome of automotive excellence. Discover a wide range of luxurious and high-performance vehicles in the vibrant city of Dubai.'),
(1342, 292, '_yoast_wpseo_linkdex', '65'),
(1343, 292, '_yoast_wpseo_content_score', '30'),
(1344, 292, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1345, 292, '_yoast_wpseo_wordproof_timestamp', ''),
(1347, 295, 'tdc_dirty_content', '1'),
(1348, 295, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1349, 296, '_wp_attached_file', '2023/06/edvin-johansson-rlwE8f8anOc-unsplash.jpg'),
(1350, 296, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:48:\"2023/06/edvin-johansson-rlwE8f8anOc-unsplash.jpg\";s:8:\"filesize\";i:620778;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"edvin-johansson-rlwE8f8anOc-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19312;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"edvin-johansson-rlwE8f8anOc-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149596;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"edvin-johansson-rlwE8f8anOc-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10358;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"edvin-johansson-rlwE8f8anOc-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89152;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"edvin-johansson-rlwE8f8anOc-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:302603;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:48:\"edvin-johansson-rlwE8f8anOc-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8236;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:48:\"edvin-johansson-rlwE8f8anOc-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12863;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:48:\"edvin-johansson-rlwE8f8anOc-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19312;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:48:\"edvin-johansson-rlwE8f8anOc-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36135;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:48:\"edvin-johansson-rlwE8f8anOc-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45469;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:48:\"edvin-johansson-rlwE8f8anOc-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75407;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:49:\"edvin-johansson-rlwE8f8anOc-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161196;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1351, 296, '_wp_attachment_image_alt', 'desert hotel al ain'),
(1352, 295, '_thumbnail_id', '296'),
(1353, 295, '_edit_last', '1'),
(1354, 295, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1355, 295, '_yoast_wpseo_primary_category', '2'),
(1356, 295, '_yoast_wpseo_content_score', '30'),
(1357, 295, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1358, 295, '_yoast_wpseo_wordproof_timestamp', ''),
(1359, 298, '_edit_lock', '1687857566:1'),
(1360, 298, 'tdc_dirty_content', '1'),
(1361, 298, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1362, 299, '_wp_attached_file', '2023/06/jennvmy_-uWpggIb3iHs-unsplash.jpg'),
(1363, 299, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:41:\"2023/06/jennvmy_-uWpggIb3iHs-unsplash.jpg\";s:8:\"filesize\";i:482936;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"jennvmy_-uWpggIb3iHs-unsplash-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15642;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"jennvmy_-uWpggIb3iHs-unsplash-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113440;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"jennvmy_-uWpggIb3iHs-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8110;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"jennvmy_-uWpggIb3iHs-unsplash-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68215;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"jennvmy_-uWpggIb3iHs-unsplash-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:228592;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:41:\"jennvmy_-uWpggIb3iHs-unsplash-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7222;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:41:\"jennvmy_-uWpggIb3iHs-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9795;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:41:\"jennvmy_-uWpggIb3iHs-unsplash-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15642;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:41:\"jennvmy_-uWpggIb3iHs-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24625;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:41:\"jennvmy_-uWpggIb3iHs-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31571;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:41:\"jennvmy_-uWpggIb3iHs-unsplash-696x522.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58163;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:42:\"jennvmy_-uWpggIb3iHs-unsplash-1068x801.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122548;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1364, 299, '_wp_attachment_image_alt', 'maldives tour packages'),
(1365, 298, '_thumbnail_id', '299'),
(1366, 298, '_edit_last', '1'),
(1367, 298, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1368, 298, '_yoast_wpseo_primary_category', '12'),
(1369, 298, '_yoast_wpseo_focuskw', 'maldives tour packages'),
(1370, 298, '_yoast_wpseo_title', 'Explore the Pristine Beauty of the Maldives with Exclusive Tour Packages');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1371, 298, '_yoast_wpseo_metadesc', 'Discover the enchanting beauty of the Maldives with our carefully curated tour packages. Immerse yourself in crystal-clear waters, white sandy beaches, and luxurious resorts for an unforgettable tropical getaway.'),
(1372, 298, '_yoast_wpseo_linkdex', '65'),
(1373, 298, '_yoast_wpseo_content_score', '30'),
(1374, 298, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1375, 298, '_yoast_wpseo_wordproof_timestamp', ''),
(1376, 301, '_edit_lock', '1687857738:1'),
(1377, 301, 'tdc_dirty_content', '1'),
(1378, 301, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1379, 302, '_wp_attached_file', '2023/06/adryan-ra-RJzL2xK8GF4-unsplash.jpg'),
(1380, 302, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:42:\"2023/06/adryan-ra-RJzL2xK8GF4-unsplash.jpg\";s:8:\"filesize\";i:818877;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"adryan-ra-RJzL2xK8GF4-unsplash-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21594;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"adryan-ra-RJzL2xK8GF4-unsplash-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188340;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"adryan-ra-RJzL2xK8GF4-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9563;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"adryan-ra-RJzL2xK8GF4-unsplash-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108292;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:44:\"adryan-ra-RJzL2xK8GF4-unsplash-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:393589;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:42:\"adryan-ra-RJzL2xK8GF4-unsplash-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8557;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:42:\"adryan-ra-RJzL2xK8GF4-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12252;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:42:\"adryan-ra-RJzL2xK8GF4-unsplash-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21594;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:42:\"adryan-ra-RJzL2xK8GF4-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32956;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:42:\"adryan-ra-RJzL2xK8GF4-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47228;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:42:\"adryan-ra-RJzL2xK8GF4-unsplash-696x522.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91079;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:43:\"adryan-ra-RJzL2xK8GF4-unsplash-1068x801.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204423;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1381, 302, '_wp_attachment_image_alt', 'tour packages to dubai from saudi arabia'),
(1382, 301, '_thumbnail_id', '302'),
(1383, 301, '_edit_last', '1'),
(1384, 301, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1385, 301, '_yoast_wpseo_primary_category', '12'),
(1386, 301, '_yoast_wpseo_focuskw', 'tour packages to dubai from saudi arabia'),
(1387, 301, '_yoast_wpseo_title', 'Explore the Wonders of Dubai: Discover Exclusive Tour Packages from Saudi Arabia'),
(1388, 301, '_yoast_wpseo_metadesc', 'Embark on an unforgettable journey to Dubai with our exclusive tour packages from Saudi Arabia. Experience the glitz and glamour of the city\'s iconic landmarks, indulge in luxurious shopping and dining, and immerse yourself in the rich'),
(1389, 301, '_yoast_wpseo_linkdex', '63'),
(1390, 301, '_yoast_wpseo_content_score', '30'),
(1391, 301, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1392, 301, '_yoast_wpseo_wordproof_timestamp', ''),
(1393, 304, '_edit_lock', '1687857880:1'),
(1394, 304, 'tdc_dirty_content', '1'),
(1395, 304, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1396, 305, '_wp_attached_file', '2023/06/john-cameron-i8u5gz-ZeIc-unsplash.jpg'),
(1397, 305, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:45:\"2023/06/john-cameron-i8u5gz-ZeIc-unsplash.jpg\";s:8:\"filesize\";i:336152;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"john-cameron-i8u5gz-ZeIc-unsplash-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14657;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"john-cameron-i8u5gz-ZeIc-unsplash-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88375;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"john-cameron-i8u5gz-ZeIc-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7571;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"john-cameron-i8u5gz-ZeIc-unsplash-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56695;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"john-cameron-i8u5gz-ZeIc-unsplash-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170215;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:45:\"john-cameron-i8u5gz-ZeIc-unsplash-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6892;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:45:\"john-cameron-i8u5gz-ZeIc-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9798;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:45:\"john-cameron-i8u5gz-ZeIc-unsplash-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14657;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:45:\"john-cameron-i8u5gz-ZeIc-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20902;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:45:\"john-cameron-i8u5gz-ZeIc-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28524;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:45:\"john-cameron-i8u5gz-ZeIc-unsplash-696x522.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48331;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:46:\"john-cameron-i8u5gz-ZeIc-unsplash-1068x801.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95379;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1398, 292, 'post_views_count', '212'),
(2353, 7, 'tds_locker_preview', 'a:0:{}'),
(2354, 7, 'tds_locker_access_settings', 'a:1:{s:21:\"tds_locker_email_list\";s:1:\"3\";}'),
(1404, 295, 'post_views_count', '214'),
(1408, 298, 'post_views_count', '210'),
(2352, 7, 'tds_locker_settings', 'a:6:{s:9:\"tds_title\";s:36:\"This Content Is Only For Subscribers\";s:11:\"tds_message\";s:72:\"Please subscribe to unlock this content. Enter your email to get access.\";s:21:\"tds_input_placeholder\";s:32:\"Please enter your email address.\";s:19:\"tds_submit_btn_text\";s:19:\"Subscribe to unlock\";s:18:\"tds_after_btn_text\";s:42:\"Your email address is 100% safe from spam!\";s:10:\"tds_pp_msg\";s:109:\"I consent to processing of my data according to <a href=\"#\">Terms of Use</a> & <a href=\"#\">Privacy Policy</a>\";}'),
(1414, 301, 'post_views_count', '234'),
(1420, 309, '_wp_attachment_image_alt', 'Yachts Dubai'),
(1421, 308, '_thumbnail_id', '309'),
(1422, 308, '_wp_page_template', 'default'),
(1437, 308, 'post_views_count', '211'),
(1426, 308, 'tdc_dirty_content', '1'),
(1427, 308, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1428, 308, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1429, 308, '_yoast_wpseo_focuskw', 'Yachts Dubai'),
(1430, 308, '_yoast_wpseo_title', 'Yachts Dubai: Sailing in Luxury on the Waters of Extravagance'),
(1431, 308, '_yoast_wpseo_metadesc', 'Experience the epitome of luxury and elegance with Yachts in Dubai. Discover the opulence of private yacht charters, scenic cruises, and exclusive water adventures that redefine the meaning of extravagance in this captivating city.'),
(1432, 308, '_yoast_wpseo_linkdex', '70'),
(1433, 308, '_yoast_wpseo_content_score', '30'),
(1434, 308, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1435, 308, '_yoast_wpseo_wordproof_timestamp', ''),
(1436, 308, '_yoast_wpseo_primary_category', '2'),
(1438, 311, '_edit_lock', '1690282914:1'),
(1439, 311, '_edit_last', '1'),
(1440, 312, '_wp_attached_file', '2023/07/aleksey-smagin-sOV72e-7WsI-unsplash.jpg'),
(1441, 312, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:47:\"2023/07/aleksey-smagin-sOV72e-7WsI-unsplash.jpg\";s:8:\"filesize\";i:874020;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"aleksey-smagin-sOV72e-7WsI-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23820;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"aleksey-smagin-sOV72e-7WsI-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197536;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"aleksey-smagin-sOV72e-7WsI-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11547;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"aleksey-smagin-sOV72e-7WsI-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115485;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"aleksey-smagin-sOV72e-7WsI-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:410946;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:47:\"aleksey-smagin-sOV72e-7WsI-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9350;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:47:\"aleksey-smagin-sOV72e-7WsI-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15205;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:47:\"aleksey-smagin-sOV72e-7WsI-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23820;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:47:\"aleksey-smagin-sOV72e-7WsI-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40077;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:47:\"aleksey-smagin-sOV72e-7WsI-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56005;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:47:\"aleksey-smagin-sOV72e-7WsI-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97142;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:48:\"aleksey-smagin-sOV72e-7WsI-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:213562;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1442, 312, '_wp_attachment_image_alt', 'dubai expo 2020 city'),
(1443, 311, '_thumbnail_id', '312'),
(1444, 311, '_wp_page_template', 'default'),
(1445, 311, 'tdc_dirty_content', '1'),
(1446, 311, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1447, 311, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1448, 311, '_yoast_wpseo_focuskw', 'dubai expo 2020 city'),
(1449, 311, '_yoast_wpseo_title', 'Dubai Expo 2020: Unveiling the Future of a Dynamic City'),
(1450, 311, '_yoast_wpseo_metadesc', 'Discover the transformative journey of Dubai Expo 2020, where innovation, culture, and progress converge to showcase the vibrant essence of this dynamic city on the global stage.'),
(1451, 311, '_yoast_wpseo_linkdex', '62'),
(1452, 311, '_yoast_wpseo_content_score', '30'),
(1453, 311, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1454, 311, '_yoast_wpseo_wordproof_timestamp', ''),
(1455, 311, '_yoast_wpseo_primary_category', '4'),
(1456, 311, 'post_views_count', '220'),
(1457, 316, '_edit_lock', '1690283208:1'),
(1458, 316, '_edit_last', '1'),
(1459, 317, '_wp_attached_file', '2023/07/marcin-ciszewski-Zexjl0v3MRU-unsplash.jpg'),
(1460, 317, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:49:\"2023/07/marcin-ciszewski-Zexjl0v3MRU-unsplash.jpg\";s:8:\"filesize\";i:689372;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"marcin-ciszewski-Zexjl0v3MRU-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19921;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"marcin-ciszewski-Zexjl0v3MRU-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162870;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"marcin-ciszewski-Zexjl0v3MRU-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9892;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"marcin-ciszewski-Zexjl0v3MRU-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96980;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"marcin-ciszewski-Zexjl0v3MRU-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:325974;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:49:\"marcin-ciszewski-Zexjl0v3MRU-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8038;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:49:\"marcin-ciszewski-Zexjl0v3MRU-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12883;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:49:\"marcin-ciszewski-Zexjl0v3MRU-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19921;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:49:\"marcin-ciszewski-Zexjl0v3MRU-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35016;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:49:\"marcin-ciszewski-Zexjl0v3MRU-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47917;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:49:\"marcin-ciszewski-Zexjl0v3MRU-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81942;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:50:\"marcin-ciszewski-Zexjl0v3MRU-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175515;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1461, 317, '_wp_attachment_image_alt', 'get your guide dubai yacht'),
(1462, 316, '_thumbnail_id', '317'),
(1463, 316, '_wp_page_template', 'default'),
(1464, 316, 'tdc_dirty_content', '1'),
(1465, 316, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1466, 316, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1467, 316, '_yoast_wpseo_focuskw', 'get your guide dubai yacht'),
(1468, 316, '_yoast_wpseo_title', 'Get Your Guide Dubai Yacht: Unraveling the Ultimate Luxury Experience'),
(1469, 316, '_yoast_wpseo_metadesc', 'Embark on an unforgettable journey with Get Your Guide Dubai Yacht and discover the epitome of luxury on the Arabian waters. Explore private yacht charters, stunning cruises, and exclusive water adventures, all curated to redefine opulence in the enchanting city of Dubai.'),
(1470, 316, '_yoast_wpseo_linkdex', '55'),
(1471, 316, '_yoast_wpseo_content_score', '60'),
(1472, 316, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1473, 316, '_yoast_wpseo_wordproof_timestamp', ''),
(1474, 316, '_yoast_wpseo_primary_category', '12'),
(1475, 316, 'post_views_count', '233'),
(1476, 319, '_edit_lock', '1690283631:1'),
(1477, 319, '_edit_last', '1'),
(1478, 320, '_wp_attached_file', '2023/07/ralph-ravi-kayden-VaIKED35j3E-unsplash.jpg'),
(1479, 320, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:50:\"2023/07/ralph-ravi-kayden-VaIKED35j3E-unsplash.jpg\";s:8:\"filesize\";i:812088;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"ralph-ravi-kayden-VaIKED35j3E-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19904;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"ralph-ravi-kayden-VaIKED35j3E-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184241;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"ralph-ravi-kayden-VaIKED35j3E-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10235;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"ralph-ravi-kayden-VaIKED35j3E-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104241;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"ralph-ravi-kayden-VaIKED35j3E-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:394424;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:50:\"ralph-ravi-kayden-VaIKED35j3E-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8032;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:50:\"ralph-ravi-kayden-VaIKED35j3E-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12838;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:50:\"ralph-ravi-kayden-VaIKED35j3E-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19904;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:50:\"ralph-ravi-kayden-VaIKED35j3E-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38848;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:50:\"ralph-ravi-kayden-VaIKED35j3E-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51030;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:50:\"ralph-ravi-kayden-VaIKED35j3E-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86955;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:51:\"ralph-ravi-kayden-VaIKED35j3E-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199010;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1480, 320, '_wp_attachment_image_alt', 'water sightseeing near me'),
(1481, 319, '_thumbnail_id', '320'),
(1482, 319, '_wp_page_template', 'default'),
(1483, 319, 'tdc_dirty_content', '1'),
(1484, 319, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1485, 319, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1486, 319, '_yoast_wpseo_focuskw', 'water sightseeing near me'),
(1487, 319, '_yoast_wpseo_title', 'Water Sightseeing Near Me: Discover Scenic Adventures on the Waters'),
(1488, 319, '_yoast_wpseo_metadesc', 'Looking for water sightseeing near you? Unveil picturesque adventures with water sightseeing excursions nearby. From serene cruises to thrilling water sports, experience the beauty of nature and iconic landmarks from a unique perspective.'),
(1489, 319, '_yoast_wpseo_linkdex', '67'),
(1490, 319, '_yoast_wpseo_content_score', '90'),
(1491, 319, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1492, 319, '_yoast_wpseo_wordproof_timestamp', ''),
(1493, 319, '_yoast_wpseo_primary_category', '2'),
(1494, 319, 'post_views_count', '214'),
(1504, 327, '_edit_last', '9467'),
(1505, 327, '_edit_lock', '1693382570:9467'),
(1506, 328, '_wp_attached_file', '2023/08/akvapark_yas_waterworld_6.jpg'),
(1507, 328, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1146;s:4:\"file\";s:37:\"2023/08/akvapark_yas_waterworld_6.jpg\";s:8:\"filesize\";i:812646;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"akvapark_yas_waterworld_6-300x134.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19534;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"akvapark_yas_waterworld_6-1024x458.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:458;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173972;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"akvapark_yas_waterworld_6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11796;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"akvapark_yas_waterworld_6-768x344.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105376;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:38:\"akvapark_yas_waterworld_6-1536x688.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:688;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:340384;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:38:\"akvapark_yas_waterworld_6-2048x917.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:917;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:533576;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:36:\"akvapark_yas_waterworld_6-150x67.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5926;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:37:\"akvapark_yas_waterworld_6-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16529;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:37:\"akvapark_yas_waterworld_6-300x134.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19569;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:37:\"akvapark_yas_waterworld_6-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55413;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:37:\"akvapark_yas_waterworld_6-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74704;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:37:\"akvapark_yas_waterworld_6-696x312.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:312;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88416;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:38:\"akvapark_yas_waterworld_6-1068x478.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187247;}s:9:\"td_1920x0\";a:5:{s:4:\"file\";s:38:\"akvapark_yas_waterworld_6-1920x860.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:484680;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:12:\"Fares Jammal\";s:6:\"camera\";s:8:\"NIKON D3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1355155595\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"38\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:6:\"0.0004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1508, 327, '_thumbnail_id', '328'),
(1509, 327, '_wp_page_template', 'default'),
(1522, 327, 'post_views_count', '223'),
(1513, 327, 'tdc_dirty_content', '1'),
(1514, 327, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1515, 327, 'td_post_theme_settings', 'a:2:{s:11:\"td_subtitle\";s:66:\" \"Unveiling Yas Waterworld: A Splashing Adventure on Yas Island\"\r\n\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1516, 327, '_yoast_wpseo_title', '\"Unveiling Yas Waterworld: A Splashing Adventure on Yas Island\"'),
(1517, 327, '_yoast_wpseo_metadesc', '\"Embark on an unforgettable aquatic journey at Yas Waterworld on Yas Island. Discover thrilling slides, relaxing pools, and family-friendly attractions. Dive into a world of adventure and relaxation today!\"'),
(1518, 327, '_yoast_wpseo_content_score', '60'),
(1519, 327, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1520, 327, '_yoast_wpseo_wordproof_timestamp', ''),
(1521, 327, '_yoast_wpseo_primary_category', '12'),
(1523, 337, '_edit_last', '9467'),
(1524, 337, '_edit_lock', '1693382907:9467'),
(1525, 338, '_wp_attached_file', '2023/08/1x-1.jpg'),
(1526, 338, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1295;s:4:\"file\";s:16:\"2023/08/1x-1.jpg\";s:8:\"filesize\";i:973529;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"1x-1-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20350;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"1x-1-1024x663.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:169423;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"1x-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9223;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"1x-1-768x497.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105607;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"1x-1-1536x995.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:995;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:325059;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:15:\"1x-1-150x97.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6103;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:16:\"1x-1-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12458;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:16:\"1x-1-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20338;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:16:\"1x-1-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42722;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:16:\"1x-1-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55138;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:16:\"1x-1-696x451.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89817;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:17:\"1x-1-1068x692.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:692;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182609;}s:9:\"td_1920x0\";a:5:{s:4:\"file\";s:18:\"1x-1-1920x1243.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:459511;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:2:\"AP\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:341:\"A man puts a small boy on his shoulders to look at an animatronic dinosaur at the IMG Worlds of Adventure amusement park in Dubai, United Arab Emirates, on Wednesday, Aug. 31, 2016. The IMG Worlds of Adventure indoor theme park opened Wednesday in Dubai, hoping to draw thrill seekers to its air-conditioned confines. (AP Photo/Jon Gambrell)\";s:17:\"created_timestamp\";s:10:\"1472650628\";s:9:\"copyright\";s:57:\"Copyright 2016 The Associated Press. All rights reserved.\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:4:\"6400\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:24:\"Mideast Dubai Theme Park\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(1527, 337, '_thumbnail_id', '338'),
(1528, 337, '_wp_page_template', 'default'),
(1541, 337, 'post_views_count', '226'),
(1532, 337, 'tdc_dirty_content', '1'),
(1533, 337, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1534, 337, 'td_post_theme_settings', 'a:2:{s:11:\"td_subtitle\";s:86:\" Unleashing Imagination at IMG Theme Park: A Wonderland of Thrills and Entertainment\r\n\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1535, 337, '_yoast_wpseo_title', 'Unleashing Imagination at IMG Theme Park'),
(1536, 337, '_yoast_wpseo_metadesc', 'Discover a world of excitement and wonder at IMG Theme Park. Immerse yourself in thrilling rides, captivating shows, and endless entertainment for all ages. Plan your visit now for an unforgettable adventure!'),
(1537, 337, '_yoast_wpseo_content_score', '60'),
(1538, 337, '_yoast_wpseo_estimated-reading-time-minutes', '2'),
(1539, 337, '_yoast_wpseo_wordproof_timestamp', ''),
(1540, 337, '_yoast_wpseo_primary_category', '12'),
(1542, 340, '_edit_last', '9467'),
(1543, 340, '_edit_lock', '1693383128:9467'),
(1544, 341, '_wp_attached_file', '2023/08/7Knraibc-Fairmont-The-Palm-kids.jpg'),
(1545, 341, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:43:\"2023/08/7Knraibc-Fairmont-The-Palm-kids.jpg\";s:8:\"filesize\";i:1045643;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"7Knraibc-Fairmont-The-Palm-kids-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13227;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"7Knraibc-Fairmont-The-Palm-kids-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110835;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"7Knraibc-Fairmont-The-Palm-kids-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6299;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"7Knraibc-Fairmont-The-Palm-kids-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67216;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:43:\"7Knraibc-Fairmont-The-Palm-kids-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4551;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:43:\"7Knraibc-Fairmont-The-Palm-kids-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8266;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:43:\"7Knraibc-Fairmont-The-Palm-kids-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13227;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:43:\"7Knraibc-Fairmont-The-Palm-kids-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24406;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:43:\"7Knraibc-Fairmont-The-Palm-kids-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33878;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:43:\"7Knraibc-Fairmont-The-Palm-kids-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56599;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:44:\"7Knraibc-Fairmont-The-Palm-kids-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119767;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:47:\"Paul Thuysbaert Photography\nwww.photography.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1546, 340, '_thumbnail_id', '341'),
(1547, 340, '_wp_page_template', 'default'),
(1560, 340, 'post_views_count', '236'),
(1551, 340, 'tdc_dirty_content', '1'),
(1552, 340, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1553, 340, 'td_post_theme_settings', 'a:2:{s:11:\"td_subtitle\";s:61:\"Exploring Dubai in a Day: Unforgettable Day Trip Adventures\r\n\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1554, 340, '_yoast_wpseo_title', 'Exploring Dubai in a Day: Unforgettable Day Trip Adventures'),
(1555, 340, '_yoast_wpseo_metadesc', 'Embark on a memorable day trip in Dubai and discover iconic landmarks, hidden gems, and the vibrant culture of this dynamic city. Make the most of your day with our guide to the best attractions and experiences.'),
(1556, 340, '_yoast_wpseo_content_score', '60'),
(1557, 340, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1558, 340, '_yoast_wpseo_wordproof_timestamp', ''),
(1559, 340, '_yoast_wpseo_primary_category', '12'),
(1561, 343, '_edit_last', '9467'),
(1562, 343, '_edit_lock', '1693383512:9467'),
(1563, 344, '_wp_attached_file', '2023/08/amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash.jpg'),
(1564, 344, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:58:\"2023/08/amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash.jpg\";s:8:\"filesize\";i:467958;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18066;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133301;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7819;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84470;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:60:\"amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:247789;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:58:\"amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5700;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:58:\"amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10918;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:58:\"amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18066;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:58:\"amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31988;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:58:\"amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43203;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:58:\"amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71896;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:59:\"amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142865;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1565, 343, '_thumbnail_id', '344'),
(1566, 343, '_wp_page_template', 'default'),
(1579, 343, 'post_views_count', '222'),
(1570, 343, 'tdc_dirty_content', '1'),
(1571, 343, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1572, 343, 'td_post_theme_settings', 'a:2:{s:11:\"td_subtitle\";s:61:\"Musandam Dubai Tour: A Journey of Discovery and Tranquility\r\n\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1573, 343, '_yoast_wpseo_title', 'Musandam Dubai Tour: A Journey of Discovery and Tranquility'),
(1574, 343, '_yoast_wpseo_metadesc', 'Embark on an unforgettable Musandam Dubai tour and immerse yourself in the breathtaking beauty of the Musandam Peninsula. Discover pristine beaches, rugged mountains, and captivating fjords on this enchanting journey.'),
(1575, 343, '_yoast_wpseo_content_score', '30'),
(1576, 343, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1577, 343, '_yoast_wpseo_wordproof_timestamp', ''),
(1578, 343, '_yoast_wpseo_primary_category', '12'),
(1580, 356, '_edit_last', '9467'),
(1581, 356, '_edit_lock', '1693930515:9467'),
(1582, 357, '_wp_attached_file', '2023/09/WhatsApp-Image-2023-09-05-at-1.34.21-PM.jpeg'),
(1583, 357, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:52:\"2023/09/WhatsApp-Image-2023-09-05-at-1.34.21-PM.jpeg\";s:8:\"filesize\";i:196958;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-09-05-at-1.34.21-PM-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10057;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2023-09-05-at-1.34.21-PM-1024x682.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58632;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-09-05-at-1.34.21-PM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5159;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-09-05-at-1.34.21-PM-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37946;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-09-05-at-1.34.21-PM-1536x1023.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109525;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-09-05-at-1.34.21-PM-150x100.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4205;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-09-05-at-1.34.21-PM-218x150.jpeg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6785;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-09-05-at-1.34.21-PM-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10060;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-09-05-at-1.34.21-PM-324x400.jpeg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16429;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-09-05-at-1.34.21-PM-485x360.jpeg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20927;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-09-05-at-1.34.21-PM-696x464.jpeg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32870;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2023-09-05-at-1.34.21-PM-1068x712.jpeg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1584, 356, '_thumbnail_id', '357'),
(1585, 356, '_wp_page_template', 'default'),
(1598, 356, 'post_views_count', '216'),
(1589, 356, 'tdc_dirty_content', '1'),
(1590, 356, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1591, 356, 'td_post_theme_settings', 'a:2:{s:11:\"td_subtitle\";s:78:\"**Exploring the Beauty of Gemstones: A Guide to Celinni\'s Jewelry Collection**\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1592, 356, '_yoast_wpseo_title', 'A Guide to Celinni\'s Jewelry Collection'),
(1593, 356, '_yoast_wpseo_metadesc', 'Gemstones have held a special place in human history for centuries. These precious stones, with their radiant colors and unique properties, have not only adorned royalty but also captivated the hearts of countless individuals worldwide. At Celinni, the fascination with gemstones is at the core of their jewelry creations.'),
(1594, 356, '_yoast_wpseo_content_score', '30'),
(1595, 356, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1596, 356, '_yoast_wpseo_wordproof_timestamp', ''),
(1597, 356, '_yoast_wpseo_primary_category', '49'),
(1599, 360, '_edit_last', '9467'),
(1600, 360, '_edit_lock', '1765214339:9467'),
(1601, 361, '_wp_attached_file', '2023/09/news-banner-1-1.jpg'),
(1602, 361, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:800;s:6:\"height\";i:400;s:4:\"file\";s:27:\"2023/09/news-banner-1-1.jpg\";s:8:\"filesize\";i:233574;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"news-banner-1-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13142;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"news-banner-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7369;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"news-banner-1-1-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55541;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:26:\"news-banner-1-1-150x75.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4695;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:27:\"news-banner-1-1-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9979;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:27:\"news-banner-1-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13142;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:27:\"news-banner-1-1-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26661;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:27:\"news-banner-1-1-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35246;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:27:\"news-banner-1-1-696x348.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:348;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48600;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1603, 361, '_wp_attachment_image_alt', 'Car rental Dubai'),
(1604, 360, '_thumbnail_id', '365'),
(1605, 360, '_wp_page_template', 'default'),
(1609, 360, 'tdc_dirty_content', '1'),
(1610, 360, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1611, 360, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1612, 360, '_yoast_wpseo_content_score', '60'),
(1613, 360, '_yoast_wpseo_estimated-reading-time-minutes', '4'),
(1614, 360, '_yoast_wpseo_wordproof_timestamp', ''),
(1615, 360, '_yoast_wpseo_primary_category', '12'),
(1619, 360, 'post_views_count', '225'),
(1622, 304, 'post_views_count', '0'),
(1625, 365, '_wp_attached_file', '2023/09/Rent-a-car.png');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1626, 365, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:800;s:6:\"height\";i:400;s:4:\"file\";s:22:\"2023/09/Rent-a-car.png\";s:8:\"filesize\";i:461970;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Rent-a-car-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63020;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Rent-a-car-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34270;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"Rent-a-car-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:379014;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:21:\"Rent-a-car-150x75.png\";s:5:\"width\";i:150;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16526;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:22:\"Rent-a-car-218x150.png\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48176;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:22:\"Rent-a-car-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63020;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:22:\"Rent-a-car-324x400.png\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:201894;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:22:\"Rent-a-car-485x360.png\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:238353;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:22:\"Rent-a-car-696x348.png\";s:5:\"width\";i:696;s:6:\"height\";i:348;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:316039;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1627, 365, '_wp_attachment_image_alt', 'Rent a car Dubai'),
(1631, 367, '_edit_last', '9467'),
(1632, 367, '_edit_lock', '1697361258:9467'),
(1633, 368, '_wp_attached_file', '2023/10/WhatsApp-Image-2023-10-12-at-3.42.36-PM.jpeg'),
(1634, 368, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1066;s:6:\"height\";i:1600;s:4:\"file\";s:52:\"2023/10/WhatsApp-Image-2023-10-12-at-3.42.36-PM.jpeg\";s:8:\"filesize\";i:294192;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12339;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-682x1024.jpeg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79278;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6366;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-768x1153.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96498;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-1023x1536.jpeg\";s:5:\"width\";i:1023;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155264;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-150x225.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8294;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-218x150.jpeg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6403;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-300x450.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22427;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-324x400.jpeg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20800;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-485x360.jpeg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21820;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-696x1045.jpeg\";s:5:\"width\";i:696;s:6:\"height\";i:1045;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81976;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1635, 369, '_wp_attached_file', '2023/10/WhatsApp-Image-2023-10-12-at-3.42.36-PM-1.jpeg'),
(1636, 369, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1066;s:6:\"height\";i:1600;s:4:\"file\";s:54:\"2023/10/WhatsApp-Image-2023-10-12-at-3.42.36-PM-1.jpeg\";s:8:\"filesize\";i:351737;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-1-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16048;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-1-682x1024.jpeg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109836;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7838;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-1-768x1153.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132215;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:56:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-1-1023x1536.jpeg\";s:5:\"width\";i:1023;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:201526;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-1-150x225.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10205;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-1-218x150.jpeg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7579;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-1-300x450.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29901;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-1-324x400.jpeg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26735;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-1-485x360.jpeg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25294;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:55:\"WhatsApp-Image-2023-10-12-at-3.42.36-PM-1-696x1045.jpeg\";s:5:\"width\";i:696;s:6:\"height\";i:1045;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113820;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1637, 367, '_thumbnail_id', '368'),
(1638, 367, '_wp_page_template', 'default'),
(1668, 375, '_wp_attached_file', '2023/10/ppp-300x174-1.png'),
(1667, 372, 'post_views_count', '200'),
(1642, 367, 'tdc_dirty_content', '1'),
(1643, 367, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1644, 367, 'td_post_theme_settings', 'a:2:{s:11:\"td_subtitle\";s:81:\"Discover Style at House of Cuts: Your Ultimate Destination for a Haircut in Dubai\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1645, 367, '_yoast_wpseo_metadesc', 'Are you in the vibrant city of Dubai and in need of a fresh and stylish haircut? Look no further than the renowned House of Cuts – your go-to destination for top-notch hair grooming in this cosmopolitan hub.'),
(1646, 367, '_yoast_wpseo_content_score', '90'),
(1647, 367, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1648, 367, '_yoast_wpseo_wordproof_timestamp', ''),
(1649, 367, '_yoast_wpseo_primary_category', '54'),
(1650, 367, 'post_views_count', '216'),
(1651, 372, '_edit_last', '9467'),
(1652, 372, '_edit_lock', '1698049535:9467'),
(1653, 373, '_wp_attached_file', '2023/10/ppp.png'),
(1654, 373, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:987;s:6:\"height\";i:572;s:4:\"file\";s:15:\"2023/10/ppp.png\";s:8:\"filesize\";i:1131114;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"ppp-300x174.png\";s:5:\"width\";i:300;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92530;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"ppp-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42872;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"ppp-768x445.png\";s:5:\"width\";i:768;s:6:\"height\";i:445;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:487562;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:14:\"ppp-150x87.png\";s:5:\"width\";i:150;s:6:\"height\";i:87;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26826;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:15:\"ppp-218x150.png\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60536;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:15:\"ppp-300x174.png\";s:5:\"width\";i:300;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92428;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:15:\"ppp-324x400.png\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:200644;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:15:\"ppp-485x360.png\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:269287;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:15:\"ppp-696x403.png\";s:5:\"width\";i:696;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:409441;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1655, 372, '_wp_page_template', 'default'),
(1658, 372, 'tdc_dirty_content', '1'),
(1659, 372, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1660, 372, 'td_post_theme_settings', 'a:3:{s:16:\"td_post_template\";s:15:\"single_template\";s:11:\"td_subtitle\";s:27:\"Ideas for office lighting  \";s:10:\"tds_locker\";s:1:\"7\";}'),
(1661, 372, '_yoast_wpseo_title', 'Ideas for office lighting'),
(1662, 372, '_yoast_wpseo_metadesc', 'Simply put, the lower the color temperature, the warmer the color, which is reddish; conversely, the higher the color temperature, the cooler it is, which is bluish.'),
(1663, 372, '_yoast_wpseo_content_score', '60'),
(1664, 372, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1665, 372, '_yoast_wpseo_wordproof_timestamp', ''),
(1666, 372, '_yoast_wpseo_primary_category', '58'),
(1669, 375, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:300;s:6:\"height\";i:174;s:4:\"file\";s:25:\"2023/10/ppp-300x174-1.png\";s:8:\"filesize\";i:92428;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"ppp-300x174-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40331;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:24:\"ppp-300x174-1-150x87.png\";s:5:\"width\";i:150;s:6:\"height\";i:87;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26959;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:25:\"ppp-300x174-1-218x150.png\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57308;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1670, 372, '_thumbnail_id', '373'),
(1680, 378, '_edit_lock', '1699508707:9467'),
(1681, 378, '_edit_last', '9467'),
(1682, 379, '_wp_attached_file', '2023/11/suhyeon-choi-tTfDMaRq-FE-unsplash.jpg'),
(1683, 379, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:45:\"2023/11/suhyeon-choi-tTfDMaRq-FE-unsplash.jpg\";s:8:\"filesize\";i:237855;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"suhyeon-choi-tTfDMaRq-FE-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14345;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"suhyeon-choi-tTfDMaRq-FE-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74784;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"suhyeon-choi-tTfDMaRq-FE-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6665;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"suhyeon-choi-tTfDMaRq-FE-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49967;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"suhyeon-choi-tTfDMaRq-FE-unsplash-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131506;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:45:\"suhyeon-choi-tTfDMaRq-FE-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5760;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:45:\"suhyeon-choi-tTfDMaRq-FE-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9577;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:45:\"suhyeon-choi-tTfDMaRq-FE-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14328;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:45:\"suhyeon-choi-tTfDMaRq-FE-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19220;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:45:\"suhyeon-choi-tTfDMaRq-FE-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28042;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:45:\"suhyeon-choi-tTfDMaRq-FE-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43926;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:46:\"suhyeon-choi-tTfDMaRq-FE-unsplash-1068x713.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79469;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1684, 380, '_wp_attached_file', '2023/11/john-mcarthur-8KLLgqHMAv4-unsplash.jpg'),
(1685, 380, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1241;s:4:\"file\";s:46:\"2023/11/john-mcarthur-8KLLgqHMAv4-unsplash.jpg\";s:8:\"filesize\";i:151255;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"john-mcarthur-8KLLgqHMAv4-unsplash-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7385;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"john-mcarthur-8KLLgqHMAv4-unsplash-1024x662.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:662;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41867;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"john-mcarthur-8KLLgqHMAv4-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4082;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"john-mcarthur-8KLLgqHMAv4-unsplash-768x496.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27129;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"john-mcarthur-8KLLgqHMAv4-unsplash-1536x993.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:993;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78398;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:45:\"john-mcarthur-8KLLgqHMAv4-unsplash-150x97.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3165;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:46:\"john-mcarthur-8KLLgqHMAv4-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5087;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:46:\"john-mcarthur-8KLLgqHMAv4-unsplash-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7404;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:46:\"john-mcarthur-8KLLgqHMAv4-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13198;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:46:\"john-mcarthur-8KLLgqHMAv4-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15813;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:46:\"john-mcarthur-8KLLgqHMAv4-unsplash-696x450.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23824;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:47:\"john-mcarthur-8KLLgqHMAv4-unsplash-1068x690.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:690;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44965;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1686, 378, '_thumbnail_id', '380'),
(1687, 378, '_wp_page_template', 'default'),
(1691, 378, 'tdc_dirty_content', '1'),
(1692, 378, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1693, 378, 'td_post_theme_settings', 'a:3:{s:16:\"td_post_template\";s:15:\"single_template\";s:11:\"td_subtitle\";s:51:\" Find Your Next Adventure with Cheap Flight Tickets\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1694, 378, '_yoast_wpseo_primary_category', '62'),
(1695, 378, '_yoast_wpseo_content_score', '90'),
(1696, 378, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1697, 378, '_yoast_wpseo_wordproof_timestamp', ''),
(1703, 378, 'post_views_count', '169'),
(1701, 378, '_yoast_wpseo_title', 'Find Your Next Adventure with Cheap Flight Tickets'),
(1702, 378, '_yoast_wpseo_metadesc', 'Looking for affordable travel options? Discover the best deals on cheap flight tickets at GoBestPlan.com and start your next adventure today.'),
(1704, 382, '_edit_lock', '1700125320:9467'),
(1705, 382, '_edit_last', '9467'),
(1706, 383, '_wp_attached_file', '2023/11/WhatsApp-Image-2023-11-15-at-4.20.49-PM.jpeg'),
(1707, 383, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:52:\"2023/11/WhatsApp-Image-2023-11-15-at-4.20.49-PM.jpeg\";s:8:\"filesize\";i:255358;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8634;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55557;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4582;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33174;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123019;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-150x100.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3751;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-218x150.jpeg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5964;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8634;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-324x400.jpeg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13856;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-485x360.jpeg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17940;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-696x464.jpeg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28285;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-1068x712.jpeg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60239;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1708, 384, '_wp_attached_file', '2023/11/WhatsApp-Image-2023-11-15-at-4.20.49-PM-1.jpeg'),
(1709, 384, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:54:\"2023/11/WhatsApp-Image-2023-11-15-at-4.20.49-PM-1.jpeg\";s:8:\"filesize\";i:333349;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-1-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17182;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-1-1024x682.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102879;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8420;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-1-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68134;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:56:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-1-1536x1023.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185273;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-1-150x100.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6175;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-1-218x150.jpeg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11163;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-1-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17169;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-1-324x400.jpeg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31893;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-1-485x360.jpeg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38360;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-1-696x464.jpeg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58949;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:55:\"WhatsApp-Image-2023-11-15-at-4.20.49-PM-1-1068x712.jpeg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108884;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1710, 382, '_thumbnail_id', '384'),
(1711, 382, '_wp_page_template', 'default'),
(1724, 382, 'post_views_count', '176'),
(1715, 382, 'tdc_dirty_content', '1'),
(1716, 382, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1717, 382, 'td_post_theme_settings', 'a:3:{s:16:\"td_post_template\";s:15:\"single_template\";s:11:\"td_subtitle\";s:78:\"Warranty and Service Agreements: What to Expect When Buying Machinery Online\r\n\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1718, 382, '_yoast_wpseo_primary_category', '66'),
(1719, 382, '_yoast_wpseo_title', 'Warranty and Service Agreements:'),
(1720, 382, '_yoast_wpseo_metadesc', 'The digital age has certainly made things a lot easier. You can simply pop into an industrial marketplace like Industbay, buy hands tools online, or whatever else you desire, and you’re good to go. For all its conveniences, certain uniue concerns come into the picture when you buy and sell industrial equipment online'),
(1721, 382, '_yoast_wpseo_content_score', '90'),
(1722, 382, '_yoast_wpseo_estimated-reading-time-minutes', '5'),
(1723, 382, '_yoast_wpseo_wordproof_timestamp', ''),
(1731, 388, '_edit_last', '9467'),
(1732, 388, '_edit_lock', '1701154535:9467'),
(1733, 389, '_wp_attached_file', '2023/11/chris-lawton-o0l-M8W_7wA-unsplash.jpg'),
(1734, 389, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:45:\"2023/11/chris-lawton-o0l-M8W_7wA-unsplash.jpg\";s:8:\"filesize\";i:430470;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"chris-lawton-o0l-M8W_7wA-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15555;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"chris-lawton-o0l-M8W_7wA-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117184;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"chris-lawton-o0l-M8W_7wA-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6915;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"chris-lawton-o0l-M8W_7wA-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73510;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"chris-lawton-o0l-M8W_7wA-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218208;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:45:\"chris-lawton-o0l-M8W_7wA-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5099;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:45:\"chris-lawton-o0l-M8W_7wA-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9486;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:45:\"chris-lawton-o0l-M8W_7wA-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15555;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:45:\"chris-lawton-o0l-M8W_7wA-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30443;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:45:\"chris-lawton-o0l-M8W_7wA-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37859;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:45:\"chris-lawton-o0l-M8W_7wA-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62483;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:46:\"chris-lawton-o0l-M8W_7wA-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125189;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1735, 388, '_thumbnail_id', '389'),
(1736, 388, '_wp_page_template', 'default'),
(1749, 388, 'post_views_count', '150'),
(1740, 388, 'tdc_dirty_content', '1'),
(1741, 388, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1742, 388, 'td_post_theme_settings', 'a:3:{s:16:\"td_post_template\";s:15:\"single_template\";s:11:\"td_subtitle\";s:87:\"Unveiling the Political Map of the UAE: A Closer Look at Its Administrative Divisions\r\n\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1743, 388, '_yoast_wpseo_primary_category', '70'),
(1744, 388, '_yoast_wpseo_title', 'Unveiling the Political Map of the UAE'),
(1745, 388, '_yoast_wpseo_metadesc', 'Discover the intricacies of the political map of the UAE, including its administrative divisions and regions.'),
(1746, 388, '_yoast_wpseo_content_score', '30'),
(1747, 388, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1748, 388, '_yoast_wpseo_wordproof_timestamp', ''),
(1750, 391, '_edit_last', '9467'),
(1751, 391, '_edit_lock', '1701154800:9467'),
(1752, 392, '_wp_attached_file', '2023/11/cdc-LiNIONbajm4-unsplash.jpg'),
(1753, 392, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:36:\"2023/11/cdc-LiNIONbajm4-unsplash.jpg\";s:8:\"filesize\";i:436723;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"cdc-LiNIONbajm4-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14839;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"cdc-LiNIONbajm4-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99480;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"cdc-LiNIONbajm4-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7415;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"cdc-LiNIONbajm4-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62429;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:38:\"cdc-LiNIONbajm4-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197920;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:36:\"cdc-LiNIONbajm4-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5571;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:36:\"cdc-LiNIONbajm4-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9646;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:36:\"cdc-LiNIONbajm4-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14839;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:36:\"cdc-LiNIONbajm4-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26236;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:36:\"cdc-LiNIONbajm4-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33124;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:36:\"cdc-LiNIONbajm4-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53229;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:37:\"cdc-LiNIONbajm4-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106542;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1754, 391, '_thumbnail_id', '392'),
(1755, 391, '_wp_page_template', 'default'),
(1768, 391, 'post_views_count', '141'),
(1759, 391, 'tdc_dirty_content', '1'),
(1760, 391, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1761, 391, 'td_post_theme_settings', 'a:3:{s:16:\"td_post_template\";s:15:\"single_template\";s:11:\"td_subtitle\";s:75:\"Navigating Political Science Jobs in the UAE: Opportunities and Prospects\r\n\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1762, 391, '_yoast_wpseo_primary_category', '72'),
(1763, 391, '_yoast_wpseo_title', 'Navigating Political Science Jobs in the UAE'),
(1764, 391, '_yoast_wpseo_metadesc', 'Discover the diverse landscape of political science jobs in the UAE.'),
(1765, 391, '_yoast_wpseo_content_score', '90'),
(1766, 391, '_yoast_wpseo_estimated-reading-time-minutes', '2'),
(1767, 391, '_yoast_wpseo_wordproof_timestamp', ''),
(1769, 394, '_edit_last', '9467'),
(1770, 394, '_edit_lock', '1701155110:9467'),
(1771, 395, '_wp_attached_file', '2023/11/alexander-grey-8lnbXtxFGZw-unsplash.jpg'),
(1772, 395, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:47:\"2023/11/alexander-grey-8lnbXtxFGZw-unsplash.jpg\";s:8:\"filesize\";i:954510;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"alexander-grey-8lnbXtxFGZw-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28878;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"alexander-grey-8lnbXtxFGZw-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:268606;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"alexander-grey-8lnbXtxFGZw-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11601;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"alexander-grey-8lnbXtxFGZw-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163501;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"alexander-grey-8lnbXtxFGZw-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:515042;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:47:\"alexander-grey-8lnbXtxFGZw-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8268;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:47:\"alexander-grey-8lnbXtxFGZw-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16715;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:47:\"alexander-grey-8lnbXtxFGZw-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28878;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:47:\"alexander-grey-8lnbXtxFGZw-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57292;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:47:\"alexander-grey-8lnbXtxFGZw-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77560;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:47:\"alexander-grey-8lnbXtxFGZw-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136248;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:48:\"alexander-grey-8lnbXtxFGZw-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:288504;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1773, 394, '_thumbnail_id', '395'),
(1774, 394, '_wp_page_template', 'default'),
(1787, 394, 'post_views_count', '155'),
(1778, 394, 'tdc_dirty_content', '1'),
(1779, 394, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1780, 394, 'td_post_theme_settings', 'a:3:{s:16:\"td_post_template\";s:15:\"single_template\";s:11:\"td_subtitle\";s:66:\"Dubai Finance Market: Navigating the Heart of Financial Prosperity\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1781, 394, '_yoast_wpseo_primary_category', '74'),
(1782, 394, '_yoast_wpseo_title', 'Dubai Finance Market: Navigating the Heart of Financial Prosperity'),
(1783, 394, '_yoast_wpseo_metadesc', 'Discover the Dubai Finance Market and its significance in the global financial landscape.'),
(1784, 394, '_yoast_wpseo_content_score', '60'),
(1785, 394, '_yoast_wpseo_estimated-reading-time-minutes', '2'),
(1786, 394, '_yoast_wpseo_wordproof_timestamp', ''),
(1788, 397, '_edit_last', '9467'),
(1789, 397, '_edit_lock', '1701155382:9467'),
(1790, 398, '_wp_attached_file', '2023/11/headway-5QgIuuBxKwM-unsplash.jpg'),
(1791, 398, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:40:\"2023/11/headway-5QgIuuBxKwM-unsplash.jpg\";s:8:\"filesize\";i:320918;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"headway-5QgIuuBxKwM-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13132;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"headway-5QgIuuBxKwM-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77560;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"headway-5QgIuuBxKwM-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6268;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"headway-5QgIuuBxKwM-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49756;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"headway-5QgIuuBxKwM-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149771;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:40:\"headway-5QgIuuBxKwM-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5170;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:40:\"headway-5QgIuuBxKwM-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8642;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:40:\"headway-5QgIuuBxKwM-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13132;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:40:\"headway-5QgIuuBxKwM-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18984;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:40:\"headway-5QgIuuBxKwM-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27339;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:40:\"headway-5QgIuuBxKwM-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43261;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:41:\"headway-5QgIuuBxKwM-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82794;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1792, 397, '_thumbnail_id', '398'),
(1793, 397, '_wp_page_template', 'default'),
(1806, 397, 'post_views_count', '146'),
(1797, 397, 'tdc_dirty_content', '1'),
(1798, 397, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1799, 397, 'td_post_theme_settings', 'a:3:{s:16:\"td_post_template\";s:15:\"single_template\";s:11:\"td_subtitle\";s:72:\"Navigating Financial Success: The Role of Finance Consultants in Dubai\r\n\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1800, 397, '_yoast_wpseo_primary_category', '76'),
(1801, 397, '_yoast_wpseo_title', 'The Role of Finance Consultants in Dubai'),
(1802, 397, '_yoast_wpseo_metadesc', 'Explore the world of finance consultants in Dubai and their pivotal role in guiding businesses and individuals toward financial success.'),
(1803, 397, '_yoast_wpseo_content_score', '90'),
(1804, 397, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1805, 397, '_yoast_wpseo_wordproof_timestamp', ''),
(1807, 400, '_edit_last', '9467'),
(1808, 400, '_edit_lock', '1701155596:9467'),
(1809, 401, '_wp_attached_file', '2023/11/alexander-mils-lCPhGxs7pww-unsplash.jpg'),
(1810, 401, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:47:\"2023/11/alexander-mils-lCPhGxs7pww-unsplash.jpg\";s:8:\"filesize\";i:377981;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"alexander-mils-lCPhGxs7pww-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14856;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"alexander-mils-lCPhGxs7pww-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100512;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"alexander-mils-lCPhGxs7pww-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7064;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"alexander-mils-lCPhGxs7pww-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63992;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"alexander-mils-lCPhGxs7pww-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188351;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:47:\"alexander-mils-lCPhGxs7pww-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5307;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:47:\"alexander-mils-lCPhGxs7pww-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9427;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:47:\"alexander-mils-lCPhGxs7pww-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14856;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:47:\"alexander-mils-lCPhGxs7pww-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25723;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:47:\"alexander-mils-lCPhGxs7pww-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34516;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:47:\"alexander-mils-lCPhGxs7pww-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54792;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:48:\"alexander-mils-lCPhGxs7pww-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107540;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1811, 400, '_thumbnail_id', '401'),
(1812, 400, '_wp_page_template', 'default'),
(1825, 400, 'post_views_count', '145'),
(1816, 400, 'tdc_dirty_content', '1'),
(1817, 400, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1818, 400, 'td_post_theme_settings', 'a:3:{s:16:\"td_post_template\";s:15:\"single_template\";s:11:\"td_subtitle\";s:63:\"Unlocking Opportunities: Accounting and Finance Jobs in Dubai\r\n\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1819, 400, '_yoast_wpseo_primary_category', '78'),
(1820, 400, '_yoast_wpseo_title', 'Unlocking Opportunities: Accounting and Finance Jobs in Dubai'),
(1821, 400, '_yoast_wpseo_metadesc', 'Discover the world of accounting and finance jobs in Dubai and how this thriving city offers a plethora of career opportunities in the financial sector.'),
(1822, 400, '_yoast_wpseo_content_score', '90'),
(1823, 400, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1824, 400, '_yoast_wpseo_wordproof_timestamp', ''),
(1826, 403, '_edit_last', '9467'),
(1827, 403, '_edit_lock', '1701340266:9467'),
(1828, 404, '_wp_attached_file', '2023/11/chris-benson-IV17FOQnwcE-unsplash.jpg');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1829, 404, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1282;s:4:\"file\";s:45:\"2023/11/chris-benson-IV17FOQnwcE-unsplash.jpg\";s:8:\"filesize\";i:294171;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"chris-benson-IV17FOQnwcE-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13112;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"chris-benson-IV17FOQnwcE-unsplash-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79605;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"chris-benson-IV17FOQnwcE-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6718;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"chris-benson-IV17FOQnwcE-unsplash-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51687;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"chris-benson-IV17FOQnwcE-unsplash-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149253;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:45:\"chris-benson-IV17FOQnwcE-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5207;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:45:\"chris-benson-IV17FOQnwcE-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8586;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:45:\"chris-benson-IV17FOQnwcE-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13107;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:45:\"chris-benson-IV17FOQnwcE-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23197;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:45:\"chris-benson-IV17FOQnwcE-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28050;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:45:\"chris-benson-IV17FOQnwcE-unsplash-696x465.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44602;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:46:\"chris-benson-IV17FOQnwcE-unsplash-1068x713.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85094;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1830, 403, '_thumbnail_id', '404'),
(1831, 403, '_wp_page_template', 'default'),
(1844, 403, 'post_views_count', '173'),
(1835, 403, 'tdc_dirty_content', '1'),
(1836, 403, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1837, 403, 'td_post_theme_settings', 'a:2:{s:16:\"td_post_template\";s:15:\"single_template\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1838, 403, '_yoast_wpseo_primary_category', '80'),
(1839, 403, '_yoast_wpseo_title', 'Stars Aligned: Celebrating Celebrities\' Birthdays'),
(1840, 403, '_yoast_wpseo_metadesc', 'Join the festivity as we explore the world of celebrities\' birthdays.'),
(1841, 403, '_yoast_wpseo_content_score', '90'),
(1842, 403, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1843, 403, '_yoast_wpseo_wordproof_timestamp', ''),
(1845, 406, '_edit_last', '9467'),
(1846, 406, '_edit_lock', '1701340775:9467'),
(1847, 407, '_wp_attached_file', '2023/11/priscilla-du-preez-W3SEyZODn8U-unsplash.jpg'),
(1848, 407, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:51:\"2023/11/priscilla-du-preez-W3SEyZODn8U-unsplash.jpg\";s:8:\"filesize\";i:555067;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"priscilla-du-preez-W3SEyZODn8U-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16916;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"priscilla-du-preez-W3SEyZODn8U-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112783;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"priscilla-du-preez-W3SEyZODn8U-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8164;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"priscilla-du-preez-W3SEyZODn8U-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69835;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:53:\"priscilla-du-preez-W3SEyZODn8U-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:232404;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:51:\"priscilla-du-preez-W3SEyZODn8U-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6112;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:51:\"priscilla-du-preez-W3SEyZODn8U-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10706;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:51:\"priscilla-du-preez-W3SEyZODn8U-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16916;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:51:\"priscilla-du-preez-W3SEyZODn8U-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30521;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:51:\"priscilla-du-preez-W3SEyZODn8U-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36684;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:51:\"priscilla-du-preez-W3SEyZODn8U-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59654;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:52:\"priscilla-du-preez-W3SEyZODn8U-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121236;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1849, 406, '_thumbnail_id', '407'),
(1850, 406, '_wp_page_template', 'default'),
(1863, 406, 'post_views_count', '167'),
(1854, 406, 'tdc_dirty_content', '1'),
(1855, 406, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1856, 406, 'td_post_theme_settings', 'a:3:{s:16:\"td_post_template\";s:15:\"single_template\";s:11:\"td_subtitle\";s:64:\"A Culinary Affair with the Stars: Celebrity Restaurants in Dubai\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1857, 406, '_yoast_wpseo_primary_category', '82'),
(1858, 406, '_yoast_wpseo_title', 'A Culinary Affair with the Stars: Celebrity Restaurants in Dubai'),
(1859, 406, '_yoast_wpseo_metadesc', 'Elevate your dining experience in Dubai by exploring celebrity restaurants.'),
(1860, 406, '_yoast_wpseo_content_score', '90'),
(1861, 406, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1862, 406, '_yoast_wpseo_wordproof_timestamp', ''),
(1864, 409, '_edit_last', '9467'),
(1865, 409, '_edit_lock', '1701341313:9467'),
(1866, 410, '_wp_attached_file', '2023/11/absolutvision-WYd_PkCa1BY-unsplash.jpg'),
(1867, 410, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:46:\"2023/11/absolutvision-WYd_PkCa1BY-unsplash.jpg\";s:8:\"filesize\";i:244748;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"absolutvision-WYd_PkCa1BY-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12678;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"absolutvision-WYd_PkCa1BY-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74197;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"absolutvision-WYd_PkCa1BY-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6678;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"absolutvision-WYd_PkCa1BY-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48575;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"absolutvision-WYd_PkCa1BY-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132299;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:46:\"absolutvision-WYd_PkCa1BY-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4931;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:46:\"absolutvision-WYd_PkCa1BY-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8350;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:46:\"absolutvision-WYd_PkCa1BY-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12678;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:46:\"absolutvision-WYd_PkCa1BY-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23004;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:46:\"absolutvision-WYd_PkCa1BY-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27735;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:46:\"absolutvision-WYd_PkCa1BY-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42058;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:47:\"absolutvision-WYd_PkCa1BY-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78587;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1868, 409, '_thumbnail_id', '410'),
(1869, 409, '_wp_page_template', 'default'),
(1880, 409, 'post_views_count', '168'),
(1873, 409, 'tdc_dirty_content', '1'),
(1874, 409, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1875, 409, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1876, 409, '_yoast_wpseo_primary_category', ''),
(1877, 409, '_yoast_wpseo_content_score', '90'),
(1878, 409, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1879, 409, '_yoast_wpseo_wordproof_timestamp', ''),
(1881, 412, '_edit_last', '9467'),
(1882, 412, '_edit_lock', '1701341882:9467'),
(1883, 413, '_wp_attached_file', '2023/11/louis-hansel-wTJcMKnd1ls-unsplash.jpg'),
(1884, 413, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1700;s:4:\"file\";s:45:\"2023/11/louis-hansel-wTJcMKnd1ls-unsplash.jpg\";s:8:\"filesize\";i:624443;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"louis-hansel-wTJcMKnd1ls-unsplash-300x266.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24013;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"louis-hansel-wTJcMKnd1ls-unsplash-1024x907.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:907;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176899;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"louis-hansel-wTJcMKnd1ls-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8810;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"louis-hansel-wTJcMKnd1ls-unsplash-768x680.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112682;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"louis-hansel-wTJcMKnd1ls-unsplash-1536x1360.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:325955;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:45:\"louis-hansel-wTJcMKnd1ls-unsplash-150x133.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7635;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:45:\"louis-hansel-wTJcMKnd1ls-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11427;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:45:\"louis-hansel-wTJcMKnd1ls-unsplash-300x266.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23939;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:45:\"louis-hansel-wTJcMKnd1ls-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40576;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:45:\"louis-hansel-wTJcMKnd1ls-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46352;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:45:\"louis-hansel-wTJcMKnd1ls-unsplash-696x616.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:616;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95638;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:46:\"louis-hansel-wTJcMKnd1ls-unsplash-1068x946.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:946;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189828;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1885, 412, '_thumbnail_id', '413'),
(1886, 412, '_wp_page_template', 'default'),
(1899, 412, 'post_views_count', '169'),
(1890, 412, 'tdc_dirty_content', '1'),
(1891, 412, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1892, 412, 'td_post_theme_settings', 'a:3:{s:16:\"td_post_template\";s:15:\"single_template\";s:11:\"td_subtitle\";s:76:\"Savoring Tradition: Exploring the Culinary Riches of Traditional UAE Food\"\r\n\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1893, 412, '_yoast_wpseo_primary_category', '84'),
(1894, 412, '_yoast_wpseo_title', 'Exploring the Culinary Riches of Traditional UAE Food\"'),
(1895, 412, '_yoast_wpseo_metadesc', 'Embark on a gastronomic journey through the heritage of the UAE with traditional food.'),
(1896, 412, '_yoast_wpseo_content_score', '60'),
(1897, 412, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1898, 412, '_yoast_wpseo_wordproof_timestamp', ''),
(1900, 415, '_edit_last', '9467'),
(1901, 415, '_edit_lock', '1701342729:9467'),
(1902, 416, '_wp_attached_file', '2023/11/jack-brown-Px_vgkwCJFI-unsplash.jpg'),
(1903, 416, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1248;s:4:\"file\";s:43:\"2023/11/jack-brown-Px_vgkwCJFI-unsplash.jpg\";s:8:\"filesize\";i:410118;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"jack-brown-Px_vgkwCJFI-unsplash-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14219;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"jack-brown-Px_vgkwCJFI-unsplash-1024x666.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:666;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107061;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"jack-brown-Px_vgkwCJFI-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6332;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"jack-brown-Px_vgkwCJFI-unsplash-768x499.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66660;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:44:\"jack-brown-Px_vgkwCJFI-unsplash-1536x998.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:998;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206493;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:42:\"jack-brown-Px_vgkwCJFI-unsplash-150x98.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4837;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:43:\"jack-brown-Px_vgkwCJFI-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8897;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:43:\"jack-brown-Px_vgkwCJFI-unsplash-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14219;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:43:\"jack-brown-Px_vgkwCJFI-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24016;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:43:\"jack-brown-Px_vgkwCJFI-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34481;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:43:\"jack-brown-Px_vgkwCJFI-unsplash-696x452.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:452;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56300;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:44:\"jack-brown-Px_vgkwCJFI-unsplash-1068x694.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:694;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114196;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1904, 415, '_thumbnail_id', '416'),
(1905, 415, '_wp_page_template', 'default'),
(1918, 415, 'post_views_count', '176'),
(1909, 415, 'tdc_dirty_content', '1'),
(1910, 415, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1911, 415, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(1912, 415, '_yoast_wpseo_primary_category', '86'),
(1913, 415, '_yoast_wpseo_title', 'A Glimpse into the Culinary Titans'),
(1914, 415, '_yoast_wpseo_metadesc', 'Dive into the vibrant world of food and beverage in the UAE with a spotlight on the top companies shaping the culinary landscape.'),
(1915, 415, '_yoast_wpseo_content_score', '60'),
(1916, 415, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1917, 415, '_yoast_wpseo_wordproof_timestamp', ''),
(1919, 418, '_edit_last', '9467'),
(1920, 418, '_edit_lock', '1701342984:9467'),
(1921, 419, '_wp_attached_file', '2023/11/pablo-merchan-montes-0nT08Z-MhiE-unsplash.jpg'),
(1922, 419, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1078;s:4:\"file\";s:53:\"2023/11/pablo-merchan-montes-0nT08Z-MhiE-unsplash.jpg\";s:8:\"filesize\";i:173695;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"pablo-merchan-montes-0nT08Z-MhiE-unsplash-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8788;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"pablo-merchan-montes-0nT08Z-MhiE-unsplash-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49818;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"pablo-merchan-montes-0nT08Z-MhiE-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4784;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"pablo-merchan-montes-0nT08Z-MhiE-unsplash-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32771;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"pablo-merchan-montes-0nT08Z-MhiE-unsplash-1536x862.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:862;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91288;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:52:\"pablo-merchan-montes-0nT08Z-MhiE-unsplash-150x84.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3826;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:53:\"pablo-merchan-montes-0nT08Z-MhiE-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6767;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:53:\"pablo-merchan-montes-0nT08Z-MhiE-unsplash-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8800;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:53:\"pablo-merchan-montes-0nT08Z-MhiE-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14196;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:53:\"pablo-merchan-montes-0nT08Z-MhiE-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20804;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:53:\"pablo-merchan-montes-0nT08Z-MhiE-unsplash-696x391.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:391;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28482;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:54:\"pablo-merchan-montes-0nT08Z-MhiE-unsplash-1068x600.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53347;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1923, 418, '_thumbnail_id', '419'),
(1924, 418, '_wp_page_template', 'default'),
(1937, 418, 'post_views_count', '162'),
(1928, 418, 'tdc_dirty_content', '1'),
(1929, 418, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1930, 418, 'td_post_theme_settings', 'a:3:{s:16:\"td_post_template\";s:15:\"single_template\";s:11:\"td_subtitle\";s:79:\"Bite-sized Bliss: Exploring the Quick Culinary Delights of Fast Food in the UAE\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1931, 418, '_yoast_wpseo_primary_category', '88'),
(1932, 418, '_yoast_wpseo_title', 'Exploring the Quick Culinary Delights of Fast Food in the UAE'),
(1933, 418, '_yoast_wpseo_metadesc', 'Discover the convenience and flavors of fast food in the UAE'),
(1934, 418, '_yoast_wpseo_content_score', '90'),
(1935, 418, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1936, 418, '_yoast_wpseo_wordproof_timestamp', ''),
(1938, 421, '_edit_last', '9467'),
(1939, 421, '_edit_lock', '1701343266:9467'),
(1940, 422, '_wp_attached_file', '2023/11/kaitlyn-baker-vZJdYl5JVXY-unsplash.jpg'),
(1941, 422, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:46:\"2023/11/kaitlyn-baker-vZJdYl5JVXY-unsplash.jpg\";s:8:\"filesize\";i:204890;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"kaitlyn-baker-vZJdYl5JVXY-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9828;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"kaitlyn-baker-vZJdYl5JVXY-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57013;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"kaitlyn-baker-vZJdYl5JVXY-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5332;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"kaitlyn-baker-vZJdYl5JVXY-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36859;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"kaitlyn-baker-vZJdYl5JVXY-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107240;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:46:\"kaitlyn-baker-vZJdYl5JVXY-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3981;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:46:\"kaitlyn-baker-vZJdYl5JVXY-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6533;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:46:\"kaitlyn-baker-vZJdYl5JVXY-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9828;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:46:\"kaitlyn-baker-vZJdYl5JVXY-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17728;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:46:\"kaitlyn-baker-vZJdYl5JVXY-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20418;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:46:\"kaitlyn-baker-vZJdYl5JVXY-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32072;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:47:\"kaitlyn-baker-vZJdYl5JVXY-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61118;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1942, 421, '_thumbnail_id', '422'),
(1943, 421, '_wp_page_template', 'default'),
(1956, 421, 'post_views_count', '152'),
(1947, 421, 'tdc_dirty_content', '1'),
(1948, 421, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1949, 421, 'td_post_theme_settings', 'a:3:{s:16:\"td_post_template\";s:15:\"single_template\";s:11:\"td_subtitle\";s:87:\"Navigating the Future: Exciting Opportunities in Information Technology Jobs in the UAE\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1950, 421, '_yoast_wpseo_primary_category', '90'),
(1951, 421, '_yoast_wpseo_title', 'Exciting Opportunities in Information Technology Jobs in the UA'),
(1952, 421, '_yoast_wpseo_metadesc', 'Unlock the potential of your career in the dynamic world of Information Technology jobs in the UAE'),
(1953, 421, '_yoast_wpseo_content_score', '30'),
(1954, 421, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1955, 421, '_yoast_wpseo_wordproof_timestamp', ''),
(1957, 424, '_edit_last', '9467'),
(1958, 424, '_edit_lock', '1701343730:9467'),
(1959, 425, '_wp_attached_file', '2023/11/aideal-hwa-OYzbqk2y26c-unsplash.jpg'),
(1960, 425, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1279;s:4:\"file\";s:43:\"2023/11/aideal-hwa-OYzbqk2y26c-unsplash.jpg\";s:8:\"filesize\";i:440214;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"aideal-hwa-OYzbqk2y26c-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11209;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"aideal-hwa-OYzbqk2y26c-unsplash-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103325;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"aideal-hwa-OYzbqk2y26c-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5604;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"aideal-hwa-OYzbqk2y26c-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60513;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"aideal-hwa-OYzbqk2y26c-unsplash-1536x1023.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:212977;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:43:\"aideal-hwa-OYzbqk2y26c-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3851;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:43:\"aideal-hwa-OYzbqk2y26c-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6923;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:43:\"aideal-hwa-OYzbqk2y26c-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11230;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:43:\"aideal-hwa-OYzbqk2y26c-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23841;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:43:\"aideal-hwa-OYzbqk2y26c-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29114;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:43:\"aideal-hwa-OYzbqk2y26c-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50384;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:44:\"aideal-hwa-OYzbqk2y26c-unsplash-1068x711.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:711;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111779;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1961, 424, '_thumbnail_id', '425'),
(1962, 424, '_wp_page_template', 'default'),
(1975, 424, 'post_views_count', '165'),
(1966, 424, 'tdc_dirty_content', '1'),
(1967, 424, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1968, 424, 'td_post_theme_settings', 'a:3:{s:16:\"td_post_template\";s:15:\"single_template\";s:11:\"td_subtitle\";s:67:\"Innovation Oasis: The Pinnacle of Science and Technology in the UAE\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1969, 424, '_yoast_wpseo_primary_category', '92'),
(1970, 424, '_yoast_wpseo_title', 'The Pinnacle of Science and Technology in the UAE'),
(1971, 424, '_yoast_wpseo_metadesc', 'Explore the cutting-edge world of science and technology in the UAE.'),
(1972, 424, '_yoast_wpseo_content_score', '60'),
(1973, 424, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1974, 424, '_yoast_wpseo_wordproof_timestamp', ''),
(1976, 427, '_edit_last', '9467'),
(1977, 427, '_edit_lock', '1701344222:9467'),
(1978, 428, '_wp_attached_file', '2023/11/linkedin-sales-solutions-YDVdprpgHv4-unsplash.jpg'),
(1979, 428, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1310;s:4:\"file\";s:57:\"2023/11/linkedin-sales-solutions-YDVdprpgHv4-unsplash.jpg\";s:8:\"filesize\";i:333748;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"linkedin-sales-solutions-YDVdprpgHv4-unsplash-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15136;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"linkedin-sales-solutions-YDVdprpgHv4-unsplash-1024x699.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:699;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89922;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"linkedin-sales-solutions-YDVdprpgHv4-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6724;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"linkedin-sales-solutions-YDVdprpgHv4-unsplash-768x524.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:524;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58787;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:59:\"linkedin-sales-solutions-YDVdprpgHv4-unsplash-1536x1048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164667;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:57:\"linkedin-sales-solutions-YDVdprpgHv4-unsplash-150x102.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5539;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:57:\"linkedin-sales-solutions-YDVdprpgHv4-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9531;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:57:\"linkedin-sales-solutions-YDVdprpgHv4-unsplash-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15125;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:57:\"linkedin-sales-solutions-YDVdprpgHv4-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21153;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:57:\"linkedin-sales-solutions-YDVdprpgHv4-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31415;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:57:\"linkedin-sales-solutions-YDVdprpgHv4-unsplash-696x475.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51167;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:58:\"linkedin-sales-solutions-YDVdprpgHv4-unsplash-1068x729.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96089;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1980, 427, '_thumbnail_id', '428'),
(1981, 427, '_wp_page_template', 'default'),
(1994, 427, 'post_views_count', '175'),
(1985, 427, 'tdc_dirty_content', '1'),
(1986, 427, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(1987, 427, 'td_post_theme_settings', 'a:3:{s:16:\"td_post_template\";s:15:\"single_template\";s:11:\"td_subtitle\";s:101:\"\"Dubai\'s Shopping Extravaganza: Navigating Unbeatable Deals and Luxury Sales in the Heart of the UAE\"\";s:10:\"tds_locker\";s:1:\"7\";}'),
(1988, 427, '_yoast_wpseo_primary_category', '94'),
(1989, 427, '_yoast_wpseo_title', 'Deals and Luxury Sales in the Heart of the UAE\"'),
(1990, 427, '_yoast_wpseo_metadesc', 'mmerse yourself in the world of sales in Dubai, where luxury intertwines with affordability.'),
(1991, 427, '_yoast_wpseo_content_score', '60'),
(1992, 427, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(1993, 427, '_yoast_wpseo_wordproof_timestamp', ''),
(1995, 430, '_edit_last', '9467'),
(1996, 430, '_edit_lock', '1701431221:9467'),
(1997, 431, '_wp_attached_file', '2023/12/Winter-markets-dubai.jpeg'),
(1998, 431, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:801;s:4:\"file\";s:33:\"2023/12/Winter-markets-dubai.jpeg\";s:8:\"filesize\";i:367129;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Winter-markets-dubai-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19220;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"Winter-markets-dubai-1024x684.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154899;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Winter-markets-dubai-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8019;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Winter-markets-dubai-768x513.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96837;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:33:\"Winter-markets-dubai-150x100.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6205;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:33:\"Winter-markets-dubai-218x150.jpeg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11633;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:33:\"Winter-markets-dubai-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19340;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:33:\"Winter-markets-dubai-324x400.jpeg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32393;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:33:\"Winter-markets-dubai-485x360.jpeg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48155;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:33:\"Winter-markets-dubai-696x465.jpeg\";s:5:\"width\";i:696;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82045;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:34:\"Winter-markets-dubai-1068x713.jpeg\";s:5:\"width\";i:1068;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166384;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:53:\"Nick Hannes\n+32 (0)478 25 68 29\nnick_hannes@skynet.be\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1999, 431, '_wp_attachment_image_alt', 'Winter markets dubai'),
(2000, 430, '_thumbnail_id', '431'),
(2001, 430, '_wp_page_template', 'default'),
(2015, 430, 'post_views_count', '175'),
(2005, 430, 'tdc_dirty_content', '1'),
(2006, 430, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(2007, 430, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(2008, 430, '_yoast_wpseo_primary_category', '2'),
(2009, 430, '_yoast_wpseo_focuskw', 'Winter markets dubai'),
(2010, 430, '_yoast_wpseo_metadesc', 'Immerse yourself in the enchantment of Dubai\'s Winter Markets 2023. From the dazzling lights of the Global Village to the local charm of traditional markets, this guide unveils the treasures that await. Embrace the festive spirit and explore the magic of winter in Dubai.'),
(2011, 430, '_yoast_wpseo_linkdex', '59'),
(2012, 430, '_yoast_wpseo_content_score', '60'),
(2013, 430, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(2014, 430, '_yoast_wpseo_wordproof_timestamp', ''),
(2016, 434, '_edit_last', '9467'),
(2017, 434, '_edit_lock', '1702128486:9467'),
(2018, 435, '_wp_attached_file', '2023/12/Abu-dhabi-discount-sale.jpg'),
(2019, 435, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:1080;s:4:\"file\";s:35:\"2023/12/Abu-dhabi-discount-sale.jpg\";s:8:\"filesize\";i:775981;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Abu-dhabi-discount-sale-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27259;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"Abu-dhabi-discount-sale-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221996;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Abu-dhabi-discount-sale-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10160;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Abu-dhabi-discount-sale-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136481;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:35:\"Abu-dhabi-discount-sale-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8243;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:35:\"Abu-dhabi-discount-sale-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14437;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:35:\"Abu-dhabi-discount-sale-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27259;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:35:\"Abu-dhabi-discount-sale-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46883;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:35:\"Abu-dhabi-discount-sale-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62175;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:35:\"Abu-dhabi-discount-sale-696x522.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116846;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:36:\"Abu-dhabi-discount-sale-1068x801.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:239586;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2020, 435, '_wp_attachment_image_alt', 'Abu dhabi discount sale'),
(2021, 434, '_thumbnail_id', '435'),
(2022, 434, '_wp_page_template', 'default'),
(2690, 645, '_encloseme', '1'),
(2691, 645, '_wp_old_date', '2025-12-01'),
(2692, 645, 'post_views_count', '1'),
(2036, 434, 'post_views_count', '162'),
(2026, 434, 'tdc_dirty_content', '1'),
(2027, 434, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(2028, 434, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(2029, 434, '_yoast_wpseo_primary_category', '2'),
(2030, 434, '_yoast_wpseo_focuskw', 'Abu dhabi discount sale'),
(2031, 434, '_yoast_wpseo_metadesc', 'Discover unparalleled deals and savings at the Abu Dhabi Discount Sale. Explore this comprehensive guide to make the most of your shopping experience in the capital city'),
(2032, 434, '_yoast_wpseo_linkdex', '28'),
(2033, 434, '_yoast_wpseo_content_score', '30'),
(2034, 434, '_yoast_wpseo_estimated-reading-time-minutes', '2'),
(2035, 434, '_yoast_wpseo_wordproof_timestamp', ''),
(2037, 437, '_edit_last', '9467'),
(2038, 437, '_edit_lock', '1702644635:9467'),
(2039, 438, '_wp_attached_file', '2023/12/Christmas-in-dubai.jpg'),
(2040, 438, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:30:\"2023/12/Christmas-in-dubai.jpg\";s:8:\"filesize\";i:198304;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Christmas-in-dubai-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15298;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"Christmas-in-dubai-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133688;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Christmas-in-dubai-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6929;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Christmas-in-dubai-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82082;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:30:\"Christmas-in-dubai-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4880;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:30:\"Christmas-in-dubai-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9114;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:30:\"Christmas-in-dubai-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15246;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:30:\"Christmas-in-dubai-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33166;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:30:\"Christmas-in-dubai-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40528;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:30:\"Christmas-in-dubai-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69003;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:31:\"Christmas-in-dubai-1068x713.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143423;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2041, 438, '_wp_attachment_image_alt', 'Christmas in dubai'),
(2042, 437, '_thumbnail_id', '438'),
(2043, 437, '_wp_page_template', 'default'),
(2683, 641, '_wp_old_date', '2025-12-01'),
(2689, 645, '_pingme', '1'),
(2687, 643, '_wp_old_date', '2025-12-01'),
(2054, 437, 'post_views_count', '178'),
(2047, 437, 'tdc_dirty_content', '1'),
(2048, 437, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(2049, 437, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(2050, 437, '_yoast_wpseo_primary_category', '2'),
(2051, 437, '_yoast_wpseo_content_score', '30'),
(2052, 437, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(2053, 437, '_yoast_wpseo_wordproof_timestamp', ''),
(2055, 441, '_edit_last', '9467'),
(2056, 441, '_edit_lock', '1703248569:9467'),
(2057, 442, '_wp_attached_file', '2023/12/New-year-2024.jpeg');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2058, 442, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:3584;s:6:\"height\";i:2048;s:4:\"file\";s:26:\"2023/12/New-year-2024.jpeg\";s:8:\"filesize\";i:5790097;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"New-year-2024-300x171.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17108;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"New-year-2024-1024x585.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:585;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136096;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"New-year-2024-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9497;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"New-year-2024-768x439.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83208;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"New-year-2024-1536x878.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:878;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:268787;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:28:\"New-year-2024-2048x1170.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:429147;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:25:\"New-year-2024-150x86.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5818;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:26:\"New-year-2024-218x150.jpeg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12587;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:26:\"New-year-2024-300x171.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17122;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:26:\"New-year-2024-324x400.jpeg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39661;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:26:\"New-year-2024-485x360.jpeg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50421;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:26:\"New-year-2024-696x398.jpeg\";s:5:\"width\";i:696;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69887;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:27:\"New-year-2024-1068x610.jpeg\";s:5:\"width\";i:1068;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146715;}s:9:\"td_1920x0\";a:5:{s:4:\"file\";s:28:\"New-year-2024-1920x1097.jpeg\";s:5:\"width\";i:1920;s:6:\"height\";i:1097;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:386893;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2059, 442, '_wp_attachment_image_alt', 'New year 2024'),
(2060, 441, '_thumbnail_id', '442'),
(2061, 441, '_wp_page_template', 'default'),
(2666, 635, '_edit_last', '9476'),
(2684, 641, 'post_views_count', '2'),
(2674, 637, '_edit_lock', '1764499479:9476'),
(2669, 635, '_edit_lock', '1764499439:9476'),
(2075, 441, 'post_views_count', '223'),
(2065, 441, 'tdc_dirty_content', '1'),
(2066, 441, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(2067, 441, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(2068, 441, '_yoast_wpseo_primary_category', '2'),
(2069, 441, '_yoast_wpseo_focuskw', 'New year 2024'),
(2070, 441, '_yoast_wpseo_metadesc', 'As the clock ticks toward 2024, this article serves as your companion to usher in the new year with positivity and excitement. Explore celebratory traditions, set empowering resolutions, and embrace the fresh start that the arrival of 2024 offers. Get ready to welcome a year filled with hope, joy, and new opportunities.'),
(2071, 441, '_yoast_wpseo_linkdex', '63'),
(2072, 441, '_yoast_wpseo_content_score', '60'),
(2073, 441, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(2074, 441, '_yoast_wpseo_wordproof_timestamp', ''),
(2076, 444, '_edit_last', '9467'),
(2077, 444, '_edit_lock', '1703848243:9467'),
(2078, 445, '_wp_attached_file', '2023/12/Financial-technology-service-in-uae.jpg'),
(2079, 445, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:4896;s:6:\"height\";i:3264;s:4:\"file\";s:47:\"2023/12/Financial-technology-service-in-uae.jpg\";s:8:\"filesize\";i:9434764;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Financial-technology-service-in-uae-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19918;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"Financial-technology-service-in-uae-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139538;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Financial-technology-service-in-uae-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9258;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"Financial-technology-service-in-uae-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88006;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"Financial-technology-service-in-uae-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:267513;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:49:\"Financial-technology-service-in-uae-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:428335;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:47:\"Financial-technology-service-in-uae-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6855;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:47:\"Financial-technology-service-in-uae-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12514;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:47:\"Financial-technology-service-in-uae-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19918;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:47:\"Financial-technology-service-in-uae-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36064;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:47:\"Financial-technology-service-in-uae-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46201;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:47:\"Financial-technology-service-in-uae-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75367;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:48:\"Financial-technology-service-in-uae-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149669;}s:9:\"td_1920x0\";a:5:{s:4:\"file\";s:49:\"Financial-technology-service-in-uae-1920x1280.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:384751;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.6\";s:6:\"credit\";s:24:\"Getty Images/iStockphoto\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:153:\"Administrator business man financial inspector and secretary making report calculating balance. Internal Revenue Service checking document. Audit concept\";s:17:\"created_timestamp\";s:10:\"1539863904\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"31.5\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:153:\"Administrator business man financial inspector and secretary making report calculating balance. Internal Revenue Service checking document. Audit concept\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(2080, 444, '_thumbnail_id', '445'),
(2081, 444, '_wp_page_template', 'default'),
(2658, 629, 'post_views_count', '4'),
(2659, 631, '_edit_last', '9476'),
(2675, 637, 'post_views_count', '7'),
(2662, 631, '_edit_lock', '1764497791:9476'),
(2663, 631, 'post_views_count', '4'),
(2664, 633, '_edit_last', '9476'),
(2665, 633, '_edit_lock', '1764499437:9476'),
(2095, 444, 'post_views_count', '221'),
(2085, 444, 'tdc_dirty_content', '1'),
(2086, 444, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(2087, 444, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(2088, 444, '_yoast_wpseo_primary_category', '2'),
(2089, 444, '_yoast_wpseo_focuskw', 'Financial technology service in uae.'),
(2090, 444, '_yoast_wpseo_metadesc', 'Learn about the financial technology service of UAE, which covers a wide range of segments, consisting of startups, investors, accelerators, incubators, hubs, universities, and associations, supports and fosters fintech innovation and adoption.'),
(2091, 444, '_yoast_wpseo_linkdex', '70'),
(2092, 444, '_yoast_wpseo_content_score', '60'),
(2093, 444, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(2094, 444, '_yoast_wpseo_wordproof_timestamp', ''),
(2096, 448, '_edit_last', '9467'),
(2097, 448, '_edit_lock', '1704538580:9467'),
(2098, 449, '_wp_attached_file', '2024/01/politics-in-uae.jpg'),
(2099, 449, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:810;s:4:\"file\";s:27:\"2024/01/politics-in-uae.jpg\";s:8:\"filesize\";i:130473;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"politics-in-uae-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15426;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"politics-in-uae-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99979;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"politics-in-uae-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7664;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"politics-in-uae-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64929;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:26:\"politics-in-uae-150x84.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5475;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:27:\"politics-in-uae-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10899;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:27:\"politics-in-uae-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15418;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:27:\"politics-in-uae-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26094;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:27:\"politics-in-uae-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38103;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:27:\"politics-in-uae-696x392.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56219;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:28:\"politics-in-uae-1068x601.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107392;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2100, 449, '_wp_attachment_image_alt', 'politics in uae'),
(2101, 448, '_thumbnail_id', '449'),
(2102, 448, '_wp_page_template', 'default'),
(2654, 629, '_edit_last', '9476'),
(2679, 639, '_edit_lock', '1764499526:9476'),
(2676, 639, '_edit_last', '9476'),
(2657, 629, '_edit_lock', '1764497738:9476'),
(2116, 448, 'post_views_count', '229'),
(2106, 448, 'tdc_dirty_content', '1'),
(2107, 448, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(2108, 448, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(2109, 448, '_yoast_wpseo_primary_category', '10'),
(2110, 448, '_yoast_wpseo_focuskw', 'politics in uae'),
(2111, 448, '_yoast_wpseo_metadesc', 'Delve into the intricacies of Dubai politics and its role within the UAE. Explore the governance structure, key political figures, and the city\'s significance in the broader political landscape of the United Arab Emirates.'),
(2112, 448, '_yoast_wpseo_linkdex', '63'),
(2113, 448, '_yoast_wpseo_content_score', '30'),
(2114, 448, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(2115, 448, '_yoast_wpseo_wordproof_timestamp', ''),
(2117, 453, '_wp_attached_file', '2024/01/political-stability-in-uae.jpg'),
(2118, 453, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1459;s:6:\"height\";i:986;s:4:\"file\";s:38:\"2024/01/political-stability-in-uae.jpg\";s:8:\"filesize\";i:241467;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"political-stability-in-uae-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17726;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"political-stability-in-uae-1024x692.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:692;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109939;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"political-stability-in-uae-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8124;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"political-stability-in-uae-768x519.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:519;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71042;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:38:\"political-stability-in-uae-150x101.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:101;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6200;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:38:\"political-stability-in-uae-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11086;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:38:\"political-stability-in-uae-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17738;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:38:\"political-stability-in-uae-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28492;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:38:\"political-stability-in-uae-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38209;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:38:\"political-stability-in-uae-696x470.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61428;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:39:\"political-stability-in-uae-1068x722.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117755;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2119, 453, '_wp_attachment_image_alt', 'political stability in uae'),
(2120, 452, '_edit_last', '9467'),
(2121, 452, '_edit_lock', '1705746485:9467'),
(2122, 452, '_thumbnail_id', '453'),
(2123, 452, '_wp_page_template', 'default'),
(2680, 639, 'post_views_count', '7'),
(2671, 637, '_edit_last', '9476'),
(2652, 627, '_edit_lock', '1764496312:9476'),
(2653, 627, 'post_views_count', '4'),
(2137, 452, 'post_views_count', '190'),
(2127, 452, 'tdc_dirty_content', '1'),
(2128, 452, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(2129, 452, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(2130, 452, '_yoast_wpseo_primary_category', '10'),
(2131, 452, '_yoast_wpseo_focuskw', 'political stability in uae'),
(2132, 452, '_yoast_wpseo_metadesc', 'Explore the bedrock of political stability in the UAE, a key factor in its remarkable progress and development. This article provides insights into the factors that contribute to the country\'s political resilience, offering a glimpse into the stability that anchors the UAE\'s journey towards prosperity.'),
(2133, 452, '_yoast_wpseo_linkdex', '71'),
(2134, 452, '_yoast_wpseo_content_score', '60'),
(2135, 452, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(2136, 452, '_yoast_wpseo_wordproof_timestamp', ''),
(2138, 455, '_edit_last', '9467'),
(2139, 455, '_edit_lock', '1705748289:9467'),
(2140, 456, '_wp_attached_file', '2024/01/finance-jobs-in-uae.jpg'),
(2141, 456, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1470;s:6:\"height\";i:980;s:4:\"file\";s:31:\"2024/01/finance-jobs-in-uae.jpg\";s:8:\"filesize\";i:114427;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"finance-jobs-in-uae-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7711;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"finance-jobs-in-uae-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56407;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"finance-jobs-in-uae-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4101;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"finance-jobs-in-uae-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35358;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:31:\"finance-jobs-in-uae-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2896;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:31:\"finance-jobs-in-uae-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4940;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:31:\"finance-jobs-in-uae-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7711;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:31:\"finance-jobs-in-uae-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16162;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:31:\"finance-jobs-in-uae-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19592;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:31:\"finance-jobs-in-uae-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30114;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:32:\"finance-jobs-in-uae-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60728;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2142, 456, '_wp_attachment_image_alt', 'finance jobs in uae'),
(2143, 455, '_thumbnail_id', '456'),
(2144, 455, '_wp_page_template', 'default'),
(2647, 625, '_edit_lock', '1764496157:9476'),
(2648, 625, 'post_views_count', '7'),
(2649, 627, '_edit_last', '9476'),
(2157, 455, 'post_views_count', '183'),
(2148, 455, 'tdc_dirty_content', '1'),
(2149, 455, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(2150, 455, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(2151, 455, '_yoast_wpseo_primary_category', '5'),
(2152, 455, '_yoast_wpseo_focuskw', 'finance jobs in uae'),
(2153, 455, '_yoast_wpseo_linkdex', '61'),
(2154, 455, '_yoast_wpseo_content_score', '30'),
(2155, 455, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(2156, 455, '_yoast_wpseo_wordproof_timestamp', ''),
(2158, 458, '_edit_lock', '1706353454:9467'),
(2159, 458, '_edit_last', '9467'),
(2160, 459, '_wp_attached_file', '2024/01/finance-careers-in-uae.jpg'),
(2161, 459, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1470;s:6:\"height\";i:980;s:4:\"file\";s:34:\"2024/01/finance-careers-in-uae.jpg\";s:8:\"filesize\";i:116315;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"finance-careers-in-uae-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7722;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"finance-careers-in-uae-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56303;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"finance-careers-in-uae-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4098;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"finance-careers-in-uae-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35228;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:34:\"finance-careers-in-uae-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2901;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:34:\"finance-careers-in-uae-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4941;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:34:\"finance-careers-in-uae-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7722;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:34:\"finance-careers-in-uae-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16112;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:34:\"finance-careers-in-uae-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19531;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:34:\"finance-careers-in-uae-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30035;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:35:\"finance-careers-in-uae-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60610;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2162, 459, '_wp_attachment_image_alt', 'finance careers in uae'),
(2163, 458, '_thumbnail_id', '459'),
(2164, 458, '_wp_page_template', 'default'),
(2643, 623, 'post_views_count', '4'),
(2642, 623, '_edit_lock', '1764496101:9476'),
(2688, 643, 'post_views_count', '2'),
(2670, 635, 'post_views_count', '5'),
(2178, 458, 'post_views_count', '175'),
(2168, 458, 'tdc_dirty_content', '1'),
(2169, 458, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(2170, 458, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(2171, 458, '_yoast_wpseo_primary_category', '78'),
(2172, 458, '_yoast_wpseo_focuskw', 'finance careers in uae'),
(2173, 458, '_yoast_wpseo_metadesc', 'Dive into the world of finance careers in the UAE and unlock the door to unparalleled opportunities. Learn about the key roles, educational requirements, and skills needed to thrive in this dynamic sector. Choose a path that aligns with your ambitions and sets you on the road to financial success.'),
(2174, 458, '_yoast_wpseo_linkdex', '67'),
(2175, 458, '_yoast_wpseo_content_score', '60'),
(2176, 458, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(2177, 458, '_yoast_wpseo_wordproof_timestamp', ''),
(2179, 462, '_edit_lock', '1706956014:9467'),
(2180, 463, '_wp_attached_file', '2024/02/politics-in-uae.jpg'),
(2181, 463, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1546;s:6:\"height\";i:1161;s:4:\"file\";s:27:\"2024/02/politics-in-uae.jpg\";s:8:\"filesize\";i:513670;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"politics-in-uae-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25763;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"politics-in-uae-1024x769.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:769;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210280;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"politics-in-uae-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9906;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"politics-in-uae-768x577.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130736;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"politics-in-uae-1536x1153.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1153;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:406598;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:27:\"politics-in-uae-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7961;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:27:\"politics-in-uae-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13721;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:27:\"politics-in-uae-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25723;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:27:\"politics-in-uae-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43512;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:27:\"politics-in-uae-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58799;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:27:\"politics-in-uae-696x523.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110578;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:28:\"politics-in-uae-1068x802.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:226566;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2182, 463, '_wp_attachment_image_alt', 'politics in uae'),
(2183, 462, '_edit_last', '9467'),
(2184, 462, '_thumbnail_id', '463'),
(2185, 462, '_wp_page_template', 'default'),
(2638, 621, 'post_views_count', '4'),
(2637, 621, '_edit_lock', '1764496018:9476'),
(2644, 625, '_edit_last', '9476'),
(2199, 462, 'post_views_count', '199'),
(2189, 462, 'tdc_dirty_content', '1'),
(2190, 462, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(2191, 462, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(2192, 462, '_yoast_wpseo_primary_category', '10'),
(2193, 462, '_yoast_wpseo_focuskw', 'politics in uae'),
(2194, 462, '_yoast_wpseo_metadesc', 'Delve into the intricate tapestry of politics in the UAE with this comprehensive article. From the structure of the government to key political figures, gain insights into the political landscape shaping the United Arab Emirates. Explore the nuances and evolution of UAE\'s political system'),
(2195, 462, '_yoast_wpseo_linkdex', '61'),
(2196, 462, '_yoast_wpseo_content_score', '60'),
(2197, 462, '_yoast_wpseo_estimated-reading-time-minutes', '4'),
(2198, 462, '_yoast_wpseo_wordproof_timestamp', ''),
(2200, 466, '_edit_lock', '1707919554:9467'),
(2201, 467, '_wp_attached_file', '2024/02/travel-alerts-dubai.jpg'),
(2202, 467, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1470;s:6:\"height\";i:980;s:4:\"file\";s:31:\"2024/02/travel-alerts-dubai.jpg\";s:8:\"filesize\";i:194695;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"travel-alerts-dubai-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10704;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"travel-alerts-dubai-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83409;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"travel-alerts-dubai-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4991;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"travel-alerts-dubai-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50516;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:31:\"travel-alerts-dubai-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3968;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:31:\"travel-alerts-dubai-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6708;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:31:\"travel-alerts-dubai-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10704;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:31:\"travel-alerts-dubai-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18827;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:31:\"travel-alerts-dubai-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25113;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:31:\"travel-alerts-dubai-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42670;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:32:\"travel-alerts-dubai-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89047;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2203, 467, '_wp_attachment_image_alt', 'travel alerts dubai'),
(2204, 466, '_edit_last', '9467'),
(2205, 466, '_thumbnail_id', '467'),
(2206, 466, '_wp_page_template', 'default'),
(2634, 621, '_edit_last', '9476'),
(2633, 618, 'post_views_count', '9'),
(2632, 618, '_edit_lock', '1764050103:9476'),
(2639, 623, '_edit_last', '9476'),
(2220, 466, 'post_views_count', '191'),
(2210, 466, 'tdc_dirty_content', '1'),
(2211, 466, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(2212, 466, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(2213, 466, '_yoast_wpseo_primary_category', '12'),
(2214, 466, '_yoast_wpseo_focuskw', 'travel alerts dubai'),
(2215, 466, '_yoast_wpseo_metadesc', 'Planning a trip to Dubai? Stay informed and prepared with our comprehensive guide to travel alerts. From safety advisories and health alerts to weather warnings and transportation updates, learn how to access and interpret travel alerts for Dubai to ensure a smooth and hassle-free travel experience. Whether you\'re a tourist or a resident, staying updated on travel alerts is essential for making informed decisions and staying safe while exploring the vibrant city of Dubai.'),
(2216, 466, '_yoast_wpseo_linkdex', '71'),
(2217, 466, '_yoast_wpseo_content_score', '60'),
(2218, 466, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(2219, 466, '_yoast_wpseo_wordproof_timestamp', ''),
(2221, 469, '_edit_lock', '1708331304:9467'),
(2222, 469, '_edit_last', '9467'),
(2223, 470, '_wp_attached_file', '2024/02/kenny-eliason-y_6rqStQBYQ-unsplash.jpg'),
(2224, 470, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:46:\"2024/02/kenny-eliason-y_6rqStQBYQ-unsplash.jpg\";s:8:\"filesize\";i:272240;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"kenny-eliason-y_6rqStQBYQ-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10806;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"kenny-eliason-y_6rqStQBYQ-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68498;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"kenny-eliason-y_6rqStQBYQ-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5312;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"kenny-eliason-y_6rqStQBYQ-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43829;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"kenny-eliason-y_6rqStQBYQ-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133180;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:46:\"kenny-eliason-y_6rqStQBYQ-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4079;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:46:\"kenny-eliason-y_6rqStQBYQ-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7009;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:46:\"kenny-eliason-y_6rqStQBYQ-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10806;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:46:\"kenny-eliason-y_6rqStQBYQ-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16611;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:46:\"kenny-eliason-y_6rqStQBYQ-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23663;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:46:\"kenny-eliason-y_6rqStQBYQ-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37638;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:47:\"kenny-eliason-y_6rqStQBYQ-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73902;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2225, 469, '_thumbnail_id', '470'),
(2226, 469, '_wp_page_template', 'default'),
(2622, 614, '_edit_lock', '1764050034:9476'),
(2629, 618, '_edit_last', '9476'),
(2628, 616, 'post_views_count', '8'),
(2627, 616, '_edit_lock', '1764050077:9476'),
(2239, 469, 'post_views_count', '187'),
(2230, 469, 'tdc_dirty_content', '1'),
(2231, 469, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(2232, 469, 'td_post_theme_settings', 'a:2:{s:16:\"td_post_template\";s:15:\"single_template\";s:10:\"tds_locker\";s:1:\"7\";}'),
(2233, 469, '_yoast_wpseo_primary_category', '106'),
(2234, 469, '_yoast_wpseo_title', 'A Guide to Entrepreneurial Success'),
(2235, 469, '_yoast_wpseo_metadesc', 'Discover lucrative business ventures in the UAE that offer promising opportunities for profitability and growth.'),
(2236, 469, '_yoast_wpseo_content_score', '90'),
(2237, 469, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(2238, 469, '_yoast_wpseo_wordproof_timestamp', ''),
(2240, 473, '_edit_lock', '1709891737:9467'),
(2241, 473, '_edit_last', '9467'),
(2242, 475, '_wp_attached_file', '2024/03/fadkhera-official-gRtiUp1VKbs-unsplash.jpg'),
(2243, 475, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:50:\"2024/03/fadkhera-official-gRtiUp1VKbs-unsplash.jpg\";s:8:\"filesize\";i:307428;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"fadkhera-official-gRtiUp1VKbs-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10117;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"fadkhera-official-gRtiUp1VKbs-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70302;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"fadkhera-official-gRtiUp1VKbs-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6114;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"fadkhera-official-gRtiUp1VKbs-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43155;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"fadkhera-official-gRtiUp1VKbs-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142291;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:50:\"fadkhera-official-gRtiUp1VKbs-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3999;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:50:\"fadkhera-official-gRtiUp1VKbs-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6685;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:50:\"fadkhera-official-gRtiUp1VKbs-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10117;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:50:\"fadkhera-official-gRtiUp1VKbs-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22263;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:50:\"fadkhera-official-gRtiUp1VKbs-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23394;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:50:\"fadkhera-official-gRtiUp1VKbs-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36509;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:51:\"fadkhera-official-gRtiUp1VKbs-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75542;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2244, 473, '_thumbnail_id', '475'),
(2245, 473, '_wp_page_template', 'default'),
(2619, 614, '_edit_last', '9476'),
(2618, 612, 'post_views_count', '9'),
(2617, 612, '_edit_lock', '1764050011:9476'),
(2624, 616, '_edit_last', '9476'),
(2623, 614, 'post_views_count', '8'),
(2257, 473, 'post_views_count', '183'),
(2249, 473, 'tdc_dirty_content', '1'),
(2250, 473, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(2251, 473, 'td_post_theme_settings', 'a:2:{s:16:\"td_post_template\";s:15:\"single_template\";s:10:\"tds_locker\";s:1:\"7\";}'),
(2252, 473, '_yoast_wpseo_primary_category', '108'),
(2253, 473, '_yoast_wpseo_title', 'Ramadan in UAERamadan in UAE'),
(2254, 473, '_yoast_wpseo_content_score', '60'),
(2255, 473, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(2256, 473, '_yoast_wpseo_wordproof_timestamp', ''),
(2258, 478, '_edit_lock', '1720769991:9467'),
(2259, 478, '_edit_last', '9467'),
(2260, 479, '_wp_attached_file', '2024/03/Meydan-Free-Zone.jpg'),
(2261, 479, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:4240;s:6:\"height\";i:2832;s:4:\"file\";s:28:\"2024/03/Meydan-Free-Zone.jpg\";s:8:\"filesize\";i:542685;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Meydan-Free-Zone-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13614;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Meydan-Free-Zone-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99449;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Meydan-Free-Zone-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6010;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Meydan-Free-Zone-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62052;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"Meydan-Free-Zone-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193033;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:30:\"Meydan-Free-Zone-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:305381;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:28:\"Meydan-Free-Zone-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4923;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:28:\"Meydan-Free-Zone-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8453;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:28:\"Meydan-Free-Zone-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13596;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:28:\"Meydan-Free-Zone-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20260;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:28:\"Meydan-Free-Zone-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31619;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:28:\"Meydan-Free-Zone-696x465.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52950;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:29:\"Meydan-Free-Zone-1068x713.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107291;}s:9:\"td_1920x0\";a:5:{s:4:\"file\";s:30:\"Meydan-Free-Zone-1920x1282.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:276036;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2262, 479, '_wp_attachment_image_alt', 'Meydan Free Zone'),
(2263, 478, '_thumbnail_id', '479'),
(2264, 478, '_wp_page_template', 'default'),
(2597, 604, '_edit_lock', '1764049905:9476'),
(2604, 608, '_edit_last', '9476'),
(2603, 606, 'post_views_count', '7'),
(2602, 606, '_edit_lock', '1764049929:9476'),
(2275, 478, 'post_views_count', '175'),
(2268, 478, 'tdc_dirty_content', '1'),
(2269, 478, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(2271, 478, '_yoast_wpseo_primary_category', '114'),
(2272, 478, '_yoast_wpseo_content_score', '60'),
(2273, 478, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(2274, 478, '_yoast_wpseo_wordproof_timestamp', ''),
(2276, 482, '_edit_lock', '1713006002:9467'),
(2277, 482, '_edit_last', '9467'),
(2278, 483, '_wp_attached_file', '2024/04/KIDS-BIRTHDAY-768x512-1.jpg'),
(2279, 483, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:768;s:6:\"height\";i:512;s:4:\"file\";s:35:\"2024/04/KIDS-BIRTHDAY-768x512-1.jpg\";s:8:\"filesize\";i:90725;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"KIDS-BIRTHDAY-768x512-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20088;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"KIDS-BIRTHDAY-768x512-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9524;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:35:\"KIDS-BIRTHDAY-768x512-1-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6782;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:35:\"KIDS-BIRTHDAY-768x512-1-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12520;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:35:\"KIDS-BIRTHDAY-768x512-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20088;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:35:\"KIDS-BIRTHDAY-768x512-1-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34769;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:35:\"KIDS-BIRTHDAY-768x512-1-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45875;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:35:\"KIDS-BIRTHDAY-768x512-1-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72413;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2280, 483, '_wp_attachment_image_alt', 'sea you kids birthday'),
(2281, 482, '_thumbnail_id', '483'),
(2282, 482, '_wp_page_template', 'default'),
(2614, 612, '_edit_last', '9476'),
(2613, 610, 'post_views_count', '8'),
(2612, 610, '_edit_lock', '1764049981:9476'),
(2293, 482, 'post_views_count', '179'),
(2286, 482, 'tdc_dirty_content', '1'),
(2287, 482, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(2288, 482, 'td_post_theme_settings', 'a:1:{s:10:\"tds_locker\";s:1:\"7\";}'),
(2289, 482, '_yoast_wpseo_primary_category', '2'),
(2290, 482, '_yoast_wpseo_content_score', '30'),
(2291, 482, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(2292, 482, '_yoast_wpseo_wordproof_timestamp', ''),
(2326, 502, '_edit_lock', '1715325463:9467'),
(2327, 502, '_edit_last', '9467'),
(2328, 503, '_wp_attached_file', '2024/05/austin-distel-21GWwco-JBQ-unsplash.jpg');
INSERT INTO `wpom_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2329, 503, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:46:\"2024/05/austin-distel-21GWwco-JBQ-unsplash.jpg\";s:8:\"filesize\";i:367683;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"austin-distel-21GWwco-JBQ-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12798;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"austin-distel-21GWwco-JBQ-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87066;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"austin-distel-21GWwco-JBQ-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6275;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"austin-distel-21GWwco-JBQ-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54694;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"austin-distel-21GWwco-JBQ-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170512;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:46:\"austin-distel-21GWwco-JBQ-unsplash-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4649;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:46:\"austin-distel-21GWwco-JBQ-unsplash-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8123;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:46:\"austin-distel-21GWwco-JBQ-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12798;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:46:\"austin-distel-21GWwco-JBQ-unsplash-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21367;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:46:\"austin-distel-21GWwco-JBQ-unsplash-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29448;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:46:\"austin-distel-21GWwco-JBQ-unsplash-696x464.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47063;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:47:\"austin-distel-21GWwco-JBQ-unsplash-1068x712.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93302;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2330, 502, '_thumbnail_id', '503'),
(2331, 502, '_wp_page_template', 'default'),
(2609, 610, '_edit_last', '9476'),
(2608, 608, 'post_views_count', '7'),
(2607, 608, '_edit_lock', '1764049952:9476'),
(2344, 502, 'post_views_count', '136'),
(2335, 502, 'tdc_dirty_content', '1'),
(2336, 502, 'tdc_icon_fonts', 'a:1:{s:15:\"td-multipurpose\";a:5:{s:4:\"name\";s:20:\"tagDiv Multi-purpose\";s:12:\"family_class\";s:4:\"tdmp\";s:8:\"css_file\";s:49:\"/assets/fonts/td-multipurpose/td-multipurpose.css\";s:13:\"template_file\";s:19:\"td-multipurpose.php\";s:4:\"load\";b:1;}}'),
(2337, 502, 'td_post_theme_settings', 'a:2:{s:16:\"td_post_template\";s:15:\"single_template\";s:10:\"tds_locker\";s:1:\"7\";}'),
(2338, 502, '_yoast_wpseo_primary_category', '114'),
(2339, 502, '_yoast_wpseo_title', 'Explore Car Sales, Property Rentals, and Job Searches in the UAE with bkamthis Classifieds'),
(2340, 502, '_yoast_wpseo_metadesc', 'Discover the endless possibilities in car sales, property rentals, and job searches across the UAE. Leverage bkamthis classifieds platform for free ad posting and instant responses.'),
(2341, 502, '_yoast_wpseo_content_score', '90'),
(2342, 502, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(2343, 502, '_yoast_wpseo_wordproof_timestamp', ''),
(2383, 524, '_wpcode_auto_insert', '1'),
(2459, 561, '_edit_lock', '1746616139:9467'),
(2458, 561, '_edit_last', '9467'),
(2460, 562, '_wp_attached_file', '2025/05/486156189_18496431868034048_381048846317508702_n-e1746616255903.jpg'),
(2461, 562, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1413;s:6:\"height\";i:1374;s:4:\"file\";s:75:\"2025/05/486156189_18496431868034048_381048846317508702_n-e1746616255903.jpg\";s:8:\"filesize\";i:135999;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:75:\"486156189_18496431868034048_381048846317508702_n-e1746616255903-300x292.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12945;}s:5:\"large\";a:5:{s:4:\"file\";s:76:\"486156189_18496431868034048_381048846317508702_n-e1746616255903-1024x996.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:996;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81201;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:75:\"486156189_18496431868034048_381048846317508702_n-e1746616255903-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4927;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:75:\"486156189_18496431868034048_381048846317508702_n-e1746616255903-768x747.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:747;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53231;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:62:\"486156189_18496431868034048_381048846317508702_n-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118822;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:75:\"486156189_18496431868034048_381048846317508702_n-e1746616255903-150x146.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4867;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:75:\"486156189_18496431868034048_381048846317508702_n-e1746616255903-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5941;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:75:\"486156189_18496431868034048_381048846317508702_n-e1746616255903-300x292.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12931;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:75:\"486156189_18496431868034048_381048846317508702_n-e1746616255903-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16622;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:75:\"486156189_18496431868034048_381048846317508702_n-e1746616255903-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20589;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:75:\"486156189_18496431868034048_381048846317508702_n-e1746616255903-696x677.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:677;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45850;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:77:\"486156189_18496431868034048_381048846317508702_n-e1746616255903-1068x1039.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:1039;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86794;}s:10:\"td_265x198\";a:5:{s:4:\"file\";s:75:\"486156189_18496431868034048_381048846317508702_n-e1746616255903-265x198.jpg\";s:5:\"width\";i:265;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8445;}s:10:\"td_741x486\";a:5:{s:4:\"file\";s:75:\"486156189_18496431868034048_381048846317508702_n-e1746616255903-741x486.jpg\";s:5:\"width\";i:741;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35135;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2462, 562, '_wp_attachment_backup_sizes', 'a:15:{s:9:\"full-orig\";a:4:{s:5:\"width\";i:1440;s:6:\"height\";i:1800;s:8:\"filesize\";i:118287;s:4:\"file\";s:52:\"486156189_18496431868034048_381048846317508702_n.jpg\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:60:\"486156189_18496431868034048_381048846317508702_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4587;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:60:\"486156189_18496431868034048_381048846317508702_n-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10272;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:60:\"486156189_18496431868034048_381048846317508702_n-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59279;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:61:\"486156189_18496431868034048_381048846317508702_n-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65766;}s:14:\"1536x1536-orig\";a:5:{s:4:\"file\";s:62:\"486156189_18496431868034048_381048846317508702_n-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118822;}s:13:\"td_150x0-orig\";a:5:{s:4:\"file\";s:60:\"486156189_18496431868034048_381048846317508702_n-150x188.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5411;}s:15:\"td_218x150-orig\";a:5:{s:4:\"file\";s:60:\"486156189_18496431868034048_381048846317508702_n-218x150.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4334;}s:13:\"td_300x0-orig\";a:5:{s:4:\"file\";s:60:\"486156189_18496431868034048_381048846317508702_n-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14404;}s:15:\"td_324x400-orig\";a:5:{s:4:\"file\";s:60:\"486156189_18496431868034048_381048846317508702_n-324x400.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15965;}s:15:\"td_485x360-orig\";a:5:{s:4:\"file\";s:60:\"486156189_18496431868034048_381048846317508702_n-485x360.jpg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15645;}s:13:\"td_696x0-orig\";a:5:{s:4:\"file\";s:60:\"486156189_18496431868034048_381048846317508702_n-696x870.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:870;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51257;}s:14:\"td_1068x0-orig\";a:5:{s:4:\"file\";s:62:\"486156189_18496431868034048_381048846317508702_n-1068x1335.jpg\";s:5:\"width\";i:1068;s:6:\"height\";i:1335;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97476;}s:15:\"td_265x198-orig\";a:5:{s:4:\"file\";s:60:\"486156189_18496431868034048_381048846317508702_n-265x198.jpg\";s:5:\"width\";i:265;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6366;}s:15:\"td_741x486-orig\";a:5:{s:4:\"file\";s:60:\"486156189_18496431868034048_381048846317508702_n-741x486.jpg\";s:5:\"width\";i:741;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25347;}}'),
(2463, 562, '_wp_attachment_image_alt', 'chic'),
(2464, 561, '_thumbnail_id', '562'),
(2465, 561, '_wp_page_template', 'default'),
(2593, 602, 'post_views_count', '8'),
(2592, 602, '_edit_lock', '1764049875:9476'),
(2599, 606, '_edit_last', '9476'),
(2598, 604, 'post_views_count', '5'),
(2473, 561, 'post_views_count', '102'),
(2469, 561, '_wp_old_date', '2025-05-07'),
(2470, 561, '_yoast_wpseo_primary_category', '124'),
(2471, 561, '_yoast_wpseo_content_score', '90'),
(2472, 561, '_yoast_wpseo_estimated-reading-time-minutes', '3'),
(2478, 569, '_edit_last', '9467'),
(2479, 569, '_edit_lock', '1748247077:9467'),
(2480, 570, '_wp_attached_file', '2025/05/WhatsApp-Image-2025-05-26-at-12.11.34-PM-1.jpeg'),
(2481, 570, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:55:\"2025/05/WhatsApp-Image-2025-05-26-at-12.11.34-PM-1.jpeg\";s:8:\"filesize\";i:657301;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"WhatsApp-Image-2025-05-26-at-12.11.34-PM-1-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18442;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"WhatsApp-Image-2025-05-26-at-12.11.34-PM-1-1024x768.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178656;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"WhatsApp-Image-2025-05-26-at-12.11.34-PM-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7452;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"WhatsApp-Image-2025-05-26-at-12.11.34-PM-1-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103695;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:57:\"WhatsApp-Image-2025-05-26-at-12.11.34-PM-1-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:369359;}s:8:\"td_150x0\";a:5:{s:4:\"file\";s:55:\"WhatsApp-Image-2025-05-26-at-12.11.34-PM-1-150x113.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5666;}s:10:\"td_218x150\";a:5:{s:4:\"file\";s:55:\"WhatsApp-Image-2025-05-26-at-12.11.34-PM-1-218x150.jpeg\";s:5:\"width\";i:218;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9744;}s:8:\"td_300x0\";a:5:{s:4:\"file\";s:55:\"WhatsApp-Image-2025-05-26-at-12.11.34-PM-1-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18442;}s:10:\"td_324x400\";a:5:{s:4:\"file\";s:55:\"WhatsApp-Image-2025-05-26-at-12.11.34-PM-1-324x400.jpeg\";s:5:\"width\";i:324;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35278;}s:10:\"td_485x360\";a:5:{s:4:\"file\";s:55:\"WhatsApp-Image-2025-05-26-at-12.11.34-PM-1-485x360.jpeg\";s:5:\"width\";i:485;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43425;}s:8:\"td_696x0\";a:5:{s:4:\"file\";s:55:\"WhatsApp-Image-2025-05-26-at-12.11.34-PM-1-696x522.jpeg\";s:5:\"width\";i:696;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86773;}s:9:\"td_1068x0\";a:5:{s:4:\"file\";s:56:\"WhatsApp-Image-2025-05-26-at-12.11.34-PM-1-1068x801.jpeg\";s:5:\"width\";i:1068;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194219;}s:10:\"td_265x198\";a:5:{s:4:\"file\";s:55:\"WhatsApp-Image-2025-05-26-at-12.11.34-PM-1-265x198.jpeg\";s:5:\"width\";i:265;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14630;}s:10:\"td_741x486\";a:5:{s:4:\"file\";s:55:\"WhatsApp-Image-2025-05-26-at-12.11.34-PM-1-741x486.jpeg\";s:5:\"width\";i:741;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86037;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2482, 569, '_thumbnail_id', '570'),
(2483, 569, '_wp_page_template', 'default'),
(2594, 604, '_edit_last', '9476'),
(2587, 600, '_wp_old_date', '2025-11-19'),
(2589, 602, '_edit_last', '9476'),
(2588, 600, 'post_views_count', '3'),
(2493, 569, 'post_views_count', '108'),
(2487, 569, 'td_post_theme_settings', 'a:1:{s:16:\"td_post_template\";s:15:\"single_template\";}'),
(2488, 569, '_yoast_wpseo_primary_category', ''),
(2489, 569, '_yoast_wpseo_title', 'Elevate Your Outdoor Living with Sabba’s Landscaping'),
(2490, 569, '_yoast_wpseo_metadesc', 'Your outdoor space is more than just an extension of your property; it’s an opportunity to create a beautiful and functional area that reflects your style and needs.'),
(2491, 569, '_yoast_wpseo_content_score', '90'),
(2492, 569, '_yoast_wpseo_estimated-reading-time-minutes', '2'),
(2537, 588, '_wp_attached_file', '2025/08/832-1.zip'),
(2538, 588, '_wp_attachment_context', 'upgrader'),
(2696, 526, '_wp_desired_post_slug', 'wordpress-snippet'),
(2695, 633, 'post_views_count', '0');

-- --------------------------------------------------------

--
-- Table structure for table `wpom_posts`
--

DROP TABLE IF EXISTS `wpom_posts`;
CREATE TABLE IF NOT EXISTS `wpom_posts` (
  `ID` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `post_author` bigint UNSIGNED NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_parent` bigint UNSIGNED NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_count` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`),
  KEY `type_status_author` (`post_type`,`post_status`,`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=649 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_posts`
--

INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2, 9467, '2022-02-12 10:23:09', '2022-02-12 10:23:09', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://onlineincshop.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->\r\n', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2022-02-12 10:23:09', '2022-02-12 10:23:09', '', 0, 'https://onlineincshop.com/?page_id=2', 0, 'page', '', 0),
(3, 9467, '2022-02-12 10:23:09', '2022-02-12 10:23:09', '<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://onlineincshop.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->\r\n', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2022-02-12 10:23:09', '2022-02-12 10:23:09', '', 0, 'https://onlineincshop.com/?page_id=3', 0, 'page', '', 0),
(7, 9467, '2022-02-22 08:52:45', '2022-02-22 08:52:45', '', 'Locker (default)', '', 'publish', 'closed', 'closed', '', 'tds_default_locker', '', '', '2022-02-22 08:52:45', '2022-02-22 08:52:45', '', 0, 'https://onlineincshop.com/tds_locker/tds_default_locker/', 0, 'tds_locker', '', 0),
(8, 9467, '2022-02-22 08:52:45', '2022-02-22 08:52:45', '[tdc_zone type=\"tdc_content\"][vc_row tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI0MSIsInBhZGRpbmctYm90dG9tIjoiNDgiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7InBhZGRpbmctdG9wIjoiMzUiLCJwYWRkaW5nLWJvdHRvbSI6IjQyIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJwYWRkaW5nLXRvcCI6IjI1IiwicGFkZGluZy1ib3R0b20iOiIzMiIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\"][vc_column][tdb_breadcrumbs tdicon=\"td-icon-right\" show_home=\"yes\"][tdm_block_column_title title_text=\"Q2hlY2tvdXQ=\" title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_weight=\"400\" tds_title1-f_title_font_size=\"eyJhbGwiOiIzMCIsInBvcnRyYWl0IjoiMjQifQ==\" tds_title1-f_title_font_line_height=\"1.3\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0xOCIsIm1hcmdpbi1ib3R0b20iOiIyMSIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjE4IiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\"][tds_payment][/vc_column][/vc_row][/tdc_zone]\r\n', 'Checkout', '', 'publish', 'closed', 'closed', '', 'tds-checkout', '', '', '2022-02-22 08:52:45', '2022-02-22 08:52:45', '', 0, 'https://onlineincshop.com/tds-checkout/', 0, 'page', '', 0),
(9, 9467, '2022-02-22 08:52:46', '2022-02-22 08:52:46', '[tdc_zone type=\"tdc_content\"][vc_row tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI0MSIsInBhZGRpbmctYm90dG9tIjoiNDgiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7InBhZGRpbmctdG9wIjoiMzUiLCJwYWRkaW5nLWJvdHRvbSI6IjQyIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJwYWRkaW5nLXRvcCI6IjI1IiwicGFkZGluZy1ib3R0b20iOiIzMiIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\"][vc_column][tdb_breadcrumbs tdicon=\"td-icon-right\" show_home=\"yes\"][tdm_block_column_title title_text=\"TXklMjBhY2NvdW50\" title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_weight=\"400\" tds_title1-f_title_font_size=\"eyJhbGwiOiIzMCIsInBvcnRyYWl0IjoiMjQifQ==\" tds_title1-f_title_font_line_height=\"1.3\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0xOCIsIm1hcmdpbi1ib3R0b20iOiIyMSIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjE4IiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\"][tds_my_account][/vc_column][/vc_row][/tdc_zone]\r\n', 'My account', '', 'publish', 'closed', 'closed', '', 'tds-my-account', '', '', '2022-02-22 08:52:46', '2022-02-22 08:52:46', '', 0, 'https://onlineincshop.com/tds-my-account/', 0, 'page', '', 0),
(10, 9467, '2022-02-22 08:52:46', '2022-02-22 08:52:46', '[tdc_zone type=\"tdc_content\"][vc_row tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6IjQ4IiwibWFyZ2luLWJvdHRvbSI6IjQ4IiwicGFkZGluZy10b3AiOiI2MCIsInBhZGRpbmctYm90dG9tIjoiNjAiLCJiYWNrZ3JvdW5kLWNvbG9yIjoiI2Y3ZjdmNyIsImJhY2tncm91bmQtcG9zaXRpb24iOiJjZW50ZXIgY2VudGVyIiwib3BhY2l0eSI6Ii41IiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJwYWRkaW5nLXRvcCI6IjM1IiwicGFkZGluZy1ib3R0b20iOiI0MiIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsicGFkZGluZy10b3AiOiIyNSIsInBhZGRpbmctYm90dG9tIjoiMzIiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" flex_layout=\"row\" flex_vert_align=\"center\" flex_order=\"2\" gap=\"0\"][vc_column flex_layout=\"row\" flex_vert_align=\"flex-start\" flex_horiz_align=\"center\"][tds_create_account tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiIzMCIsInBhZGRpbmctcmlnaHQiOiIyNSIsInBhZGRpbmctYm90dG9tIjoiMzUiLCJwYWRkaW5nLWxlZnQiOiIyNSIsImJvcmRlci1yYWRpdXMiOiIzIiwid2lkdGgiOiI0MCUiLCJzaGFkb3ctc2l6ZSI6IjQiLCJzaGFkb3ctY29sb3IiOiJyZ2JhKDAsMCwwLDAuMTIpIiwic2hhZG93LW9mZnNldC1oIjoiMCIsInNoYWRvdy1vZmZzZXQtdiI6IjIiLCJiYWNrZ3JvdW5kLWNvbG9yIjoiI2ZmZmZmZiIsImRpc3BsYXkiOiIifSwicGhvbmUiOnsid2lkdGgiOiIxMDAlIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2NywicG9ydHJhaXQiOnsid2lkdGgiOiI2MCUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJ3aWR0aCI6IjUwJSIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOX0=\"][/vc_column][/vc_row][/tdc_zone]\r\n', 'Login/Register', '', 'publish', 'closed', 'closed', '', 'tds-login-register', '', '', '2022-02-22 08:52:46', '2022-02-22 08:52:46', '', 0, 'https://onlineincshop.com/tds-login-register/', 0, 'page', '', 0),
(11, 9467, '2022-02-22 08:52:48', '2022-02-22 08:52:48', '', '45', '', 'inherit', 'open', 'closed', '', '45', '', '', '2022-02-22 08:52:48', '2022-02-22 08:52:48', '', 0, 'https://onlineincshop.com/wp-content/uploads/2022/02/45.jpg', 0, 'attachment', 'image/jpeg', 0),
(12, 9467, '2022-02-22 08:52:50', '2022-02-22 08:52:50', 'Romantic girl lying on gray pillows. Indoor photo of cheerful ginger lady posing in cozy room.', 'Romantic,Girl,Lying,On,Gray,Pillows.,Indoor,Photo,Of,Cheerful', '', 'inherit', 'open', 'closed', '', 'romanticgirllyingongraypillows-indoorphotoofcheerful', '', '', '2022-02-22 08:52:50', '2022-02-22 08:52:50', '', 0, 'https://onlineincshop.com/wp-content/uploads/2022/02/44.jpg', 0, 'attachment', 'image/jpeg', 0),
(13, 9467, '2022-02-22 08:52:52', '2022-02-22 08:52:52', 'Image of smiling young woman wearing girlish clothes eating sweet cotton candy while walking in amusement park', 'Image,Of,Smiling,Young,Woman,Wearing,Girlish,Clothes,Eating,Sweet', '', 'inherit', 'open', 'closed', '', 'imageofsmilingyoungwomanwearinggirlishclotheseatingsweet', '', '', '2022-02-22 08:52:52', '2022-02-22 08:52:52', '', 0, 'https://onlineincshop.com/wp-content/uploads/2022/02/43.jpg', 0, 'attachment', 'image/jpeg', 0),
(14, 9467, '2022-02-22 08:52:54', '2022-02-22 08:52:54', '', '42', '', 'inherit', 'open', 'closed', '', '42', '', '', '2022-02-22 08:52:54', '2022-02-22 08:52:54', '', 0, 'https://onlineincshop.com/wp-content/uploads/2022/02/42.jpg', 0, 'attachment', 'image/jpeg', 0),
(15, 9467, '2022-02-22 08:52:56', '2022-02-22 08:52:56', '', '41', '', 'inherit', 'open', 'closed', '', '41', '', '', '2022-02-22 08:52:56', '2022-02-22 08:52:56', '', 0, 'https://onlineincshop.com/wp-content/uploads/2022/02/41.jpg', 0, 'attachment', 'image/jpeg', 0),
(16, 9467, '2022-02-22 08:52:58', '2022-02-22 08:52:58', '', '40', '', 'inherit', 'open', 'closed', '', '40', '', '', '2022-02-22 08:52:58', '2022-02-22 08:52:58', '', 0, 'https://onlineincshop.com/wp-content/uploads/2022/02/40.jpg', 0, 'attachment', 'image/jpeg', 0),
(17, 9467, '2022-02-22 08:53:00', '2022-02-22 08:53:00', '', '39', '', 'inherit', 'open', 'closed', '', '39', '', '', '2022-02-22 08:53:00', '2022-02-22 08:53:00', '', 0, 'https://onlineincshop.com/wp-content/uploads/2022/02/39.jpg', 0, 'attachment', 'image/jpeg', 0),
(18, 9467, '2022-02-22 08:53:02', '2022-02-22 08:53:02', '', '37', '', 'inherit', 'open', 'closed', '', '37', '', '', '2022-02-22 08:53:02', '2022-02-22 08:53:02', '', 0, 'https://onlineincshop.com/wp-content/uploads/2022/02/37.jpg', 0, 'attachment', 'image/jpeg', 0),
(19, 9467, '2022-02-22 08:53:04', '2022-02-22 08:53:04', '', '38', '', 'inherit', 'open', 'closed', '', '38', '', '', '2022-02-22 08:53:04', '2022-02-22 08:53:04', '', 0, 'https://onlineincshop.com/wp-content/uploads/2022/02/38.jpg', 0, 'attachment', 'image/jpeg', 0),
(20, 9467, '2022-02-22 08:53:05', '2022-02-22 08:53:05', '', '36', '', 'inherit', 'open', 'closed', '', '36', '', '', '2022-02-22 08:53:05', '2022-02-22 08:53:05', '', 0, 'https://onlineincshop.com/wp-content/uploads/2022/02/36.jpg', 0, 'attachment', 'image/jpeg', 0),
(21, 9467, '2022-02-22 08:53:07', '2022-02-22 08:53:07', '', 'p1', '', 'inherit', 'open', 'closed', '', 'p1', '', '', '2022-02-22 08:53:07', '2022-02-22 08:53:07', '', 0, 'https://onlineincshop.com/wp-content/uploads/2022/02/p1.jpg', 0, 'attachment', 'image/jpeg', 0),
(22, 9467, '2022-02-22 08:53:09', '2022-02-22 08:53:09', '', 'p2', '', 'inherit', 'open', 'closed', '', 'p2', '', '', '2022-02-22 08:53:09', '2022-02-22 08:53:09', '', 0, 'https://onlineincshop.com/wp-content/uploads/2022/02/p2.jpg', 0, 'attachment', 'image/jpeg', 0),
(23, 9467, '2022-02-22 08:53:11', '2022-02-22 08:53:11', '', 'rec-sb', '', 'inherit', 'open', 'closed', '', 'rec-sb', '', '', '2022-02-22 08:53:11', '2022-02-22 08:53:11', '', 0, 'https://onlineincshop.com/wp-content/uploads/2022/02/rec-sb.jpg', 0, 'attachment', 'image/jpeg', 0),
(24, 9467, '2022-02-22 08:53:11', '2022-02-22 08:53:11', '', 'rec-sb@2x', '', 'inherit', 'open', 'closed', '', 'rec-sb2x', '', '', '2022-02-22 08:53:11', '2022-02-22 08:53:11', '', 0, 'https://onlineincshop.com/wp-content/uploads/2022/02/rec-sb@2x.jpg', 0, 'attachment', 'image/jpeg', 0),
(25, 9467, '2022-02-22 08:53:12', '2022-02-22 08:53:12', '', '1', '', 'inherit', 'open', 'closed', '', '1', '', '', '2022-02-22 08:53:12', '2022-02-22 08:53:12', '', 0, 'https://onlineincshop.com/wp-content/uploads/2022/02/1.jpg', 0, 'attachment', 'image/jpeg', 0),
(26, 9467, '2022-02-22 08:53:14', '2022-02-22 08:53:14', '', 'rec-co', '', 'inherit', 'open', 'closed', '', 'rec-co', '', '', '2022-02-22 08:53:14', '2022-02-22 08:53:14', '', 0, 'https://onlineincshop.com/wp-content/uploads/2022/02/rec-co.jpg', 0, 'attachment', 'image/jpeg', 0),
(27, 9467, '2022-02-22 08:53:18', '2022-02-22 08:53:18', '[tdc_zone type=\"tdc_content\"][vc_row tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI2MCIsInBhZGRpbmctYm90dG9tIjoiMTgwIiwiYmFja2dyb3VuZC1jb2xvciI6IiNmNGY0ZjQiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7InBhZGRpbmctdG9wIjoiNDAiLCJwYWRkaW5nLWJvdHRvbSI6IjE0MCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwibGFuZHNjYXBlIjp7ImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicGhvbmUiOnsicGFkZGluZy10b3AiOiI1MCIsInBhZGRpbmctYm90dG9tIjoiMTYwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" full_width=\"stretch_row_1400 td-stretch-content\"][vc_column tdc_css=\"eyJwaG9uZSI6eyJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][td_block_raw_css content=\"LnRkc19wYXltZW50JTIwJTdCJTBBJTIwJTIwZm9udC1mYW1pbHklM0ElMjAlMjJXb3JrJTIwU2FucyUyMiUyQyUyMEFyaWFsJTJDJTIwc2Fucy1zZXJpZiUzQiUwQSU3RCUwQS50ZHNfcGF5bWVudCUyMC50ZHMtcy1mb3JtJTIwLnRkcy1zLWZvcm0tY29udGVudCUyMC50ZHMtcy1mb3JtLWlucHV0JTIwJTdCJTBBJTIwJTIwY29sb3IlM0ElMjAlMjMwMDAlM0IlMEElN0QlMEEudGRzX3BheW1lbnQlMjAudGRzLXMtZm9ybSUyMC50ZHMtcy1mb3JtLWNvbnRlbnQlMjAudGRzLXMtZm9ybS1ncm91cCUzQW5vdCgudGRzLXMtZmctZXJyb3IpJTIwLnRkcy1zLWZvcm0taW5wdXQlM0Fmb2N1cyUzQW5vdCglNUJyZWFkb25seSU1RCklMjAlN0IlMEElMjAlMjBib3JkZXItY29sb3IlM0ElMjAlMjNlYzM1MzUlMjAhaW1wb3J0YW50JTNCJTBBJTdEJTBBLnRkc19wYXltZW50JTIwLnRkcy1zLWZvcm0lMjAudGRzLXMtZm9ybS1sYWJlbCUyMCU3QiUwQSUyMCUyMGNvbG9yJTNBJTIwJTIzMDAwJTIwIWltcG9ydGFudCUzQiUwQSU3RCUwQS50ZHNfcGF5bWVudCUyMC50ZHMtcy1mb3JtLWZvb3RlciUyMC50ZHMtcy1idG4lMjAlN0IlMEElMjAlMjBiYWNrZ3JvdW5kLWNvbG9yJTNBJTIwJTIzZWMzNTM1JTNCJTBBJTdEJTBBLnRkc19wYXltZW50JTIwLnRkcy1zLWZvcm0tZm9vdGVyJTIwLnRkcy1zLWJ0biUzQWhvdmVyJTJDJTBBLnRkc19wYXltZW50JTIwLnRkcy1zLWZvcm0tZm9vdGVyJTIwLnRkcy1zLWJ0biUzQWFjdGl2ZSUyMCU3QiUwQSUyMCUyMGJhY2tncm91bmQtY29sb3IlM0ElMjAlMjMwMDAlM0IlMEElN0QlMEEudGRzX3BheW1lbnQlMjAudGRzLXNwc2gtdGl0bGUlMjAlN0IlMEElMjAlMjBmb250LXdlaWdodCUzQSUyMDYwMCUzQiUwQSUyMCUyMGNvbG9yJTNBJTIwJTIzMDAwJTNCJTBBJTdEJTBBLnRkc19wYXltZW50JTIwLnRkcy1zLWZvcm0lMjAudGRzLXMtZm9ybS1jaGVjayUyMGlucHV0JTNBY2hlY2tlZCUyMCUyQiUyMC50ZHMtcy1mYy1jaGVjayUyMCU3QiUwQSUyMCUyMGJvcmRlci1jb2xvciUzQSUyMCUyM2VjMzUzNSUzQiUwQSUyMCUyMG91dGxpbmUtY29sb3IlM0ElMjByZ2JhKDI1MiUyQyUyMDQlMkMlMjA0JTJDJTIwMC4xKSUzQiUwQSU3RCUwQS50ZHNfcGF5bWVudCUyMC50ZHMtcy1mb3JtJTIwLnRkcy1zLWZvcm0tY2hlY2slMjAudGRzLXMtZmMtY2hlY2slM0FhZnRlciUyMCU3QiUwQSUyMCUyMGJhY2tncm91bmQtY29sb3IlM0ElMjAlMjNlYzM1MzUlM0IlMEElN0QlMEE=\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\"][tdm_block_column_title title_size=\"tdm-title-sm\" tds_title1-f_title_font_weight=\"700\" tds_title1-f_title_font_size=\"eyJhbGwiOiI0MiIsImxhbmRzY2FwZSI6IjM2IiwicG9ydHJhaXQiOiIzMiIsInBob25lIjoiMzAifQ==\" tds_title1-f_title_font_family=\"456\" tds_title1-f_title_font_line_height=\"1\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\" tds_title=\"tds_title1\" content_align_horizontal=\"content-horiz-center\" tds_title1-f_title_font_style=\"undefined\" tds_title1-f_title_font_transform=\"\" title_text=\"Q2hlY2tvdXQ=\" title_tag=\"h3\"][/vc_column][/vc_row][vc_row tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0xMDAiLCJtYXJnaW4tYm90dG9tIjoiMTAwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjgwIiwicGFkZGluZy1yaWdodCI6IjQwIiwicGFkZGluZy1sZWZ0IjoiNDAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi10b3AiOiItODAiLCJtYXJnaW4tYm90dG9tIjoiNjAiLCJwYWRkaW5nLXJpZ2h0IjoiMjAiLCJwYWRkaW5nLWxlZnQiOiIyMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLXRvcCI6Ii04MCIsIm1hcmdpbi1ib3R0b20iOiI2MCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" full_width=\"\"][vc_column tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI1MCIsInBhZGRpbmctcmlnaHQiOiI0MCIsInBhZGRpbmctYm90dG9tIjoiNTAiLCJwYWRkaW5nLWxlZnQiOiI0MCIsInNoYWRvdy1zaXplIjoiMjAiLCJzaGFkb3ctY29sb3IiOiJyZ2JhKDAsMCwwLDAuMTIpIiwic2hhZG93LW9mZnNldC12IjoiNCIsImJhY2tncm91bmQtY29sb3IiOiIjZmZmZmZmIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwaG9uZSI6eyJwYWRkaW5nLXRvcCI6IjMwIiwicGFkZGluZy1yaWdodCI6IjIwIiwicGFkZGluZy1ib3R0b20iOiIyMCIsInBhZGRpbmctbGVmdCI6IjIwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2NywicG9ydHJhaXQiOnsicGFkZGluZy10b3AiOiIzMCIsInBhZGRpbmctcmlnaHQiOiIyMCIsInBhZGRpbmctYm90dG9tIjoiMjAiLCJwYWRkaW5nLWxlZnQiOiIyMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=\"][tds_payment tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\"][/vc_column][/vc_row][/tdc_zone]\r\n', 'TDS Payment Page - DEMO week_pro', '', 'publish', 'open', 'closed', '', 'tds-payment-page-demo-week_pro', '', '', '2022-02-22 08:53:18', '2022-02-22 08:53:18', '', 0, 'http://tdi_1_7e2', 0, 'page', '', 0),
(28, 9467, '2022-02-22 08:53:18', '2022-02-22 08:53:18', '[tdc_zone type=\"tdc_content\"][vc_row tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI2MCIsInBhZGRpbmctYm90dG9tIjoiMTgwIiwiYmFja2dyb3VuZC1jb2xvciI6IiNmNGY0ZjQiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7InBhZGRpbmctdG9wIjoiNDAiLCJwYWRkaW5nLWJvdHRvbSI6IjE2MCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwibGFuZHNjYXBlIjp7InBhZGRpbmctYm90dG9tIjoiMTgwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwaG9uZSI6eyJwYWRkaW5nLXRvcCI6IjUwIiwicGFkZGluZy1ib3R0b20iOiIxNjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" full_width=\"stretch_row_1400 td-stretch-content\"][vc_column tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiLTYwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiLTgwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\"][tdm_block_column_title title_text=\"TXklMjBhY2NvdW50\" title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_weight=\"700\" tds_title1-f_title_font_size=\"eyJhbGwiOiI0MiIsImxhbmRzY2FwZSI6IjM2IiwicG9ydHJhaXQiOiIzMiIsInBob25lIjoiMzAifQ==\" tds_title1-f_title_font_family=\"456\" tds_title1-f_title_font_line_height=\"1\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\" tds_title=\"tds_title1\" tds_title2-line_width=\"40\" tds_title2-line_height=\"eyJhbGwiOiI0IiwicG9ydHJhaXQiOiIzIn0=\" tds_title2-line_space=\"eyJhbGwiOiIxNiIsImxhbmRzY2FwZSI6IjE0IiwicG9ydHJhaXQiOiIxMiJ9\" tds_title2-line_alignment=\"-100\" tds_title2-line_color=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiIjNmQyOTI5IiwiY29sb3IyIjoiIzZkMjkyOSIsIm1peGVkQ29sb3JzIjpbXSwiZGVncmVlIjoiLTkwIiwiY3NzIjoiYmFja2dyb3VuZC1jb2xvcjogIzZkMjkyOTsiLCJjc3NQYXJhbXMiOiIwZGVnLCM2ZDI5MjksIzZkMjkyOSJ9\" tds_title2-f_title_font_size=\"eyJhbGwiOiI0MiIsImxhbmRzY2FwZSI6IjM2IiwicG9ydHJhaXQiOiIzMiIsInBob25lIjoiMzAifQ==\" tds_title2-f_title_font_line_height=\"1.2\" tds_title2-f_title_font_weight=\"700\" tds_title2-f_title_font_family=\"456\" content_align_horizontal=\"content-horiz-center\" tds_title2-title_color=\"#000000\" tds_title1-f_title_font_style=\"undefined\" tds_title1-f_title_font_transform=\"\"][/vc_column][/vc_row][vc_row tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0xMDAiLCJtYXJnaW4tYm90dG9tIjoiMTAwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjgwIiwicGFkZGluZy1yaWdodCI6IjQwIiwicGFkZGluZy1sZWZ0IjoiNDAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi10b3AiOiItODAiLCJtYXJnaW4tYm90dG9tIjoiNjAiLCJwYWRkaW5nLXJpZ2h0IjoiMjAiLCJwYWRkaW5nLWxlZnQiOiIyMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLXRvcCI6Ii04MCIsIm1hcmdpbi1ib3R0b20iOiI2MCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" full_width=\"\"][vc_column tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI1MCIsInBhZGRpbmctcmlnaHQiOiI0MCIsInBhZGRpbmctYm90dG9tIjoiNTAiLCJwYWRkaW5nLWxlZnQiOiI0MCIsInNoYWRvdy1zaXplIjoiMjAiLCJzaGFkb3ctY29sb3IiOiJyZ2JhKDAsMCwwLDAuMTIpIiwic2hhZG93LW9mZnNldC12IjoiNCIsImJhY2tncm91bmQtY29sb3IiOiIjZmZmZmZmIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwaG9uZSI6eyJwYWRkaW5nLXRvcCI6IjMwIiwicGFkZGluZy1yaWdodCI6IjIwIiwicGFkZGluZy1ib3R0b20iOiIyMCIsInBhZGRpbmctbGVmdCI6IjIwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\"][tds_my_account tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\" show_version=\"settings\" accent_color=\"#ec3535\" a_color_h=\"#c11f1f\" f_text_font_family=\"653\" nav_ico_color=\"#000000\" nav_ico_bg=\"#f4f4f4\" nav_ico_bg_h=\"#fff4f4\" sep_color=\"#eaeaea\" btn_bg_h=\"#c11f1f\"][/vc_column][/vc_row][/tdc_zone]\r\n', 'TDS My Account Page - DEMO week_pro', '', 'publish', 'open', 'closed', '', 'tds-my-account-page-demo-week_pro', '', '', '2022-02-22 08:53:18', '2022-02-22 08:53:18', '', 0, 'http://tdi_3_979', 0, 'page', '', 0),
(29, 9467, '2022-02-22 08:53:18', '2022-02-22 08:53:18', '[tdc_zone type=\"tdc_content\"][vc_row tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI2MCIsInBhZGRpbmctYm90dG9tIjoiMTgwIiwiYmFja2dyb3VuZC1jb2xvciI6IiNmNGY0ZjQiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7InBhZGRpbmctdG9wIjoiNDAiLCJwYWRkaW5nLWJvdHRvbSI6IjE0MCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwibGFuZHNjYXBlIjp7ImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicGhvbmUiOnsicGFkZGluZy10b3AiOiI1MCIsInBhZGRpbmctYm90dG9tIjoiMTYwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" full_width=\"stretch_row_1400 td-stretch-content\"][vc_column tdc_css=\"eyJwaG9uZSI6eyJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][td_block_raw_css content=\"LnRkc19jcmVhdGVfYWNjb3VudCUyMCU3QiUwQSUyMCUyMGZvbnQtZmFtaWx5JTNBJTIwJTIyV29yayUyMFNhbnMlMjIlMkMlMjBBcmlhbCUyQyUyMHNhbnMtc2VyaWYlM0IlMEElN0QlMEEudGRzX2NyZWF0ZV9hY2NvdW50JTIwLnRkcy1zLXBhZ2UtbG9naW4lMjAlMjNsb2dpbmZvcm0lMjBpbnB1dCU1QnR5cGUlM0R0ZXh0JTVEJTJDJTBBLnRkc19jcmVhdGVfYWNjb3VudCUyMC50ZHMtcy1wYWdlLWxvZ2luJTIwJTIzbG9naW5mb3JtJTIwaW5wdXQlNUJ0eXBlJTNEcGFzc3dvcmQlNUQlMkMlMEEudGRzX2NyZWF0ZV9hY2NvdW50JTIwLnRkcy1zLWZvcm0lMjAudGRzLXMtZm9ybS1jb250ZW50JTIwLnRkcy1zLWZvcm0taW5wdXQlMjAlN0IlMEElMjAlMjBjb2xvciUzQSUyMCUyMzAwMCUzQiUwQSU3RCUwQS50ZHNfY3JlYXRlX2FjY291bnQlMjAudGRzLXMtY2EtbG9naW4lMjAudGRzLXMtcGFnZS1sb2dpbiUyMCUyM2xvZ2luZm9ybSUyMGlucHV0JTVCdHlwZSUzRHRleHQlNUQlM0Fmb2N1cyUzQW5vdCglNUJyZWFkb25seSU1RCklMkMlMEEudGRzX2NyZWF0ZV9hY2NvdW50JTIwLnRkcy1zLWNhLWxvZ2luJTIwLnRkcy1zLXBhZ2UtbG9naW4lMjAlMjNsb2dpbmZvcm0lMjBpbnB1dCU1QnR5cGUlM0RwYXNzd29yZCU1RCUzQWZvY3VzJTNBbm90KCU1QnJlYWRvbmx5JTVEKSUyQyUwQS50ZHNfY3JlYXRlX2FjY291bnQlMjAudGRzLXMtZm9ybSUyMC50ZHMtcy1mb3JtLWNvbnRlbnQlMjAudGRzLXMtZm9ybS1ncm91cCUzQW5vdCgudGRzLXMtZmctZXJyb3IpJTIwLnRkcy1zLWZvcm0taW5wdXQlM0Fmb2N1cyUzQW5vdCglNUJyZWFkb25seSU1RCklMjAlN0IlMEElMjAlMjBib3JkZXItY29sb3IlM0ElMjAlMjNlYzM1MzUlMjAhaW1wb3J0YW50JTNCJTBBJTdEJTBBLnRkcy1wYWdlLWJsb2NrJTIwYSUzQW5vdCgudGRzLXMtYnRuKSUyMCU3QiUwQSUyMCUyMGNvbG9yJTNBJTIwJTIzZWMzNTM1JTNCJTBBJTdEJTBBLnRkc19jcmVhdGVfYWNjb3VudCUyMCUyM2xvZ2luZm9ybSUyMHAlMjBsYWJlbCUyQyUwQWJvZHklMjAudGRzLXMtZm9ybSUyMC50ZHMtcy1mb3JtLWxhYmVsJTIwJTdCJTBBJTIwJTIwY29sb3IlM0ElMjAlMjMwMDAlMjAhaW1wb3J0YW50JTNCJTBBJTdEJTBBLnRkc19jcmVhdGVfYWNjb3VudCUyMC50ZHMtcy1wYWdlLWxvZ2luJTIwJTIzbG9naW5mb3JtJTIwLmJ1dHRvbiUyQyUwQS50ZHNfY3JlYXRlX2FjY291bnQlMjAudGRzLXMtZm9ybS1mb290ZXIlMjAudGRzLXMtYnRuJTIwJTdCJTBBJTIwJTIwYmFja2dyb3VuZC1jb2xvciUzQSUyMCUyM2VjMzUzNSUzQiUwQSU3RCUwQS50ZHNfY3JlYXRlX2FjY291bnQlMjAudGRzLXMtcGFnZS1sb2dpbiUyMCUyM2xvZ2luZm9ybSUyMC5idXR0b24lM0Fob3ZlciUyQyUwQS50ZHNfY3JlYXRlX2FjY291bnQlMjAudGRzLXMtcGFnZS1sb2dpbiUyMCUyM2xvZ2luZm9ybSUyMC5idXR0b24lM0FhY3RpdmUlMkMlMEEudGRzX2NyZWF0ZV9hY2NvdW50JTIwLnRkcy1zLWZvcm0tZm9vdGVyJTIwLnRkcy1zLWJ0biUzQWhvdmVyJTJDJTBBLnRkc19jcmVhdGVfYWNjb3VudCUyMC50ZHMtcy1mb3JtLWZvb3RlciUyMC50ZHMtcy1idG4lM0FhY3RpdmUlMjAlN0IlMEElMjAlMjBiYWNrZ3JvdW5kLWNvbG9yJTNBJTIwJTIzMDAwJTNCJTBBJTdEJTBBLnRkc19jcmVhdGVfYWNjb3VudCUyMC50ZHMtc3BzaC10aXRsZSUyMCU3QiUwQSUyMCUyMGZvbnQtd2VpZ2h0JTNBJTIwNjAwJTNCJTBBJTIwJTIwY29sb3IlM0ElMjAlMjMwMDAlM0IlMEElN0QlMEE=\"][tdm_block_column_title title_size=\"tdm-title-sm\" tds_title1-f_title_font_weight=\"700\" tds_title1-f_title_font_size=\"eyJhbGwiOiI0MiIsImxhbmRzY2FwZSI6IjM2IiwicG9ydHJhaXQiOiIzMiIsInBob25lIjoiMzAifQ==\" tds_title1-f_title_font_family=\"456\" tds_title1-f_title_font_line_height=\"1\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\" tds_title=\"tds_title1\" content_align_horizontal=\"content-horiz-center\" tds_title1-f_title_font_style=\"undefined\" tds_title1-f_title_font_transform=\"\" title_text=\"TG9naW4lMjAlMkYlMjBSZWdpc3Rlcg==\" title_tag=\"h3\"][/vc_column][/vc_row][vc_row tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0xMDAiLCJtYXJnaW4tYm90dG9tIjoiMTAwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjgwIiwicGFkZGluZy1yaWdodCI6IjQwIiwicGFkZGluZy1sZWZ0IjoiNDAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi10b3AiOiItODAiLCJtYXJnaW4tYm90dG9tIjoiNjAiLCJwYWRkaW5nLXJpZ2h0IjoiMjAiLCJwYWRkaW5nLWxlZnQiOiIyMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLXRvcCI6Ii04MCIsIm1hcmdpbi1ib3R0b20iOiI2MCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" full_width=\"\"][vc_column tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI1MCIsInBhZGRpbmctcmlnaHQiOiI0MCIsInBhZGRpbmctYm90dG9tIjoiNTAiLCJwYWRkaW5nLWxlZnQiOiI0MCIsInNoYWRvdy1zaXplIjoiMjAiLCJzaGFkb3ctY29sb3IiOiJyZ2JhKDAsMCwwLDAuMTIpIiwic2hhZG93LW9mZnNldC12IjoiNCIsImJhY2tncm91bmQtY29sb3IiOiIjZmZmZmZmIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwaG9uZSI6eyJwYWRkaW5nLXRvcCI6IjMwIiwicGFkZGluZy1yaWdodCI6IjIwIiwicGFkZGluZy1ib3R0b20iOiIyMCIsInBhZGRpbmctbGVmdCI6IjIwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\"][tds_create_account tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\"][/vc_column][/vc_row][/tdc_zone]\r\n', 'TDS Create Account Page - DEMO week_pro', '', 'publish', 'open', 'closed', '', 'tds-create-account-page-demo-week_pro', '', '', '2022-02-22 08:53:18', '2022-02-22 08:53:18', '', 0, 'http://tdi_6_f4f', 0, 'page', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(30, 9467, '2022-02-22 08:53:18', '2022-02-22 08:53:18', '[tdc_zone type=\"tdc_content\"][vc_row tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI2MCIsInBhZGRpbmctYm90dG9tIjoiMTgwIiwiYmFja2dyb3VuZC1jb2xvciI6IiNmNGY0ZjQiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7InBhZGRpbmctdG9wIjoiNDAiLCJwYWRkaW5nLWJvdHRvbSI6IjE0MCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwibGFuZHNjYXBlIjp7ImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicGhvbmUiOnsicGFkZGluZy10b3AiOiI1MCIsInBhZGRpbmctYm90dG9tIjoiNTAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" full_width=\"stretch_row_1400 td-stretch-content\"][vc_column tdc_css=\"eyJwaG9uZSI6eyJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][tdm_block_column_title title_size=\"tdm-title-sm\" tds_title1-f_title_font_weight=\"700\" tds_title1-f_title_font_size=\"eyJhbGwiOiI0MiIsImxhbmRzY2FwZSI6IjM2IiwicG9ydHJhaXQiOiIzMiIsInBob25lIjoiMzAifQ==\" tds_title1-f_title_font_family=\"456\" tds_title1-f_title_font_line_height=\"1\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjIwIiwiZGlzcGxheSI6IiJ9fQ==\" tds_title=\"tds_title1\" content_align_horizontal=\"content-horiz-center\" tds_title1-f_title_font_style=\"undefined\" tds_title1-f_title_font_transform=\"\" title_text=\"U3Vic2NyaXB0aW9uJTIwUGxhbnM=\" title_tag=\"h3\"][tdm_block_inline_text description=\"UGxlYXNlJTIwY29uc2lkZXIlMjBzdXBwb3J0aW5nJTIwdXMlMjBieSUyMGJlY29taW5nJTIwYSUyMGZ1bGwlMjBhY2Nlc3MlMjBtZW1iZXJzLiUyMFlvdSUyMGdldCUyMGFsbCUyMHRoZSUyMGJlbGxzJTIwYW5kJTIwd2hpc3RsZXMlMjBpbmNsdWRlZCUyQyUyMHBsdXMlMjBmcmVlJTIwYWNjZXNzJTIwdG8lMjBvdXIlMjBlYm9vayUyMGxpYnJhcnRpZXM=\" f_descr_font_family=\"653\" f_descr_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjE1In0=\" f_descr_font_line_height=\"1.5\" description_color=\"#000000\" f_descr_font_weight=\"400\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJ3aWR0aCI6IjUwJSIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7IndpZHRoIjoiNzAlIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJ3aWR0aCI6IjgwJSIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsid2lkdGgiOiIxMDAlIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" content_align_horizontal=\"content-horiz-center\"][/vc_column][/vc_row][vc_row tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0xMDAiLCJtYXJnaW4tYm90dG9tIjoiMTAwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjgwIiwicGFkZGluZy1yaWdodCI6IjQwIiwicGFkZGluZy1sZWZ0IjoiNDAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi10b3AiOiItODAiLCJtYXJnaW4tYm90dG9tIjoiNjAiLCJwYWRkaW5nLXJpZ2h0IjoiMjAiLCJwYWRkaW5nLWxlZnQiOiIyMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLXRvcCI6IjI1IiwibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" full_width=\"\"][vc_column width=\"1/2\" tdc_css=\"eyJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMjUiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][vc_row_inner row_shadow_shadow_size=\"25\" row_shadow_shadow_offset_vertical=\"4\" row_shadow_shadow_color=\"rgba(0,0,0,0.12)\" gap=\"0\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJwYWRkaW5nLXRvcCI6IjQwIiwicGFkZGluZy1yaWdodCI6IjQwIiwicGFkZGluZy1ib3R0b20iOiI0MCIsInBhZGRpbmctbGVmdCI6IjQwIiwiYmFja2dyb3VuZC1jb2xvciI6IiNmZmZmZmYiLCJkaXNwbGF5IjoiIn19\"][vc_column_inner][tdm_block_column_title title_size=\"tdm-title-sm\" tds_title=\"tds_title2\" tds_title2-f_title_font_line_height=\"1\" tds_title2-f_title_font_weight=\"700\" tds_title2-line_width=\"100%\" tds_title2-line_height=\"3\" tds_title2-line_alignment=\"-100\" tds_title2-line_space=\"15\" tds_title2-line_color=\"#ec3535\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjIwIiwiZGlzcGxheSI6IiJ9fQ==\" tds_title2-title_color=\"#000000\" tds_title2-f_title_font_size=\"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMjAifQ==\" title_text=\"RnJlZSUyMGxpbWl0ZWQlMjBhY2Nlc3M=\" title_tag=\"h3\" tds_title2-f_title_font_family=\"653\" content_align_horizontal=\"content-horiz-left\"][tds_plans_price tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjUwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" f_price_font_size=\"eyJhbGwiOiI0MiIsInBvcnRyYWl0IjoiMzYiLCJwaG9uZSI6IjM2In0=\" price_color=\"#ec3535\" vert_align=\"baseline\" inline=\"yes\" free_plan=\"2\" year_plan=\"1\" month_plan=\"3\" f_price_font_weight=\"700\" f_price_font_family=\"456\" f_price_font_line_height=\"1\" f_price_font_style=\"undefined\" f_price_font_transform=\"\" horiz_align=\"content-horiz-left\"][tds_plans_description year_plan_desc=\"JTJGJTIweWVhcg==\" month_plan_desc=\"JTJGJTIwbW9udGg=\" inline=\"yes\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWxlZnQiOiIyMCIsImRpc3BsYXkiOiIifX0=\" color=\"#000000\" f_descr_font_size=\"eyJhbGwiOiIyMCIsInBvcnRyYWl0IjoiMTgiLCJwaG9uZSI6IjE4In0=\" f_descr_font_line_height=\"1\" vert_align=\"baseline\" free_plan_desc=\"JTJGJTIwZm9yZXZlcg==\" f_descr_font_family=\"653\" f_descr_font_weight=\"500\" f_descr_font_spacing=\"-1\" f_descr_font_transform=\"\"][tdm_block_list content_align_horizontal=\"content-horiz-left\" icon_color=\"#ec3535\" text_color=\"#000000\" f_list_font_weight=\"600\" f_list_font_size=\"eyJhbGwiOiIxNSIsInBob25lIjoiMTQiLCJwb3J0cmFpdCI6IjE0In0=\" f_list_font_line_height=\"1.5\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\" icon_size=\"12\" items=\"RXRpYW0lMjBlc3QlMjBuaWJoJTJDJTIwbG9ib3J0aXMlMjBzaXQlMEFQcmFlc2VudCUyMGV1aXNtb2QlMjBhYyUwQVV0JTIwbW9sbGlzJTIwcGVsbGVudGVzcXVlJTIwdG9ydG9yJTBBTnVsbGFtJTIwZXUlMjBlcmF0JTIwY29uZGltZW50dW0=\" tdicon=\"tdc-font-fa tdc-font-fa-check\" icon_align=\"2\" f_list_font_family=\"653\"][tdm_block_list items=\"RG9uZWMlMjBxdWlzJTIwZXN0JTIwYWMlMjBmZWxpcyUwQU9yY2klMjB2YXJpdXMlMjBuYXRvcXVlJTIwZG9sb3I=\" tdicon=\"tdc-font-fa tdc-font-fa-remove-close-times\" content_align_horizontal=\"content-horiz-left\" icon_color=\"#999999\" text_color=\"#999999\" f_list_font_weight=\"500\" f_list_font_size=\"eyJhbGwiOiIxNSIsImxhbmRzY2FwZSI6IjE0IiwicG9ydHJhaXQiOiIxNCIsInBob25lIjoiMTQifQ==\" f_list_font_line_height=\"1.5\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\" icon_size=\"12\" icon_align=\"2\" f_list_font_family=\"653\"][tds_plans_button month_plan=\"3\" year_plan=\"1\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6IjQwIiwibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7Im1hcmdpbi10b3AiOiIzMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=\" horiz_align=\"content-horiz-center\" display=\"full\" f_txt_font_weight=\"600\" padd=\"eyJhbGwiOiIxNHB4IDI0cHggMTZweCIsImxhbmRzY2FwZSI6IjEzcHggMjJweCAxNXB4IiwicG9ydHJhaXQiOiIxM3B4IDIycHggMTRweCIsInBob25lIjoiMTNweCAyMnB4IDE1cHgifQ==\" all_border_color=\"#ec3535\" text_color=\"#ec3535\" bg_color=\"rgba(21,43,247,0)\" all_border=\"2\" bg_color_h=\"rgba(21,43,247,0)\" free_plan=\"2\" f_txt_font_size=\"eyJhbGwiOiIxMyIsInBob25lIjoiMTIifQ==\" f_txt_font_transform=\"uppercase\" f_txt_font_family=\"653\" f_txt_font_line_height=\"1\" text_color_h=\"#c11f1f\" border_color_h=\"#c11f1f\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\"][vc_row_inner row_shadow_shadow_size=\"25\" row_shadow_shadow_offset_vertical=\"4\" row_shadow_shadow_color=\"rgba(0,0,0,0.12)\" gap=\"0\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJwYWRkaW5nLXRvcCI6IjQwIiwicGFkZGluZy1yaWdodCI6IjQwIiwicGFkZGluZy1ib3R0b20iOiI0MCIsInBhZGRpbmctbGVmdCI6IjQwIiwiYmFja2dyb3VuZC1jb2xvciI6IiNmZmZmZmYiLCJkaXNwbGF5IjoiIn19\"][vc_column_inner][tdm_block_column_title title_size=\"tdm-title-sm\" tds_title=\"tds_title2\" tds_title2-f_title_font_line_height=\"1\" tds_title2-f_title_font_weight=\"700\" tds_title2-line_width=\"100%\" tds_title2-line_height=\"3\" tds_title2-line_alignment=\"-100\" tds_title2-line_space=\"15\" tds_title2-line_color=\"#ec3535\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjIwIiwiZGlzcGxheSI6IiJ9fQ==\" tds_title2-title_color=\"#000000\" tds_title2-f_title_font_size=\"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMjAifQ==\" title_text=\"TWVtYmVyJTIwZnVsbCUyMGFjY2VzcyUyMA==\" title_tag=\"h3\" tds_title2-f_title_font_family=\"653\" content_align_horizontal=\"content-horiz-left\"][tds_plans_price tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjUwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" f_price_font_size=\"eyJhbGwiOiI0MiIsInBvcnRyYWl0IjoiMzYiLCJwaG9uZSI6IjM2In0=\" price_color=\"#ec3535\" vert_align=\"baseline\" inline=\"yes\" f_price_font_weight=\"700\" f_price_font_family=\"456\" f_price_font_line_height=\"1\" f_price_font_style=\"undefined\" f_price_font_transform=\"\" horiz_align=\"content-horiz-left\" free_plan=\"\" year_plan=\"1\" month_plan=\"3\" def_plan=\"\" curr_txt=\"$\"][tds_plans_description year_plan_desc=\"JTJGJTIweWVhcg==\" month_plan_desc=\"JTJGJTIwbW9udGg=\" inline=\"yes\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWxlZnQiOiIyMCIsImRpc3BsYXkiOiIifX0=\" color=\"#000000\" f_descr_font_size=\"eyJhbGwiOiIyMCIsInBvcnRyYWl0IjoiMTgiLCJwaG9uZSI6IjE4In0=\" f_descr_font_line_height=\"1\" vert_align=\"baseline\" f_descr_font_family=\"653\" f_descr_font_weight=\"500\" f_descr_font_spacing=\"-1\" f_descr_font_transform=\"\"][tdm_block_list content_align_horizontal=\"content-horiz-left\" icon_color=\"#ec3535\" text_color=\"#000000\" f_list_font_weight=\"600\" f_list_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjE0In0=\" f_list_font_line_height=\"1.5\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\" icon_size=\"12\" items=\"RXRpYW0lMjBlc3QlMjBuaWJoJTJDJTIwbG9ib3J0aXMlMjBzaXQlMEFQcmFlc2VudCUyMGV1aXNtb2QlMjBhYyUwQVV0JTIwbW9sbGlzJTIwcGVsbGVudGVzcXVlJTIwdG9ydG9yJTBBTnVsbGFtJTIwZXUlMjBlcmF0JTIwY29uZGltZW50dW0lMEFEb25lYyUyMHF1aXMlMjBlc3QlMjBhYyUyMGZlbGlzJTBBT3JjaSUyMHZhcml1cyUyMG5hdG9xdWUlMjBkb2xvcg==\" tdicon=\"tdc-font-fa tdc-font-fa-check\" icon_align=\"2\" f_list_font_family=\"653\"][tds_plans_switcher tds_plans_switcher1-annual_txt=\"Yearly pricing\" tds_plans_switcher1-monthly_txt=\"Monthly pricing\" def_plan=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6IjQwIiwibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7Im1hcmdpbi10b3AiOiIzMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=\" tds_plans_switcher1-horiz_align=\"content-horiz-center\" tds_plans_switcher=\"tds_plans_switcher1\" tds_plans_switcher1-all_border=\"1\" tds_plans_switcher1-bg_color=\"rgba(255,255,255,0)\" tds_plans_switcher1-all_border_color=\"#ec3535\" tds_plans_switcher1-dot_bg_color=\"#ec3535\" tds_plans_switcher1-f_label_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEiLCJwaG9uZSI6IjEyIn0=\" tds_plans_switcher1-switch_size=\"1\" tds_plans_switcher1-label_color=\"#000000\" tds_plans_switcher1-label_color_a=\"#000000\" tds_plans_switcher1-label_space=\"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiNiJ9\" tds_plans_switcher1-f_label_font_family=\"653\" tds_plans_switcher1-f_label_font_transform=\"uppercase\" tds_plans_switcher1-f_label_font_weight=\"600\" tds_plans_switcher1-f_label_font_line_height=\"1\"][tds_plans_button month_plan=\"3\" year_plan=\"1\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6IjQwIiwibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7Im1hcmdpbi10b3AiOiIzMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=\" horiz_align=\"content-horiz-center\" display=\"full\" border_radius=\"0\" f_txt_font_weight=\"600\" padd=\"eyJhbGwiOiIxNHB4IDI0cHggMTZweCIsImxhbmRzY2FwZSI6IjEzcHggMjJweCAxNXB4IiwicG9ydHJhaXQiOiIxM3B4IDIycHggMTRweCIsInBob25lIjoiMTNweCAyMnB4IDE1cHgifQ==\" all_border_color=\"#ec3535\" text_color=\"#ffffff\" bg_color=\"#ec3535\" bg_color_h=\"#c11f1f\" free_plan=\"\" f_txt_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJwaG9uZSI6IjEyIn0=\" f_txt_font_transform=\"uppercase\" f_txt_font_family=\"653\" f_txt_font_line_height=\"1\" text_color_h=\"#ffffff\" border_color_h=\"#c11f1f\" all_border=\"2\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][td_block_title title_tag=\"h4\" content_align_horizontal=\"content-horiz-center\" block_template_id=\"td_block_template_13\" big_title_text=\"Exclusive\" custom_title=\"Only for Members\" big_text_color=\"#f7f7f7\" header_text_color=\"#000000\" f_header_font_family=\"653\" f_header_font_weight=\"700\" f_header_font_size=\"eyJhbGwiOiIzMiIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIyNiIsInBob25lIjoiMjYifQ==\" f_header_font_spacing=\"-1\" f_header_font_line_height=\"1\" f_header_font_transform=\"\" tdc_css=\"JTdCJTIyYWxsJTIyJTNBJTdCJTIybWFyZ2luLWJvdHRvbSUyMiUzQSUyMjQwJTIyJTJDJTIyZGlzcGxheSUyMiUzQSUyMiUyMiU3RCUyQyUyMmxhbmRzY2FwZSUyMiUzQSU3QiUyMm1hcmdpbi1ib3R0b20lMjIlM0ElMjIzMCUyMiUyQyUyMmRpc3BsYXklMjIlM0ElMjIlMjIlN0QlMkMlMjJsYW5kc2NhcGVfbWF4X3dpZHRoJTIyJTNBMTE0MCUyQyUyMmxhbmRzY2FwZV9taW5fd2lkdGglMjIlM0ExMDE5JTJDJTIycG9ydHJhaXQlMjIlM0ElN0IlMjJtYXJnaW4tYm90dG9tJTIyJTNBJTIyMjUlMjIlMkMlMjJkaXNwbGF5JTIyJTNBJTIyJTIyJTdEJTJDJTIycG9ydHJhaXRfbWF4X3dpZHRoJTIyJTNBMTAxOCUyQyUyMnBvcnRyYWl0X21pbl93aWR0aCUyMiUzQTc2OCUyQyUyMnBob25lJTIyJTNBJTdCJTIybWFyZ2luLWJvdHRvbSUyMiUzQSUyMjIwJTIyJTJDJTIyZGlzcGxheSUyMiUzQSUyMiUyMiU3RCUyQyUyMnBob25lX21heF93aWR0aCUyMiUzQTc2NyU3RA==\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"JTdCJTIyYWxsJTIyJTNBJTdCJTIybWFyZ2luLWJvdHRvbSUyMiUzQSUyMjgwJTIyJTJDJTIyZGlzcGxheSUyMiUzQSUyMiUyMiU3RCUyQyUyMmxhbmRzY2FwZSUyMiUzQSU3QiUyMm1hcmdpbi1ib3R0b20lMjIlM0ElMjI2MCUyMiUyQyUyMmRpc3BsYXklMjIlM0ElMjIlMjIlN0QlMkMlMjJsYW5kc2NhcGVfbWF4X3dpZHRoJTIyJTNBMTE0MCUyQyUyMmxhbmRzY2FwZV9taW5fd2lkdGglMjIlM0ExMDE5JTJDJTIycG9ydHJhaXQlMjIlM0ElN0IlMjJtYXJnaW4tYm90dG9tJTIyJTNBJTIyNDAlMjIlMkMlMjJwYWRkaW5nLXJpZ2h0JTIyJTNBJTIyMTAlMjIlMkMlMjJwYWRkaW5nLWxlZnQlMjIlM0ElMjIxMCUyMiUyQyUyMmRpc3BsYXklMjIlM0ElMjIlMjIlN0QlMkMlMjJwb3J0cmFpdF9tYXhfd2lkdGglMjIlM0ExMDE4JTJDJTIycG9ydHJhaXRfbWluX3dpZHRoJTIyJTNBNzY4JTJDJTIycGhvbmUlMjIlM0ElN0IlMjJtYXJnaW4tYm90dG9tJTIyJTNBJTIyNjAlMjIlMkMlMjJwYWRkaW5nLXRvcCUyMiUzQSUyMjE1JTIyJTJDJTIyZGlzcGxheSUyMiUzQSUyMiUyMiU3RCUyQyUyMnBob25lX21heF93aWR0aCUyMiUzQTc2NyU3RA==\" stretch_off=\"yes\" gap=\"eyJhbGwiOiIxMCIsImxhbmRzY2FwZSI6IjgiLCJwb3J0cmFpdCI6IjUiLCJwaG9uZSI6IjAifQ==\"][vc_column width=\"5\" tdc_css=\"eyJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][td_flex_block_2 modules_on_row=\"\" limit=\"1\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiI0MCIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIzMCIsInBob25lIjoiMzAifQ==\" f_title_font_line_height=\"eyJhbGwiOiIxIiwicG9ydHJhaXQiOiIxLjEifQ==\" show_cat=\"none\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIwIDI1cHggMjVweCIsImxhbmRzY2FwZSI6IjAgMjBweCAyMHB4IiwicG9ydHJhaXQiOiIwIDE1cHggMTVweCIsInBob25lIjoiMCAyMHB4IDIwcHgifQ==\" modules_divider=\"\" image_size=\"td_1068x0\" meta_info_align=\"bottom\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"700\" image_height=\"eyJhbGwiOiIxMDAiLCJwb3J0cmFpdCI6IjE0MCJ9\" all_modules_space=\"0\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiIwIDAgMTJweCAwIiwibGFuZHNjYXBlIjoiMTJweCAwIDEwcHggMCIsInBvcnRyYWl0IjoiMTBweCAwIDZweCAwIiwicGhvbmUiOiIxMnB4IDAgMTBweCAwIn0=\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_ex_font_weight=\"500\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" f_ex_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTQiLCJsYW5kc2NhcGUiOiIxNSIsInBob25lIjoiMTUifQ==\" f_ex_font_line_height=\"1.4\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"none\" show_author=\"none\" mc1_el=\"10\" f_title_font_family=\"653\" f_title_font_transform=\"\" f_ex_font_family=\"653\" title_txt=\"#ffffff\" title_txt_hover=\"rgba(255,255,255,0.8)\" ex_txt=\"#ffffff\" cat_txt=\"#ffffff\" cat_bg=\"#ec3535\" cat_bg_hover=\"#000000\" author_txt=\"#000000\" modules_category_padding=\"eyJhbGwiOiI1cHggOHB4IiwicG9ydHJhaXQiOiI0cHggNnB4In0=\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTIifQ==\" f_cat_font_line_height=\"1\" excerpt_middle=\"yes\" cat_txt_hover=\"#ffffff\" modules_gap=\"0\" modules_space=\"0\" modules_height=\"eyJhbGwiOiI2MDAiLCJwb3J0cmFpdCI6IjQwMCIsInBob25lIjoiNTAwIiwibGFuZHNjYXBlIjoiNTAwIn0=\" image_margin=\"0\" color_overlay=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\" mc2_el=\"26\" modules_category_radius=\"2\" locked_only=\"yes\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" excl_radius=\"2\" excl_padd=\"5px 8px\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" excl_margin=\"-2px 10px 0 0\"][/vc_column][vc_column width=\"7\"][td_flex_block_1 modules_on_row=\"eyJhbGwiOiI1MCUiLCJwaG9uZSI6IjEwMCUifQ==\" limit=\"4\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"eyJwb3J0cmFpdCI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTMiLCJsYW5kc2NhcGUiOiIxNCJ9\" f_title_font_line_height=\"1.3\" show_cat=\"\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIxNnB4IDAgMCAwIiwibGFuZHNjYXBlIjoiMTRweCAwIDAgMCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9\" modules_divider=\"\" image_size=\"\" meta_info_align=\"\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"600\" image_height=\"54\" all_modules_space=\"eyJhbGwiOiIzMCIsInBob25lIjoiMjAiLCJwb3J0cmFpdCI6IjE2IiwibGFuZHNjYXBlIjoiMjAifQ==\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiI4cHggMCAwIDAiLCJsYW5kc2NhcGUiOiI2cHggMCAwIDAiLCJwb3J0cmFpdCI6IjRweCAwIDAgMCJ9\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"none\" show_author=\"none\" mc1_el=\"10\" f_title_font_family=\"456\" f_title_font_transform=\"\" title_txt=\"#000000\" title_txt_hover=\"#f43f3f\" cat_txt=\"#000000\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" modules_category_padding=\"0\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMiJ9\" f_cat_font_line_height=\"1\" modules_gap=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE1IiwicG9ydHJhaXQiOiIxMCIsInBob25lIjoiMCJ9\" modules_category_margin=\"0\" modules_cat_border=\"0\" modules_category_radius=\"undefined\" f_cat_font_style=\"undefined\" f_cat_font_spacing=\"-0.5\" cat_txt_hover=\"#ec3535\" offset=\"1\" locked_only=\"yes\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTEiLCJwaG9uZSI6IjExIiwibGFuZHNjYXBlIjoiMTEifQ==\" f_excl_font_line_height=\"1\" excl_padd=\"4px 6px\" excl_radius=\"2\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_margin=\"-4px 8px 0 0\" post_ids=\"\"][/vc_column][/vc_row][/tdc_zone]\r\n', 'Plans', '', 'publish', 'open', 'closed', '', 'plans', '', '', '2022-02-22 08:53:18', '2022-02-22 08:53:18', '', 0, 'http://tdi_8_ee2', 0, 'page', '', 0),
(31, 9467, '2022-02-22 08:53:18', '2022-02-22 08:53:18', '[tdc_zone type=\"tdc_content\"][vc_row full_width=\"\" flex_layout=\"eyJhbGwiOiJyb3ciLCJwaG9uZSI6ImNvbHVtbiJ9\" flex_vert_align=\"eyJhbGwiOiJjZW50ZXIiLCJwaG9uZSI6ImZsZXgtc3RhcnQifQ==\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiMCIsIm1hcmdpbi1sZWZ0IjoiMCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7ImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" gap=\"eyJhbGwiOiI1MCIsInBvcnRyYWl0IjoiMzAiLCJsYW5kc2NhcGUiOiI0MCJ9\"][vc_column width=\"1/2\" tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiIzMCIsInBhZGRpbmctcmlnaHQiOiI0MCIsInBhZGRpbmctYm90dG9tIjoiNDAiLCJwYWRkaW5nLWxlZnQiOiI0MCIsIndpZHRoIjoiNDAlIiwiYmFja2dyb3VuZC1jb2xvciI6IiNlYzM1MzUiLCJjb250ZW50LWgtYWxpZ24iOiJjb250ZW50LWhvcml6LWNlbnRlciIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7InBhZGRpbmctdG9wIjoiMjAiLCJwYWRkaW5nLXJpZ2h0IjoiMzAiLCJwYWRkaW5nLWJvdHRvbSI6IjMwIiwicGFkZGluZy1sZWZ0IjoiMzAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7InBhZGRpbmctdG9wIjoiMTAiLCJwYWRkaW5nLXJpZ2h0IjoiMjAiLCJwYWRkaW5nLWJvdHRvbSI6IjI1IiwicGFkZGluZy1sZWZ0IjoiMjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiIzMCIsIndpZHRoIjoiMTAwJSIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\"][tdm_block_column_title title_text=\"TmV3cyUyMFdlZWslM0NiciUzRU1hZ2F6aW5lJTIwUFJP\" title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"653\" tds_title1-f_title_font_size=\"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMTgifQ==\" tds_title1-f_title_font_weight=\"700\" tds_title1-f_title_font_transform=\"\" tds_title1-title_color=\"#ffffff\" tds_title1-f_title_font_line_height=\"1.1\" content_align_horizontal=\"content-horiz-center\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjEwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiNSIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=\"][vc_single_image media_size_image_height=\"464\" media_size_image_width=\"696\" image=\"25\" height=\"200\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiYXV0byIsIm1hcmdpbi1ib3R0b20iOiIzMCIsIm1hcmdpbi1sZWZ0IjoiYXV0byIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjIwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\"][tdm_block_button button_size=\"tdm-btn-sm\" button_display=\"tdm-block-button-inline\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJtYXJnaW4tbGVmdCI6IjYiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\" tds_button1-background_color=\"#ffffff\" tds_button1-background_hover_color=\"rgba(255,255,255,0.9)\" tds_button1-border_radius=\"3\" tds_button1-f_btn_text_font_family=\"653\" tds_button1-f_btn_text_font_transform=\"uppercase\" tds_button1-f_btn_text_font_weight=\"600\" tds_button1-f_btn_text_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" button_padding=\"eyJhbGwiOiIxMnB4IDE0cHgiLCJwb3J0cmFpdCI6IjEwcHggMTJweCJ9\" tds_button1-f_btn_text_font_spacing=\"eyJhbGwiOiIwLjUiLCJwb3J0cmFpdCI6IjAifQ==\" button_text=\"Subscribe Now\" tds_button1-text_color=\"#ec3535\" tds_button1-text_hover_color=\"#000000\" button_url=\"plans/\"][/vc_column][vc_column width=\"1/2\" tdc_css=\"eyJhbGwiOnsid2lkdGgiOiI2MCUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsid2lkdGgiOiIxMDAlIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\"][tdm_block_column_title title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"653\" tds_title1-f_title_font_weight=\"700\" tds_title1-f_title_font_size=\"eyJhbGwiOiIzMiIsImxhbmRzY2FwZSI6IjMwIiwicG9ydHJhaXQiOiIyNiJ9\" tds_title1-title_color=\"#000000\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjEwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" tds_title1-f_title_font_spacing=\"-1\" tds_title1-f_title_font_line_height=\"1\" title_text=\"Q29tcGFueQ==\"][td_block_list_menu menu_id=\"\" list_padding=\"0\" item_space=\"eyJhbGwiOiI4IiwicG9ydHJhaXQiOiI1In0=\" f_list_font_family=\"653\" f_list_font_weight=\"500\" f_list_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQifQ==\" menu_color=\"#000000\" menu_hover_color=\"#ec3535\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjE1IiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiIyNSIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" f_list_font_line_height=\"1.6\"][/vc_column][/vc_row][/tdc_zone]\r\n', 'Mega Menu', '', 'publish', 'open', 'closed', '', 'mega-menu', '', '', '2022-02-22 08:53:18', '2022-02-22 08:53:18', '', 0, 'http://tdi_33_a69', 0, 'page', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(32, 9467, '2022-02-22 08:53:18', '2022-02-22 08:53:18', '[tdc_zone type=\"tdc_content\"][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiIzMCIsInBhZGRpbmctcmlnaHQiOiI2MCIsInBhZGRpbmctYm90dG9tIjoiMTIwIiwicGFkZGluZy1sZWZ0IjoiNjAiLCJiYWNrZ3JvdW5kLWNvbG9yIjoiI2Y3ZjdmNyIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7InBhZGRpbmctdG9wIjoiMjAiLCJwYWRkaW5nLWJvdHRvbSI6IjExMCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsicGFkZGluZy10b3AiOiIxNSIsInBhZGRpbmctYm90dG9tIjoiMTAwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJwYWRkaW5nLXJpZ2h0IjoiNTAiLCJwYWRkaW5nLWJvdHRvbSI6IjMwIiwicGFkZGluZy1sZWZ0IjoiNTAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][vc_column][td_flex_block_1 modules_on_row=\"eyJhbGwiOiIyNSUiLCJwaG9uZSI6IjEwMCUifQ==\" image_size=\"\" image_floated=\"hidden\" image_width=\"eyJwaG9uZSI6IjMwIn0=\" image_height=\"eyJwaG9uZSI6IjExMCJ9\" show_btn=\"none\" show_excerpt=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_com=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_author=\"none\" show_cat=\"none\" meta_padding=\"0\" f_title_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjE0IiwicG9ydHJhaXQiOiIxMyJ9\" f_title_font_line_height=\"1.3\" f_title_font_weight=\"600\" all_modules_space=\"eyJwaG9uZSI6IjMwIiwiYWxsIjoiMCJ9\" category_id=\"\" show_date=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" art_excerpt=\"0\" show_review=\"none\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" f_title_font_family=\"456\" mc1_el=\"10\" title_txt_hover=\"#f43f3f\" title_txt=\"#000000\" f_meta_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTAiLCJsYW5kc2NhcGUiOiIxMSJ9\" f_meta_font_line_height=\"1\" f_meta_font_weight=\"400\" f_meta_font_family=\"653\" limit=\"4\" modules_category=\"\" modules_category_padding=\"0\" cat_bg=\"rgba(255,255,255,0)\" cat_txt=\"#f43f3f\" f_title_font_transform=\"\" modules_gap=\"eyJwb3J0cmFpdCI6IjEwIiwicGhvbmUiOiIwIiwibGFuZHNjYXBlIjoiMjAifQ==\" sort=\"\" el_class=\"td-week-slider\" ajax_pagination=\"next_prev\" td_ajax_preloading=\"preload\" pag_space=\"0\" pag_border_width=\"0\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"21\" pag_text=\"#ffffff\" pag_h_text=\"#ffffff\" pag_bg=\"#dddddd\" pag_h_bg=\"#aaaaaa\" pag_border_radius=\"100\" time_ago=\"yes\" show_modified_date=\"yes\" date_txt=\"#000000\" f_title_font_spacing=\"-0.5\" art_title=\"eyJwb3J0cmFpdCI6IjAifQ==\" excl_padd=\"3px 5px\" excl_margin=\"-4px 5px 0 0\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_family=\"653\" f_excl_font_transform=\"uppercase\" f_excl_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_weight=\"500\" f_excl_font_line_height=\"1\" f_excl_font_spacing=\"-0.5\" excl_radius=\"2\" excl_show=\"\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii05MCIsIm1hcmdpbi1ib3R0b20iOiI0MCIsImRpc3BsYXkiOiIifSwicGhvbmUiOnsibWFyZ2luLXRvcCI6IjAiLCJtYXJnaW4tYm90dG9tIjoiNjAiLCJwYWRkaW5nLXRvcCI6IjQwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2NywibGFuZHNjYXBlIjp7Im1hcmdpbi10b3AiOiItODAiLCJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi10b3AiOiItNzUiLCJtYXJnaW4tYm90dG9tIjoiMzAiLCJwYWRkaW5nLXJpZ2h0IjoiNSIsInBhZGRpbmctbGVmdCI6IjUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" gap=\"eyJwb3J0cmFpdCI6IjUiLCJhbGwiOiIxMCIsImxhbmRzY2FwZSI6IjUiLCJwaG9uZSI6IjAifQ==\"][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0xMCIsIndpZHRoIjoiMjAlIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLXRvcCI6Ii0yIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiI0MCIsIndpZHRoIjoiMTAwJSIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\"][tdm_block_column_title title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"653\" tds_title1-f_title_font_weight=\"700\" tds_title1-f_title_font_size=\"eyJhbGwiOiIzMiIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIyNiJ9\" tds_title1-title_color=\"#000000\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" tds_title1-f_title_font_spacing=\"-1\" tds_title1-f_title_font_line_height=\"1\" title_text=\"RnJlc2glMjBzdG9yaWVz\"][tdm_block_column_title title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"653\" tds_title1-f_title_font_weight=\"600\" tds_title1-f_title_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSJ9\" tds_title1-title_color=\"#000000\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0xMiIsIndpZHRoIjoiOTAlIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLXRvcCI6Ii0xNCIsIndpZHRoIjoiMTAwJSIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsibWFyZ2luLXRvcCI6Ii0xNiIsIndpZHRoIjoiMTAwJSIsImRpc3BsYXkiOiJub25lIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7IndpZHRoIjoiNzAlIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" tds_title1-f_title_font_line_height=\"1.2\" title_text=\"VG9kYXklM0ElMjBCcm93c2UlMjBvdXIlMjBlZGl0b3IncyUyMGhhbmQlMjBwaWNrZWQlMjBhcnRpY2xlcyE=\" tds_title1-f_title_font_transform=\"uppercase\"][/vc_column][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsid2lkdGgiOiI0MCUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjMwIiwid2lkdGgiOiIxMDAlIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\"][td_flex_block_2 modules_on_row=\"\" limit=\"1\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiI0MCIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIzMCIsInBob25lIjoiMzAifQ==\" f_title_font_line_height=\"eyJhbGwiOiIxIiwicG9ydHJhaXQiOiIxLjEifQ==\" show_cat=\"\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIwIDI1cHggMjVweCIsImxhbmRzY2FwZSI6IjAgMjBweCAyMHB4IiwicG9ydHJhaXQiOiIwIDE1cHggMTVweCIsInBob25lIjoiMCAyMHB4IDIwcHgifQ==\" modules_divider=\"\" image_size=\"td_1068x0\" meta_info_align=\"bottom\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"700\" image_height=\"eyJhbGwiOiIxMDAiLCJwb3J0cmFpdCI6IjE0MCJ9\" all_modules_space=\"0\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiIxNnB4IDAgMTJweCAwIiwibGFuZHNjYXBlIjoiMTJweCAwIDEwcHggMCIsInBvcnRyYWl0IjoiMTBweCAwIDZweCAwIiwicGhvbmUiOiIxMnB4IDAgMTBweCAwIn0=\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_ex_font_weight=\"500\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" f_ex_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTQiLCJsYW5kc2NhcGUiOiIxNSIsInBob25lIjoiMTUifQ==\" f_ex_font_line_height=\"1.4\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"none\" show_author=\"none\" mc1_el=\"10\" f_title_font_family=\"653\" f_title_font_transform=\"\" f_ex_font_family=\"653\" title_txt=\"#ffffff\" title_txt_hover=\"rgba(255,255,255,0.8)\" ex_txt=\"#ffffff\" cat_txt=\"#ffffff\" cat_bg=\"#ec3535\" cat_bg_hover=\"#000000\" author_txt=\"#000000\" modules_category_padding=\"eyJhbGwiOiI1cHggOHB4IiwicG9ydHJhaXQiOiI0cHggNnB4In0=\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTIifQ==\" f_cat_font_line_height=\"1\" excerpt_middle=\"yes\" cat_txt_hover=\"#ffffff\" modules_gap=\"0\" modules_space=\"0\" modules_height=\"eyJhbGwiOiI2MDAiLCJsYW5kc2NhcGUiOiI1NDAiLCJwb3J0cmFpdCI6IjQ2MCIsInBob25lIjoiNTAwIn0=\" image_margin=\"0\" offset=\"6\" color_overlay=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\" mc2_el=\"26\" modules_category_radius=\"2\" excl_padd=\"5px 8px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\"][/vc_column][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsid2lkdGgiOiIyMCUiLCJkaXNwbGF5IjoiIn0sInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiI0MCIsIndpZHRoIjoiMTAwJSIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\"][td_flex_block_1 modules_on_row=\"\" limit=\"2\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"eyJwb3J0cmFpdCI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTMiLCJsYW5kc2NhcGUiOiIxNCJ9\" f_title_font_line_height=\"1.3\" show_cat=\"\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIxNnB4IDMwcHggMCAwIiwibGFuZHNjYXBlIjoiMTRweCAwIDAgMCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9\" modules_divider=\"\" image_size=\"\" meta_info_align=\"\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"600\" image_height=\"eyJhbGwiOiI3MiIsImxhbmRzY2FwZSI6Ijg1IiwicG9ydHJhaXQiOiI5MCJ9\" all_modules_space=\"eyJhbGwiOiIyMCIsInBob25lIjoiMzAiLCJwb3J0cmFpdCI6IjE2In0=\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiI4cHggMCAwIDAiLCJsYW5kc2NhcGUiOiI2cHggMCAwIDAiLCJwb3J0cmFpdCI6IjRweCAwIDAgMCJ9\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"none\" show_author=\"none\" mc1_el=\"10\" f_title_font_family=\"456\" f_title_font_transform=\"\" title_txt=\"#000000\" title_txt_hover=\"#f43f3f\" cat_txt=\"#000000\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" modules_category_padding=\"0\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIn0=\" f_cat_font_line_height=\"1\" modules_gap=\"0\" modules_category_margin=\"0\" modules_cat_border=\"0\" modules_category_radius=\"undefined\" f_cat_font_style=\"undefined\" f_cat_font_spacing=\"-0.5\" cat_txt_hover=\"#ec3535\" offset=\"12\" excl_padd=\"3px 5px\" excl_radius=\"2\" f_excl_font_family=\"653\" f_excl_font_transform=\"uppercase\" f_excl_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_weight=\"500\" f_excl_font_line_height=\"1\" f_excl_font_spacing=\"-0.5\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" excl_margin=\"-4px 5px 0 0\"][/vc_column][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0xMCIsIndpZHRoIjoiMjAlIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLXRvcCI6Ii0yIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwaG9uZSI6eyJ3aWR0aCI6IjEwMCUiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][tdm_block_column_title title_text=\"UG9wdWxhcg==\" title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"653\" tds_title1-f_title_font_weight=\"700\" tds_title1-f_title_font_size=\"eyJhbGwiOiIzMiIsImxhbmRzY2FwZSI6IjI2IiwicG9ydHJhaXQiOiIyMCJ9\" tds_title1-title_color=\"#000000\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" tds_title1-f_title_font_spacing=\"-1\" tds_title1-f_title_font_line_height=\"1\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" flex_layout=\"eyJhbGwiOiJyb3ciLCJwaG9uZSI6ImNvbHVtbiJ9\" flex_vert_align=\"center\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiMCIsIm1hcmdpbi1ib3R0b20iOiI0MCIsIm1hcmdpbi1sZWZ0IjoiMCIsImJvcmRlci10b3Atd2lkdGgiOiIxIiwiYm9yZGVyLWJvdHRvbS13aWR0aCI6IjEiLCJwYWRkaW5nLXRvcCI6IjMiLCJib3JkZXItY29sb3IiOiIjZWFlYWVhIiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNzAiLCJwYWRkaW5nLXRvcCI6IjEwIiwicGFkZGluZy1ib3R0b20iOiIxMCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3NjcsImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi1ib3R0b20iOiIzMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=\" stretch_off=\"yes\"][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsid2lkdGgiOiIyNSUiLCJkaXNwbGF5IjoiIn0sInBob25lIjp7IndpZHRoIjoiMTAwJSIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\"][tdm_block_column_title title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"653\" tds_title1-f_title_font_weight=\"600\" tds_title1-f_title_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" tds_title1-title_color=\"#000000\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWxlZnQiOiItMjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi1sZWZ0IjoiMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLWxlZnQiOiIwIiwiY29udGVudC1oLWFsaWduIjoiY29udGVudC1ob3Jpei1jZW50ZXIiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" tds_title1-f_title_font_line_height=\"1.2\" tds_title1-f_title_font_transform=\"uppercase\" title_text=\"Sm9pbiUyMG9yJTIwc29jaWFsJTIwbWVkaWE=\"][/vc_column][vc_column width=\"1/2\" tdc_css=\"eyJhbGwiOnsid2lkdGgiOiI1MCUiLCJkaXNwbGF5IjoiIn0sInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiI4Iiwid2lkdGgiOiIxMDAlIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\"][tdm_block_column_title title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"456\" tds_title1-f_title_font_weight=\"700\" tds_title1-f_title_font_size=\"eyJhbGwiOiIyMCIsInBvcnRyYWl0IjoiMTgifQ==\" tds_title1-title_color=\"#000000\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7IndpZHRoIjoiMTAwJSIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" tds_title1-f_title_font_line_height=\"1.2\" title_text=\"Rm9yJTIwZXZlbiUyMG1vcmUlMjBleGNsdXNpdmUlMjBjb250ZW50IQ==\" content_align_horizontal=\"content-horiz-center\"][/vc_column][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsid2lkdGgiOiIyNSUiLCJkaXNwbGF5IjoiIn0sInBob25lIjp7IndpZHRoIjoiMTAwJSIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\"][tdm_block_socials facebook=\"#\" twitter=\"#\" instagram=\"#\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiLTIwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJtYXJnaW4tcmlnaHQiOiIwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJtYXJnaW4tcmlnaHQiOiIwIiwiY29udGVudC1oLWFsaWduIjoiY29udGVudC1ob3Jpei1jZW50ZXIiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" content_align_horizontal=\"content-horiz-right\" icons_padding=\"2\" icons_spacing=\"6\" tds_social1-icons_color=\"#ec3535\" tds_social1-icons_hover_color=\"#000000\" icons_size=\"eyJhbGwiOjE0LCJwb3J0cmFpdCI6IjEyIn0=\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiMCIsIm1hcmdpbi1ib3R0b20iOiI2MCIsIm1hcmdpbi1sZWZ0IjoiMCIsInBhZGRpbmctdG9wIjoiMjQiLCJwYWRkaW5nLWJvdHRvbSI6IjI0IiwiYmFja2dyb3VuZC1jb2xvciI6IiNmN2Y3ZjciLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJwYWRkaW5nLXRvcCI6IjIwIiwicGFkZGluZy1ib3R0b20iOiIyMCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwicGFkZGluZy10b3AiOiIxNSIsInBhZGRpbmctYm90dG9tIjoiMTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7InBhZGRpbmctdG9wIjoiMTUiLCJwYWRkaW5nLWJvdHRvbSI6IjE1IiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" stretch_off=\"yes\"][vc_column][vc_row_inner absolute_position=\"yes\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0zMiIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsibWFyZ2luLXRvcCI6Ii0yMiIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwibGFuZHNjYXBlIjp7Im1hcmdpbi10b3AiOiItMjgiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\"][vc_column_inner][tdm_block_inline_text description=\"QnJlYWtpbmc=\" display_inline=\"yes\" f_descr_font_family=\"456\" f_descr_font_size=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE4IiwicG9ydHJhaXQiOiIxNiJ9\" f_descr_font_weight=\"700\" f_descr_font_style=\"italic\" description_color=\"#ffffff\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWxlZnQiOiIyMCIsInBhZGRpbmctdG9wIjoiOCIsInBhZGRpbmctcmlnaHQiOiIxNiIsInBhZGRpbmctYm90dG9tIjoiMTAiLCJwYWRkaW5nLWxlZnQiOiIxNCIsImJhY2tncm91bmQtY29sb3IiOiIjZWMzNTM1Iiwiei1pbmRleCI6IjEiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJwYWRkaW5nLXRvcCI6IjYiLCJwYWRkaW5nLXJpZ2h0IjoiMTQiLCJwYWRkaW5nLWJvdHRvbSI6IjgiLCJwYWRkaW5nLWxlZnQiOiIxMiIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsibWFyZ2luLWxlZnQiOiIxNSIsInBhZGRpbmctdG9wIjoiNCIsInBhZGRpbmctcmlnaHQiOiIxMiIsInBhZGRpbmctYm90dG9tIjoiNiIsInBhZGRpbmctbGVmdCI6IjEwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" f_descr_font_spacing=\"0.5\"][/vc_column_inner][/vc_row_inner][td_block_big_grid_flex_1 grid_layout=\"4\" image_height=\"120\" image_zoom=\"yes\" meta_info_vert=\"content-vert-bottom\" modules_category=\"above\" overlay_general=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwKSIsInBlcmNlbnRhZ2UiOjQxfV0sImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMCkgNDElLHJnYmEoMCwwLDAsMCkpO2JhY2tncm91bmQ6IGxpbmVhci1ncmFkaWVudCgwZGVnLHJnYmEoMCwwLDAsMC44KSxyZ2JhKDAsMCwwLDApIDQxJSxyZ2JhKDAsMCwwLDApKTsiLCJjc3NQYXJhbXMiOiIwZGVnLHJnYmEoMCwwLDAsMC44KSxyZ2JhKDAsMCwwLDApIDQxJSxyZ2JhKDAsMCwwLDApIn0=\" cat_bg_hover=\"#ec3535\" review_stars=\"#fff\" f_title_font_size=\"eyJwb3J0cmFpdCI6IjE0IiwiYWxsIjoiMjIiLCJwaG9uZSI6IjI0IiwibGFuZHNjYXBlIjoiMTYifQ==\" f_title_font_line_height=\"1.1\" modules_gap=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjEwIiwicG9ydHJhaXQiOiI1In0=\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjIyIiwiYm9yZGVyLWJvdHRvbS13aWR0aCI6IjEiLCJwYWRkaW5nLWJvdHRvbSI6IjIyIiwiYm9yZGVyLWNvbG9yIjoiI2RkZGRkZCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi1ib3R0b20iOiIxOCIsInBhZGRpbmctYm90dG9tIjoiMTgiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi1ib3R0b20iOiIxNSIsInBhZGRpbmctYm90dG9tIjoiMTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImJvcmRlci1ib3R0b20td2lkdGgiOiIwIiwicGFkZGluZy1ib3R0b20iOiIwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" meta_padding=\"eyJhbGwiOiIwIDE1cHggMTVweCAyMHB4IiwibGFuZHNjYXBlIjoiMCAxMHB4IDEwcHggMTJweCIsInBvcnRyYWl0IjoiMCA4cHggOHB4IDEwcHgifQ==\" f_title_font_family=\"653\" f_title_font_weight=\"700\" art_title=\"eyJhbGwiOiIxMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiNnB4IDAgMCAwIiwicG9ydHJhaXQiOiI0cHggMCAwIDAifQ==\" modules_category_padding=\"eyJhbGwiOiI0cHggOHB4IiwibGFuZHNjYXBlIjoiM3B4IDZweCJ9\" show_author=\"none\" show_date=\"none\" f_cat_font_family=\"653\" f_cat_font_transform=\"uppercase\" f_cat_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTEifQ==\" f_cat_font_line_height=\"1.2\" f_cat_font_weight=\"600\" title_txt=\"#ffffff\" title_txt_hover=\"#ffffff\" all_underline_color=\"\" title_shadow=\"yes\" cat_bg=\"#ec3535\" cat_txt=\"#ffffff\" cat_txt_hover=\"#ffffff\" post_ids=\"\" modules_category_radius=\"2\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\"][vc_column width=\"3/4\" tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI1IiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNjAiLCJwYWRkaW5nLXRvcCI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJwYWRkaW5nLXRvcCI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\"][td_flex_block_1 modules_on_row=\"eyJwaG9uZSI6IjEwMCUifQ==\" modules_category=\"\" show_btn=\"none\" show_excerpt=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiIzMCIsImxhbmRzY2FwZSI6IjI0IiwicG9ydHJhaXQiOiIyMCIsInBob25lIjoiMjQifQ==\" f_title_font_line_height=\"1.1\" show_cat=\"\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIwIDAgMCAzMHB4IiwibGFuZHNjYXBlIjoiMCAwIDAgMjBweCIsInBvcnRyYWl0IjoiMCAwIDAgMTVweCIsInBob25lIjoiMjBweCAwIDAgMCJ9\" modules_divider=\"\" image_size=\"\" meta_info_align=\"center\" image_floated=\"eyJhbGwiOiJmbG9hdF9sZWZ0IiwicGhvbmUiOiJub19mbG9hdCJ9\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjI1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjIwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiI0MCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"600\" image_height=\"70\" all_modules_space=\"eyJwb3J0cmFpdCI6IjE1IiwiYWxsIjoiMzAiLCJsYW5kc2NhcGUiOiIyMCJ9\" art_excerpt=\"eyJhbGwiOiIxMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiNnB4IDAgMCAwIiwicG9ydHJhaXQiOiIwIn0=\" art_title=\"eyJsYW5kc2NhcGUiOiIwIDAgMTBweCAwIiwicG9ydHJhaXQiOiIwIDAgOHB4IDAiLCJhbGwiOiIwIDAgMTJweCAwIn0=\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"\" show_author=\"eyJwb3J0cmFpdCI6Im5vbmUiLCJsYW5kc2NhcGUiOiJub25lIn0=\" f_title_font_family=\"456\" f_title_font_transform=\"\" title_txt=\"#000000\" title_txt_hover=\"#f43f3f\" cat_txt=\"#000000\" cat_bg=\"rgba(255,255,255,0)\" modules_category_padding=\"5px 0\" f_cat_font_family=\"653\" modules_gap=\"eyJhbGwiOiIwIiwicGhvbmUiOiIwIn0=\" modules_category_margin=\"eyJhbGwiOiIwIDEycHggMCAwIiwicG9ydHJhaXQiOiIwIDhweCAwIDAiLCJsYW5kc2NhcGUiOiIwIDEwcHggMCAwIn0=\" modules_cat_border=\"0\" modules_category_radius=\"2\" f_cat_font_style=\"undefined\" columns=\"33.33333333%\" columns_gap=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE1IiwicG9ydHJhaXQiOiIxMCIsInBob25lIjoiMCJ9\" modules_space1=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE1IiwicG9ydHJhaXQiOiIxMiIsInBob25lIjoiMzAifQ==\" hide_image3=\"yes\" image_height1=\"70\" modules_space2=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE2IiwicG9ydHJhaXQiOiIxMCJ9\" meta_padding2=\"0\" art_title1=\"eyJhbGwiOiIwIDAgMTJweCAwIiwibGFuZHNjYXBlIjoiMCAwIDEwcHgiLCJwb3J0cmFpdCI6IjAgMCA4cHgifQ==\" art_title2=\"eyJhbGwiOiIwIDAgOHB4IDAiLCJwb3J0cmFpdCI6IjAiLCJsYW5kc2NhcGUiOiIwIDAgNnB4IDAifQ==\" f_title1_font_family=\"456\" f_title2_font_family=\"653\" f_title1_font_size=\"eyJhbGwiOiIyNiIsImxhbmRzY2FwZSI6IjE5IiwicG9ydHJhaXQiOiIxNyJ9\" f_title1_font_line_height=\"1.1\" f_title1_font_style=\"undefined\" f_title2_font_style=\"undefined\" f_title1_font_weight=\"600\" f_title2_font_weight=\"600\" f_title1_font_transform=\"\" f_title2_font_transform=\"\" title_txt2=\"#000000\" title_txt_hover2=\"#f43f3f\" show_excerpt2=\"none\" show_com2=\"none\" show_date2=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" show_author2=\"none\" modules_category3=\"\" modules_category_margin1=\"0\" modules_category_margin2=\"0\" modules_category_padding1=\"0\" modules_category_padding2=\"0\" modules_cat_border1=\"0\" modules_cat_border2=\"0\" cat_bg2=\"rgba(255,255,255,0)\" cat_txt2=\"#ec3535\" author_photo_radius1=\"100%\" author_photo_radius2=\"100%\" review_size2=\"eyJhbGwiOiIyLjUiLCJwb3J0cmFpdCI6IjAifQ==\" f_meta1_font_family=\"653\" f_meta2_font_family=\"653\" f_meta1_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta1_font_line_height=\"1\" f_meta1_font_style=\"undefined\" f_meta2_font_style=\"undefined\" f_meta1_font_weight=\"500\" f_meta2_font_weight=\"500\" f_meta1_font_transform=\"capitalize\" f_meta2_font_transform=\"capitalize\" f_meta1_font_spacing=\"-0.5\" meta_info_align1=\"\" meta_padding1=\"eyJhbGwiOiIyMHB4IDAiLCJsYW5kc2NhcGUiOiIxNXB4IDAiLCJwb3J0cmFpdCI6IjEycHggMCIsInBob25lIjoiMjBweCAwIDAifQ==\" show_author1=\"eyJsYW5kc2NhcGUiOiJub25lIiwicG9ydHJhaXQiOiJub25lIn0=\" show_com1=\"none\" show_excerpt1=\"none\" modules_border_size1=\"eyJhbGwiOiIwIDAgMXB4IDAiLCJwaG9uZSI6IjAifQ==\" show_cat1=\"none\" show_cat2=\"none\" author_photo=\"yes\" f_title2_font_size=\"eyJhbGwiOiIxNiIsImxhbmRzY2FwZSI6IjE1IiwicG9ydHJhaXQiOiIxMyJ9\" f_title2_font_line_height=\"1.2\" f_meta2_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta2_font_line_height=\"1\" f_meta2_font_spacing=\"-0.5\" all_underline_color1=\"\" author_txt=\"#000000\" author_txt_hover=\"#ec3535\" date_txt=\"#000000\" all_underline_color2=\"\" date_txt2=\"#000000\" cat_bg_hover=\"rgba(255,255,255,0)\" author_photo_radius=\"100%\" review_size=\"eyJhbGwiOiIyLjUiLCJwb3J0cmFpdCI6IjAifQ==\" f_meta_font_family=\"653\" f_meta_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta_font_line_height=\"1\" f_meta_font_style=\"undefined\" f_meta_font_weight=\"500\" f_meta_font_transform=\"capitalize\" f_meta_font_spacing=\"-0.5\" image_width=\"eyJhbGwiOiI1MCIsInBob25lIjoiMTAwIn0=\" f_title_font_style=\"undefined\" excl_margin=\"eyJhbGwiOiItNHB4IDEwcHggMCAwIiwicG9ydHJhaXQiOiItMnB4IDhweCAwIDAifQ==\" excl_padd=\"4px 6px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTEiLCJsYW5kc2NhcGUiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" f_ex_font_family=\"653\" f_ex_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTQiLCJsYW5kc2NhcGUiOiIxNSIsInBob25lIjoiMTUifQ==\" f_ex_font_line_height=\"1.4\" f_ex_font_style=\"undefined\" f_ex_font_weight=\"500\" f_ex_font_transform=\"undefined\" f_ex_font_spacing=\"undefined\" ex_txt=\"#000000\" f_cat_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTIifQ==\" f_cat_font_line_height=\"1\" f_cat_font_spacing=\"undefined\" cat_txt_hover=\"#ec3535\" limit=\"1\"][vc_row_inner flex_layout=\"block\" flex_vert_align=\"flex-start\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiMCIsIm1hcmdpbi1ib3R0b20iOiI0MCIsIm1hcmdpbi1sZWZ0IjoiMCIsImJvcmRlci1ib3R0b20td2lkdGgiOiIzIiwicGFkZGluZy1ib3R0b20iOiIxNSIsImJvcmRlci1jb2xvciI6IiNlYzM1MzUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJwYWRkaW5nLWJvdHRvbSI6IjEyIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMjUiLCJwYWRkaW5nLWJvdHRvbSI6IjEwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][vc_column_inner flex_layout=\"row\" flex_vert_align=\"center\"][td_flex_block_1 modules_on_row=\"33.33333333%\" limit=\"3\" hide_audio=\"yes\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" is_sticky=\"yes\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjY1IiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiNDUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiNDUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\"][vc_column width=\"1/1\" tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI1IiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJwYWRkaW5nLXRvcCI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJwYWRkaW5nLXRvcCI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\"][vc_column][td_flex_block_2 modules_on_row=\"\" limit=\"1\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"none\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiIyMCIsInBvcnRyYWl0IjoiMTYiLCJwaG9uZSI6IjMwIiwibGFuZHNjYXBlIjoiMTgifQ==\" f_title_font_line_height=\"1\" show_cat=\"none\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIwIDE1cHggMjBweCAxOHB4IiwibGFuZHNjYXBlIjoiMCAxMHB4IDE1cHggMTJweCIsInBvcnRyYWl0IjoiMCA1cHggMTVweCAxMHB4IiwicGhvbmUiOiIwIDIwcHggMjBweCJ9\" modules_divider=\"\" image_size=\"td_696x0\" meta_info_align=\"bottom\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0yNCIsIm1hcmdpbi1ib3R0b20iOiIzMCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi10b3AiOiItMjAiLCJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi10b3AiOiItMTYiLCJtYXJnaW4tYm90dG9tIjoiMTYiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"700\" image_height=\"eyJhbGwiOiIxMDAiLCJwb3J0cmFpdCI6IjE0MCJ9\" all_modules_space=\"0\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiIxNnB4IDAgMTJweCAwIiwibGFuZHNjYXBlIjoiMTJweCAwIDhweCAwIiwicG9ydHJhaXQiOiIxMHB4IDAgNnB4IDAiLCJwaG9uZSI6IjEycHggMCAxMHB4IDAifQ==\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"\" show_author=\"eyJsYW5kc2NhcGUiOiJub25lIiwicG9ydHJhaXQiOiJub25lIn0=\" mc1_el=\"10\" f_title_font_family=\"653\" f_title_font_transform=\"\" title_txt=\"#ffffff\" title_txt_hover=\"rgba(255,255,255,0.8)\" ex_txt=\"#ffffff\" cat_txt=\"#ffffff\" cat_bg=\"#ec3535\" cat_bg_hover=\"#000000\" author_txt=\"#ffffff\" modules_category_padding=\"eyJhbGwiOiI1cHggOHB4IiwicG9ydHJhaXQiOiI0cHggNnB4In0=\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTIiLCJwaG9uZSI6IjEyIn0=\" f_cat_font_line_height=\"1\" excerpt_middle=\"yes\" cat_txt_hover=\"#ffffff\" modules_gap=\"0\" modules_space=\"0\" modules_height=\"eyJwb3J0cmFpdCI6IjI4MCIsImFsbCI6IjQyMCIsImxhbmRzY2FwZSI6IjM0MCIsInBob25lIjoiNDUwIn0=\" image_margin=\"0\" color_overlay=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\" mc2_el=\"26\" modules_category_radius=\"2\" excl_padd=\"5px 8px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" pag_border_width=\"0\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"20\" pag_border_radius=\"2\" pag_padding=\"0\" excl_show=\"none\" author_txt_hover=\"rgba(255,255,255,0.8)\" date_txt=\"#ffffff\" f_meta_font_family=\"653\" f_meta_font_transform=\"capitalize\" f_meta_font_weight=\"500\" f_meta_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta_font_line_height=\"1.2\" block_template_id=\"td_block_template_2\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiMCIsIm1hcmdpbi1ib3R0b20iOiI2MCIsIm1hcmdpbi1sZWZ0IjoiMCIsInBhZGRpbmctdG9wIjoiMjQiLCJwYWRkaW5nLXJpZ2h0IjoiMTUiLCJwYWRkaW5nLWJvdHRvbSI6IjI0IiwicGFkZGluZy1sZWZ0IjoiMTUiLCJzaGFkb3ctc2l6ZSI6IjIwIiwic2hhZG93LWNvbG9yIjoicmdiYSgwLDAsMCwwLjA5KSIsInNoYWRvdy1vZmZzZXQtdiI6IjQiLCJiYWNrZ3JvdW5kLWNvbG9yIjoiI2ZmZmZmZiIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi1ib3R0b20iOiI0MCIsInBhZGRpbmctdG9wIjoiMjAiLCJwYWRkaW5nLXJpZ2h0IjoiMTAiLCJwYWRkaW5nLWJvdHRvbSI6IjIwIiwicGFkZGluZy1sZWZ0IjoiMTAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi1ib3R0b20iOiI0MCIsInBhZGRpbmctdG9wIjoiMTUiLCJwYWRkaW5nLXJpZ2h0IjoiMTAiLCJwYWRkaW5nLWJvdHRvbSI6IjE1IiwicGFkZGluZy1sZWZ0IjoiMTAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7InBhZGRpbmctdG9wIjoiMTUiLCJwYWRkaW5nLWJvdHRvbSI6IjE1IiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" stretch_off=\"yes\" gap=\"eyJhbGwiOiIxMCIsImxhbmRzY2FwZSI6IjgiLCJwb3J0cmFpdCI6IjUiLCJwaG9uZSI6IjAifQ==\"][vc_column width=\"5\" tdc_css=\"eyJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][vc_row_inner absolute_position=\"yes\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0zMiIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsibWFyZ2luLXRvcCI6Ii0yMiIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwibGFuZHNjYXBlIjp7Im1hcmdpbi10b3AiOiItMjgiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\"][vc_column_inner][/vc_column_inner][/vc_row_inner][td_flex_block_2 modules_on_row=\"\" limit=\"1\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiI0MCIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIzMCIsInBob25lIjoiMzAifQ==\" f_title_font_line_height=\"eyJhbGwiOiIxIiwicG9ydHJhaXQiOiIxLjEifQ==\" show_cat=\"none\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIwIDI1cHggMjVweCIsImxhbmRzY2FwZSI6IjAgMjBweCAyMHB4IiwicG9ydHJhaXQiOiIwIDE1cHggMTVweCIsInBob25lIjoiMCAyMHB4IDIwcHgifQ==\" modules_divider=\"\" image_size=\"td_1068x0\" meta_info_align=\"bottom\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"700\" image_height=\"eyJhbGwiOiIxMDAiLCJwb3J0cmFpdCI6IjE0MCJ9\" all_modules_space=\"0\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiIwIDAgMTJweCAwIiwibGFuZHNjYXBlIjoiMTJweCAwIDEwcHggMCIsInBvcnRyYWl0IjoiMTBweCAwIDZweCAwIiwicGhvbmUiOiIxMnB4IDAgMTBweCAwIn0=\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_ex_font_weight=\"500\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" f_ex_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTQiLCJsYW5kc2NhcGUiOiIxNSIsInBob25lIjoiMTUifQ==\" f_ex_font_line_height=\"1.4\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"none\" show_author=\"none\" mc1_el=\"10\" f_title_font_family=\"653\" f_title_font_transform=\"\" f_ex_font_family=\"653\" title_txt=\"#ffffff\" title_txt_hover=\"rgba(255,255,255,0.8)\" ex_txt=\"#ffffff\" cat_txt=\"#ffffff\" cat_bg=\"#ec3535\" cat_bg_hover=\"#000000\" author_txt=\"#000000\" modules_category_padding=\"eyJhbGwiOiI1cHggOHB4IiwicG9ydHJhaXQiOiI0cHggNnB4In0=\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTIifQ==\" f_cat_font_line_height=\"1\" excerpt_middle=\"yes\" cat_txt_hover=\"#ffffff\" modules_gap=\"0\" modules_space=\"0\" modules_height=\"eyJhbGwiOiI2MDAiLCJwb3J0cmFpdCI6IjQwMCIsInBob25lIjoiNTAwIiwibGFuZHNjYXBlIjoiNTAwIn0=\" image_margin=\"0\" color_overlay=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\" mc2_el=\"26\" modules_category_radius=\"2\" locked_only=\"yes\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" excl_radius=\"2\" excl_padd=\"5px 8px\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" excl_margin=\"-2px 10px 0 0\"][/vc_column][vc_column width=\"7\"][td_flex_block_1 modules_on_row=\"eyJhbGwiOiI1MCUiLCJwaG9uZSI6IjEwMCUifQ==\" limit=\"4\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"eyJwb3J0cmFpdCI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTMiLCJsYW5kc2NhcGUiOiIxNCJ9\" f_title_font_line_height=\"1.3\" show_cat=\"\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIxNnB4IDAgMCAwIiwibGFuZHNjYXBlIjoiMTRweCAwIDAgMCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9\" modules_divider=\"\" image_size=\"\" meta_info_align=\"\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"600\" image_height=\"54\" all_modules_space=\"eyJhbGwiOiIzMCIsInBob25lIjoiMjAiLCJwb3J0cmFpdCI6IjE2IiwibGFuZHNjYXBlIjoiMjAifQ==\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiI4cHggMCAwIDAiLCJsYW5kc2NhcGUiOiI2cHggMCAwIDAiLCJwb3J0cmFpdCI6IjRweCAwIDAgMCJ9\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"none\" show_author=\"none\" mc1_el=\"10\" f_title_font_family=\"456\" f_title_font_transform=\"\" title_txt=\"#000000\" title_txt_hover=\"#f43f3f\" cat_txt=\"#000000\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" modules_category_padding=\"0\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMiJ9\" f_cat_font_line_height=\"1\" modules_gap=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE1IiwicG9ydHJhaXQiOiIxMCIsInBob25lIjoiMCJ9\" modules_category_margin=\"0\" modules_cat_border=\"0\" modules_category_radius=\"undefined\" f_cat_font_style=\"undefined\" f_cat_font_spacing=\"-0.5\" cat_txt_hover=\"#ec3535\" offset=\"1\" locked_only=\"yes\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTEiLCJwaG9uZSI6IjExIiwibGFuZHNjYXBlIjoiMTEifQ==\" f_excl_font_line_height=\"1\" excl_padd=\"4px 6px\" excl_radius=\"2\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_margin=\"-4px 8px 0 0\" post_ids=\"\"][/vc_column][/vc_row][/tdc_zone]\r\n', 'Homepage', '', 'publish', 'open', 'closed', '', 'homepage', '', '', '2024-07-12 07:39:56', '2024-07-12 07:39:56', '', 0, 'http://tdi_38_667', 0, 'page', '', 0),
(33, 9467, '2022-02-22 08:53:18', '2022-02-22 08:53:18', 'Find people with high expectations and a low tolerance for excuses. They\'ll have higher expectations for you than you have for yourself. Don\'t flatter yourself that this has much to do with you - this is just who they are. Don\'t look for \"nice\" in these relationships. Look for trust.\r\n<blockquote>Be fearless in front of them with your ideas as many times as they\'ll let you</blockquote>\r\nBeauty Dust is very pretty to look at and it tastes like nothing, which is great. Here is what it\'s supposed to do: This ancient empiric formula expands beauty through alchemizing elements legendary for their youth preserving, fortifying and tonifying qualities. Glowing supple skin, lustrous shiny hair and twinkling bright eyes are holistically bestowed from the inside out.\r\n\r\n<a href=\"https://onlineincshop.com/wp-content/uploads/2022/02/p1.jpg\"><img class=\" td-modal-image aligncenter wp-image-14\" src=\"https://onlineincshop.com/wp-content/uploads/2022/02/p1.jpg\" alt=\"\" width=\"1920\" height=\"1280\" /></a>\r\n\r\nI actually first read this as alkalizing meaning effecting pH level, and I was like, OK I guess I understand how that could positively effect your body, but alchemizing means turning elements to gold basically through magic. That lead me to research each ingredient because I know alchemy is not actually happening in my body when I eat this, since alchemy is not real.\r\n\r\nIn addition to loving beauty and taking care of myself, I also love opening people minds to other paths of self-care, and good marketing and I can honestly say that I use and personally love this product but I\'m not sure for which reason.\r\n<blockquote>I think it made me think about it more and really consider why I was choosing to add this to my routine</blockquote>\r\nIt poses an interesting question for me on the wellness category - will people be willing to buy in, or does eating something change your \"sniff\" test on the believe-ability of the claims?\r\n\r\nThe color is very long lasting and they have an interesting texture that\'s like a powder and a cream but neither really. They\'re made with pure pigments and oils and will never melt with the warmth of your skin because they don\'t contain any waxes. You can literally use them for anything - obviously as eye shadow and liner, but the light shade is a great highlighter, and the red can be used for lip or blush with a little balm.\r\n\r\n<a href=\"https://onlineincshop.com/wp-content/uploads/2022/02/p2.jpg\"><img class=\" td-modal-image aligncenter wp-image-13\" src=\"https://onlineincshop.com/wp-content/uploads/2022/02/p2.jpg\" alt=\"\" width=\"1920\" height=\"1280\" /></a>\r\n\r\nThere\'s also a little pouch to store the rollerballs, and a card with different inspirations as to how to blend them on your skin - but it\'s foolproof. You can\'t make a mess if you mix them all up.\r\n\r\nBadger Beard Balm is perfect for the bearded gents in your life (is this everyone? beards are so trending). It is filled with good things such as vitamins A, D, E &amp; F to keep his beard healthy, thicker and cleaner, as well as helping to relieve itchiness as it soothes the skin under the hair.\r\n<blockquote>If you\'re looking to get rid of this beard, maybe this is not the right angle for your gifting</blockquote>\r\nFurther, no one wants to cuddle with a dirty beard - who knows, maybe you already are and are dying for a nice way to help this problem of yours his. Beard Wash made by Beard Buddy. Started in 2011 in California, all Beard Buddy products are hand crafted by beards for beards. Both founders have large beards of their own to tame, and wanted to do this with organic products - kudos, and cuddles, to them.\r\n', 'Wizard Locker (default)', '', 'publish', 'open', 'closed', '', 'wizard-locker-default', '', '', '2022-02-22 08:53:18', '2022-02-22 08:53:18', '', 0, 'http://tdi_161_6e2', 0, 'tds_locker', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(84, 9467, '2022-02-22 08:53:21', '2022-02-22 08:53:21', 'eyJ0ZGNfaGVhZGVyX2Rlc2t0b3AiOiJbdGRjX3pvbmUgdHlwZT1cInRkY19oZWFkZXJfZGVza3RvcFwiIHRkY19jc3M9XCJleUpoYkd3aU9uc2laR2x6Y0d4aGVTSTZJaUo5TENKd2IzSjBjbUZwZENJNmV5SmthWE53YkdGNUlqb2lJbjBzSW5CdmNuUnlZV2wwWDIxaGVGOTNhV1IwYUNJNk1UQXhPQ3dpY0c5eWRISmhhWFJmYldsdVgzZHBaSFJvSWpvM05qaDlcIiBoX2Rpc3BsYXk9XCJcIiBoX3Bvc2l0aW9uPVwiXCIgem9uZV9zaGFkb3dfc2hhZG93X3NpemU9XCIxMFwiIHpvbmVfc2hhZG93X3NoYWRvd19vZmZzZXRfdmVydGljYWw9XCIwXCIgem9uZV9zaGFkb3dfc2hhZG93X2NvbG9yPVwicmdiYSgwLDAsMCwwLjA4KVwiXVt2Y19yb3cgZnVsbF93aWR0aD1cInN0cmV0Y2hfcm93XzE0MDAgdGQtc3RyZXRjaC1jb250ZW50XCIgdGRjX2Nzcz1cImV5SmhiR3dpT25zaVltRmphMmR5YjNWdVpDMWpiMnh2Y2lJNklpTm1abVptWm1ZaUxDSmthWE53YkdGNUlqb2lJbjBzSW5CdmNuUnlZV2wwSWpwN0luQmhaR1JwYm1jdGNtbG5hSFFpT2lJeE1DSXNJbkJoWkdScGJtY3RiR1ZtZENJNklqRXdJaXdpWkdsemNHeGhlU0k2SWlKOUxDSndiM0owY21GcGRGOXRZWGhmZDJsa2RHZ2lPakV3TVRnc0luQnZjblJ5WVdsMFgyMXBibDkzYVdSMGFDSTZOelk0ZlE9PVwiIGNvbnRlbnRfYWxpZ25fdmVydGljYWw9XCJjb250ZW50LXZlcnQtdG9wXCIgZmxleF9sYXlvdXQ9XCJyb3dcIiBmbGV4X3ZlcnRfYWxpZ249XCJjZW50ZXJcIiBnYXA9XCJleUpoYkd3aU9pSXhNQ0lzSW14aGJtUnpZMkZ3WlNJNklqVWlMQ0p3YjNKMGNtRnBkQ0k2SWpBaWZRPT1cIl1bdmNfY29sdW1uIHRkY19jc3M9XCJleUpoYkd3aU9uc2lkMmxrZEdnaU9pSXpNQ1VpTENKa2FYTndiR0Y1SWpvaUluMHNJbXhoYm1SelkyRndaU0k2ZXlKa2FYTndiR0Y1SWpvaUluMHNJbXhoYm1SelkyRndaVjl0WVhoZmQybGtkR2dpT2pFeE5EQXNJbXhoYm1SelkyRndaVjl0YVc1ZmQybGtkR2dpT2pFd01Ua3NJbkJ2Y25SeVlXbDBJanA3SW5kcFpIUm9Jam9pTXpNbElpd2laR2x6Y0d4aGVTSTZJaUo5TENKd2IzSjBjbUZwZEY5dFlYaGZkMmxrZEdnaU9qRXdNVGdzSW5CdmNuUnlZV2wwWDIxcGJsOTNhV1IwYUNJNk56WTRmUT09XCIgd2lkdGg9XCIxLzRcIl1bL3ZjX2NvbHVtbl1bdmNfY29sdW1uIHdpZHRoPVwiMS8yXCIgdGRjX2Nzcz1cImV5SmhiR3dpT25zaWQybGtkR2dpT2lJME1DVWlMQ0prYVhOd2JHRjVJam9pSW4wc0luQnZjblJ5WVdsMElqcDdJbmRwWkhSb0lqb2lNelFsSWl3aVpHbHpjR3hoZVNJNklpSjlMQ0p3YjNKMGNtRnBkRjl0WVhoZmQybGtkR2dpT2pFd01UZ3NJbkJ2Y25SeVlXbDBYMjFwYmw5M2FXUjBhQ0k2TnpZNGZRPT1cIiBmbGV4X2xheW91dD1cImJsb2NrXCIgZmxleF92ZXJ0X2FsaWduPVwiZmxleC1zdGFydFwiXVt0ZGJfaGVhZGVyX2xvZ28gYWxpZ25fdmVydD1cImNvbnRlbnQtdmVydC10b3BcIiBpbWFnZV93aWR0aD1cImV5SndiM0owY21GcGRDSTZJakU0TUNJc0lteGhibVJ6WTJGd1pTSTZJakkyTUNKOVwiIHRkY19jc3M9XCJleUpoYkd3aU9uc2liV0Z5WjJsdUxYUnZjQ0k2SWkwMUlpd2ljR0ZrWkdsdVp5MTBiM0FpT2lJMUlpd2ljR0ZrWkdsdVp5MWliM1IwYjIwaU9pSTFJaXdpY0dGa1pHbHVaeTFzWldaMElqb2lOU0lzSW5vdGFXNWtaWGdpT2lJd0lpd2laR2x6Y0d4aGVTSTZJaUo5TENKd2IzSjBjbUZwZENJNmV5SndZV1JrYVc1bkxYUnZjQ0k2SWpFd0lpd2ljR0ZrWkdsdVp5MWliM1IwYjIwaU9pSXhNQ0lzSW1ScGMzQnNZWGtpT2lJaWZTd2ljRzl5ZEhKaGFYUmZiV0Y0WDNkcFpIUm9Jam94TURFNExDSndiM0owY21GcGRGOXRhVzVmZDJsa2RHZ2lPamMyT0N3aWJHRnVaSE5qWVhCbElqcDdJbVJwYzNCc1lYa2lPaUlpZlN3aWJHRnVaSE5qWVhCbFgyMWhlRjkzYVdSMGFDSTZNVEUwTUN3aWJHRnVaSE5qWVhCbFgyMXBibDkzYVdSMGFDSTZNVEF4T1gwPVwiIHNob3dfaW1hZ2U9XCJub25lXCIgZl90ZXh0X2ZvbnRfZmFtaWx5PVwiNDU2XCIgZl90ZXh0X2ZvbnRfc2l6ZT1cImV5SmhiR3dpT2lJeE1EQWlMQ0pzWVc1a2MyTmhjR1VpT2lJM01DSXNJbkJ2Y25SeVlXbDBJam9pTkRVaWZRPT1cIiBmX3RleHRfZm9udF9saW5lX2hlaWdodD1cIjEuMlwiIGljb25fYWxpZ249XCJleUpoYkd3aU9pSXdJaXdpY0c5eWRISmhhWFFpT2lJekluMD1cIiBmX3RleHRfZm9udF90cmFuc2Zvcm09XCJcIiBtZWRpYV9zaXplX2ltYWdlX2hlaWdodD1cIjMyMFwiIG1lZGlhX3NpemVfaW1hZ2Vfd2lkdGg9XCI4MDBcIiBzaG93X3RpdGxlPVwiXCIgc2hvd190YWdsaW5lPVwiXCIgdHRsX3RhZ19zcGFjZT1cIjBcIiBzaG93X2ljb249XCJub25lXCIgdGV4dF9jb2xvcj1cIiNlYzM1MzVcIiBmX3RleHRfZm9udF93ZWlnaHQ9XCI3MDBcIiBhbGlnbl9ob3Jpej1cImNvbnRlbnQtaG9yaXotY2VudGVyXCIgZl90ZXh0X2ZvbnRfc3R5bGU9XCJpdGFsaWNcIiBmX3RleHRfZm9udF9zcGFjaW5nPVwiZXlKaGJHd2lPaUl0TlNJc0lteGhibVJ6WTJGd1pTSTZJaTB6SWl3aWNHOXlkSEpoYVhRaU9pSXRNaUo5XCIgdGFnbGluZV9wb3M9XCJpbmxpbmVcIiB0YWdsaW5lX2FsaWduX3ZlcnQ9XCJjb250ZW50LXZlcnQtdG9wXCIgZl90YWdsaW5lX2ZvbnRfbGluZV9oZWlnaHQ9XCJleUpoYkd3aU9pSTBMallpTENKc1lXNWtjMk5oY0dVaU9pSXpMaklpTENKd2IzSjBjbUZwZENJNklqSXVOU0o5XCIgZl90YWdsaW5lX2ZvbnRfZmFtaWx5PVwiNjUzXCIgZl90YWdsaW5lX2ZvbnRfd2VpZ2h0PVwiNTAwXCIgZl90YWdsaW5lX2ZvbnRfc3R5bGU9XCJpdGFsaWNcIiB0YWdsaW5lX2NvbG9yPVwiIzAwMDAwMFwiIGZfdGFnbGluZV9mb250X3NpemU9XCJleUpoYkd3aU9pSXhNaUlzSW5CdmNuUnlZV2wwSWpvaU1URWlmUT09XCIgZl90YWdsaW5lX2ZvbnRfc3BhY2luZz1cImV5SndiM0owY21GcGRDSTZJakFpTENKc1lXNWtjMk5oY0dVaU9pSXdMalVpZlE9PVwiIHRleHQ9XCJvbmxpbmVpbmNzaG9wXCJdWy92Y19jb2x1bW5dW3ZjX2NvbHVtbiB3aWR0aD1cIjEvNFwiIHRkY19jc3M9XCJleUpoYkd3aU9uc2lkMmxrZEdnaU9pSXpNQ1VpTENKamIyNTBaVzUwTFdndFlXeHBaMjRpT2lKamIyNTBaVzUwTFdodmNtbDZMWEpwWjJoMElpd2laR2x6Y0d4aGVTSTZJaUo5TENKd2IzSjBjbUZwZENJNmV5SjNhV1IwYUNJNklqTXpKU0lzSW1ScGMzQnNZWGtpT2lJaWZTd2ljRzl5ZEhKaGFYUmZiV0Y0WDNkcFpIUm9Jam94TURFNExDSndiM0owY21GcGRGOXRhVzVmZDJsa2RHZ2lPamMyT0gwPVwiXVsvdmNfY29sdW1uXVsvdmNfcm93XVt2Y19yb3cgZnVsbF93aWR0aD1cInN0cmV0Y2hfcm93XzE0MDAgdGQtc3RyZXRjaC1jb250ZW50XCIgdGRjX2Nzcz1cImV5SmhiR3dpT25zaVltOXlaR1Z5TFhSdmNDMTNhV1IwYUNJNklqRWlMQ0ppYjNKa1pYSXRZMjlzYjNJaU9pSWpaV0ZsWVdWaElpd2lZbUZqYTJkeWIzVnVaQzFqYjJ4dmNpSTZJaU5tWm1abVptWWlMQ0prYVhOd2JHRjVJam9pSW4xOVwiIGNvbnRlbnRfYWxpZ25fdmVydGljYWw9XCJjb250ZW50LXZlcnQtdG9wXCIgZmxleF9sYXlvdXQ9XCJyb3dcIiBmbGV4X3ZlcnRfYWxpZ249XCJjZW50ZXJcIl1bdmNfY29sdW1uIHRkY19jc3M9XCJleUpoYkd3aU9uc2lZMjl1ZEdWdWRDMW9MV0ZzYVdkdUlqb2lZMjl1ZEdWdWRDMW9iM0pwZWkxalpXNTBaWElpTENKa2FYTndiR0Y1SWpvaUluMHNJbXhoYm1SelkyRndaU0k2ZXlKa2FYTndiR0Y1SWpvaUluMHNJbXhoYm1SelkyRndaVjl0WVhoZmQybGtkR2dpT2pFeE5EQXNJbXhoYm1SelkyRndaVjl0YVc1ZmQybGtkR2dpT2pFd01Ua3NJbkJ2Y25SeVlXbDBJanA3SW1ScGMzQnNZWGtpT2lJaWZTd2ljRzl5ZEhKaGFYUmZiV0Y0WDNkcFpIUm9Jam94TURFNExDSndiM0owY21GcGRGOXRhVzVmZDJsa2RHZ2lPamMyT0gwPVwiXVt0ZGJfaGVhZGVyX21lbnUgbW1fYWxpZ25faG9yaXo9XCJjb250ZW50LWhvcml6LWxlZnRcIiBtb2R1bGVzX29uX3Jvd19yZWd1bGFyPVwiMjAlXCIgbW9kdWxlc19vbl9yb3dfY2F0cz1cIjIwJVwiIGltYWdlX3NpemU9XCJcIiBtb2R1bGVzX2NhdGVnb3J5PVwiYWJvdmVcIiBzaG93X2V4Y2VycHQ9XCJub25lXCIgc2hvd19jb209XCJub25lXCIgc2hvd19kYXRlPVwiZXlKd2IzSjBjbUZwZENJNkltNXZibVVpZlE9PVwiIHNob3dfYXV0aG9yPVwibm9uZVwiIG1tX3N1Yl9hbGlnbl9ob3Jpej1cImNvbnRlbnQtaG9yaXotcmlnaHRcIiBtbV9lbGVtX2FsaWduX2hvcml6PVwiY29udGVudC1ob3Jpei1jZW50ZXJcIiBtZW51X2lkPVwiMTVcIiB0ZGNfY3NzPVwiZXlKaGJHd2lPbnNpZWkxcGJtUmxlQ0k2SWpBaUxDSmthWE53YkdGNUlqb2lJbjBzSW14aGJtUnpZMkZ3WlNJNmV5SmthWE53YkdGNUlqb2lJbjBzSW14aGJtUnpZMkZ3WlY5dFlYaGZkMmxrZEdnaU9qRXhOREFzSW14aGJtUnpZMkZ3WlY5dGFXNWZkMmxrZEdnaU9qRXdNVGtzSW5CdmNuUnlZV2wwSWpwN0ltUnBjM0JzWVhraU9pSWlmU3dpY0c5eWRISmhhWFJmYldGNFgzZHBaSFJvSWpveE1ERTRMQ0p3YjNKMGNtRnBkRjl0YVc1ZmQybGtkR2dpT2pjMk9IMD1cIiB0ZHNfbWVudV9hY3RpdmUxLWxpbmVfY29sb3I9XCJcIiBmX2VsZW1fZm9udF9mYW1pbHk9XCI2NTNcIiBmX2VsZW1fZm9udF90cmFuc2Zvcm09XCJub25lXCIgZl9lbGVtX2ZvbnRfc2l6ZT1cImV5SmhiR3dpT2lJeE5DSXNJbkJ2Y25SeVlXbDBJam9pTVRNaWZRPT1cIiBmX2VsZW1fZm9udF93ZWlnaHQ9XCI2MDBcIiBmX2VsZW1fZm9udF9saW5lX2hlaWdodD1cImV5SmhiR3dpT2lJME1uQjRJaXdpY0c5eWRISmhhWFFpT2lJek5uQjRJbjA9XCIgbW9yZV9pY29uX3NpemU9XCJleUpoYkd3aU9pSXhNeUlzSW5CdmNuUnlZV2wwSWpvaU1URWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE1pSjlcIiBlbGVtX3NwYWNlPVwiZXlKaGJHd2lPaUl4TUNJc0lteGhibVJ6WTJGd1pTSTZJamdpTENKd2IzSjBjbUZwZENJNklqWWlmUT09XCIgZWxlbV9wYWRkPVwiZXlKaGJHd2lPaUl3SURFd2NIZ2lMQ0pzWVc1a2MyTmhjR1VpT2lJd0lEaHdlQ0lzSW5CdmNuUnlZV2wwSWpvaU1DQTJjSGdpZlE9PVwiIG1tX3dpZHRoPVwiZXlKd2IzSjBjbUZwZENJNklqRXdNQ1VpTENKaGJHd2lPaUl4TXpreUlpd2liR0Z1WkhOallYQmxJam9pTVRBd0pTSjlcIiBtbV9hbGlnbl9zY3JlZW49XCJ5ZXNcIiBtYWluX3N1Yl9pY29uX3NpemU9XCJleUpoYkd3aU9pSXdJaXdpY0c5eWRISmhhWFFpT2lJNElpd2liR0Z1WkhOallYQmxJam9pT1NKOVwiIG1haW5fc3ViX2ljb25fYWxpZ249XCIwXCIgbWFpbl9zdWJfaWNvbl9zcGFjZT1cImV5SmhiR3dpT2lJd0lpd2ljRzl5ZEhKaGFYUWlPaUkySW4wPVwiIG1vcmVfdGRpY29uPVwidGQtaWNvbi1kb3RzLWNpcmNsZS1tZWRpdW1cIiB0ZHNfbWVudV9zdWJfYWN0aXZlMS1zdWJfdGV4dF9jb2xvcl9oPVwiI2Y0M2YzZlwiIGZfc3ViX2VsZW1fZm9udF9mYW1pbHk9XCI2NTNcIiBmX3N1Yl9lbGVtX2ZvbnRfc2l6ZT1cImV5SmhiR3dpT2lJeE15SXNJbkJ2Y25SeVlXbDBJam9pTVRJaWZRPT1cIiBmX3N1Yl9lbGVtX2ZvbnRfbGluZV9oZWlnaHQ9XCIyXCIgZl9zdWJfZWxlbV9mb250X3dlaWdodD1cIjYwMFwiIHN1Yl9lbGVtX3BhZGQ9XCI1cHggMjVweFwiIG1tX3N1Yl93aWR0aD1cImV5SmhiR3dpT2lJeE1EQWxJaXdpY0c5eWRISmhhWFFpT2lJeE1qQWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE5EQWlmUT09XCIgbW1fc3ViX2JvcmRlcj1cIjBcIiBtbV9lbGVtX2JvcmRlcj1cIjBcIiBtbV9lbGVtX2JvcmRlcl9hPVwiMFwiIG1tX2VsZW1fcGFkZD1cImV5SndiM0owY21GcGRDSTZJakFpTENKaGJHd2lPaUl3SW4wPVwiIG1tX2JvcmRlcl9zaXplPVwiMFwiIHN1Yl9zaGFkb3dfc2hhZG93X3NpemU9XCIxNlwiIHN1Yl9zaGFkb3dfc2hhZG93X29mZnNldF9ob3Jpem9udGFsPVwiMFwiIHN1Yl9zaGFkb3dfc2hhZG93X29mZnNldF92ZXJ0aWNhbD1cIjJcIiBzdWJfc2hhZG93X3NoYWRvd19jb2xvcj1cInJnYmEoMCwwLDAsMC4xMilcIiBtbV9zaGFkb3dfc2hhZG93X3NpemU9XCIxNlwiIG1tX3NoYWRvd19zaGFkb3dfb2Zmc2V0X3ZlcnRpY2FsPVwiNFwiIG1tX3NoYWRvd19zaGFkb3dfY29sb3I9XCJyZ2JhKDAsMCwwLDAuMTIpXCIgbW1fZWxlbV9jb2xvcj1cIiMwMDAwMDBcIiBtbV9lbGVtX2NvbG9yX2E9XCIjZjQzZjNmXCIgbW1fZWxlbV9vcmRlcj1cImlkXCIgbW1fZWxlbV9zcGFjZT1cImV5SmhiR3dpT2lJeE1DSXNJbkJ2Y25SeVlXbDBJam9pTlNJc0lteGhibVJ6WTJGd1pTSTZJamdpZlE9PVwiIG1tX2VsZW1fYmc9XCJyZ2JhKDI1NSwyNTUsMjU1LDApXCIgbW1fZWxlbV9iZ19hPVwicmdiYSgyNTUsMjU1LDI1NSwwKVwiIG1tX2VsZW1fYm9yZGVyX2NvbG9yX2E9XCIjMDAwMDAwXCIgbW1fc3ViX3BhZGQ9XCJleUpoYkd3aU9pSXlNSEI0SWl3aWNHOXlkSEpoYVhRaU9pSXhOWEI0SW4wPVwiIGZfbW1fc3ViX2ZvbnRfZmFtaWx5PVwiNjUzXCIgZl9tbV9zdWJfZm9udF93ZWlnaHQ9XCI2MDBcIiBmX21tX3N1Yl9mb250X3NpemU9XCJleUpoYkd3aU9pSXhOQ0lzSW5CdmNuUnlZV2wwSWpvaU1USWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE15SjlcIiBzaG93X2NhdD1cIm5vbmVcIiBmX3RpdGxlX2ZvbnRfZmFtaWx5PVwiNjUzXCIgZl90aXRsZV9mb250X3NpemU9XCJleUpoYkd3aU9pSXhOQ0lzSW14aGJtUnpZMkZ3WlNJNklqRXpJaXdpY0c5eWRISmhhWFFpT2lJeE1TSjlcIiBmX3RpdGxlX2ZvbnRfbGluZV9oZWlnaHQ9XCIxLjJcIiBmX3RpdGxlX2ZvbnRfd2VpZ2h0PVwiNjAwXCIgZl90aXRsZV9mb250X3RyYW5zZm9ybT1cIlwiIHRpdGxlX3R4dD1cIiMwMDAwMDBcIiB0aXRsZV90eHRfaG92ZXI9XCIjZjQzZjNmXCIgaW1hZ2VfaGVpZ2h0PVwiNzBcIiBhbGxfbW9kdWxlc19zcGFjZT1cImV5SmhiR3dpT2lJd0lpd2ljRzl5ZEhKaGFYUWlPaUl5TUNKOVwiIHBhZ190ZXh0PVwiIzAwMDAwMFwiIHBhZ19oX3RleHQ9XCIjZjQzZjNmXCIgcGFnX2JnPVwicmdiYSgyNTUsMjU1LDI1NSwwKVwiIHBhZ19oX2JnPVwicmdiYSgyNTUsMjU1LDI1NSwwKVwiIG1ldGFfcGFkZGluZz1cImV5SmhiR3dpT2lJeE5YQjRJREFnTUNBd0lpd2liR0Z1WkhOallYQmxJam9pTVRKd2VDQXdJREFnTUNJc0luQnZjblJ5WVdsMElqb2lNVEJ3ZUNBd0lEQWdNQ0o5XCIgYXJ0X2V4Y2VycHQ9XCIwXCIgbW9kdWxlc19nYXA9XCJleUpoYkd3aU9pSXlNQ0lzSW14aGJtUnpZMkZ3WlNJNklqRTFJaXdpY0c5eWRISmhhWFFpT2lJeE1DSjlcIiBtbV9wYWRkPVwiZXlKaGJHd2lPaUl5TUNJc0luQnZjblJ5WVdsMElqb2lNVFVpZlE9PVwiIHBhZ19zcGFjZT1cImV5SndiM0owY21GcGRDSTZJakV3SW4wPVwiIHRleHRfY29sb3I9XCIjMDAwMDAwXCIgdGRzX21lbnVfYWN0aXZlMS1saW5lX2hlaWdodD1cIjBcIiB0ZHNfbWVudV9hY3RpdmUxLWxpbmVfYWxpZ25tZW50PVwiNTBcIiB0ZHNfbWVudV9hY3RpdmUxLXRleHRfY29sb3JfaD1cIiNmNDNmM2ZcIiBtbV9zdWJjYXRzX2JnPVwiI2ZmZmZmZlwiIG1tX3N1YmNhdHNfcG9zdHNfbGltaXQ9XCI1XCIgbW1fY2hpbGRfY2F0cz1cIjZcIiBtbV9hamF4X3ByZWxvYWRpbmc9XCJwcmVsb2FkXCIgbW1faGlkZV9hbGxfaXRlbT1cInllc1wiIHBhZ19pY29uc19zaXplPVwiMjJcIiBzaG93X21lZ2E9XCJ5ZXNcIiBhbGlnbl9ob3Jpej1cImNvbnRlbnQtaG9yaXotY2VudGVyXCIgbW1fc3ViX2lubGluZT1cInllc1wiIGFydF90aXRsZT1cImV5SmhiR3dpT2lJd0lEQWdPSEI0SURBaUxDSndiM0owY21GcGRDSTZJakFpZlE9PVwiIGZfbWV0YV9mb250X2ZhbWlseT1cIjY1M1wiIGZfbWV0YV9mb250X3NpemU9XCIxM1wiIHBhZ19ib3JkZXJfd2lkdGg9XCIwXCIgcHJldl90ZGljb249XCJ0ZGMtZm9udC10ZG1wIHRkYy1mb250LXRkbXAtYXJyb3ctbGVmdFwiIG5leHRfdGRpY29uPVwidGRjLWZvbnQtdGRtcCB0ZGMtZm9udC10ZG1wLWFycm93LXJpZ2h0XCIgbWV0YV9pbmZvX2hvcml6PVwiY29udGVudC1ob3Jpei1jZW50ZXJcIiBleGNsX21hcmdpbj1cIi00cHggNXB4IDAgMFwiIGV4Y2xfcGFkZD1cIjNweCA1cHhcIiBleGNsX3JhZGl1cz1cIjJcIiBleGNsX2NvbG9yPVwiI2ZmZmZmZlwiIGV4Y2xfY29sb3JfaD1cIiNmZmZmZmZcIiBleGNsX2JnPVwiI2VjMzUzNVwiIGV4Y2xfYmdfaD1cIiNlYzM1MzVcIiBmX2V4Y2xfZm9udF9mYW1pbHk9XCI2NTNcIiBmX2V4Y2xfZm9udF90cmFuc2Zvcm09XCJ1cHBlcmNhc2VcIiBmX2V4Y2xfZm9udF9zaXplPVwiZXlKaGJHd2lPaUl4TWlJc0lteGhibVJ6WTJGd1pTSTZJakV4SWl3aWNHOXlkSEpoYVhRaU9pSXhNQ0o5XCIgZl9leGNsX2ZvbnRfd2VpZ2h0PVwiNTAwXCIgZl9leGNsX2ZvbnRfbGluZV9oZWlnaHQ9XCIxXCIgZl9leGNsX2ZvbnRfc3BhY2luZz1cImV5SmhiR3dpT2lJdE1DNDFJaXdpY0c5eWRISmhhWFFpT2lJd0luMD1cIiBkYXRlX3R4dD1cIiMwMDAwMDBcIl1bL3ZjX2NvbHVtbl1bL3ZjX3Jvd11bL3RkY196b25lXSIsInRkY19oZWFkZXJfZGVza3RvcF9zdGlja3kiOiJbdGRjX3pvbmUgdHlwZT1cInRkY19oZWFkZXJfZGVza3RvcF9zdGlja3lcIiBzX3RyYW5zaXRpb25fdHlwZT1cIlwiIHRkY19jc3M9XCJleUpoYkd3aU9uc2laR2x6Y0d4aGVTSTZJaUo5ZlE9PVwiIGhzX3RyYW5zaXRpb25fdHlwZT1cIlwiIGhzX3RyYW5zaXRpb25fZWZmZWN0PVwic2xpZGVcIiBoc19zdGlja3lfdHlwZT1cIlwiIHpvbmVfc2hhZG93X3NoYWRvd19zaXplPVwiMTVcIiB6b25lX3NoYWRvd19zaGFkb3dfb2Zmc2V0X3ZlcnRpY2FsPVwiMFwiIHpvbmVfc2hhZG93X3NoYWRvd19jb2xvcj1cInJnYmEoMCwwLDAsMC4xMilcIl1bdmNfcm93IGZ1bGxfd2lkdGg9XCJzdHJldGNoX3Jvd18xNDAwIHRkLXN0cmV0Y2gtY29udGVudFwiIHRkY19jc3M9XCJleUpoYkd3aU9uc2lZbUZqYTJkeWIzVnVaQzFqYjJ4dmNpSTZJaU5tWm1abVptWWlMQ0prYVhOd2JHRjVJam9pSW4wc0luQnZjblJ5WVdsMElqcDdJbkJoWkdScGJtY3RiR1ZtZENJNklqRXdJaXdpWkdsemNHeGhlU0k2SWlKOUxDSndiM0owY21GcGRGOXRZWGhmZDJsa2RHZ2lPakV3TVRnc0luQnZjblJ5WVdsMFgyMXBibDkzYVdSMGFDSTZOelk0ZlE9PVwiIGNvbnRlbnRfYWxpZ25fdmVydGljYWw9XCJjb250ZW50LXZlcnQtdG9wXCIgZmxleF9sYXlvdXQ9XCJyb3dcIiBmbGV4X3ZlcnRfYWxpZ249XCJjZW50ZXJcIiBnYXA9XCJleUp3YjNKMGNtRnBkQ0k2SWpBaWZRPT1cIl1bdmNfY29sdW1uIHRkY19jc3M9XCJleUpoYkd3aU9uc2lkMmxrZEdnaU9pSXlOU1VpTENKa2FYTndiR0Y1SWpvaUluMHNJbXhoYm1SelkyRndaU0k2ZXlKa2FYTndiR0Y1SWpvaUluMHNJbXhoYm1SelkyRndaVjl0WVhoZmQybGtkR2dpT2pFeE5EQXNJbXhoYm1SelkyRndaVjl0YVc1ZmQybGtkR2dpT2pFd01Ua3NJbkJ2Y25SeVlXbDBJanA3SW5kcFpIUm9Jam9pTWpJbElpd2laR2x6Y0d4aGVTSTZJaUo5TENKd2IzSjBjbUZwZEY5dFlYaGZkMmxrZEdnaU9qRXdNVGdzSW5CdmNuUnlZV2wwWDIxcGJsOTNhV1IwYUNJNk56WTRmUT09XCIgd2lkdGg9XCIxLzNcIl1bdGRiX2hlYWRlcl9sb2dvIGFsaWduX3ZlcnQ9XCJjb250ZW50LXZlcnQtdG9wXCIgaW1hZ2Vfd2lkdGg9XCJleUp3YjNKMGNtRnBkQ0k2SWpFNE1DSXNJbXhoYm1SelkyRndaU0k2SWpJMk1DSjlcIiB0ZGNfY3NzPVwiZXlKaGJHd2lPbnNpY0dGa1pHbHVaeTFpYjNSMGIyMGlPaUl5SWl3aWVpMXBibVJsZUNJNklqQWlMQ0prYVhOd2JHRjVJam9pSW4wc0luQnZjblJ5WVdsMElqcDdJbVJwYzNCc1lYa2lPaUlpZlN3aWNHOXlkSEpoYVhSZmJXRjRYM2RwWkhSb0lqb3hNREU0TENKd2IzSjBjbUZwZEY5dGFXNWZkMmxrZEdnaU9qYzJPQ3dpYkdGdVpITmpZWEJsSWpwN0ltUnBjM0JzWVhraU9pSWlmU3dpYkdGdVpITmpZWEJsWDIxaGVGOTNhV1IwYUNJNk1URTBNQ3dpYkdGdVpITmpZWEJsWDIxcGJsOTNhV1IwYUNJNk1UQXhPU3dpY0dodmJtVWlPbnNpWkdsemNHeGhlU0k2SWlKOUxDSndhRzl1WlY5dFlYaGZkMmxrZEdnaU9qYzJOMzA9XCIgc2hvd19pbWFnZT1cIm5vbmVcIiBmX3RleHRfZm9udF9mYW1pbHk9XCI0NTZcIiBmX3RleHRfZm9udF9zaXplPVwiZXlKaGJHd2lPaUkwTWlJc0luQm9iMjVsSWpvaU5ESWlMQ0pzWVc1a2MyTmhjR1VpT2lJek5pSXNJbkJ2Y25SeVlXbDBJam9pTXpBaWZRPT1cIiBmX3RleHRfZm9udF9saW5lX2hlaWdodD1cIjEuMlwiIGljb25fYWxpZ249XCJleUpoYkd3aU9pSXdJaXdpY0c5eWRISmhhWFFpT2lJekluMD1cIiB0ZXh0PVwiT25saW5lIFNob3AgVUFFXCIgZl90ZXh0X2ZvbnRfdHJhbnNmb3JtPVwiXCIgbWVkaWFfc2l6ZV9pbWFnZV9oZWlnaHQ9XCIzMjBcIiBtZWRpYV9zaXplX2ltYWdlX3dpZHRoPVwiODAwXCIgc2hvd190aXRsZT1cIlwiIHNob3dfdGFnbGluZT1cIlwiIHR0bF90YWdfc3BhY2U9XCIwXCIgc2hvd19pY29uPVwibm9uZVwiIHRleHRfY29sb3I9XCIjZWMzNTM1XCIgZl90ZXh0X2ZvbnRfd2VpZ2h0PVwiNzAwXCIgYWxpZ25faG9yaXo9XCJjb250ZW50LWhvcml6LWxlZnRcIiBmX3RleHRfZm9udF9zdHlsZT1cIml0YWxpY1wiIGZfdGV4dF9mb250X3NwYWNpbmc9XCJleUpoYkd3aU9pSXRNaUlzSW14aGJtUnpZMkZ3WlNJNklpMHpJaXdpY0c5eWRISmhhWFFpT2lJdE1TNDFJaXdpY0dodmJtVWlPaUl0TWlKOVwiIHRhZ2xpbmU9XCJVRkpQXCIgdGFnbGluZV9wb3M9XCJpbmxpbmVcIiB0YWdsaW5lX2FsaWduX3ZlcnQ9XCJjb250ZW50LXZlcnQtdG9wXCIgZl90YWdsaW5lX2ZvbnRfbGluZV9oZWlnaHQ9XCJleUpoYkd3aU9pSXlJaXdpY0dodmJtVWlPaUl5SWl3aWNHOXlkSEpoYVhRaU9pSXhMamdpZlE9PVwiIGZfdGFnbGluZV9mb250X2ZhbWlseT1cIjY1M1wiIGZfdGFnbGluZV9mb250X3dlaWdodD1cIjUwMFwiIGZfdGFnbGluZV9mb250X3N0eWxlPVwiaXRhbGljXCIgdGFnbGluZV9jb2xvcj1cIiMwMDAwMDBcIiBmX3RhZ2xpbmVfZm9udF9zaXplPVwiZXlKaGJHd2lPaUl4TUNJc0luQm9iMjVsSWpvaU1UQWlmUT09XCIgZl90YWdsaW5lX2ZvbnRfc3BhY2luZz1cImV5SndiM0owY21GcGRDSTZJakFpTENKc1lXNWtjMk5oY0dVaU9pSXdMalVpTENKd2FHOXVaU0k2SWpBaWZRPT1cIl1bL3ZjX2NvbHVtbl1bdmNfY29sdW1uIHdpZHRoPVwiMi8zXCIgdGRjX2Nzcz1cImV5SmhiR3dpT25zaWQybGtkR2dpT2lJM05TVWlMQ0prYVhOd2JHRjVJam9pSW4wc0luQnZjblJ5WVdsMElqcDdJbmRwWkhSb0lqb2lOemdsSWl3aVpHbHpjR3hoZVNJNklpSjlMQ0p3YjNKMGNtRnBkRjl0WVhoZmQybGtkR2dpT2pFd01UZ3NJbkJ2Y25SeVlXbDBYMjFwYmw5M2FXUjBhQ0k2TnpZNGZRPT1cIiBmbGV4X2xheW91dD1cImJsb2NrXCIgZmxleF92ZXJ0X2FsaWduPVwiZmxleC1zdGFydFwiXVt0ZGJfaGVhZGVyX21lbnUgbW1fYWxpZ25faG9yaXo9XCJjb250ZW50LWhvcml6LWxlZnRcIiBtb2R1bGVzX29uX3Jvd19yZWd1bGFyPVwiMjAlXCIgbW9kdWxlc19vbl9yb3dfY2F0cz1cIjIwJVwiIGltYWdlX3NpemU9XCJcIiBtb2R1bGVzX2NhdGVnb3J5PVwiYWJvdmVcIiBzaG93X2V4Y2VycHQ9XCJub25lXCIgc2hvd19jb209XCJub25lXCIgc2hvd19kYXRlPVwiZXlKd2IzSjBjbUZwZENJNkltNXZibVVpZlE9PVwiIHNob3dfYXV0aG9yPVwibm9uZVwiIG1tX3N1Yl9hbGlnbl9ob3Jpej1cImNvbnRlbnQtaG9yaXotcmlnaHRcIiBtbV9lbGVtX2FsaWduX2hvcml6PVwiY29udGVudC1ob3Jpei1jZW50ZXJcIiBtZW51X2lkPVwiMTVcIiB0ZGNfY3NzPVwiZXlKaGJHd2lPbnNpZWkxcGJtUmxlQ0k2SWpBaUxDSmthWE53YkdGNUlqb2lJbjBzSW14aGJtUnpZMkZ3WlNJNmV5SmthWE53YkdGNUlqb2lJbjBzSW14aGJtUnpZMkZ3WlY5dFlYaGZkMmxrZEdnaU9qRXhOREFzSW14aGJtUnpZMkZ3WlY5dGFXNWZkMmxrZEdnaU9qRXdNVGtzSW5CdmNuUnlZV2wwSWpwN0ltUnBjM0JzWVhraU9pSWlmU3dpY0c5eWRISmhhWFJmYldGNFgzZHBaSFJvSWpveE1ERTRMQ0p3YjNKMGNtRnBkRjl0YVc1ZmQybGtkR2dpT2pjMk9IMD1cIiB0ZHNfbWVudV9hY3RpdmUxLWxpbmVfY29sb3I9XCJcIiBmX2VsZW1fZm9udF9mYW1pbHk9XCI2NTNcIiBmX2VsZW1fZm9udF90cmFuc2Zvcm09XCJub25lXCIgZl9lbGVtX2ZvbnRfc2l6ZT1cImV5SmhiR3dpT2lJeE5DSXNJbkJ2Y25SeVlXbDBJam9pTVRNaWZRPT1cIiBmX2VsZW1fZm9udF93ZWlnaHQ9XCI2MDBcIiBmX2VsZW1fZm9udF9saW5lX2hlaWdodD1cImV5SmhiR3dpT2lJMU5IQjRJaXdpY0c5eWRISmhhWFFpT2lJME5YQjRJaXdpYkdGdVpITmpZWEJsSWpvaU5UQndlQ0o5XCIgbW9yZV9pY29uX3NpemU9XCJleUpoYkd3aU9pSXhNeUlzSW5CdmNuUnlZV2wwSWpvaU1URWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE1pSjlcIiBlbGVtX3NwYWNlPVwiZXlKaGJHd2lPaUl4TUNJc0lteGhibVJ6WTJGd1pTSTZJamdpTENKd2IzSjBjbUZwZENJNklqVWlmUT09XCIgZWxlbV9wYWRkPVwiZXlKaGJHd2lPaUl3SURFd2NIZ2lMQ0pzWVc1a2MyTmhjR1VpT2lJd0lEaHdlQ0lzSW5CdmNuUnlZV2wwSWpvaU1DQTFjSGdpZlE9PVwiIG1tX3dpZHRoPVwiZXlKd2IzSjBjbUZwZENJNklqRXdNQ1VpTENKaGJHd2lPaUl4TXpreUlpd2liR0Z1WkhOallYQmxJam9pTVRBd0pTSjlcIiBtbV9hbGlnbl9zY3JlZW49XCJ5ZXNcIiBtYWluX3N1Yl9pY29uX3NpemU9XCJleUpoYkd3aU9pSXdJaXdpY0c5eWRISmhhWFFpT2lJNElpd2liR0Z1WkhOallYQmxJam9pT1NKOVwiIG1haW5fc3ViX2ljb25fYWxpZ249XCIwXCIgbWFpbl9zdWJfaWNvbl9zcGFjZT1cImV5SmhiR3dpT2lJd0lpd2ljRzl5ZEhKaGFYUWlPaUkySW4wPVwiIG1vcmVfdGRpY29uPVwidGQtaWNvbi1kb3RzLWNpcmNsZS1tZWRpdW1cIiB0ZHNfbWVudV9zdWJfYWN0aXZlMS1zdWJfdGV4dF9jb2xvcl9oPVwiI2Y0M2YzZlwiIGZfc3ViX2VsZW1fZm9udF9mYW1pbHk9XCI2NTNcIiBmX3N1Yl9lbGVtX2ZvbnRfc2l6ZT1cImV5SmhiR3dpT2lJeE15SXNJbkJ2Y25SeVlXbDBJam9pTVRJaWZRPT1cIiBmX3N1Yl9lbGVtX2ZvbnRfbGluZV9oZWlnaHQ9XCIyXCIgZl9zdWJfZWxlbV9mb250X3dlaWdodD1cIjYwMFwiIHN1Yl9lbGVtX3BhZGQ9XCI1cHggMjVweFwiIG1tX3N1Yl93aWR0aD1cImV5SmhiR3dpT2lJeE1EQWxJaXdpY0c5eWRISmhhWFFpT2lJeE1qQWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE5EQWlmUT09XCIgbW1fc3ViX2JvcmRlcj1cIjBcIiBtbV9lbGVtX2JvcmRlcj1cIjBcIiBtbV9lbGVtX2JvcmRlcl9hPVwiMFwiIG1tX2VsZW1fcGFkZD1cImV5SndiM0owY21GcGRDSTZJakFpTENKaGJHd2lPaUl3SW4wPVwiIG1tX2JvcmRlcl9zaXplPVwiMFwiIHN1Yl9zaGFkb3dfc2hhZG93X3NpemU9XCIxNlwiIHN1Yl9zaGFkb3dfc2hhZG93X29mZnNldF9ob3Jpem9udGFsPVwiMFwiIHN1Yl9zaGFkb3dfc2hhZG93X29mZnNldF92ZXJ0aWNhbD1cIjJcIiBzdWJfc2hhZG93X3NoYWRvd19jb2xvcj1cInJnYmEoMCwwLDAsMC4xMilcIiBtbV9zaGFkb3dfc2hhZG93X3NpemU9XCIxNlwiIG1tX3NoYWRvd19zaGFkb3dfb2Zmc2V0X3ZlcnRpY2FsPVwiNFwiIG1tX3NoYWRvd19zaGFkb3dfY29sb3I9XCJyZ2JhKDAsMCwwLDAuMTIpXCIgbW1fZWxlbV9jb2xvcj1cIiMwMDAwMDBcIiBtbV9lbGVtX2NvbG9yX2E9XCIjZjQzZjNmXCIgbW1fZWxlbV9vcmRlcj1cImlkXCIgbW1fZWxlbV9zcGFjZT1cImV5SmhiR3dpT2lJeE1DSXNJbkJ2Y25SeVlXbDBJam9pTlNJc0lteGhibVJ6WTJGd1pTSTZJamdpZlE9PVwiIG1tX2VsZW1fYmc9XCJyZ2JhKDI1NSwyNTUsMjU1LDApXCIgbW1fZWxlbV9iZ19hPVwicmdiYSgyNTUsMjU1LDI1NSwwKVwiIG1tX2VsZW1fYm9yZGVyX2NvbG9yX2E9XCIjMDAwMDAwXCIgbW1fc3ViX3BhZGQ9XCJleUpoYkd3aU9pSXlNSEI0SWl3aWNHOXlkSEpoYVhRaU9pSXhOWEI0SW4wPVwiIGZfbW1fc3ViX2ZvbnRfZmFtaWx5PVwiNjUzXCIgZl9tbV9zdWJfZm9udF93ZWlnaHQ9XCI2MDBcIiBmX21tX3N1Yl9mb250X3NpemU9XCJleUpoYkd3aU9pSXhOQ0lzSW5CdmNuUnlZV2wwSWpvaU1USWlMQ0pzWVc1a2MyTmhjR1VpT2lJeE15SjlcIiBzaG93X2NhdD1cIm5vbmVcIiBmX3RpdGxlX2ZvbnRfZmFtaWx5PVwiNjUzXCIgZl90aXRsZV9mb250X3NpemU9XCJleUpoYkd3aU9pSXhOQ0lzSW14aGJtUnpZMkZ3WlNJNklqRXpJaXdpY0c5eWRISmhhWFFpT2lJeE1TSjlcIiBmX3RpdGxlX2ZvbnRfbGluZV9oZWlnaHQ9XCIxLjJcIiBmX3RpdGxlX2ZvbnRfd2VpZ2h0PVwiNjAwXCIgZl90aXRsZV9mb250X3RyYW5zZm9ybT1cIlwiIHRpdGxlX3R4dD1cIiMwMDAwMDBcIiB0aXRsZV90eHRfaG92ZXI9XCIjZjQzZjNmXCIgaW1hZ2VfaGVpZ2h0PVwiNzBcIiBhbGxfbW9kdWxlc19zcGFjZT1cImV5SmhiR3dpT2lJd0lpd2ljRzl5ZEhKaGFYUWlPaUl5TUNKOVwiIHBhZ190ZXh0PVwiIzAwMDAwMFwiIHBhZ19oX3RleHQ9XCIjZjQzZjNmXCIgcGFnX2JnPVwicmdiYSgyNTUsMjU1LDI1NSwwKVwiIHBhZ19oX2JnPVwicmdiYSgyNTUsMjU1LDI1NSwwKVwiIG1ldGFfcGFkZGluZz1cImV5SmhiR3dpT2lJeE5YQjRJREFnTUNBd0lpd2liR0Z1WkhOallYQmxJam9pTVRKd2VDQXdJREFnTUNJc0luQnZjblJ5WVdsMElqb2lNVEJ3ZUNBd0lEQWdNQ0o5XCIgYXJ0X2V4Y2VycHQ9XCIwXCIgbW9kdWxlc19nYXA9XCJleUpoYkd3aU9pSXlNQ0lzSW14aGJtUnpZMkZ3WlNJNklqRTFJaXdpY0c5eWRISmhhWFFpT2lJeE1DSjlcIiBtbV9wYWRkPVwiZXlKaGJHd2lPaUl5TUNJc0luQnZjblJ5WVdsMElqb2lNVFVpZlE9PVwiIHBhZ19zcGFjZT1cImV5SndiM0owY21GcGRDSTZJakV3SW4wPVwiIHRleHRfY29sb3I9XCIjMDAwMDAwXCIgdGRzX21lbnVfYWN0aXZlMS1saW5lX2hlaWdodD1cIjBcIiB0ZHNfbWVudV9hY3RpdmUxLWxpbmVfYWxpZ25tZW50PVwiNTBcIiB0ZHNfbWVudV9hY3RpdmUxLXRleHRfY29sb3JfaD1cIiNmNDNmM2ZcIiBtbV9zdWJjYXRzX2JnPVwiI2ZmZmZmZlwiIG1tX3N1YmNhdHNfcG9zdHNfbGltaXQ9XCI1XCIgbW1fY2hpbGRfY2F0cz1cIjZcIiBtbV9hamF4X3ByZWxvYWRpbmc9XCJwcmVsb2FkXCIgbW1faGlkZV9hbGxfaXRlbT1cInllc1wiIHBhZ19pY29uc19zaXplPVwiMjJcIiBzaG93X21lZ2E9XCJ5ZXNcIiBhbGlnbl9ob3Jpej1cImNvbnRlbnQtaG9yaXotcmlnaHRcIiBtbV9zdWJfaW5saW5lPVwieWVzXCIgYXJ0X3RpdGxlPVwiZXlKaGJHd2lPaUl3SURBZ09IQjRJREFpTENKd2IzSjBjbUZwZENJNklqQWlmUT09XCIgZl9tZXRhX2ZvbnRfZmFtaWx5PVwiNjUzXCIgZl9tZXRhX2ZvbnRfc2l6ZT1cIjEzXCIgcGFnX2JvcmRlcl93aWR0aD1cIjBcIiBwcmV2X3RkaWNvbj1cInRkYy1mb250LXRkbXAgdGRjLWZvbnQtdGRtcC1hcnJvdy1sZWZ0XCIgbmV4dF90ZGljb249XCJ0ZGMtZm9udC10ZG1wIHRkYy1mb250LXRkbXAtYXJyb3ctcmlnaHRcIiBtZXRhX2luZm9faG9yaXo9XCJjb250ZW50LWhvcml6LWNlbnRlclwiIGV4Y2xfbWFyZ2luPVwiLTRweCA1cHggMCAwXCIgZXhjbF9wYWRkPVwiM3B4IDVweFwiIGV4Y2xfcmFkaXVzPVwiMlwiIGV4Y2xfY29sb3I9XCIjZmZmZmZmXCIgZXhjbF9jb2xvcl9oPVwiI2ZmZmZmZlwiIGV4Y2xfYmc9XCIjZWMzNTM1XCIgZXhjbF9iZ19oPVwiI2VjMzUzNVwiIGZfZXhjbF9mb250X2ZhbWlseT1cIjY1M1wiIGZfZXhjbF9mb250X3RyYW5zZm9ybT1cInVwcGVyY2FzZVwiIGZfZXhjbF9mb250X3NpemU9XCJleUpoYkd3aU9pSXhNaUlzSW14aGJtUnpZMkZ3WlNJNklqRXhJaXdpY0c5eWRISmhhWFFpT2lJeE1DSjlcIiBmX2V4Y2xfZm9udF93ZWlnaHQ9XCI1MDBcIiBmX2V4Y2xfZm9udF9saW5lX2hlaWdodD1cIjFcIiBmX2V4Y2xfZm9udF9zcGFjaW5nPVwiZXlKaGJHd2lPaUl0TUM0MUlpd2ljRzl5ZEhKaGFYUWlPaUl3SW4wPVwiIGRhdGVfdHh0PVwiIzAwMDAwMFwiXVsvdmNfY29sdW1uXVsvdmNfcm93XVsvdGRjX3pvbmVdIiwidGRjX2hlYWRlcl9tb2JpbGUiOiJbdGRjX3pvbmUgdHlwZT1cInRkY19oZWFkZXJfbW9iaWxlXCIgdGRjX2Nzcz1cImV5SndhRzl1WlNJNmV5SmthWE53YkdGNUlqb2lJbjBzSW5Cb2IyNWxYMjFoZUY5M2FXUjBhQ0k2TnpZM2ZRPT1cIiByb3dfYmdfZ3JhZGllbnQ9XCIjZmZmZmZmXCIgem9uZV9zaGFkb3dfc2hhZG93X3NpemU9XCJleUp3YUc5dVpTSTZJakV3SW4wPVwiIHpvbmVfc2hhZG93X3NoYWRvd19vZmZzZXRfdmVydGljYWw9XCJleUp3YUc5dVpTSTZJaklpZlE9PVwiIHpvbmVfc2hhZG93X3NoYWRvd19jb2xvcj1cInJnYmEoMCwwLDAsMC4wOSlcIl1bdmNfcm93IGNvbnRlbnRfYWxpZ25fdmVydGljYWw9XCJjb250ZW50LXZlcnQtdG9wXCIgZ2FwPVwiZXlKd2FHOXVaU0k2SWpBaWZRPT1cIiB0ZGNfY3NzPVwiZXlKd2FHOXVaU0k2ZXlKa2FYTndiR0Y1SWpvaUluMHNJbkJvYjI1bFgyMWhlRjkzYVdSMGFDSTZOelkzZlE9PVwiIHN0cmV0Y2hfb2ZmPVwieWVzXCIgZmxleF9sYXlvdXQ9XCJleUpoYkd3aU9pSmliRzlqYXlJc0luQm9iMjVsSWpvaWNtOTNJbjA9XCIgZmxleF92ZXJ0X2FsaWduPVwiZXlKaGJHd2lPaUptYkdWNExYTjBZWEowSWl3aWNHaHZibVVpT2lKalpXNTBaWElpZlE9PVwiXVt2Y19jb2x1bW4gd2lkdGg9XCIxLzNcIiB0ZGNfY3NzPVwiZXlKd2FHOXVaU0k2ZXlKM2FXUjBhQ0k2SWpFMUpTSXNJbVJwYzNCc1lYa2lPaUpwYm14cGJtVXRZbXh2WTJzaWZTd2ljR2h2Ym1WZmJXRjRYM2RwWkhSb0lqbzNOamQ5XCIgdmVydGljYWxfYWxpZ249XCJcIl1bdGRiX21vYmlsZV9tZW51IGljb25fY29sb3I9XCIjMDAwMDAwXCIgaWNvbl9zaXplPVwiZXlKaGJHd2lPakl5TENKd2FHOXVaU0k2SWpJMkluMD1cIiBpY29uX3BhZGRpbmc9XCJleUpoYkd3aU9qSXVOU3dpY0dodmJtVWlPaUl4TGpraWZRPT1cIiBtZW51X2lkPVwiMTVcIiB0ZGNfY3NzPVwiZXlKd2FHOXVaU0k2ZXlKdFlYSm5hVzR0YkdWbWRDSTZJaTB4TWlJc0ltUnBjM0JzWVhraU9pSWlmU3dpY0dodmJtVmZiV0Y0WDNkcFpIUm9Jam8zTmpkOVwiIGljb25fY29sb3JfaD1cIiNlYzM1MzVcIl1bL3ZjX2NvbHVtbl1bdmNfY29sdW1uIHdpZHRoPVwiMS8zXCIgdGRjX2Nzcz1cImV5SndhRzl1WlNJNmV5SjNhV1IwYUNJNklqY3dKU0lzSW1ScGMzQnNZWGtpT2lKcGJteHBibVV0WW14dlkyc2lmU3dpY0dodmJtVmZiV0Y0WDNkcFpIUm9Jam8zTmpkOVwiIHZlcnRpY2FsX2FsaWduPVwiXCJdW3RkYl9oZWFkZXJfbG9nbyBhbGlnbl92ZXJ0PVwiY29udGVudC12ZXJ0LWNlbnRlclwiIHRleHQ9XCJvbmxpbmVpbmNzaG9wXCIgdGV4dF9jb2xvcl9oPVwiI2VjMzUzNVwiIHRhZ2xpbmVfYWxpZ25faG9yaXo9XCJjb250ZW50LWhvcml6LWxlZnRcIiB0YWdsaW5lX2FsaWduX3ZlcnQ9XCJjb250ZW50LXZlcnQtdG9wXCIgZl90ZXh0X2ZvbnRfd2VpZ2h0PVwiZXlKd2FHOXVaU0k2SWpZd01DSjlcIl1bL3ZjX2NvbHVtbl1bdmNfY29sdW1uIHdpZHRoPVwiMS8zXCIgdGRjX2Nzcz1cImV5SndhRzl1WlNJNmV5SjNhV1IwYUNJNklqRTFKU0lzSW1ScGMzQnNZWGtpT2lKcGJteHBibVV0WW14dlkyc2lmU3dpY0dodmJtVmZiV0Y0WDNkcFpIUm9Jam8zTmpkOVwiIHZlcnRpY2FsX2FsaWduPVwiXCJdW3RkYl9tb2JpbGVfc2VhcmNoIHRkY19jc3M9XCJleUp3YUc5dVpTSTZleUp0WVhKbmFXNHRjbWxuYUhRaU9pSXRNVFlpTENKdFlYSm5hVzR0WW05MGRHOXRJam9pTUNJc0ltUnBjM0JzWVhraU9pSWlmU3dpY0dodmJtVmZiV0Y0WDNkcFpIUm9Jam8zTmpkOVwiIGljb25fY29sb3I9XCIjMDAwMDAwXCIgdGRpY29uPVwidGQtaWNvbi1tYWduaWZpZXItbWVkaXVtLWxvbmdcIiBpY29uX3BhZGRpbmc9XCJleUpoYkd3aU9qSXVOU3dpY0dodmJtVWlPaUl5TGpJaWZRPT1cIiBpY29uX3NpemU9XCJleUpoYkd3aU9qSXlMQ0p3YUc5dVpTSTZJakl6SW4wPVwiIGljb25fY29sb3JfaD1cIiNlYzM1MzVcIiBhbGlnbl9ob3Jpej1cImNvbnRlbnQtaG9yaXotcmlnaHRcIl1bL3ZjX2NvbHVtbl1bL3ZjX3Jvd11bL3RkY196b25lXSIsInRkY19oZWFkZXJfbW9iaWxlX3N0aWNreSI6Ilt0ZGNfem9uZSB0eXBlPVwidGRjX2hlYWRlcl9tb2JpbGVfc3RpY2t5XCIgdGRjX2Nzcz1cImV5SndhRzl1WlNJNmV5SmthWE53YkdGNUlqb2lJbjBzSW5Cb2IyNWxYMjFoZUY5M2FXUjBhQ0k2TnpZM2ZRPT1cIiBtc190cmFuc2l0aW9uX2VmZmVjdD1cImV5SmhiR3dpT2lKdmNHRmphWFI1SWl3aWNHaHZibVVpT2lKemJHbGtaU0o5XCIgbXNfc3RpY2t5X3R5cGU9XCJcIiByb3dfYmdfZ3JhZGllbnQ9XCIjZmZmZmZmXCIgem9uZV9zaGFkb3dfc2hhZG93X3NpemU9XCJleUp3YUc5dVpTSTZJakV3SW4wPVwiIHpvbmVfc2hhZG93X3NoYWRvd19vZmZzZXRfdmVydGljYWw9XCJleUp3YUc5dVpTSTZJaklpZlE9PVwiIHpvbmVfc2hhZG93X3NoYWRvd19jb2xvcj1cInJnYmEoMCwwLDAsMC4wOSlcIl1bdmNfcm93IGNvbnRlbnRfYWxpZ25fdmVydGljYWw9XCJjb250ZW50LXZlcnQtdG9wXCIgZ2FwPVwiZXlKd2FHOXVaU0k2SWpBaWZRPT1cIiB0ZGNfY3NzPVwiZXlKd2FHOXVaU0k2ZXlKa2FYTndiR0Y1SWpvaUluMHNJbkJvYjI1bFgyMWhlRjkzYVdSMGFDSTZOelkzZlE9PVwiIHN0cmV0Y2hfb2ZmPVwieWVzXCIgZmxleF9sYXlvdXQ9XCJleUpoYkd3aU9pSmliRzlqYXlJc0luQm9iMjVsSWpvaWNtOTNJbjA9XCIgZmxleF92ZXJ0X2FsaWduPVwiZXlKaGJHd2lPaUptYkdWNExYTjBZWEowSWl3aWNHaHZibVVpT2lKalpXNTBaWElpZlE9PVwiXVt2Y19jb2x1bW4gd2lkdGg9XCIxLzNcIiB0ZGNfY3NzPVwiZXlKd2FHOXVaU0k2ZXlKM2FXUjBhQ0k2SWpFMUpTSXNJbVJwYzNCc1lYa2lPaUpwYm14cGJtVXRZbXh2WTJzaWZTd2ljR2h2Ym1WZmJXRjRYM2RwWkhSb0lqbzNOamQ5XCIgdmVydGljYWxfYWxpZ249XCJcIl1bdGRiX21vYmlsZV9tZW51IGljb25fY29sb3I9XCIjZjQzZjNmXCIgaWNvbl9zaXplPVwiZXlKaGJHd2lPakl5TENKd2FHOXVaU0k2SWpJMkluMD1cIiBpY29uX3BhZGRpbmc9XCJleUpoYkd3aU9qSXVOU3dpY0dodmJtVWlPaUl4TGpraWZRPT1cIiBtZW51X2lkPVwiMTVcIiB0ZGNfY3NzPVwiZXlKd2FHOXVaU0k2ZXlKdFlYSm5hVzR0YkdWbWRDSTZJaTB4TWlJc0ltUnBjM0JzWVhraU9pSWlmU3dpY0dodmJtVmZiV0Y0WDNkcFpIUm9Jam8zTmpkOVwiIGljb25fY29sb3JfaD1cIiNkZDMzMzNcIl1bL3ZjX2NvbHVtbl1bdmNfY29sdW1uIHdpZHRoPVwiMS8zXCIgdGRjX2Nzcz1cImV5SndhRzl1WlNJNmV5SjNhV1IwYUNJNklqY3dKU0lzSW1ScGMzQnNZWGtpT2lKcGJteHBibVV0WW14dlkyc2lmU3dpY0dodmJtVmZiV0Y0WDNkcFpIUm9Jam8zTmpkOVwiIHZlcnRpY2FsX2FsaWduPVwiXCJdW3RkYl9oZWFkZXJfbG9nbyBhbGlnbl92ZXJ0PVwiY29udGVudC12ZXJ0LXRvcFwiIGltYWdlX3dpZHRoPVwiZXlKd2IzSjBjbUZwZENJNklqRTRNQ0lzSW14aGJtUnpZMkZ3WlNJNklqSTJNQ0o5XCIgdGRjX2Nzcz1cImV5SmhiR3dpT25zaWVpMXBibVJsZUNJNklqQWlMQ0prYVhOd2JHRjVJam9pSW4wc0luQnZjblJ5WVdsMElqcDdJbkJoWkdScGJtY3RkRzl3SWpvaU1UQWlMQ0p3WVdSa2FXNW5MV0p2ZEhSdmJTSTZJakV3SWl3aVpHbHpjR3hoZVNJNklpSjlMQ0p3YjNKMGNtRnBkRjl0WVhoZmQybGtkR2dpT2pFd01UZ3NJbkJ2Y25SeVlXbDBYMjFwYmw5M2FXUjBhQ0k2TnpZNExDSnNZVzVrYzJOaGNHVWlPbnNpWkdsemNHeGhlU0k2SWlKOUxDSnNZVzVrYzJOaGNHVmZiV0Y0WDNkcFpIUm9Jam94TVRRd0xDSnNZVzVrYzJOaGNHVmZiV2x1WDNkcFpIUm9Jam94TURFNUxDSndhRzl1WlNJNmV5SndZV1JrYVc1bkxYUnZjQ0k2SWpZaUxDSndZV1JrYVc1bkxXSnZkSFJ2YlNJNklqRXdJaXdpY0dGa1pHbHVaeTFzWldaMElqb2lNVEFpTENKa2FYTndiR0Y1SWpvaUluMHNJbkJvYjI1bFgyMWhlRjkzYVdSMGFDSTZOelkzZlE9PVwiIHNob3dfaW1hZ2U9XCJub25lXCIgZl90ZXh0X2ZvbnRfZmFtaWx5PVwiNDU2XCIgZl90ZXh0X2ZvbnRfc2l6ZT1cImV5SmhiR3dpT2lJeE1EQWlMQ0pzWVc1a2MyTmhjR1VpT2lJM01DSXNJbkJ2Y25SeVlXbDBJam9pTkRVaUxDSndhRzl1WlNJNklqUXlJbjA9XCIgZl90ZXh0X2ZvbnRfbGluZV9oZWlnaHQ9XCIxLjJcIiBpY29uX2FsaWduPVwiZXlKaGJHd2lPaUl3SWl3aWNHOXlkSEpoYVhRaU9pSXpJbjA9XCIgdGV4dD1cIk5ld3NXZWVrXCIgZl90ZXh0X2ZvbnRfdHJhbnNmb3JtPVwiXCIgbWVkaWFfc2l6ZV9pbWFnZV9oZWlnaHQ9XCIzMjBcIiBtZWRpYV9zaXplX2ltYWdlX3dpZHRoPVwiODAwXCIgc2hvd190aXRsZT1cIlwiIHNob3dfdGFnbGluZT1cIlwiIHR0bF90YWdfc3BhY2U9XCIwXCIgc2hvd19pY29uPVwibm9uZVwiIHRleHRfY29sb3I9XCIjZWMzNTM1XCIgZl90ZXh0X2ZvbnRfd2VpZ2h0PVwiNzAwXCIgYWxpZ25faG9yaXo9XCJjb250ZW50LWhvcml6LWNlbnRlclwiIGZfdGV4dF9mb250X3N0eWxlPVwiaXRhbGljXCIgZl90ZXh0X2ZvbnRfc3BhY2luZz1cImV5SmhiR3dpT2lJdE5TSXNJbXhoYm1SelkyRndaU0k2SWkweklpd2ljRzl5ZEhKaGFYUWlPaUl0TWlJc0luQm9iMjVsSWpvaUxUSWlmUT09XCIgdGFnbGluZT1cIlVGSlBcIiB0YWdsaW5lX3Bvcz1cImlubGluZVwiIHRhZ2xpbmVfYWxpZ25fdmVydD1cImNvbnRlbnQtdmVydC10b3BcIiBmX3RhZ2xpbmVfZm9udF9saW5lX2hlaWdodD1cImV5SmhiR3dpT2lJMExqWWlMQ0pzWVc1a2MyTmhjR1VpT2lJekxqSWlMQ0p3YjNKMGNtRnBkQ0k2SWpJdU5TSXNJbkJvYjI1bElqb2lNaUo5XCIgZl90YWdsaW5lX2ZvbnRfZmFtaWx5PVwiNjUzXCIgZl90YWdsaW5lX2ZvbnRfd2VpZ2h0PVwiNTAwXCIgZl90YWdsaW5lX2ZvbnRfc3R5bGU9XCJpdGFsaWNcIiB0YWdsaW5lX2NvbG9yPVwiIzAwMDAwMFwiIGZfdGFnbGluZV9mb250X3NpemU9XCJleUpoYkd3aU9pSXhNaUlzSW5CdmNuUnlZV2wwSWpvaU1URWlMQ0p3YUc5dVpTSTZJakV3SW4wPVwiIGZfdGFnbGluZV9mb250X3NwYWNpbmc9XCJleUp3YjNKMGNtRnBkQ0k2SWpBaUxDSnNZVzVrYzJOaGNHVWlPaUl3TGpVaUxDSndhRzl1WlNJNklqQWlmUT09XCJdWy92Y19jb2x1bW5dW3ZjX2NvbHVtbiB3aWR0aD1cIjEvM1wiIHRkY19jc3M9XCJleUp3YUc5dVpTSTZleUozYVdSMGFDSTZJakUxSlNJc0ltUnBjM0JzWVhraU9pSnBibXhwYm1VdFlteHZZMnNpZlN3aWNHaHZibVZmYldGNFgzZHBaSFJvSWpvM05qZDlcIiB2ZXJ0aWNhbF9hbGlnbj1cIlwiXVt0ZGJfbW9iaWxlX3NlYXJjaCB0ZGNfY3NzPVwiZXlKd2FHOXVaU0k2ZXlKdFlYSm5hVzR0Y21sbmFIUWlPaUl0TVRRaUxDSnRZWEpuYVc0dFltOTBkRzl0SWpvaU1DSXNJbVJwYzNCc1lYa2lPaUlpZlN3aWNHaHZibVZmYldGNFgzZHBaSFJvSWpvM05qZDlcIiBpY29uX2NvbG9yPVwiI2Y0M2YzZlwiIHRkaWNvbj1cInRkLWljb24tbWFnbmlmaWVyLW1lZGl1bS1sb25nXCIgaWNvbl9wYWRkaW5nPVwiZXlKaGJHd2lPakl1TlN3aWNHaHZibVVpT2lJeUxqSWlmUT09XCIgaWNvbl9zaXplPVwiZXlKaGJHd2lPakl5TENKd2FHOXVaU0k2SWpJekluMD1cIiBpY29uX2NvbG9yX2g9XCIjZGQzMzMzXCIgYWxpZ25faG9yaXo9XCJjb250ZW50LWhvcml6LXJpZ2h0XCJdWy92Y19jb2x1bW5dWy92Y19yb3ddWy90ZGNfem9uZV0iLCJ0ZGNfaXNfaGVhZGVyX3N0aWNreSI6dHJ1ZSwidGRjX2lzX21vYmlsZV9oZWFkZXJfc3RpY2t5Ijp0cnVlfQ==\r\n', 'Header Template - Week PRO', '', 'publish', 'closed', 'closed', '', 'header-template-week-pro', '', '', '2024-07-12 07:39:55', '2024-07-12 07:39:55', '', 0, 'http://tdi_212_121', 0, 'tdb_templates', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(85, 9467, '2022-02-22 08:53:21', '2022-02-22 08:53:21', '[tdc_zone type=\"tdc_content\"][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjIyMCIsInBhZGRpbmctdG9wIjoiNjAiLCJiYWNrZ3JvdW5kLWNvbG9yIjoiI2Y0ZjRmNCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjE0MCIsInBhZGRpbmctdG9wIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiMTYwIiwicGFkZGluZy10b3AiOiI1MCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicGhvbmUiOnsicGFkZGluZy10b3AiOiI1MCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" flex_layout=\"eyJhbGwiOiJyb3ciLCJwaG9uZSI6ImNvbHVtbiJ9\" flex_vert_align=\"center\"][vc_column tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6Ii0xMzAiLCJkaXNwbGF5IjoiIn0sInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiIwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2NywibGFuZHNjYXBlIjp7Im1hcmdpbi1ib3R0b20iOiItMTAwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiLTcwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" width=\"1/3\"][tdb_author_image image_width=\"100%\" image_height=\"100%\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" overlay=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjMpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwKSIsInBlcmNlbnRhZ2UiOjMwfV0sImRlZ3JlZSI6IjAiLCJjc3MiOiJiYWNrZ3JvdW5kOiAtd2Via2l0LWxpbmVhci1ncmFkaWVudCgwZGVnLHJnYmEoMCwwLDAsMC4zKSxyZ2JhKDAsMCwwLDApIDMwJSxyZ2JhKDAsMCwwLDApKTtiYWNrZ3JvdW5kOiBsaW5lYXItZ3JhZGllbnQoMGRlZyxyZ2JhKDAsMCwwLDAuMykscmdiYSgwLDAsMCwwKSAzMCUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuMykscmdiYSgwLDAsMCwwKSAzMCUscmdiYSgwLDAsMCwwKSJ9\"][tdb_author_socials content_align_horizontal=\"content-horiz-center\" icons_border_radius=\"50\" name_space_left=\"0\" icons_padding=\"2.2\" icons_bg=\"#ffffff\" icons_color=\"#000000\" icons_h_color=\"#ec3535\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii02MCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsibWFyZ2luLXRvcCI6Ii00OCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwibGFuZHNjYXBlIjp7Im1hcmdpbi10b3AiOiItNTUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiI0OCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" icons_size=\"eyJhbGwiOjE2LCJsYW5kc2NhcGUiOiIxNSIsInBvcnRyYWl0IjoiMTQifQ==\" icons_spacing=\"eyJsYW5kc2NhcGUiOiIxMiIsInBvcnRyYWl0IjoiMTAifQ==\"][/vc_column][vc_column width=\"2/3\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6Ii0xMzAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiLTEwMCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6Ii03MCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6Ii0xMTAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][vc_row_inner tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjEyIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMTAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\"][vc_column_inner flex_layout=\"row\" flex_vert_align=\"center\"][tdb_title content_align_horizontal=\"content-horiz-left\" f_title_font_size=\"eyJhbGwiOiI0MiIsImxhbmRzY2FwZSI6IjM2IiwicGhvbmUiOiIzMCIsInBvcnRyYWl0IjoiMzAifQ==\" f_title_font_line_height=\"1\" f_title_font_weight=\"700\" f_title_font_family=\"456\" f_title_font_transform=\"none\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiMjAiLCJtYXJnaW4tYm90dG9tIjoiMCIsImRpc3BsYXkiOiJpbmxpbmUtYmxvY2sifSwicGhvbmUiOnsiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2NywibGFuZHNjYXBlIjp7ImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsibWFyZ2luLXJpZ2h0IjoiMTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" title_color=\"#000000\"][tdb_author_posts_count make_inline=\"yes\" content_align_horizontal=\"content-horiz-left\" count_padding=\"7px 10px\" f_count_font_family=\"653\" f_count_font_weight=\"500\" f_count_font_size=\"12\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6IjYiLCJtYXJnaW4tYm90dG9tIjoiMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsibWFyZ2luLXRvcCI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJtYXJnaW4tdG9wIjoiNCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicGhvbmUiOnsibWFyZ2luLXRvcCI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" count_color=\"#ffffff\" count_bg_color=\"#ec3535\" border_radius=\"2\"][/vc_column_inner][/vc_row_inner][tdb_author_description tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjMwIiwid2lkdGgiOiI4MCUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiMTUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi1ib3R0b20iOiIxMCIsIndpZHRoIjoiMTAwJSIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjIwIiwid2lkdGgiOiIxMDAlIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" f_descr_font_size=\"eyJhbGwiOiIxNyIsInBvcnRyYWl0IjoiMTQiLCJsYW5kc2NhcGUiOiIxNSIsInBob25lIjoiMTUifQ==\" f_descr_font_line_height=\"1.4\" f_descr_font_family=\"653\" descr_color=\"#000000\" content_align_horizontal=\"content-horiz-left\"][td_flex_block_1 modules_on_row=\"eyJhbGwiOiIzMy4zMzMzMzMzMyUiLCJwaG9uZSI6IjEwMCUifQ==\" limit=\"3\" modules_category=\"\" show_btn=\"none\" show_excerpt=\"none\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiIxNSIsImxhbmRzY2FwZSI6IjEzIiwicG9ydHJhaXQiOiIxMiJ9\" f_title_font_line_height=\"eyJhbGwiOiIxLjQiLCJsYW5kc2NhcGUiOiIxLjMifQ==\" show_cat=\"eyJsYW5kc2NhcGUiOiJub25lIiwicG9ydHJhaXQiOiJub25lIn0=\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIwIDE2cHggMCAwIiwibGFuZHNjYXBlIjoiMCAxMnB4IDAgMCIsInBvcnRyYWl0IjoiMCJ9\" modules_divider=\"\" image_size=\"\" meta_info_align=\"center\" image_floated=\"eyJhbGwiOiJmbG9hdF9yaWdodCIsInBvcnRyYWl0IjoiaGlkZGVuIn0=\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"600\" image_height=\"eyJhbGwiOiIxMDAiLCJwb3J0cmFpdCI6IjgwIn0=\" all_modules_space=\"eyJhbGwiOiIwIiwicG9ydHJhaXQiOiIwIiwicGhvbmUiOiIyMCJ9\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiIwIDAgNnB4IiwibGFuZHNjYXBlIjoiMCJ9\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"none\" show_author=\"none\" mc1_el=\"10\" f_title_font_family=\"456\" f_title_font_transform=\"undefined\" title_txt=\"#000000\" title_txt_hover=\"#f43f3f\" cat_txt=\"#ec3535\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" modules_category_padding=\"eyJhbGwiOiIycHggMCIsInBvcnRyYWl0IjoiMCIsImxhbmRzY2FwZSI6IjAifQ==\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEwIiwicG9ydHJhaXQiOiIxMCJ9\" f_cat_font_line_height=\"1\" modules_gap=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjEwIiwicG9ydHJhaXQiOiI2IiwicGhvbmUiOiIwIn0=\" modules_category_margin=\"eyJhbGwiOiIwIDVweCAwIDAiLCJwb3J0cmFpdCI6IjAiLCJsYW5kc2NhcGUiOiIwIn0=\" modules_cat_border=\"0\" modules_category_radius=\"eyJhbGwiOiJ1bmRlZmluZWQiLCJwb3J0cmFpdCI6IjIifQ==\" f_cat_font_style=\"undefined\" f_cat_font_spacing=\"-0.5\" cat_txt_hover=\"#000000\" image_width=\"30\" f_title_font_style=\"undefined\" excl_padd=\"3px 5px\" f_excl_font_family=\"653\" f_excl_font_transform=\"uppercase\" f_excl_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_weight=\"500\" f_excl_font_line_height=\"1\" f_excl_font_spacing=\"-0.5\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_margin=\"-4px 5px 0 0\" excl_radius=\"2\" locked_only=\"yes\" block_template_id=\"td_block_template_2\" custom_title=\"Exclusive articles:\" f_header_font_family=\"653\" f_header_font_size=\"eyJhbGwiOiIyMCIsInBvcnRyYWl0IjoiMTYiLCJsYW5kc2NhcGUiOiIxOCJ9\" f_header_font_line_height=\"1\" f_header_font_weight=\"700\" f_header_font_spacing=\"-1\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjEwMCIsImRpc3BsYXkiOiIifSwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2NywibGFuZHNjYXBlIjp7Im1hcmdpbi1ib3R0b20iOiI4MCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" flex_layout=\"block\" flex_vert_align=\"flex-start\"][vc_column width=\"3/4\" tdc_css=\"eyJsYW5kc2NhcGUiOnsid2lkdGgiOiI3MCUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7IndpZHRoIjoiNzAlIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][tdb_loop modules_on_row=\"\" modules_gap=\"0\" modules_category=\"\" show_excerpt=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" show_btn=\"none\" ajax_pagination=\"numbered\" hide_audio=\"yes\" meta_info_horiz=\"\" hide_image=\"\" image_width=\"eyJhbGwiOiI1MCIsInBob25lIjoiMTAwIn0=\" image_floated=\"eyJhbGwiOiJmbG9hdF9sZWZ0IiwicGhvbmUiOiJub19mbG9hdCJ9\" meta_padding=\"eyJhbGwiOiIwIDAgMCAyNXB4IiwicG9ydHJhaXQiOiIwIDAgMCAxNXB4IiwicGhvbmUiOiIyMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiMCAwIDAgMjBweCJ9\" image_radius=\"\" modules_category_margin=\"eyJhbGwiOiIwIDEycHggMCAwIiwicG9ydHJhaXQiOiIwIDhweCAwIDAiLCJsYW5kc2NhcGUiOiIwIDEwcHggMCAwIn0=\" show_author=\"eyJwb3J0cmFpdCI6ImlubGluZS1ibG9jayJ9\" show_date=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" show_review=\"none\" show_com=\"none\" meta_info_align=\"center\" modules_category_padding=\"5px 0\" art_title=\"eyJsYW5kc2NhcGUiOiIwIDAgMTBweCAwIiwicG9ydHJhaXQiOiIwIDAgOHB4IDAiLCJhbGwiOiIwIDAgMTJweCAwIn0=\" f_title_font_family=\"456\" f_title_font_size=\"eyJhbGwiOiIzMCIsImxhbmRzY2FwZSI6IjI0IiwicG9ydHJhaXQiOiIyMCIsInBob25lIjoiMjQifQ==\" f_title_font_line_height=\"1.1\" f_title_font_weight=\"600\" f_title_font_transform=\"\" title_txt=\"#000000\" title_txt_hover=\"#f43f3f\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTIifQ==\" f_cat_font_line_height=\"1\" f_cat_font_weight=\"600\" f_cat_font_transform=\"uppercase\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" pag_border_width=\"0\" pag_text=\"#000000\" pag_h_text=\"#ffffff\" pag_a_text=\"#ffffff\" pag_bg=\"rgba(255,255,255,0)\" pag_h_bg=\"#ec3535\" pag_a_bg=\"#ec3535\" f_pag_font_family=\"653\" f_pag_font_size=\"13\" limit=\"5\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\" pag_space=\"40\" all_modules_space=\"eyJwaG9uZSI6IjQwIiwiYWxsIjoiNDAiLCJsYW5kc2NhcGUiOiIzMCIsInBvcnRyYWl0IjoiMjAifQ==\" offset=\"3\" show_cat=\"\" image_height=\"70\" f_pag_font_weight=\"500\" art_excerpt=\"eyJhbGwiOiIxMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiNnB4IDAgMCAwIiwicG9ydHJhaXQiOiIwIn0=\" f_ex_font_family=\"653\" f_ex_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTQiLCJsYW5kc2NhcGUiOiIxNSIsInBob25lIjoiMTUifQ==\" f_ex_font_line_height=\"1.4\" f_ex_font_style=\"undefined\" f_ex_font_weight=\"500\" f_ex_font_transform=\"undefined\" f_ex_font_spacing=\"undefined\" ex_txt=\"#000000\" f_title_font_style=\"undefined\" f_title_font_spacing=\"undefined\" author_photo_size=\"undefined\" author_photo_space=\"undefined\" author_photo_radius=\"100%\" review_size=\"eyJhbGwiOiIyLjUiLCJwb3J0cmFpdCI6IjAifQ==\" f_meta_font_family=\"653\" f_meta_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta_font_line_height=\"1\" f_meta_font_style=\"undefined\" f_meta_font_weight=\"500\" f_meta_font_transform=\"capitalize\" f_meta_font_spacing=\"-0.5\" author_txt=\"#000000\" author_txt_hover=\"#ec3535\" f_cat_font_spacing=\"undefined\" modules_cat_border=\"0\" modules_category_radius=\"2\" f_cat_font_style=\"undefined\" cat_txt=\"#000000\" cat_txt_hover=\"#ec3535\" date_txt=\"#000000\" excl_margin=\"-4px 10px 0 0\" excl_padd=\"4px 6px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" author_photo=\"yes\"][/vc_column][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsid2lkdGgiOiIzMCUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7IndpZHRoIjoiMzAlIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" is_sticky=\"yes\"][tdm_block_inline_text description=\"QnJlYWtpbmc=\" display_inline=\"yes\" f_descr_font_family=\"456\" f_descr_font_size=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE4IiwicG9ydHJhaXQiOiIxNiJ9\" f_descr_font_weight=\"700\" f_descr_font_style=\"italic\" description_color=\"#ffffff\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWxlZnQiOiIyMCIsInBhZGRpbmctdG9wIjoiOCIsInBhZGRpbmctcmlnaHQiOiIxNiIsInBhZGRpbmctYm90dG9tIjoiMTAiLCJwYWRkaW5nLWxlZnQiOiIxNCIsImJhY2tncm91bmQtY29sb3IiOiIjZWMzNTM1Iiwiei1pbmRleCI6IjEiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJtYXJnaW4tbGVmdCI6IjE1IiwicGFkZGluZy10b3AiOiI2IiwicGFkZGluZy1yaWdodCI6IjE0IiwicGFkZGluZy1ib3R0b20iOiI4IiwicGFkZGluZy1sZWZ0IjoiMTIiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi1sZWZ0IjoiMTAiLCJwYWRkaW5nLXRvcCI6IjQiLCJwYWRkaW5nLXJpZ2h0IjoiMTIiLCJwYWRkaW5nLWJvdHRvbSI6IjYiLCJwYWRkaW5nLWxlZnQiOiIxMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=\" f_descr_font_spacing=\"0.5\"][td_flex_block_2 modules_on_row=\"\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"none\" ajax_pagination=\"next_prev\" f_title_font_size=\"eyJhbGwiOiIyMCIsInBvcnRyYWl0IjoiMTYiLCJwaG9uZSI6IjMwIiwibGFuZHNjYXBlIjoiMTgifQ==\" f_title_font_line_height=\"1\" show_cat=\"none\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIwIDE1cHggMjBweCAxOHB4IiwibGFuZHNjYXBlIjoiMCAxMHB4IDE1cHggMTJweCIsInBvcnRyYWl0IjoiMCA1cHggMTVweCAxMHB4IiwicGhvbmUiOiIwIDIwcHggMjBweCJ9\" modules_divider=\"\" image_size=\"td_696x0\" meta_info_align=\"bottom\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0yNCIsIm1hcmdpbi1ib3R0b20iOiIyNSIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi10b3AiOiItMjAiLCJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi10b3AiOiItMTYiLCJtYXJnaW4tYm90dG9tIjoiMTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"700\" image_height=\"eyJhbGwiOiIxMDAiLCJwb3J0cmFpdCI6IjE0MCJ9\" all_modules_space=\"0\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiIxNnB4IDAgMTJweCAwIiwibGFuZHNjYXBlIjoiMTJweCAwIDhweCAwIiwicG9ydHJhaXQiOiIxMHB4IDAgNnB4IDAiLCJwaG9uZSI6IjEycHggMCAxMHB4IDAifQ==\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"\" show_author=\"eyJsYW5kc2NhcGUiOiJub25lIiwicG9ydHJhaXQiOiJub25lIn0=\" mc1_el=\"10\" f_title_font_family=\"653\" f_title_font_transform=\"\" title_txt=\"#ffffff\" title_txt_hover=\"rgba(255,255,255,0.8)\" ex_txt=\"#ffffff\" cat_txt=\"#ffffff\" cat_bg=\"#ec3535\" cat_bg_hover=\"#000000\" author_txt=\"#ffffff\" modules_category_padding=\"eyJhbGwiOiI1cHggOHB4IiwicG9ydHJhaXQiOiI0cHggNnB4In0=\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTIiLCJwaG9uZSI6IjEyIn0=\" f_cat_font_line_height=\"1\" excerpt_middle=\"yes\" cat_txt_hover=\"#ffffff\" modules_gap=\"0\" modules_space=\"0\" modules_height=\"eyJwb3J0cmFpdCI6IjI4MCIsImFsbCI6IjQyMCIsImxhbmRzY2FwZSI6IjM0MCIsInBob25lIjoiNDUwIn0=\" image_margin=\"0\" color_overlay=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\" mc2_el=\"26\" modules_category_radius=\"2\" excl_padd=\"5px 8px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" pag_border_width=\"0\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"20\" pag_border_radius=\"2\" pag_padding=\"0\" excl_show=\"none\" author_txt_hover=\"rgba(255,255,255,0.8)\" date_txt=\"#ffffff\" f_meta_font_family=\"653\" f_meta_font_transform=\"capitalize\" f_meta_font_weight=\"500\" f_meta_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta_font_line_height=\"1.2\" block_template_id=\"td_block_template_2\" category_id=\"\" sort=\"\" td_ajax_preloading=\"\" limit=\"1\"][td_flex_block_1 modules_on_row=\"\" image_size=\"\" image_floated=\"hidden\" image_width=\"eyJwaG9uZSI6IjMwIn0=\" image_height=\"eyJwaG9uZSI6IjExMCJ9\" show_btn=\"none\" show_excerpt=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_com=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_author=\"none\" show_cat=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" meta_padding=\"0\" f_title_font_size=\"eyJhbGwiOiIxNCIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMyJ9\" f_title_font_line_height=\"eyJhbGwiOiIxLjQiLCJsYW5kc2NhcGUiOiIxLjMifQ==\" f_title_font_weight=\"600\" all_modules_space=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjYiLCJwb3J0cmFpdCI6IjUifQ==\" category_id=\"\" show_date=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" art_excerpt=\"0\" show_review=\"none\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJtYXJnaW4tdG9wIjoiLTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3NjcsImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\" f_title_font_family=\"456\" mc1_el=\"10\" title_txt_hover=\"#f43f3f\" title_txt=\"#000000\" art_title=\"eyJhbGwiOiIwIDAgMTBweCIsInBvcnRyYWl0IjoiMCIsImxhbmRzY2FwZSI6IjAgMCA2cHgifQ==\" modules_border_size=\"0 0 1px 0\" m_padding=\"eyJhbGwiOiIwIDAgMTVweCIsImxhbmRzY2FwZSI6IjAgMCAxMHB4IiwicG9ydHJhaXQiOiIwIDAgOHB4In0=\" modules_gap=\"0\" f_meta_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTAiLCJsYW5kc2NhcGUiOiIxMSJ9\" f_meta_font_line_height=\"1\" f_meta_font_weight=\"500\" f_meta_font_family=\"653\" modules_cat_border=\"0\" modules_category_padding=\"eyJhbGwiOiIycHggMCIsInBvcnRyYWl0IjoiMCJ9\" f_cat_font_family=\"653\" f_cat_font_transform=\"uppercase\" f_cat_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIn0=\" f_cat_font_weight=\"600\" f_cat_font_line_height=\"1\" f_meta_font_spacing=\"-0.5\" f_cat_font_spacing=\"-0.5\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" cat_txt=\"#ec3535\" cat_txt_hover=\"#000000\" modules_category_margin=\"eyJhbGwiOiIwIDVweCAwIDAiLCJwb3J0cmFpdCI6IjAifQ==\" ajax_pagination=\"next_prev\" pag_border_width=\"0\" pag_space=\"eyJhbGwiOiIxNSIsImxhbmRzY2FwZSI6IjEwIiwicG9ydHJhaXQiOiI1In0=\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"eyJhbGwiOiIyMiIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxOCJ9\" pag_text=\"#000000\" pag_h_text=\"#ec3535\" pag_bg=\"rgba(255,255,255,0)\" pag_h_bg=\"rgba(255,255,255,0)\" f_excl_font_family=\"653\" f_excl_font_transform=\"uppercase\" f_excl_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_weight=\"500\" f_excl_font_line_height=\"1\" f_excl_font_spacing=\"-0.5\" excl_padd=\"3px 5px\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" excl_radius=\"2\" excl_margin=\"-4px 5px 0 0\" excl_show=\"\" offset=\"1\" date_txt=\"#000000\" limit=\"4\" sort=\"\"][td_block_ad_box spot_img_horiz=\"content-horiz-center\" media_size_image_height=\"848\" media_size_image_width=\"624\" spot_img_all=\"23\" spot_img_mob=\"24\" spot_url=\"https://themeforest.net/item/newspaper/5489609\" spot_url_rel=\"noopener\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjM1IiwiZGlzcGxheSI6IiJ9fQ==\"][/vc_column][/vc_row][/tdc_zone]\r\n', 'Author Template - Week PRO', '', 'publish', 'closed', 'closed', '', 'author-template-week-pro', '', '', '2022-02-22 08:53:21', '2022-02-22 08:53:21', '', 0, 'http://tdi_213_06a', 0, 'tdb_templates', '', 0),
(86, 9467, '2022-02-22 08:53:21', '2022-02-22 08:53:21', '[tdc_zone type=\"tdc_content\"][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjE4MCIsInBhZGRpbmctdG9wIjoiNjAiLCJiYWNrZ3JvdW5kLWNvbG9yIjoiI2Y0ZjRmNCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjEwMCIsInBhZGRpbmctdG9wIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiMTQwIiwicGFkZGluZy10b3AiOiI1MCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwicGFkZGluZy10b3AiOiI1MCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\"][vc_column tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6Ii0xMDAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiLTgwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiLTYwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiLTgwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\"][tdb_title content_align_horizontal=\"content-horiz-center\" f_title_font_size=\"eyJhbGwiOiI0MiIsImxhbmRzY2FwZSI6IjM2IiwicGhvbmUiOiIzMCIsInBvcnRyYWl0IjoiMzIifQ==\" f_title_font_line_height=\"1\" f_title_font_weight=\"700\" f_title_font_family=\"456\" f_title_font_transform=\"none\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjMwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjI1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" title_color=\"#000000\"][tdb_category_sibling_categories show_background_color=\"\" content_align_horizontal=\"content-horiz-center\" cat_padding=\"0\" cat_space=\"0 14px 0 0\" cat_border=\"0\" tdb_sibling_categories_limit=\"6\" bg_color=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDI1NSwyNTUsMjU1LDApIiwiY29sb3IyIjoicmdiYSgyNTUsMjU1LDI1NSwwKSIsIm1peGVkQ29sb3JzIjpbXSwiZGVncmVlIjoiLTkwIiwiY3NzIjoiYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyNTUsMjU1LDI1NSwwKTsiLCJjc3NQYXJhbXMiOiIwZGVnLHJnYmEoMjU1LDI1NSwyNTUsMCkscmdiYSgyNTUsMjU1LDI1NSwwKSJ9\" bg_hover_color=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDI1NSwyNTUsMjU1LDApIiwiY29sb3IyIjoicmdiYSgyNTUsMjU1LDI1NSwwKSIsIm1peGVkQ29sb3JzIjpbXSwiZGVncmVlIjoiLTkwIiwiY3NzIjoiYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyNTUsMjU1LDI1NSwwKTsiLCJjc3NQYXJhbXMiOiIwZGVnLHJnYmEoMjU1LDI1NSwyNTUsMCkscmdiYSgyNTUsMjU1LDI1NSwwKSJ9\" active_bg_color=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDI1NSwyNTUsMjU1LDApIiwiY29sb3IyIjoicmdiYSgyNTUsMjU1LDI1NSwwKSIsIm1peGVkQ29sb3JzIjpbXSwiZGVncmVlIjoiLTkwIiwiY3NzIjoiYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyNTUsMjU1LDI1NSwwKTsiLCJjc3NQYXJhbXMiOiIwZGVnLHJnYmEoMjU1LDI1NSwyNTUsMCkscmdiYSgyNTUsMjU1LDI1NSwwKSJ9\" text_color=\"#000000\" text_hover_color=\"#ec3535\" active_color=\"#ec3535\" f_cats_font_family=\"653\" f_list_font_family=\"653\" f_cats_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTMiLCJsYW5kc2NhcGUiOiIxNCIsInBob25lIjoiMTMifQ==\" f_cats_font_line_height=\"1.2\" f_cats_font_weight=\"600\" f_cats_font_transform=\"uppercase\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjUwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiIzMCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" btn_border_size=\"eyJwaG9uZSI6IjAifQ==\" f_list_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTMiLCJsYW5kc2NhcGUiOiIxNCIsInBob25lIjoiMTMifQ==\" f_list_font_transform=\"uppercase\" f_list_font_line_height=\"1.2\" f_list_font_weight=\"600\" btn_icon_align=\"eyJhbGwiOjAsInBob25lIjoiLTMifQ==\" list_border=\"eyJhbGwiOjEsInBob25lIjoiMCJ9\" btn_icon_size=\"eyJhbGwiOjEwLCJwaG9uZSI6IjgifQ==\" btn_txt=\"#ffffff\" btn_h_txt=\"#ffffff\"][td_block_big_grid_flex_1 grid_layout=\"4\" image_height=\"120\" image_zoom=\"yes\" meta_info_vert=\"content-vert-bottom\" modules_category=\"above\" overlay_general=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwKSIsInBlcmNlbnRhZ2UiOjQxfV0sImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMCkgNDElLHJnYmEoMCwwLDAsMCkpO2JhY2tncm91bmQ6IGxpbmVhci1ncmFkaWVudCgwZGVnLHJnYmEoMCwwLDAsMC44KSxyZ2JhKDAsMCwwLDApIDQxJSxyZ2JhKDAsMCwwLDApKTsiLCJjc3NQYXJhbXMiOiIwZGVnLHJnYmEoMCwwLDAsMC44KSxyZ2JhKDAsMCwwLDApIDQxJSxyZ2JhKDAsMCwwLDApIn0=\" cat_bg_hover=\"#ec3535\" review_stars=\"#fff\" f_title_font_size=\"eyJwb3J0cmFpdCI6IjE0IiwiYWxsIjoiMjIiLCJwaG9uZSI6IjI0IiwibGFuZHNjYXBlIjoiMTYifQ==\" f_title_font_line_height=\"1.1\" modules_gap=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjEwIiwicG9ydHJhaXQiOiI1In0=\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJib3JkZXItY29sb3IiOiIjZGRkZGRkIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" meta_padding=\"eyJhbGwiOiIwIDE1cHggMTVweCAyMHB4IiwibGFuZHNjYXBlIjoiMCAxMHB4IDEwcHggMTJweCIsInBvcnRyYWl0IjoiMCA4cHggOHB4IDEwcHgifQ==\" f_title_font_family=\"653\" f_title_font_weight=\"700\" art_title=\"eyJhbGwiOiIxMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiNnB4IDAgMCAwIiwicG9ydHJhaXQiOiI0cHggMCAwIDAifQ==\" modules_category_padding=\"eyJhbGwiOiI0cHggOHB4IiwibGFuZHNjYXBlIjoiM3B4IDZweCJ9\" show_author=\"none\" show_date=\"none\" f_cat_font_family=\"653\" f_cat_font_transform=\"uppercase\" f_cat_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTEifQ==\" f_cat_font_line_height=\"1.2\" f_cat_font_weight=\"600\" title_txt=\"#ffffff\" title_txt_hover=\"#ffffff\" all_underline_color=\"\" title_shadow=\"yes\" cat_bg=\"#ec3535\" cat_txt=\"#ffffff\" cat_txt_hover=\"#ffffff\" modules_category_radius=\"2\" category_id=\"\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjEwMCIsImRpc3BsYXkiOiIifSwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2NywibGFuZHNjYXBlIjp7Im1hcmdpbi1ib3R0b20iOiI4MCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" flex_layout=\"block\" flex_vert_align=\"flex-start\"][vc_column width=\"3/4\" tdc_css=\"eyJsYW5kc2NhcGUiOnsid2lkdGgiOiI3MCUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7IndpZHRoIjoiNzAlIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][tdb_loop modules_on_row=\"\" modules_gap=\"0\" modules_category=\"\" show_excerpt=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" show_btn=\"none\" ajax_pagination=\"numbered\" hide_audio=\"yes\" meta_info_horiz=\"\" hide_image=\"\" image_width=\"eyJhbGwiOiI1MCIsInBob25lIjoiMTAwIn0=\" image_floated=\"eyJhbGwiOiJmbG9hdF9sZWZ0IiwicGhvbmUiOiJub19mbG9hdCJ9\" meta_padding=\"eyJhbGwiOiIwIDAgMCAyNXB4IiwicG9ydHJhaXQiOiIwIDAgMCAxNXB4IiwicGhvbmUiOiIyMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiMCAwIDAgMjBweCJ9\" image_radius=\"\" modules_category_margin=\"eyJhbGwiOiIwIDEycHggMCAwIiwicG9ydHJhaXQiOiIwIDhweCAwIDAiLCJsYW5kc2NhcGUiOiIwIDEwcHggMCAwIn0=\" show_author=\"eyJwb3J0cmFpdCI6ImlubGluZS1ibG9jayJ9\" show_date=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" show_review=\"none\" show_com=\"none\" meta_info_align=\"center\" modules_category_padding=\"5px 0\" art_title=\"eyJsYW5kc2NhcGUiOiIwIDAgMTBweCAwIiwicG9ydHJhaXQiOiIwIDAgOHB4IDAiLCJhbGwiOiIwIDAgMTJweCAwIn0=\" f_title_font_family=\"456\" f_title_font_size=\"eyJhbGwiOiIzMCIsImxhbmRzY2FwZSI6IjI0IiwicG9ydHJhaXQiOiIyMCIsInBob25lIjoiMjQifQ==\" f_title_font_line_height=\"1.1\" f_title_font_weight=\"600\" f_title_font_transform=\"\" title_txt=\"#000000\" title_txt_hover=\"#f43f3f\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTIifQ==\" f_cat_font_line_height=\"1\" f_cat_font_weight=\"600\" f_cat_font_transform=\"uppercase\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" pag_border_width=\"0\" pag_text=\"#000000\" pag_h_text=\"#ffffff\" pag_a_text=\"#ffffff\" pag_bg=\"rgba(255,255,255,0)\" pag_h_bg=\"#ec3535\" pag_a_bg=\"#ec3535\" f_pag_font_family=\"653\" f_pag_font_size=\"13\" limit=\"5\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\" pag_space=\"40\" all_modules_space=\"eyJwaG9uZSI6IjQwIiwiYWxsIjoiNDAiLCJsYW5kc2NhcGUiOiIzMCIsInBvcnRyYWl0IjoiMjAifQ==\" offset=\"4\" show_cat=\"\" image_height=\"70\" f_pag_font_weight=\"500\" art_excerpt=\"eyJhbGwiOiIxMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiNnB4IDAgMCAwIiwicG9ydHJhaXQiOiIwIn0=\" f_ex_font_family=\"653\" f_ex_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTQiLCJsYW5kc2NhcGUiOiIxNSIsInBob25lIjoiMTUifQ==\" f_ex_font_line_height=\"1.4\" f_ex_font_style=\"undefined\" f_ex_font_weight=\"500\" f_ex_font_transform=\"undefined\" f_ex_font_spacing=\"undefined\" ex_txt=\"#000000\" f_title_font_style=\"undefined\" f_title_font_spacing=\"undefined\" author_photo_size=\"undefined\" author_photo_space=\"undefined\" author_photo_radius=\"100%\" review_size=\"eyJhbGwiOiIyLjUiLCJwb3J0cmFpdCI6IjAifQ==\" f_meta_font_family=\"653\" f_meta_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta_font_line_height=\"1\" f_meta_font_style=\"undefined\" f_meta_font_weight=\"500\" f_meta_font_transform=\"capitalize\" f_meta_font_spacing=\"-0.5\" author_txt=\"#000000\" author_txt_hover=\"#ec3535\" f_cat_font_spacing=\"undefined\" modules_cat_border=\"0\" modules_category_radius=\"2\" f_cat_font_style=\"undefined\" cat_txt=\"#000000\" cat_txt_hover=\"#ec3535\" date_txt=\"#000000\" excl_margin=\"-4px 10px 0 0\" excl_padd=\"4px 6px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" author_photo=\"yes\"][/vc_column][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsid2lkdGgiOiIzMCUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7IndpZHRoIjoiMzAlIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" is_sticky=\"yes\"][tdm_block_inline_text description=\"UG9wdWxhcg==\" display_inline=\"yes\" f_descr_font_family=\"456\" f_descr_font_size=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE4IiwicG9ydHJhaXQiOiIxNiJ9\" f_descr_font_weight=\"700\" f_descr_font_style=\"italic\" description_color=\"#ffffff\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWxlZnQiOiIyMCIsInBhZGRpbmctdG9wIjoiOCIsInBhZGRpbmctcmlnaHQiOiIxNiIsInBhZGRpbmctYm90dG9tIjoiMTAiLCJwYWRkaW5nLWxlZnQiOiIxNCIsImJhY2tncm91bmQtY29sb3IiOiIjZWMzNTM1Iiwiei1pbmRleCI6IjEiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJtYXJnaW4tbGVmdCI6IjE1IiwicGFkZGluZy10b3AiOiI2IiwicGFkZGluZy1yaWdodCI6IjE0IiwicGFkZGluZy1ib3R0b20iOiI4IiwicGFkZGluZy1sZWZ0IjoiMTIiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi1sZWZ0IjoiMTAiLCJwYWRkaW5nLXRvcCI6IjQiLCJwYWRkaW5nLXJpZ2h0IjoiMTIiLCJwYWRkaW5nLWJvdHRvbSI6IjYiLCJwYWRkaW5nLWxlZnQiOiIxMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=\" f_descr_font_spacing=\"0.5\"][td_flex_block_2 modules_on_row=\"\" limit=\"1\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"none\" ajax_pagination=\"next_prev\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiIyMCIsInBvcnRyYWl0IjoiMTYiLCJwaG9uZSI6IjMwIiwibGFuZHNjYXBlIjoiMTgifQ==\" f_title_font_line_height=\"1\" show_cat=\"none\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIwIDE1cHggMjBweCAxOHB4IiwibGFuZHNjYXBlIjoiMCAxMHB4IDE1cHggMTJweCIsInBvcnRyYWl0IjoiMCA1cHggMTVweCAxMHB4IiwicGhvbmUiOiIwIDIwcHggMjBweCJ9\" modules_divider=\"\" image_size=\"td_696x0\" meta_info_align=\"bottom\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0yNCIsIm1hcmdpbi1ib3R0b20iOiI0MCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi10b3AiOiItMjAiLCJtYXJnaW4tYm90dG9tIjoiMzUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi10b3AiOiItMTYiLCJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"700\" image_height=\"eyJhbGwiOiIxMDAiLCJwb3J0cmFpdCI6IjE0MCJ9\" all_modules_space=\"0\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiIxNnB4IDAgMTJweCAwIiwibGFuZHNjYXBlIjoiMTJweCAwIDhweCAwIiwicG9ydHJhaXQiOiIxMHB4IDAgNnB4IDAiLCJwaG9uZSI6IjEycHggMCAxMHB4IDAifQ==\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"\" show_author=\"eyJsYW5kc2NhcGUiOiJub25lIiwicG9ydHJhaXQiOiJub25lIn0=\" mc1_el=\"10\" f_title_font_family=\"653\" f_title_font_transform=\"\" title_txt=\"#ffffff\" title_txt_hover=\"rgba(255,255,255,0.8)\" ex_txt=\"#ffffff\" cat_txt=\"#ffffff\" cat_bg=\"#ec3535\" cat_bg_hover=\"#000000\" author_txt=\"#ffffff\" modules_category_padding=\"eyJhbGwiOiI1cHggOHB4IiwicG9ydHJhaXQiOiI0cHggNnB4In0=\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTIiLCJwaG9uZSI6IjEyIn0=\" f_cat_font_line_height=\"1\" excerpt_middle=\"yes\" cat_txt_hover=\"#ffffff\" modules_gap=\"0\" modules_space=\"0\" modules_height=\"eyJwb3J0cmFpdCI6IjI4MCIsImFsbCI6IjQyMCIsImxhbmRzY2FwZSI6IjM0MCIsInBob25lIjoiNDUwIn0=\" image_margin=\"0\" color_overlay=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\" mc2_el=\"26\" modules_category_radius=\"2\" excl_padd=\"5px 8px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" pag_border_width=\"0\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"20\" pag_border_radius=\"2\" pag_padding=\"0\" excl_show=\"none\" author_txt_hover=\"rgba(255,255,255,0.8)\" date_txt=\"#ffffff\" f_meta_font_family=\"653\" f_meta_font_transform=\"capitalize\" f_meta_font_weight=\"500\" f_meta_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta_font_line_height=\"1.2\" block_template_id=\"td_block_template_2\"][tds_leads title_text=\"Subscribe\" input_placeholder=\"Email address\" btn_horiz_align=\"content-horiz-center\" pp_checkbox=\"yes\" pp_msg=\"SSd2ZSUyMHJlYWQlMjBhbmQlMjBhY2NlcHQlMjB0aGUlMjAlM0NhJTIwaHJlZiUzRCUyMiUyMyUyMiUzRVByaXZhY3klMjBQb2xpY3klM0MlMkZhJTNFLg==\" f_title_font_family=\"653\" f_title_font_size=\"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIyMiJ9\" f_title_font_line_height=\"1\" f_title_font_weight=\"700\" f_title_font_spacing=\"-1\" msg_composer=\"success\" display=\"column\" gap=\"10\" input_padd=\"eyJhbGwiOiIxNXB4IDEwcHgiLCJsYW5kc2NhcGUiOiIxMnB4IDhweCIsInBvcnRyYWl0IjoiMTBweCA2cHgifQ==\" input_border=\"1\" btn_text=\"I want in\" btn_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" btn_icon_size=\"eyJhbGwiOiIxOSIsImxhbmRzY2FwZSI6IjE3IiwicG9ydHJhaXQiOiIxNSJ9\" btn_icon_space=\"eyJhbGwiOiI1IiwicG9ydHJhaXQiOiIzIn0=\" btn_radius=\"3\" input_radius=\"3\" f_msg_font_family=\"653\" f_msg_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_msg_font_weight=\"600\" f_msg_font_line_height=\"1.4\" f_input_font_family=\"653\" f_input_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjEzIiwicG9ydHJhaXQiOiIxMiJ9\" f_input_font_line_height=\"1.2\" f_btn_font_family=\"653\" f_input_font_weight=\"500\" f_btn_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSJ9\" f_btn_font_line_height=\"1.2\" f_btn_font_weight=\"700\" f_pp_font_family=\"653\" f_pp_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSJ9\" f_pp_font_line_height=\"1.2\" pp_check_color=\"#000000\" pp_check_color_a=\"#ec3535\" pp_check_color_a_h=\"#c11f1f\" f_btn_font_transform=\"uppercase\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjM1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" msg_succ_radius=\"2\" btn_bg=\"#ec3535\" btn_bg_h=\"#c11f1f\" title_space=\"eyJwb3J0cmFpdCI6IjEyIiwibGFuZHNjYXBlIjoiMTQiLCJhbGwiOiIxOCJ9\" msg_space=\"eyJsYW5kc2NhcGUiOiIwIDAgMTJweCJ9\" btn_padd=\"eyJsYW5kc2NhcGUiOiIxMiIsInBvcnRyYWl0IjoiMTBweCJ9\" msg_padd=\"eyJwb3J0cmFpdCI6IjZweCAxMHB4In0=\"][td_block_ad_box spot_img_horiz=\"content-horiz-center\" media_size_image_height=\"848\" media_size_image_width=\"624\" spot_img_all=\"23\" spot_img_mob=\"24\" spot_url=\"https://themeforest.net/item/newspaper/5489609\" spot_url_rel=\"noopener\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwibGFuZHNjYXBlIjp7ImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOX0=\"][/vc_column][/vc_row][/tdc_zone]\r\n', 'Category Template - Week PRO', '', 'publish', 'closed', 'closed', '', 'category-template-week-pro', '', '', '2022-08-16 09:34:45', '2022-08-16 09:34:45', '', 0, 'http://tdi_238_1f7', 0, 'tdb_templates', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(87, 9467, '2022-02-22 08:53:21', '2022-02-22 08:53:21', '[tdc_zone type=\"tdc_content\"][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI2MCIsInBhZGRpbmctYm90dG9tIjoiODAiLCJiYWNrZ3JvdW5kLWNvbG9yIjoiI2Y0ZjRmNCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsicGFkZGluZy10b3AiOiI0MCIsInBhZGRpbmctYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJwYWRkaW5nLXRvcCI6IjUwIiwicGFkZGluZy1ib3R0b20iOiI2MCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicGhvbmUiOnsicGFkZGluZy10b3AiOiI1MCIsInBhZGRpbmctYm90dG9tIjoiNTAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][vc_column][tdb_title content_align_horizontal=\"content-horiz-center\" f_title_font_size=\"eyJhbGwiOiI0MiIsImxhbmRzY2FwZSI6IjM2IiwicGhvbmUiOiIzMCIsInBvcnRyYWl0IjoiMzIifQ==\" f_title_font_line_height=\"1\" f_title_font_weight=\"700\" f_title_font_family=\"456\" f_title_font_transform=\"none\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjMwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjI1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" title_color=\"#000000\" add_text=\"Tag: \"][tdb_search_form f_input_font_family=\"653\" f_placeholder_font_family=\"653\" f_btn_font_family=\"653\" f_msg_font_family=\"653\" f_btn_font_line_height=\"eyJhbGwiOiIyIiwicG9ydHJhaXQiOiIxLjYifQ==\" btn_bg=\"#ec3535\" btn_bg_h=\"#c11f1f\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiYXV0byIsIm1hcmdpbi1ib3R0b20iOiIwIiwibWFyZ2luLWxlZnQiOiJhdXRvIiwid2lkdGgiOiI3MCUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7IndpZHRoIjoiODElIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJ3aWR0aCI6IjEwMCUiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" content_align_horizontal=\"content-horiz-center\" f_btn_font_transform=\"uppercase\" f_msg_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjEzIn0=\" f_msg_font_line_height=\"1.4\" f_input_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjEzIn0=\" f_placeholder_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjEzIn0=\" f_btn_font_size=\"eyJwaG9uZSI6IjEyIn0=\" f_btn_font_weight=\"700\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiYm9yZGVyLWJvdHRvbS13aWR0aCI6IjEiLCJwYWRkaW5nLXRvcCI6IjMwIiwicGFkZGluZy1yaWdodCI6IjYwIiwicGFkZGluZy1ib3R0b20iOiI1MCIsInBhZGRpbmctbGVmdCI6IjYwIiwiYm9yZGVyLWNvbG9yIjoiI2VhZWFlYSIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi1ib3R0b20iOiI1MCIsInBhZGRpbmctdG9wIjoiMjUiLCJwYWRkaW5nLWJvdHRvbSI6IjQ1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJwYWRkaW5nLXRvcCI6IjIwIiwicGFkZGluZy1ib3R0b20iOiI0MCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjUwIiwicGFkZGluZy1yaWdodCI6IjUwIiwicGFkZGluZy1sZWZ0IjoiNTAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][vc_column][tdm_block_column_title title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"653\" tds_title1-f_title_font_weight=\"600\" tds_title1-f_title_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjEzIiwicG9ydHJhaXQiOiIxMiIsInBob25lIjoiMTMifQ==\" tds_title1-title_color=\"#ec3535\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjE1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjEyIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMTAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" tds_title1-f_title_font_line_height=\"1.2\" title_text=\"QnJvd3NlJTIwb3VyJTIwZXhjbHVzaXZlJTIwYXJ0aWNsZXMh\" tds_title1-f_title_font_transform=\"uppercase\" content_align_horizontal=\"content-horiz-center\"][td_flex_block_1 modules_on_row=\"eyJhbGwiOiIyNSUiLCJwaG9uZSI6IjEwMCUifQ==\" image_size=\"\" image_floated=\"hidden\" image_width=\"eyJwaG9uZSI6IjMwIn0=\" image_height=\"eyJwaG9uZSI6IjExMCJ9\" show_btn=\"none\" show_excerpt=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_com=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_author=\"none\" show_cat=\"none\" meta_padding=\"0\" f_title_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjE0IiwicG9ydHJhaXQiOiIxMyJ9\" f_title_font_line_height=\"1.3\" f_title_font_weight=\"600\" all_modules_space=\"eyJwaG9uZSI6IjMwIiwiYWxsIjoiMCJ9\" category_id=\"\" show_date=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" art_excerpt=\"0\" show_review=\"none\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" f_title_font_family=\"456\" mc1_el=\"10\" title_txt_hover=\"#f43f3f\" title_txt=\"#000000\" f_meta_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTAiLCJsYW5kc2NhcGUiOiIxMSJ9\" f_meta_font_line_height=\"1\" f_meta_font_weight=\"400\" f_meta_font_family=\"653\" limit=\"4\" modules_category=\"\" modules_category_padding=\"0\" cat_bg=\"rgba(255,255,255,0)\" cat_txt=\"#f43f3f\" f_title_font_transform=\"\" modules_gap=\"eyJwb3J0cmFpdCI6IjEwIiwicGhvbmUiOiIwIiwibGFuZHNjYXBlIjoiMjAifQ==\" sort=\"\" el_class=\"td-week-slider\" ajax_pagination=\"next_prev\" td_ajax_preloading=\"preload\" pag_space=\"0\" pag_border_width=\"0\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"21\" pag_text=\"#ffffff\" pag_h_text=\"#ffffff\" pag_bg=\"#dddddd\" pag_h_bg=\"#aaaaaa\" pag_border_radius=\"100\" time_ago=\"yes\" show_modified_date=\"yes\" date_txt=\"#000000\" f_title_font_spacing=\"-0.5\" art_title=\"eyJwb3J0cmFpdCI6IjAifQ==\" excl_padd=\"3px 5px\" excl_margin=\"-4px 5px 0 0\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_family=\"653\" f_excl_font_transform=\"uppercase\" f_excl_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_weight=\"500\" f_excl_font_line_height=\"1\" f_excl_font_spacing=\"-0.5\" excl_radius=\"2\" excl_show=\"\" locked_only=\"yes\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjEwMCIsImRpc3BsYXkiOiIifSwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2NywibGFuZHNjYXBlIjp7Im1hcmdpbi1ib3R0b20iOiI4MCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" flex_layout=\"block\" flex_vert_align=\"flex-start\"][vc_column width=\"3/4\" tdc_css=\"eyJsYW5kc2NhcGUiOnsid2lkdGgiOiI3MCUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7IndpZHRoIjoiNzAlIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][tdb_loop modules_on_row=\"\" modules_gap=\"0\" modules_category=\"\" show_excerpt=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" show_btn=\"none\" ajax_pagination=\"numbered\" hide_audio=\"yes\" meta_info_horiz=\"\" hide_image=\"\" image_width=\"eyJhbGwiOiI1MCIsInBob25lIjoiMTAwIn0=\" image_floated=\"eyJhbGwiOiJmbG9hdF9sZWZ0IiwicGhvbmUiOiJub19mbG9hdCJ9\" meta_padding=\"eyJhbGwiOiIwIDAgMCAyNXB4IiwicG9ydHJhaXQiOiIwIDAgMCAxNXB4IiwicGhvbmUiOiIyMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiMCAwIDAgMjBweCJ9\" image_radius=\"\" modules_category_margin=\"eyJhbGwiOiIwIDEycHggMCAwIiwicG9ydHJhaXQiOiIwIDhweCAwIDAiLCJsYW5kc2NhcGUiOiIwIDEwcHggMCAwIn0=\" show_author=\"eyJwb3J0cmFpdCI6ImlubGluZS1ibG9jayJ9\" show_date=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" show_review=\"none\" show_com=\"none\" meta_info_align=\"center\" modules_category_padding=\"5px 0\" art_title=\"eyJsYW5kc2NhcGUiOiIwIDAgMTBweCAwIiwicG9ydHJhaXQiOiIwIDAgOHB4IDAiLCJhbGwiOiIwIDAgMTJweCAwIn0=\" f_title_font_family=\"456\" f_title_font_size=\"eyJhbGwiOiIzMCIsImxhbmRzY2FwZSI6IjI0IiwicG9ydHJhaXQiOiIyMCIsInBob25lIjoiMjQifQ==\" f_title_font_line_height=\"1.1\" f_title_font_weight=\"600\" f_title_font_transform=\"\" title_txt=\"#000000\" title_txt_hover=\"#f43f3f\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTIifQ==\" f_cat_font_line_height=\"1\" f_cat_font_weight=\"600\" f_cat_font_transform=\"uppercase\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" pag_border_width=\"0\" pag_text=\"#000000\" pag_h_text=\"#ffffff\" pag_a_text=\"#ffffff\" pag_bg=\"rgba(255,255,255,0)\" pag_h_bg=\"#ec3535\" pag_a_bg=\"#ec3535\" f_pag_font_family=\"653\" f_pag_font_size=\"13\" limit=\"5\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\" pag_space=\"40\" all_modules_space=\"eyJwaG9uZSI6IjQwIiwiYWxsIjoiNDAiLCJsYW5kc2NhcGUiOiIzMCIsInBvcnRyYWl0IjoiMjAifQ==\" offset=\"4\" show_cat=\"\" image_height=\"70\" f_pag_font_weight=\"500\" art_excerpt=\"eyJhbGwiOiIxMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiNnB4IDAgMCAwIiwicG9ydHJhaXQiOiIwIn0=\" f_ex_font_family=\"653\" f_ex_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTQiLCJsYW5kc2NhcGUiOiIxNSIsInBob25lIjoiMTUifQ==\" f_ex_font_line_height=\"1.4\" f_ex_font_style=\"undefined\" f_ex_font_weight=\"500\" f_ex_font_transform=\"undefined\" f_ex_font_spacing=\"undefined\" ex_txt=\"#000000\" f_title_font_style=\"undefined\" f_title_font_spacing=\"undefined\" author_photo_size=\"undefined\" author_photo_space=\"undefined\" author_photo_radius=\"100%\" review_size=\"eyJhbGwiOiIyLjUiLCJwb3J0cmFpdCI6IjAifQ==\" f_meta_font_family=\"653\" f_meta_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta_font_line_height=\"1\" f_meta_font_style=\"undefined\" f_meta_font_weight=\"500\" f_meta_font_transform=\"capitalize\" f_meta_font_spacing=\"-0.5\" author_txt=\"#000000\" author_txt_hover=\"#ec3535\" f_cat_font_spacing=\"undefined\" modules_cat_border=\"0\" modules_category_radius=\"2\" f_cat_font_style=\"undefined\" cat_txt=\"#000000\" cat_txt_hover=\"#ec3535\" date_txt=\"#000000\" excl_margin=\"-4px 10px 0 0\" excl_padd=\"4px 6px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" author_photo=\"yes\"][/vc_column][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsid2lkdGgiOiIzMCUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7IndpZHRoIjoiMzAlIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" is_sticky=\"yes\"][tdm_block_inline_text description=\"UG9wdWxhcg==\" display_inline=\"yes\" f_descr_font_family=\"456\" f_descr_font_size=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE4IiwicG9ydHJhaXQiOiIxNiJ9\" f_descr_font_weight=\"700\" f_descr_font_style=\"italic\" description_color=\"#ffffff\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWxlZnQiOiIyMCIsInBhZGRpbmctdG9wIjoiOCIsInBhZGRpbmctcmlnaHQiOiIxNiIsInBhZGRpbmctYm90dG9tIjoiMTAiLCJwYWRkaW5nLWxlZnQiOiIxNCIsImJhY2tncm91bmQtY29sb3IiOiIjZWMzNTM1Iiwiei1pbmRleCI6IjEiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJtYXJnaW4tbGVmdCI6IjE1IiwicGFkZGluZy10b3AiOiI2IiwicGFkZGluZy1yaWdodCI6IjE0IiwicGFkZGluZy1ib3R0b20iOiI4IiwicGFkZGluZy1sZWZ0IjoiMTIiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi1sZWZ0IjoiMTAiLCJwYWRkaW5nLXRvcCI6IjQiLCJwYWRkaW5nLXJpZ2h0IjoiMTIiLCJwYWRkaW5nLWJvdHRvbSI6IjYiLCJwYWRkaW5nLWxlZnQiOiIxMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=\" f_descr_font_spacing=\"0.5\"][td_flex_block_2 modules_on_row=\"\" limit=\"1\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"none\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiIyMCIsInBvcnRyYWl0IjoiMTYiLCJwaG9uZSI6IjMwIiwibGFuZHNjYXBlIjoiMTgifQ==\" f_title_font_line_height=\"1\" show_cat=\"none\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIwIDE1cHggMjBweCAxOHB4IiwibGFuZHNjYXBlIjoiMCAxMHB4IDE1cHggMTJweCIsInBvcnRyYWl0IjoiMCA1cHggMTVweCAxMHB4IiwicGhvbmUiOiIwIDIwcHggMjBweCJ9\" modules_divider=\"\" image_size=\"td_696x0\" meta_info_align=\"bottom\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0yNCIsIm1hcmdpbi1ib3R0b20iOiIyNSIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi10b3AiOiItMjAiLCJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi10b3AiOiItMTYiLCJtYXJnaW4tYm90dG9tIjoiMTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"700\" image_height=\"eyJhbGwiOiIxMDAiLCJwb3J0cmFpdCI6IjE0MCJ9\" all_modules_space=\"0\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiIxNnB4IDAgMTJweCAwIiwibGFuZHNjYXBlIjoiMTJweCAwIDhweCAwIiwicG9ydHJhaXQiOiIxMHB4IDAgNnB4IDAiLCJwaG9uZSI6IjEycHggMCAxMHB4IDAifQ==\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"\" show_author=\"eyJsYW5kc2NhcGUiOiJub25lIiwicG9ydHJhaXQiOiJub25lIn0=\" mc1_el=\"10\" f_title_font_family=\"653\" f_title_font_transform=\"\" title_txt=\"#ffffff\" title_txt_hover=\"rgba(255,255,255,0.8)\" ex_txt=\"#ffffff\" cat_txt=\"#ffffff\" cat_bg=\"#ec3535\" cat_bg_hover=\"#000000\" author_txt=\"#ffffff\" modules_category_padding=\"eyJhbGwiOiI1cHggOHB4IiwicG9ydHJhaXQiOiI0cHggNnB4In0=\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTIiLCJwaG9uZSI6IjEyIn0=\" f_cat_font_line_height=\"1\" excerpt_middle=\"yes\" cat_txt_hover=\"#ffffff\" modules_gap=\"0\" modules_space=\"0\" modules_height=\"eyJwb3J0cmFpdCI6IjI4MCIsImFsbCI6IjQyMCIsImxhbmRzY2FwZSI6IjM0MCIsInBob25lIjoiNDUwIn0=\" image_margin=\"0\" color_overlay=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\" mc2_el=\"26\" modules_category_radius=\"2\" excl_padd=\"5px 8px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" pag_border_width=\"0\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"20\" pag_border_radius=\"2\" pag_padding=\"0\" excl_show=\"none\" author_txt_hover=\"rgba(255,255,255,0.8)\" date_txt=\"#ffffff\" f_meta_font_family=\"653\" f_meta_font_transform=\"capitalize\" f_meta_font_weight=\"500\" f_meta_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta_font_line_height=\"1.2\" block_template_id=\"td_block_template_2\"][td_flex_block_1 modules_on_row=\"\" image_size=\"\" image_floated=\"hidden\" image_width=\"eyJwaG9uZSI6IjMwIn0=\" image_height=\"eyJwaG9uZSI6IjExMCJ9\" show_btn=\"none\" show_excerpt=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_com=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_author=\"none\" show_cat=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" meta_padding=\"0\" f_title_font_size=\"eyJhbGwiOiIxNCIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMyJ9\" f_title_font_line_height=\"eyJhbGwiOiIxLjQiLCJsYW5kc2NhcGUiOiIxLjMifQ==\" f_title_font_weight=\"600\" all_modules_space=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjYiLCJwb3J0cmFpdCI6IjUifQ==\" category_id=\"\" show_date=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" art_excerpt=\"0\" show_review=\"none\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJtYXJnaW4tdG9wIjoiLTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3NjcsImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\" f_title_font_family=\"456\" mc1_el=\"10\" title_txt_hover=\"#f43f3f\" title_txt=\"#000000\" art_title=\"eyJhbGwiOiIwIDAgMTBweCIsInBvcnRyYWl0IjoiMCIsImxhbmRzY2FwZSI6IjAgMCA2cHgifQ==\" modules_border_size=\"0 0 1px 0\" m_padding=\"eyJhbGwiOiIwIDAgMTVweCIsImxhbmRzY2FwZSI6IjAgMCAxMHB4IiwicG9ydHJhaXQiOiIwIDAgOHB4In0=\" modules_gap=\"0\" f_meta_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTAiLCJsYW5kc2NhcGUiOiIxMSJ9\" f_meta_font_line_height=\"1\" f_meta_font_weight=\"500\" f_meta_font_family=\"653\" modules_cat_border=\"0\" modules_category_padding=\"eyJhbGwiOiIycHggMCIsInBvcnRyYWl0IjoiMCJ9\" f_cat_font_family=\"653\" f_cat_font_transform=\"uppercase\" f_cat_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIn0=\" f_cat_font_weight=\"600\" f_cat_font_line_height=\"1\" f_meta_font_spacing=\"-0.5\" f_cat_font_spacing=\"-0.5\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" cat_txt=\"#ec3535\" cat_txt_hover=\"#000000\" modules_category_margin=\"eyJhbGwiOiIwIDVweCAwIDAiLCJwb3J0cmFpdCI6IjAifQ==\" ajax_pagination=\"next_prev\" pag_border_width=\"0\" pag_space=\"eyJhbGwiOiIxNSIsImxhbmRzY2FwZSI6IjEwIiwicG9ydHJhaXQiOiI1In0=\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"eyJhbGwiOiIyMiIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxOCJ9\" pag_text=\"#000000\" pag_h_text=\"#ec3535\" pag_bg=\"rgba(255,255,255,0)\" pag_h_bg=\"rgba(255,255,255,0)\" f_excl_font_family=\"653\" f_excl_font_transform=\"uppercase\" f_excl_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_weight=\"500\" f_excl_font_line_height=\"1\" f_excl_font_spacing=\"-0.5\" excl_padd=\"3px 5px\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" excl_radius=\"2\" excl_margin=\"-4px 5px 0 0\" excl_show=\"\" offset=\"1\" date_txt=\"#000000\" limit=\"4\" sort=\"\"][tds_leads title_text=\"Subscribe\" input_placeholder=\"Email address\" btn_horiz_align=\"content-horiz-center\" pp_checkbox=\"yes\" pp_msg=\"SSd2ZSUyMHJlYWQlMjBhbmQlMjBhY2NlcHQlMjB0aGUlMjAlM0NhJTIwaHJlZiUzRCUyMiUyMyUyMiUzRVByaXZhY3klMjBQb2xpY3klM0MlMkZhJTNFLg==\" f_title_font_family=\"653\" f_title_font_size=\"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIyMiJ9\" f_title_font_line_height=\"1\" f_title_font_weight=\"700\" f_title_font_spacing=\"-1\" msg_composer=\"success\" display=\"column\" gap=\"10\" input_padd=\"eyJhbGwiOiIxNXB4IDEwcHgiLCJsYW5kc2NhcGUiOiIxMnB4IDhweCIsInBvcnRyYWl0IjoiMTBweCA2cHgifQ==\" input_border=\"1\" btn_text=\"I want in\" btn_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" btn_icon_size=\"eyJhbGwiOiIxOSIsImxhbmRzY2FwZSI6IjE3IiwicG9ydHJhaXQiOiIxNSJ9\" btn_icon_space=\"eyJhbGwiOiI1IiwicG9ydHJhaXQiOiIzIn0=\" btn_radius=\"3\" input_radius=\"3\" f_msg_font_family=\"653\" f_msg_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_msg_font_weight=\"600\" f_msg_font_line_height=\"1.4\" f_input_font_family=\"653\" f_input_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjEzIiwicG9ydHJhaXQiOiIxMiJ9\" f_input_font_line_height=\"1.2\" f_btn_font_family=\"653\" f_input_font_weight=\"500\" f_btn_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSJ9\" f_btn_font_line_height=\"1.2\" f_btn_font_weight=\"700\" f_pp_font_family=\"653\" f_pp_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSJ9\" f_pp_font_line_height=\"1.2\" pp_check_color=\"#000000\" pp_check_color_a=\"#ec3535\" pp_check_color_a_h=\"#c11f1f\" f_btn_font_transform=\"uppercase\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjM1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" msg_succ_radius=\"2\" btn_bg=\"#ec3535\" btn_bg_h=\"#c11f1f\" title_space=\"eyJwb3J0cmFpdCI6IjEyIiwibGFuZHNjYXBlIjoiMTQiLCJhbGwiOiIxOCJ9\" msg_space=\"eyJsYW5kc2NhcGUiOiIwIDAgMTJweCJ9\" btn_padd=\"eyJsYW5kc2NhcGUiOiIxMiIsInBvcnRyYWl0IjoiMTBweCJ9\" msg_padd=\"eyJwb3J0cmFpdCI6IjZweCAxMHB4In0=\"][td_block_ad_box spot_img_horiz=\"content-horiz-center\" media_size_image_height=\"848\" media_size_image_width=\"624\" spot_img_all=\"23\" spot_img_mob=\"24\" spot_url=\"https://themeforest.net/item/newspaper/5489609\" spot_url_rel=\"noopener\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwibGFuZHNjYXBlIjp7ImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOX0=\"][/vc_column][/vc_row][/tdc_zone]\r\n', 'Tag Template - Week PRO', '', 'publish', 'closed', 'closed', '', 'tag-template-week-pro', '', '', '2022-02-22 08:53:21', '2022-02-22 08:53:21', '', 0, 'http://tdi_261_442', 0, 'tdb_templates', '', 0),
(88, 9467, '2022-02-22 08:53:21', '2022-02-22 08:53:21', '[tdc_zone type=\"tdc_content\"][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI2MCIsInBhZGRpbmctYm90dG9tIjoiODAiLCJiYWNrZ3JvdW5kLWNvbG9yIjoiI2Y0ZjRmNCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsicGFkZGluZy10b3AiOiI0MCIsInBhZGRpbmctYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJwYWRkaW5nLXRvcCI6IjUwIiwicGFkZGluZy1ib3R0b20iOiI2MCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicGhvbmUiOnsicGFkZGluZy10b3AiOiI1MCIsInBhZGRpbmctYm90dG9tIjoiNTAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][vc_column][tdb_title content_align_horizontal=\"content-horiz-center\" f_title_font_size=\"eyJhbGwiOiI0MiIsImxhbmRzY2FwZSI6IjM2IiwicGhvbmUiOiIzMCIsInBvcnRyYWl0IjoiMzIifQ==\" f_title_font_line_height=\"1\" f_title_font_weight=\"700\" f_title_font_family=\"456\" f_title_font_transform=\"none\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjMwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjI1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" title_color=\"#000000\" add_text=\"Search results for: \"][tdb_search_form f_input_font_family=\"653\" f_placeholder_font_family=\"653\" f_btn_font_family=\"653\" f_msg_font_family=\"653\" f_btn_font_line_height=\"eyJhbGwiOiIyIiwicG9ydHJhaXQiOiIxLjYifQ==\" btn_bg=\"#ec3535\" btn_bg_h=\"#c11f1f\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiYXV0byIsIm1hcmdpbi1ib3R0b20iOiIwIiwibWFyZ2luLWxlZnQiOiJhdXRvIiwid2lkdGgiOiI3MCUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7IndpZHRoIjoiODElIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJ3aWR0aCI6IjEwMCUiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" content_align_horizontal=\"content-horiz-center\" f_btn_font_transform=\"uppercase\" f_msg_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjEzIn0=\" f_msg_font_line_height=\"1.4\" f_input_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjEzIn0=\" f_placeholder_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjEzIn0=\" f_btn_font_size=\"eyJwaG9uZSI6IjEyIn0=\" f_btn_font_weight=\"700\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiYm9yZGVyLWJvdHRvbS13aWR0aCI6IjEiLCJwYWRkaW5nLXRvcCI6IjMwIiwicGFkZGluZy1yaWdodCI6IjYwIiwicGFkZGluZy1ib3R0b20iOiI1MCIsInBhZGRpbmctbGVmdCI6IjYwIiwiYm9yZGVyLWNvbG9yIjoiI2VhZWFlYSIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi1ib3R0b20iOiI1MCIsInBhZGRpbmctdG9wIjoiMjUiLCJwYWRkaW5nLWJvdHRvbSI6IjQ1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJwYWRkaW5nLXRvcCI6IjIwIiwicGFkZGluZy1ib3R0b20iOiI0MCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjUwIiwicGFkZGluZy1yaWdodCI6IjUwIiwicGFkZGluZy1sZWZ0IjoiNTAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][vc_column][tdm_block_column_title title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"653\" tds_title1-f_title_font_weight=\"600\" tds_title1-f_title_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjEzIiwicG9ydHJhaXQiOiIxMiIsInBob25lIjoiMTMifQ==\" tds_title1-title_color=\"#ec3535\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjE1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjEyIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMTAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" tds_title1-f_title_font_line_height=\"1.2\" title_text=\"QnJvd3NlJTIwb3VyJTIwZXhjbHVzaXZlJTIwYXJ0aWNsZXMh\" tds_title1-f_title_font_transform=\"uppercase\" content_align_horizontal=\"content-horiz-center\"][td_flex_block_1 modules_on_row=\"eyJhbGwiOiIyNSUiLCJwaG9uZSI6IjEwMCUifQ==\" image_size=\"\" image_floated=\"hidden\" image_width=\"eyJwaG9uZSI6IjMwIn0=\" image_height=\"eyJwaG9uZSI6IjExMCJ9\" show_btn=\"none\" show_excerpt=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_com=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_author=\"none\" show_cat=\"none\" meta_padding=\"0\" f_title_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjE0IiwicG9ydHJhaXQiOiIxMyJ9\" f_title_font_line_height=\"1.3\" f_title_font_weight=\"600\" all_modules_space=\"eyJwaG9uZSI6IjMwIiwiYWxsIjoiMCJ9\" category_id=\"\" show_date=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" art_excerpt=\"0\" show_review=\"none\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" f_title_font_family=\"456\" mc1_el=\"10\" title_txt_hover=\"#f43f3f\" title_txt=\"#000000\" f_meta_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTAiLCJsYW5kc2NhcGUiOiIxMSJ9\" f_meta_font_line_height=\"1\" f_meta_font_weight=\"400\" f_meta_font_family=\"653\" limit=\"4\" modules_category=\"\" modules_category_padding=\"0\" cat_bg=\"rgba(255,255,255,0)\" cat_txt=\"#f43f3f\" f_title_font_transform=\"\" modules_gap=\"eyJwb3J0cmFpdCI6IjEwIiwicGhvbmUiOiIwIiwibGFuZHNjYXBlIjoiMjAifQ==\" sort=\"\" el_class=\"td-week-slider\" ajax_pagination=\"next_prev\" td_ajax_preloading=\"preload\" pag_space=\"0\" pag_border_width=\"0\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"21\" pag_text=\"#ffffff\" pag_h_text=\"#ffffff\" pag_bg=\"#dddddd\" pag_h_bg=\"#aaaaaa\" pag_border_radius=\"100\" time_ago=\"yes\" show_modified_date=\"yes\" date_txt=\"#000000\" f_title_font_spacing=\"-0.5\" art_title=\"eyJwb3J0cmFpdCI6IjAifQ==\" excl_padd=\"3px 5px\" excl_margin=\"-4px 5px 0 0\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_family=\"653\" f_excl_font_transform=\"uppercase\" f_excl_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_weight=\"500\" f_excl_font_line_height=\"1\" f_excl_font_spacing=\"-0.5\" excl_radius=\"2\" excl_show=\"\" locked_only=\"yes\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjEwMCIsImRpc3BsYXkiOiIifSwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2NywibGFuZHNjYXBlIjp7Im1hcmdpbi1ib3R0b20iOiI4MCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" flex_layout=\"block\" flex_vert_align=\"flex-start\"][vc_column width=\"3/4\" tdc_css=\"eyJsYW5kc2NhcGUiOnsid2lkdGgiOiI3MCUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7IndpZHRoIjoiNzAlIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][tdb_loop modules_on_row=\"\" modules_gap=\"0\" modules_category=\"\" show_excerpt=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" show_btn=\"none\" ajax_pagination=\"numbered\" hide_audio=\"yes\" meta_info_horiz=\"\" hide_image=\"\" image_width=\"eyJhbGwiOiI1MCIsInBob25lIjoiMTAwIn0=\" image_floated=\"eyJhbGwiOiJmbG9hdF9sZWZ0IiwicGhvbmUiOiJub19mbG9hdCJ9\" meta_padding=\"eyJhbGwiOiIwIDAgMCAyNXB4IiwicG9ydHJhaXQiOiIwIDAgMCAxNXB4IiwicGhvbmUiOiIyMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiMCAwIDAgMjBweCJ9\" image_radius=\"\" modules_category_margin=\"eyJhbGwiOiIwIDEycHggMCAwIiwicG9ydHJhaXQiOiIwIDhweCAwIDAiLCJsYW5kc2NhcGUiOiIwIDEwcHggMCAwIn0=\" show_author=\"eyJwb3J0cmFpdCI6ImlubGluZS1ibG9jayJ9\" show_date=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" show_review=\"none\" show_com=\"none\" meta_info_align=\"center\" modules_category_padding=\"5px 0\" art_title=\"eyJsYW5kc2NhcGUiOiIwIDAgMTBweCAwIiwicG9ydHJhaXQiOiIwIDAgOHB4IDAiLCJhbGwiOiIwIDAgMTJweCAwIn0=\" f_title_font_family=\"456\" f_title_font_size=\"eyJhbGwiOiIzMCIsImxhbmRzY2FwZSI6IjI0IiwicG9ydHJhaXQiOiIyMCIsInBob25lIjoiMjQifQ==\" f_title_font_line_height=\"1.1\" f_title_font_weight=\"600\" f_title_font_transform=\"\" title_txt=\"#000000\" title_txt_hover=\"#f43f3f\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTIifQ==\" f_cat_font_line_height=\"1\" f_cat_font_weight=\"600\" f_cat_font_transform=\"uppercase\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" pag_border_width=\"0\" pag_text=\"#000000\" pag_h_text=\"#ffffff\" pag_a_text=\"#ffffff\" pag_bg=\"rgba(255,255,255,0)\" pag_h_bg=\"#ec3535\" pag_a_bg=\"#ec3535\" f_pag_font_family=\"653\" f_pag_font_size=\"13\" limit=\"5\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\" pag_space=\"40\" all_modules_space=\"eyJwaG9uZSI6IjQwIiwiYWxsIjoiNDAiLCJsYW5kc2NhcGUiOiIzMCIsInBvcnRyYWl0IjoiMjAifQ==\" offset=\"4\" show_cat=\"\" image_height=\"70\" f_pag_font_weight=\"500\" art_excerpt=\"eyJhbGwiOiIxMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiNnB4IDAgMCAwIiwicG9ydHJhaXQiOiIwIn0=\" f_ex_font_family=\"653\" f_ex_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTQiLCJsYW5kc2NhcGUiOiIxNSIsInBob25lIjoiMTUifQ==\" f_ex_font_line_height=\"1.4\" f_ex_font_style=\"undefined\" f_ex_font_weight=\"500\" f_ex_font_transform=\"undefined\" f_ex_font_spacing=\"undefined\" ex_txt=\"#000000\" f_title_font_style=\"undefined\" f_title_font_spacing=\"undefined\" author_photo_size=\"undefined\" author_photo_space=\"undefined\" author_photo_radius=\"100%\" review_size=\"eyJhbGwiOiIyLjUiLCJwb3J0cmFpdCI6IjAifQ==\" f_meta_font_family=\"653\" f_meta_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta_font_line_height=\"1\" f_meta_font_style=\"undefined\" f_meta_font_weight=\"500\" f_meta_font_transform=\"capitalize\" f_meta_font_spacing=\"-0.5\" author_txt=\"#000000\" author_txt_hover=\"#ec3535\" f_cat_font_spacing=\"undefined\" modules_cat_border=\"0\" modules_category_radius=\"2\" f_cat_font_style=\"undefined\" cat_txt=\"#000000\" cat_txt_hover=\"#ec3535\" date_txt=\"#000000\" excl_margin=\"-4px 10px 0 0\" excl_padd=\"4px 6px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" author_photo=\"yes\"][/vc_column][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsid2lkdGgiOiIzMCUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7IndpZHRoIjoiMzAlIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" is_sticky=\"yes\"][tdm_block_inline_text description=\"UG9wdWxhcg==\" display_inline=\"yes\" f_descr_font_family=\"456\" f_descr_font_size=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE4IiwicG9ydHJhaXQiOiIxNiJ9\" f_descr_font_weight=\"700\" f_descr_font_style=\"italic\" description_color=\"#ffffff\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWxlZnQiOiIyMCIsInBhZGRpbmctdG9wIjoiOCIsInBhZGRpbmctcmlnaHQiOiIxNiIsInBhZGRpbmctYm90dG9tIjoiMTAiLCJwYWRkaW5nLWxlZnQiOiIxNCIsImJhY2tncm91bmQtY29sb3IiOiIjZWMzNTM1Iiwiei1pbmRleCI6IjEiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJtYXJnaW4tbGVmdCI6IjE1IiwicGFkZGluZy10b3AiOiI2IiwicGFkZGluZy1yaWdodCI6IjE0IiwicGFkZGluZy1ib3R0b20iOiI4IiwicGFkZGluZy1sZWZ0IjoiMTIiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi1sZWZ0IjoiMTAiLCJwYWRkaW5nLXRvcCI6IjQiLCJwYWRkaW5nLXJpZ2h0IjoiMTIiLCJwYWRkaW5nLWJvdHRvbSI6IjYiLCJwYWRkaW5nLWxlZnQiOiIxMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=\" f_descr_font_spacing=\"0.5\"][td_flex_block_2 modules_on_row=\"\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"none\" ajax_pagination=\"\" f_title_font_size=\"eyJhbGwiOiIyMCIsInBvcnRyYWl0IjoiMTYiLCJwaG9uZSI6IjMwIiwibGFuZHNjYXBlIjoiMTgifQ==\" f_title_font_line_height=\"1\" show_cat=\"none\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIwIDE1cHggMjBweCAxOHB4IiwibGFuZHNjYXBlIjoiMCAxMHB4IDE1cHggMTJweCIsInBvcnRyYWl0IjoiMCA1cHggMTVweCAxMHB4IiwicGhvbmUiOiIwIDIwcHggMjBweCJ9\" modules_divider=\"\" image_size=\"td_696x0\" meta_info_align=\"bottom\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0yNCIsIm1hcmdpbi1ib3R0b20iOiIyNSIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi10b3AiOiItMjAiLCJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi10b3AiOiItMTYiLCJtYXJnaW4tYm90dG9tIjoiMTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"700\" image_height=\"eyJhbGwiOiIxMDAiLCJwb3J0cmFpdCI6IjE0MCJ9\" all_modules_space=\"0\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiIxNnB4IDAgMTJweCAwIiwibGFuZHNjYXBlIjoiMTJweCAwIDhweCAwIiwicG9ydHJhaXQiOiIxMHB4IDAgNnB4IDAiLCJwaG9uZSI6IjEycHggMCAxMHB4IDAifQ==\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"\" show_author=\"eyJsYW5kc2NhcGUiOiJub25lIiwicG9ydHJhaXQiOiJub25lIn0=\" mc1_el=\"10\" f_title_font_family=\"653\" f_title_font_transform=\"\" title_txt=\"#ffffff\" title_txt_hover=\"rgba(255,255,255,0.8)\" ex_txt=\"#ffffff\" cat_txt=\"#ffffff\" cat_bg=\"#ec3535\" cat_bg_hover=\"#000000\" author_txt=\"#ffffff\" modules_category_padding=\"eyJhbGwiOiI1cHggOHB4IiwicG9ydHJhaXQiOiI0cHggNnB4In0=\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTIiLCJwaG9uZSI6IjEyIn0=\" f_cat_font_line_height=\"1\" excerpt_middle=\"yes\" cat_txt_hover=\"#ffffff\" modules_gap=\"0\" modules_space=\"0\" modules_height=\"eyJwb3J0cmFpdCI6IjI4MCIsImFsbCI6IjQyMCIsImxhbmRzY2FwZSI6IjM0MCIsInBob25lIjoiNDUwIn0=\" image_margin=\"0\" color_overlay=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\" mc2_el=\"26\" modules_category_radius=\"2\" excl_padd=\"5px 8px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" pag_border_width=\"0\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"20\" pag_border_radius=\"2\" pag_padding=\"0\" excl_show=\"none\" author_txt_hover=\"rgba(255,255,255,0.8)\" date_txt=\"#ffffff\" f_meta_font_family=\"653\" f_meta_font_transform=\"capitalize\" f_meta_font_weight=\"500\" f_meta_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta_font_line_height=\"1.2\" block_template_id=\"td_block_template_2\" category_id=\"\" sort=\"\" td_ajax_preloading=\"\" limit=\"1\"][td_flex_block_1 modules_on_row=\"\" image_size=\"\" image_floated=\"hidden\" image_width=\"eyJwaG9uZSI6IjMwIn0=\" image_height=\"eyJwaG9uZSI6IjExMCJ9\" show_btn=\"none\" show_excerpt=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_com=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_author=\"none\" show_cat=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" meta_padding=\"0\" f_title_font_size=\"eyJhbGwiOiIxNCIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMyJ9\" f_title_font_line_height=\"eyJhbGwiOiIxLjQiLCJsYW5kc2NhcGUiOiIxLjMifQ==\" f_title_font_weight=\"600\" all_modules_space=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjYiLCJwb3J0cmFpdCI6IjUifQ==\" category_id=\"\" show_date=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" art_excerpt=\"0\" show_review=\"none\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJtYXJnaW4tdG9wIjoiLTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3NjcsImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\" f_title_font_family=\"456\" mc1_el=\"10\" title_txt_hover=\"#f43f3f\" title_txt=\"#000000\" art_title=\"eyJhbGwiOiIwIDAgMTBweCIsInBvcnRyYWl0IjoiMCIsImxhbmRzY2FwZSI6IjAgMCA2cHgifQ==\" modules_border_size=\"0 0 1px 0\" m_padding=\"eyJhbGwiOiIwIDAgMTVweCIsImxhbmRzY2FwZSI6IjAgMCAxMHB4IiwicG9ydHJhaXQiOiIwIDAgOHB4In0=\" modules_gap=\"0\" f_meta_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTAiLCJsYW5kc2NhcGUiOiIxMSJ9\" f_meta_font_line_height=\"1\" f_meta_font_weight=\"500\" f_meta_font_family=\"653\" modules_cat_border=\"0\" modules_category_padding=\"eyJhbGwiOiIycHggMCIsInBvcnRyYWl0IjoiMCJ9\" f_cat_font_family=\"653\" f_cat_font_transform=\"uppercase\" f_cat_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIn0=\" f_cat_font_weight=\"600\" f_cat_font_line_height=\"1\" f_meta_font_spacing=\"-0.5\" f_cat_font_spacing=\"-0.5\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" cat_txt=\"#ec3535\" cat_txt_hover=\"#000000\" modules_category_margin=\"eyJhbGwiOiIwIDVweCAwIDAiLCJwb3J0cmFpdCI6IjAifQ==\" ajax_pagination=\"next_prev\" pag_border_width=\"0\" pag_space=\"eyJhbGwiOiIxNSIsImxhbmRzY2FwZSI6IjEwIiwicG9ydHJhaXQiOiI1In0=\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"eyJhbGwiOiIyMiIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxOCJ9\" pag_text=\"#000000\" pag_h_text=\"#ec3535\" pag_bg=\"rgba(255,255,255,0)\" pag_h_bg=\"rgba(255,255,255,0)\" f_excl_font_family=\"653\" f_excl_font_transform=\"uppercase\" f_excl_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_weight=\"500\" f_excl_font_line_height=\"1\" f_excl_font_spacing=\"-0.5\" excl_padd=\"3px 5px\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" excl_radius=\"2\" excl_margin=\"-4px 5px 0 0\" excl_show=\"\" offset=\"1\" date_txt=\"#000000\" limit=\"4\" sort=\"\"][tds_leads title_text=\"Subscribe\" input_placeholder=\"Email address\" btn_horiz_align=\"content-horiz-center\" pp_checkbox=\"yes\" pp_msg=\"SSd2ZSUyMHJlYWQlMjBhbmQlMjBhY2NlcHQlMjB0aGUlMjAlM0NhJTIwaHJlZiUzRCUyMiUyMyUyMiUzRVByaXZhY3klMjBQb2xpY3klM0MlMkZhJTNFLg==\" f_title_font_family=\"653\" f_title_font_size=\"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIyMiJ9\" f_title_font_line_height=\"1\" f_title_font_weight=\"700\" f_title_font_spacing=\"-1\" msg_composer=\"success\" display=\"column\" gap=\"10\" input_padd=\"eyJhbGwiOiIxNXB4IDEwcHgiLCJsYW5kc2NhcGUiOiIxMnB4IDhweCIsInBvcnRyYWl0IjoiMTBweCA2cHgifQ==\" input_border=\"1\" btn_text=\"I want in\" btn_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" btn_icon_size=\"eyJhbGwiOiIxOSIsImxhbmRzY2FwZSI6IjE3IiwicG9ydHJhaXQiOiIxNSJ9\" btn_icon_space=\"eyJhbGwiOiI1IiwicG9ydHJhaXQiOiIzIn0=\" btn_radius=\"3\" input_radius=\"3\" f_msg_font_family=\"653\" f_msg_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_msg_font_weight=\"600\" f_msg_font_line_height=\"1.4\" f_input_font_family=\"653\" f_input_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjEzIiwicG9ydHJhaXQiOiIxMiJ9\" f_input_font_line_height=\"1.2\" f_btn_font_family=\"653\" f_input_font_weight=\"500\" f_btn_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSJ9\" f_btn_font_line_height=\"1.2\" f_btn_font_weight=\"700\" f_pp_font_family=\"653\" f_pp_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSJ9\" f_pp_font_line_height=\"1.2\" pp_check_color=\"#000000\" pp_check_color_a=\"#ec3535\" pp_check_color_a_h=\"#c11f1f\" f_btn_font_transform=\"uppercase\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjM1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" msg_succ_radius=\"2\" btn_bg=\"#ec3535\" btn_bg_h=\"#c11f1f\" title_space=\"eyJwb3J0cmFpdCI6IjEyIiwibGFuZHNjYXBlIjoiMTQiLCJhbGwiOiIxOCJ9\" msg_space=\"eyJsYW5kc2NhcGUiOiIwIDAgMTJweCJ9\" btn_padd=\"eyJsYW5kc2NhcGUiOiIxMiIsInBvcnRyYWl0IjoiMTBweCJ9\" msg_padd=\"eyJwb3J0cmFpdCI6IjZweCAxMHB4In0=\"][td_block_ad_box spot_img_horiz=\"content-horiz-center\" media_size_image_height=\"848\" media_size_image_width=\"624\" spot_img_all=\"23\" spot_img_mob=\"24\" spot_url=\"https://themeforest.net/item/newspaper/5489609\" spot_url_rel=\"noopener\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwibGFuZHNjYXBlIjp7ImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOX0=\"][/vc_column][/vc_row][/tdc_zone]\r\n', 'Search Template - Week PRO', '', 'publish', 'closed', 'closed', '', 'search-template-week-pro', '', '', '2022-02-22 08:53:21', '2022-02-22 08:53:21', '', 0, 'http://tdi_292_612', 0, 'tdb_templates', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(89, 9467, '2022-02-22 08:53:21', '2022-02-22 08:53:21', '[tdc_zone type=\"tdc_content\"][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjE0MCIsInBhZGRpbmctdG9wIjoiNjAiLCJiYWNrZ3JvdW5kLWNvbG9yIjoiI2Y3ZjdmNyIsImRpc3BsYXkiOiIifSwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjEwMCIsInBhZGRpbmctdG9wIjoiNTAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjEyMCIsInBhZGRpbmctdG9wIjoiNTAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi1ib3R0b20iOiIxMTAiLCJwYWRkaW5nLXRvcCI6IjQwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" flex_layout=\"eyJhbGwiOiJyb3ciLCJwaG9uZSI6ImNvbHVtbiJ9\" flex_vert_align=\"flex-end\" flex_layout_reverse=\"eyJwaG9uZSI6InllcyJ9\"][vc_column width=\"1/1\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6Ii0xMDAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiLTkwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiLTgwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiLTgwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\"][tdb_single_bg_featured_image hide_img=\"\" block_height=\"eyJhbGwiOiI3MjAiLCJsYW5kc2NhcGUiOiI1MDAiLCJwb3J0cmFpdCI6IjM4MCIsInBob25lIjoiNDYwIn0=\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\" overlay=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjYpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjMpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjYpLHJnYmEoMCwwLDAsMC4zKSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjYpLHJnYmEoMCwwLDAsMC4zKSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuNikscmdiYSgwLDAsMCwwLjMpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\"][vc_row_inner absolute_align=\"bottom\" absolute_position=\"yes\"][vc_column_inner][tdb_single_categories tdc_preset_name=\"Default - Small color tags\" cat_limit=\"3\" f_tags_font_family=\"653\" f_tags_font_transform=\"uppercase\" f_tags_font_weight=\"600\" f_tags_font_size=\"eyJhbGwiOiIxNyIsInBvcnRyYWl0IjoiMTUiLCJwaG9uZSI6IjE0IiwibGFuZHNjYXBlIjoiMTYifQ==\" cat_padding=\"0\" cat_space=\"eyJwb3J0cmFpdCI6IjAgNHB4IDAiLCJhbGwiOiI1cHggMTBweCJ9\" tdicon=\"td-icon-slashh\" bg_color=\"rgba(255,255,255,0)\" bg_hover_color=\"rgba(255,255,255,0)\" cat_border=\"0\" text_color=\"#ffffff\" text_hover_color=\"rgba(255,255,255,0.8)\" i_color=\"#999999\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7Im1hcmdpbi1ib3R0b20iOiIxMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=\" icon_size=\"eyJhbGwiOjE0LCJwb3J0cmFpdCI6IjExIn0=\" content_align_horizontal=\"content-horiz-center\" f_tags_font_line_height=\"1\" f_tags_font_spacing=\"1\"][tdb_title f_title_font_family=\"456\" f_title_font_size=\"eyJhbGwiOiI1NCIsInBvcnRyYWl0IjoiMzYiLCJsYW5kc2NhcGUiOiI0MiIsInBob25lIjoiMzAifQ==\" f_title_font_line_height=\"1.1\" f_title_font_weight=\"700\" f_title_font_transform=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6IjIwIiwibWFyZ2luLXJpZ2h0IjoiYXV0byIsIm1hcmdpbi1ib3R0b20iOiI1MCIsIm1hcmdpbi1sZWZ0IjoiYXV0byIsIndpZHRoIjoiOTAlIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tdG9wIjoiMTUiLCJtYXJnaW4tYm90dG9tIjoiMzAiLCJ3aWR0aCI6Ijk1JSIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLXRvcCI6IjEwIiwibWFyZ2luLWJvdHRvbSI6IjIwIiwicGFkZGluZy1yaWdodCI6IjEwIiwicGFkZGluZy1sZWZ0IjoiMTAiLCJ3aWR0aCI6IjEwMCUiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" title_color=\"#ffffff\" content_align_horizontal=\"content-horiz-center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1200 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiMCIsIm1hcmdpbi1ib3R0b20iOiI2MCIsIm1hcmdpbi1sZWZ0IjoiMCIsImJvcmRlci1ib3R0b20td2lkdGgiOiIxIiwicGFkZGluZy1ib3R0b20iOiIzMCIsImJvcmRlci1jb2xvciI6IiNlYWVhZWEiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7Im1hcmdpbi1yaWdodCI6IjE1IiwibWFyZ2luLWJvdHRvbSI6IjMwIiwibWFyZ2luLWxlZnQiOiIxNSIsInBhZGRpbmctYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJwYWRkaW5nLWJvdHRvbSI6IjI1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJwYWRkaW5nLWJvdHRvbSI6IjIwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" stretch_off=\"yes\"][vc_column][vc_row_inner tdc_css=\"eyJhbGwiOnsiYm9yZGVyLWNvbG9yIjoiI2VhZWFlYSIsImRpc3BsYXkiOiIifX0=\" flex_layout=\"block\" flex_horiz_align=\"flex-start\"][vc_column_inner flex_layout=\"eyJhbGwiOiJyb3ciLCJwaG9uZSI6ImJsb2NrIn0=\" flex_horiz_align=\"center\" flex_vert_align=\"center\" tdc_css=\"eyJwaG9uZSI6eyJjb250ZW50LWgtYWxpZ24iOiJjb250ZW50LWhvcml6LWNlbnRlciIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\"][tdb_single_author tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiI1Iiwid2lkdGgiOiIxMDAlIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2NywicG9ydHJhaXQiOnsiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5fQ==\" f_auth_by_font_family=\"653\" f_auth_by_font_transform=\"\" f_auth_by_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjE0In0=\" f_auth_by_font_line_height=\"1.2\" f_auth_by_font_weight=\"600\" f_auth_name_font_family=\"653\" f_auth_name_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjE0In0=\" f_auth_name_font_line_height=\"1.2\" f_auth_name_font_weight=\"600\" add_text_space=\"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiOCJ9\" f_auth_name_font_transform=\"capitalize\" make_inline=\"yes\" author_by=\"By:\" author_by_color=\"#000000\" author_color=\"#000000\" author_h_color=\"#ec3535\" align_horiz=\"content-horiz-center\"][tdm_block_inline_text description=\"RGF0ZSUzQQ==\" display_inline=\"yes\" f_descr_font_family=\"653\" f_descr_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjE0In0=\" f_descr_font_line_height=\"1.2\" f_descr_font_weight=\"600\" f_descr_font_transform=\"\" description_color=\"#000000\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiMTAiLCJtYXJnaW4tbGVmdCI6IjIwIiwiYm9yZGVyLWxlZnQtd2lkdGgiOiIxIiwicGFkZGluZy1sZWZ0IjoiMjIiLCJib3JkZXItY29sb3IiOiIjOTk5OTk5IiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tbGVmdCI6IjAiLCJib3JkZXItbGVmdC13aWR0aCI6IjAiLCJwYWRkaW5nLXRvcCI6IjUiLCJwYWRkaW5nLWxlZnQiOiIwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2NywicG9ydHJhaXQiOnsibWFyZ2luLXJpZ2h0IjoiOCIsIm1hcmdpbi1sZWZ0IjoiMTIiLCJwYWRkaW5nLWxlZnQiOiIxNiIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwibGFuZHNjYXBlIjp7ImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOX0=\"][tdb_single_date tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0xIiwibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiaW5saW5lLWJsb2NrIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiaW5saW5lLWJsb2NrIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiJpbmxpbmUtYmxvY2sifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLXRvcCI6IjAiLCJkaXNwbGF5IjoiaW5saW5lLWJsb2NrIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" f_date_font_family=\"653\" f_date_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjE0In0=\" f_date_font_weight=\"600\" additional_text=\"\" f_date_font_line_height=\"1.2\" date_color=\"#000000\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1200 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjgwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" flex_layout=\"block\" flex_vert_align=\"flex-start\"][vc_column width=\"2/3\" tdc_css=\"eyJsYW5kc2NhcGUiOnsid2lkdGgiOiI3MCUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7IndpZHRoIjoiNzAlIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJ3aWR0aCI6IjEwMCUiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJhbGwiOnsid2lkdGgiOiI3MSUiLCJkaXNwbGF5IjoiIn19\"][tdb_single_content tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=\" f_post_font_family=\"653\" f_post_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjE1IiwibGFuZHNjYXBlIjoiMTUifQ==\" f_post_font_weight=\"400\" f_h1_font_family=\"456\" f_h3_font_family=\"456\" f_h2_font_family=\"456\" f_h4_font_family=\"456\" f_h5_font_family=\"456\" f_h6_font_family=\"456\" f_list_font_family=\"653\" f_bq_font_family=\"456\" f_caption_font_family=\"456\" f_pag_font_family=\"653\" center_extend=\"eyJwaG9uZSI6IjIwIn0=\" f_list_font_size=\"eyJhbGwiOiIxNiIsInBob25lIjoiMTUiLCJsYW5kc2NhcGUiOiIxNSIsInBvcnRyYWl0IjoiMTQifQ==\" f_list_font_weight=\"400\" f_post_font_line_height=\"1.6\" post_color=\"#000000\" h_color=\"#000000\" a_color=\"#ec3535\" a_hover_color=\"#c11f1f\" bq_color=\"#ec3535\" caption_color=\"#999999\" f_bq_font_weight=\"700\" f_bq_font_transform=\"none\" f_bq_font_spacing=\"-0.5\"][tdb_single_tags f_add_font_family=\"653\" f_add_font_transform=\"\" f_add_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTMiLCJwaG9uZSI6IjEyIiwibGFuZHNjYXBlIjoiMTQifQ==\" f_add_font_weight=\"500\" f_add_font_line_height=\"1\" f_tags_font_family=\"653\" f_tags_font_transform=\"\" f_tags_font_size=\"eyJhbGwiOiIxNCIsInBvcnRyYWl0IjoiMTMiLCJwaG9uZSI6IjEyIiwibGFuZHNjYXBlIjoiMTQifQ==\" f_tags_font_weight=\"500\" f_tags_font_line_height=\"1\" tags_padding=\"eyJhbGwiOiI1cHggOHB4IDRweCIsInBob25lIjoiM3B4IDZweCAycHgifQ==\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjM1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiIyMCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" add_padding=\"eyJhbGwiOiI2cHggMTBweCA1cHgiLCJwaG9uZSI6IjRweCA4cHggM3B4In0=\" f_add_font_spacing=\"0.5\" f_tags_font_spacing=\"0.5\" tags_h_color=\"#ffffff\" tags_h_bg=\"#000000\" tags_border_h_color=\"#000000\" add_bg=\"#000000\" tags_color=\"#000000\" tags_space=\"eyJwaG9uZSI6IjIifQ==\"][tdb_single_next_prev tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiIzMCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3NjcsImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiMzUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\" f_inf_font_family=\"653\" f_inf_font_size=\"eyJhbGwiOiIxNSIsInBob25lIjoiMTIiLCJwb3J0cmFpdCI6IjEzIiwibGFuZHNjYXBlIjoiMTQifQ==\" f_inf_font_line_height=\"1.2\" f_inf_font_weight=\"500\" f_art_font_family=\"456\" f_art_font_size=\"eyJhbGwiOiIxOCIsInBob25lIjoiMTMiLCJsYW5kc2NhcGUiOiIxNiIsInBvcnRyYWl0IjoiMTQifQ==\" f_art_font_weight=\"700\" f_art_font_line_height=\"1.2\" f_inf_font_transform=\"\" content_align_horizontal=\"content-horiz-left\" box_padding=\"eyJhbGwiOiIyMHB4IiwicG9ydHJhaXQiOiIxMHB4IiwicGhvbmUiOiIxMHB4In0=\" all_underline_color=\"\" bg_color=\"#f7f7f7\" info_color=\"#000000\" post_color=\"#000000\" post_hover_color=\"#ec3535\"][tdb_single_author_box icons_spacing=\"20\" display=\"eyJwaG9uZSI6InJvdyJ9\" photo_radius=\"100\" photo_size=\"96\" box_padding=\"0\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiYm9yZGVyLXRvcC13aWR0aCI6IjEiLCJib3JkZXItYm90dG9tLXdpZHRoIjoiMSIsInBhZGRpbmctdG9wIjoiMjAiLCJwYWRkaW5nLWJvdHRvbSI6IjIwIiwiYm9yZGVyLWNvbG9yIjoiI2VhZWFlYSIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjMwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJjb250ZW50LWgtYWxpZ24iOiJjb250ZW50LWhvcml6LWNlbnRlciIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3NjcsImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiMzUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\" all_border_width=\"0\" f_auth_font_family=\"456\" f_auth_font_weight=\"700\" f_auth_font_size=\"eyJhbGwiOiIyNCIsImxhbmRzY2FwZSI6IjIyIiwicG9ydHJhaXQiOiIyMCIsInBob25lIjoiMjIifQ==\" f_auth_font_transform=\"capitalize\" f_url_font_family=\"653\" f_url_font_size=\"eyJhbGwiOiIxNCIsInBvcnRyYWl0IjoiMTMiLCJwaG9uZSI6IjEzIn0=\" f_url_font_weight=\"400\" f_url_font_transform=\"\" f_descr_font_family=\"653\" f_descr_font_size=\"eyJhbGwiOiIxNiIsImxhbmRzY2FwZSI6IjE1IiwicG9ydHJhaXQiOiIxNCIsInBob25lIjoiMTUifQ==\" f_descr_font_line_height=\"eyJhbGwiOiIxLjQiLCJwb3J0cmFpdCI6IjEuNCJ9\" f_descr_font_weight=\"400\" align_vert=\"content-vert-center\" auth_h_color=\"#ec3535\" url_h_color=\"#ec3535\" icons_h_color=\"#ec3535\" photo_space=\"eyJhbGwiOiIzMCIsInBob25lIjoiMTIiLCJsYW5kc2NhcGUiOiIyNSIsInBvcnRyYWl0IjoiMTUifQ==\" f_auth_font_line_height=\"1.2\"][tdb_single_comments block_template_id=\"td_block_template_2\" f_header_font_family=\"653\" f_header_font_weight=\"700\" f_header_font_size=\"eyJhbGwiOiIyMiIsInBvcnRyYWl0IjoiMTgiLCJwaG9uZSI6IjIwIiwibGFuZHNjYXBlIjoiMjAifQ==\" f_header_font_transform=\"capitalize\" form_layout=\"2\" f_auth_font_family=\"456\" f_auth_font_weight=\"700\" f_auth_font_size=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE4IiwicG9ydHJhaXQiOiIxNiIsInBob25lIjoiMTgifQ==\" f_auth_font_line_height=\"1.2\" f_meta_font_family=\"653\" f_meta_font_size=\"eyJhbGwiOiIxNCIsInBob25lIjoiMTMiLCJwb3J0cmFpdCI6IjEzIn0=\" f_meta_font_line_height=\"1\" f_meta_font_weight=\"500\" f_meta_font_transform=\"\" f_descr_font_family=\"653\" f_descr_font_size=\"eyJhbGwiOiIxNSIsInBob25lIjoiMTQiLCJwb3J0cmFpdCI6IjE0In0=\" f_descr_font_line_height=\"1.4\" f_descr_font_weight=\"400\" f_reply_font_family=\"653\" f_reply_font_weight=\"700\" f_reply_font_size=\"12\" f_reply_font_line_height=\"1\" f_reply_font_transform=\"uppercase\" f_input_font_family=\"653\" f_input_font_size=\"eyJhbGwiOiIxNCIsInBvcnRyYWl0IjoiMTMiLCJwaG9uZSI6IjEzIn0=\" f_input_font_line_height=\"eyJhbGwiOiIxLjQiLCJsYW5kc2NhcGUiOiIxLjQiLCJwb3J0cmFpdCI6IjEuNCJ9\" f_input_font_weight=\"400\" f_btn_font_family=\"653\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"500\" f_btn_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJwaG9uZSI6IjEyIn0=\" f_btn_font_line_height=\"1.2\" f_frm_title_font_family=\"653\" f_frm_title_font_transform=\"uppercase\" f_frm_title_font_weight=\"700\" f_frm_title_font_size=\"eyJhbGwiOiIxNiIsInBob25lIjoiMTQiLCJwb3J0cmFpdCI6IjE0In0=\" f_frm_title_font_line_height=\"1\" btn_bg_color=\"#ec3535\" btn_bg_h_color=\"#c11f1f\" auth_h_color=\"#ec3535\" reply_h_color=\"#000000\" input_border_color=\"#ededed\" input_border_f_color=\"#dddddd\" f_reply_font_spacing=\"0.5\" f_btn_font_spacing=\"0.5\" edit_color=\"#000000\" edit_h_color=\"#ec3535\" avatar_radius=\"100\" f_agreement_font_size=\"eyJhbGwiOiIxNCIsInBvcnRyYWl0IjoiMTMiLCJwaG9uZSI6IjEzIn0=\" f_agreement_font_family=\"653\" f_agreement_font_weight=\"400\" btn_padding=\"12px 18px 11px\" f_agreement_font_line_height=\"eyJwaG9uZSI6IjEifQ==\" f_auth_font_transform=\"capitalize\" auth_color=\"#000000\" reply_color=\"#ec3535\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\" sep_style=\"solid\" btn_radius=\"3\"][/vc_column][vc_column width=\"1/3\" tdc_css=\"eyJhbGwiOnsid2lkdGgiOiIyOSUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJ3aWR0aCI6IjMwJSIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsid2lkdGgiOiIzMCUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7IndpZHRoIjoiMTAwJSIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" is_sticky=\"yes\"][vc_row_inner tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiMCIsIm1hcmdpbi1ib3R0b20iOiI0MCIsIm1hcmdpbi1sZWZ0IjoiMCIsInBhZGRpbmctdG9wIjoiMzAiLCJwYWRkaW5nLWJvdHRvbSI6IjMwIiwiYm9yZGVyLWNvbG9yIjoiI2VhZWFlYSIsInNoYWRvdy1zaXplIjoiMTAiLCJzaGFkb3ctY29sb3IiOiJyZ2JhKDAsMCwwLDAuMTIpIiwiYmFja2dyb3VuZC1jb2xvciI6IiNmZmZmZmYiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7Im1hcmdpbi1ib3R0b20iOiIzMCIsInBhZGRpbmctdG9wIjoiMjAiLCJwYWRkaW5nLWJvdHRvbSI6IjIwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjM1IiwicGFkZGluZy10b3AiOiIyNSIsInBhZGRpbmctYm90dG9tIjoiMjUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\" flex_layout=\"block\" flex_vert_align=\"flex-start\"][vc_column_inner flex_layout=\"block\" flex_vert_align=\"flex-start\" flex_horiz_align=\"flex-start\"][tdm_block_inline_text description=\"U2hhcmUlMjBwb3N0JTNB\" f_descr_font_family=\"653\" f_descr_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjE0In0=\" f_descr_font_line_height=\"1.2\" f_descr_font_weight=\"600\" f_descr_font_transform=\"uppercase\" description_color=\"#000000\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjIwIiwid2lkdGgiOiIxMDAlIiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMTYiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiMTgiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\" content_align_horizontal=\"content-horiz-center\"][tdb_single_post_share like_share_style=\"style14\" content_align_horizontal=\"content-horiz-center\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiIwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2NywicG9ydHJhaXQiOnsiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" btn_bg_color=\"#ec3535\" like=\"yes\" btn_i_color=\"#ffffff\" like_share_text=\"yes\"][/vc_column_inner][/vc_row_inner][tds_leads title_text=\"Subscribe\" input_placeholder=\"Email address\" btn_horiz_align=\"content-horiz-center\" pp_checkbox=\"yes\" pp_msg=\"SSd2ZSUyMHJlYWQlMjBhbmQlMjBhY2NlcHQlMjB0aGUlMjAlM0NhJTIwaHJlZiUzRCUyMiUyMyUyMiUzRVByaXZhY3klMjBQb2xpY3klM0MlMkZhJTNFLg==\" f_title_font_family=\"653\" f_title_font_size=\"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIyMiJ9\" f_title_font_line_height=\"1\" f_title_font_weight=\"700\" f_title_font_spacing=\"-1\" msg_composer=\"success\" display=\"column\" gap=\"10\" input_padd=\"eyJhbGwiOiIxNXB4IDEwcHgiLCJsYW5kc2NhcGUiOiIxMnB4IDhweCIsInBvcnRyYWl0IjoiMTBweCA2cHgifQ==\" input_border=\"1\" btn_text=\"I want in\" btn_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" btn_icon_size=\"eyJhbGwiOiIxOSIsImxhbmRzY2FwZSI6IjE3IiwicG9ydHJhaXQiOiIxNSJ9\" btn_icon_space=\"eyJhbGwiOiI1IiwicG9ydHJhaXQiOiIzIn0=\" btn_radius=\"3\" input_radius=\"3\" f_msg_font_family=\"653\" f_msg_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_msg_font_weight=\"600\" f_msg_font_line_height=\"1.4\" f_input_font_family=\"653\" f_input_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjEzIiwicG9ydHJhaXQiOiIxMiJ9\" f_input_font_line_height=\"1.2\" f_btn_font_family=\"653\" f_input_font_weight=\"500\" f_btn_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSJ9\" f_btn_font_line_height=\"1.2\" f_btn_font_weight=\"700\" f_pp_font_family=\"653\" f_pp_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSJ9\" f_pp_font_line_height=\"1.2\" pp_check_color=\"#000000\" pp_check_color_a=\"#ec3535\" pp_check_color_a_h=\"#c11f1f\" f_btn_font_transform=\"uppercase\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjM1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" msg_succ_radius=\"2\" btn_bg=\"#ec3535\" btn_bg_h=\"#c11f1f\" title_space=\"eyJwb3J0cmFpdCI6IjEyIiwibGFuZHNjYXBlIjoiMTQiLCJhbGwiOiIxOCJ9\" msg_space=\"eyJsYW5kc2NhcGUiOiIwIDAgMTJweCJ9\" btn_padd=\"eyJsYW5kc2NhcGUiOiIxMiIsInBvcnRyYWl0IjoiMTBweCJ9\" msg_padd=\"eyJwb3J0cmFpdCI6IjZweCAxMHB4In0=\"][td_block_ad_box spot_img_horiz=\"content-horiz-center\" media_size_image_height=\"848\" media_size_image_width=\"624\" spot_img_all=\"23\" spot_img_mob=\"24\" spot_url=\"https://themeforest.net/item/newspaper/5489609\" spot_url_rel=\"noopener\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjM1IiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiMjUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\"][tdm_block_inline_text description=\"UG9wdWxhcg==\" f_descr_font_family=\"653\" f_descr_font_weight=\"700\" f_descr_font_size=\"eyJhbGwiOiIzMiIsInBvcnRyYWl0IjoiMjQiLCJsYW5kc2NhcGUiOiIyOCJ9\" f_descr_font_spacing=\"-1\" f_descr_font_line_height=\"1\" description_color=\"#000000\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjI1IiwiYm9yZGVyLWJvdHRvbS13aWR0aCI6IjMiLCJwYWRkaW5nLWJvdHRvbSI6IjEyIiwiYm9yZGVyLWNvbG9yIjoiI2VjMzUzNSIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjE2IiwicGFkZGluZy1ib3R0b20iOiI4IiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJsYW5kc2NhcGUiOnsicGFkZGluZy1ib3R0b20iOiIxMCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicGhvbmUiOnsiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\"][td_flex_block_1 modules_on_row=\"eyJwaG9uZSI6IjEwMCUifQ==\" modules_category=\"\" show_btn=\"none\" show_excerpt=\"none\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjEyIn0=\" f_title_font_line_height=\"eyJhbGwiOiIxLjQiLCJsYW5kc2NhcGUiOiIxLjMifQ==\" show_cat=\"none\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIwIDAgMCAxNnB4IiwibGFuZHNjYXBlIjoiMCAwIDAgMTJweCIsInBvcnRyYWl0IjoiMTJweCAwIDAifQ==\" modules_divider=\"\" image_size=\"\" meta_info_align=\"center\" image_floated=\"eyJhbGwiOiJmbG9hdF9sZWZ0IiwicG9ydHJhaXQiOiJub19mbG9hdCJ9\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"600\" image_height=\"eyJhbGwiOiI3MCIsImxhbmRzY2FwZSI6IjkwIiwicG9ydHJhaXQiOiI2MCJ9\" all_modules_space=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE1IiwicG9ydHJhaXQiOiIyMCJ9\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiIwIiwibGFuZHNjYXBlIjoiMCJ9\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"none\" show_author=\"none\" mc1_el=\"10\" f_title_font_family=\"456\" f_title_font_transform=\"undefined\" title_txt=\"#000000\" title_txt_hover=\"#f43f3f\" cat_txt=\"#ec3535\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" modules_category_padding=\"eyJhbGwiOiIwIiwicG9ydHJhaXQiOiIwIiwibGFuZHNjYXBlIjoiMCJ9\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjEwIiwicG9ydHJhaXQiOiIxMSJ9\" f_cat_font_line_height=\"1\" modules_gap=\"eyJhbGwiOiIwIiwibGFuZHNjYXBlIjoiMTAiLCJwaG9uZSI6IjAifQ==\" modules_category_margin=\"eyJhbGwiOiIwIiwicG9ydHJhaXQiOiIwIiwibGFuZHNjYXBlIjoiMCJ9\" modules_cat_border=\"0\" modules_category_radius=\"eyJhbGwiOiJ1bmRlZmluZWQiLCJwb3J0cmFpdCI6IjIifQ==\" f_cat_font_style=\"undefined\" f_cat_font_spacing=\"-0.5\" cat_txt_hover=\"#000000\" image_width=\"eyJhbGwiOiIzMCIsInBvcnRyYWl0IjoiMTAwIn0=\" f_title_font_style=\"undefined\" excl_padd=\"3px 5px\" excl_margin=\"-4px 5px 0 0\" f_excl_font_family=\"653\" f_excl_font_transform=\"uppercase\" f_excl_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_weight=\"500\" f_excl_font_line_height=\"1\" f_excl_font_spacing=\"-0.5\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_radius=\"2\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6IjIwMCIsInBhZGRpbmctYm90dG9tIjoiMTAwIiwiYmFja2dyb3VuZC1jb2xvciI6IiNmN2Y3ZjciLCJkaXNwbGF5IjoiIn0sInBob25lIjp7InBhZGRpbmctYm90dG9tIjoiNjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJtYXJnaW4tdG9wIjoiMTQwIiwicGFkZGluZy1ib3R0b20iOiI2MCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwibGFuZHNjYXBlIjp7Im1hcmdpbi10b3AiOiIxNzAiLCJwYWRkaW5nLWJvdHRvbSI6IjgwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5fQ==\"][vc_column width=\"1/1\" tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI1IiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJwYWRkaW5nLXRvcCI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJwYWRkaW5nLXRvcCI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\"][vc_row_inner tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0yMDAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJtYXJnaW4tdG9wIjoiLTE3MCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsibWFyZ2luLXRvcCI6Ii0xNDAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\"][vc_column_inner][td_block_title title_tag=\"h4\" content_align_horizontal=\"content-horiz-center\" block_template_id=\"td_block_template_13\" big_title_text=\"Related\" big_text_color=\"#f7f7f7\" header_text_color=\"#000000\" f_header_font_family=\"653\" f_header_font_weight=\"700\" f_header_font_size=\"eyJhbGwiOiIzMiIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIyNiJ9\" f_header_font_spacing=\"-1\" f_header_font_line_height=\"1\" f_header_font_transform=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjUwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMzYiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiI0MCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" custom_title=\"More like this\"][/vc_column_inner][/vc_row_inner][td_flex_block_1 modules_on_row=\"eyJhbGwiOiIyNSUiLCJwaG9uZSI6IjEwMCUifQ==\" limit=\"4\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"eyJwb3J0cmFpdCI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTMiLCJsYW5kc2NhcGUiOiIxNCJ9\" f_title_font_line_height=\"1.2\" show_cat=\"none\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIxNnB4IDAgMCAwIiwibGFuZHNjYXBlIjoiMTRweCAwIDAgMCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9\" modules_divider=\"\" image_size=\"\" meta_info_align=\"\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"600\" image_height=\"70\" all_modules_space=\"eyJwaG9uZSI6IjMwIiwicG9ydHJhaXQiOiIxMCIsImFsbCI6IjIwIiwibGFuZHNjYXBlIjoiMTUifQ==\" art_excerpt=\"0\" art_title=\"eyJsYW5kc2NhcGUiOiIwIDAgNnB4IDAiLCJwb3J0cmFpdCI6IjAgMCA0cHggMCIsImFsbCI6IjAgMCA4cHggMCJ9\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"undefined\" f_cat_font_weight=\"undefined\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"\" show_author=\"eyJwb3J0cmFpdCI6Im5vbmUiLCJsYW5kc2NhcGUiOiJub25lIn0=\" mc1_el=\"10\" f_title_font_family=\"653\" f_title_font_transform=\"\" title_txt=\"#000000\" title_txt_hover=\"#f43f3f\" cat_txt=\"#ec3535\" cat_bg=\"rgba(255,255,255,0)\" modules_category_padding=\"0\" f_cat_font_family=\"undefined\" f_cat_font_size=\"undefined\" modules_gap=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE1IiwicG9ydHJhaXQiOiIxMCIsInBob25lIjoiMCJ9\" modules_category_margin=\"0\" modules_cat_border=\"0\" modules_category_radius=\"undefined\" f_cat_font_style=\"undefined\" columns=\"33.33333333%\" columns_gap=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE1IiwicG9ydHJhaXQiOiIxMCIsInBob25lIjoiMCJ9\" modules_space1=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE1IiwicG9ydHJhaXQiOiIxMiIsInBob25lIjoiMzAifQ==\" hide_image3=\"yes\" image_height1=\"70\" modules_space2=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE2IiwicG9ydHJhaXQiOiIxMCJ9\" meta_padding2=\"0\" art_title1=\"eyJhbGwiOiIwIDAgMTJweCAwIiwibGFuZHNjYXBlIjoiMCAwIDEwcHgiLCJwb3J0cmFpdCI6IjAgMCA4cHgifQ==\" art_title2=\"eyJhbGwiOiIwIDAgOHB4IDAiLCJwb3J0cmFpdCI6IjAiLCJsYW5kc2NhcGUiOiIwIDAgNnB4IDAifQ==\" f_title1_font_family=\"456\" f_title2_font_family=\"653\" f_title1_font_size=\"eyJhbGwiOiIyNiIsImxhbmRzY2FwZSI6IjE5IiwicG9ydHJhaXQiOiIxNyJ9\" f_title1_font_line_height=\"1.1\" f_title1_font_style=\"undefined\" f_title2_font_style=\"undefined\" f_title1_font_weight=\"600\" f_title2_font_weight=\"600\" f_title1_font_transform=\"\" f_title2_font_transform=\"\" title_txt2=\"#000000\" title_txt_hover2=\"#f43f3f\" show_excerpt2=\"none\" show_com2=\"none\" show_date2=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" show_author2=\"none\" modules_category3=\"\" modules_category_margin1=\"0\" modules_category_margin2=\"0\" modules_category_padding1=\"0\" modules_category_padding2=\"0\" modules_cat_border1=\"0\" modules_cat_border2=\"0\" cat_bg2=\"rgba(255,255,255,0)\" cat_txt2=\"#ec3535\" author_photo_radius1=\"100%\" author_photo_radius2=\"100%\" review_size2=\"eyJhbGwiOiIyLjUiLCJwb3J0cmFpdCI6IjAifQ==\" f_meta1_font_family=\"653\" f_meta2_font_family=\"653\" f_meta1_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta1_font_line_height=\"1\" f_meta1_font_style=\"undefined\" f_meta2_font_style=\"undefined\" f_meta1_font_weight=\"500\" f_meta2_font_weight=\"500\" f_meta1_font_transform=\"capitalize\" f_meta2_font_transform=\"capitalize\" f_meta1_font_spacing=\"-0.5\" meta_info_align1=\"\" meta_padding1=\"eyJhbGwiOiIyMHB4IDAiLCJsYW5kc2NhcGUiOiIxNXB4IDAiLCJwb3J0cmFpdCI6IjEycHggMCIsInBob25lIjoiMjBweCAwIDAifQ==\" show_author1=\"eyJsYW5kc2NhcGUiOiJub25lIiwicG9ydHJhaXQiOiJub25lIn0=\" show_com1=\"none\" show_excerpt1=\"none\" modules_border_size1=\"eyJhbGwiOiIwIDAgMXB4IDAiLCJwaG9uZSI6IjAifQ==\" show_cat1=\"none\" show_cat2=\"none\" author_photo=\"yes\" f_title2_font_size=\"eyJhbGwiOiIxNiIsImxhbmRzY2FwZSI6IjE1IiwicG9ydHJhaXQiOiIxMyJ9\" f_title2_font_line_height=\"1.2\" f_meta2_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta2_font_line_height=\"1\" f_meta2_font_spacing=\"-0.5\" all_underline_color1=\"\" author_txt=\"#000000\" author_txt_hover=\"#ec3535\" date_txt=\"#000000\" all_underline_color2=\"\" date_txt2=\"#000000\" cat_bg_hover=\"undefined\" author_photo_size=\"undefined\" author_photo_space=\"undefined\" author_photo_radius=\"100%\" review_size=\"eyJhbGwiOiIyLjUiLCJwb3J0cmFpdCI6IjAifQ==\" f_meta_font_family=\"653\" f_meta_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta_font_line_height=\"1\" f_meta_font_style=\"undefined\" f_meta_font_weight=\"500\" f_meta_font_transform=\"capitalize\" f_meta_font_spacing=\"-0.5\" excl_padd=\"3px 5px\" excl_margin=\"-4px 5px 0 0\" f_excl_font_family=\"653\" f_excl_font_transform=\"uppercase\" f_excl_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_weight=\"500\" f_excl_font_line_height=\"1\" f_excl_font_spacing=\"-0.5\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" excl_radius=\"2\"][/vc_column][/vc_row][/tdc_zone]\r\n', 'Single Template - Week PRO', '', 'publish', 'closed', 'closed', '', 'single-template-week-pro', '', '', '2022-02-22 08:53:21', '2022-02-22 08:53:21', '', 0, 'http://tdi_323_8dd', 0, 'tdb_templates', '', 0),
(90, 9467, '2022-02-22 08:53:21', '2022-02-22 08:53:21', '[tdc_zone type=\"tdc_content\"][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI2MCIsInBhZGRpbmctYm90dG9tIjoiODAiLCJiYWNrZ3JvdW5kLWNvbG9yIjoiI2Y0ZjRmNCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsicGFkZGluZy10b3AiOiI0MCIsInBhZGRpbmctYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJwYWRkaW5nLXRvcCI6IjUwIiwicGFkZGluZy1ib3R0b20iOiI2MCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicGhvbmUiOnsicGFkZGluZy10b3AiOiI1MCIsInBhZGRpbmctYm90dG9tIjoiNTAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][vc_column][tdm_block_column_title title_text=\"RXJyb3IlMjA0MDQlMjAtJTIwbm90JTIwZm91bmQ=\" title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_weight=\"700\" tds_title1-f_title_font_size=\"eyJhbGwiOiI0MiIsImxhbmRzY2FwZSI6IjM2IiwicG9ydHJhaXQiOiIzMiIsInBob25lIjoiMzAifQ==\" tds_title1-f_title_font_family=\"456\" tds_title1-f_title_font_line_height=\"1\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjE1IiwiYm9yZGVyLWNvbG9yIjoiIzZkMjkyOSIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi1ib3R0b20iOiIxMiIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjEwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" tds_title=\"tds_title1\" tds_title2-line_width=\"40\" tds_title2-line_height=\"eyJhbGwiOiI0IiwicG9ydHJhaXQiOiIzIn0=\" tds_title2-line_space=\"eyJhbGwiOiIxNiIsImxhbmRzY2FwZSI6IjE0IiwicG9ydHJhaXQiOiIxMiJ9\" tds_title2-line_alignment=\"-100\" tds_title2-line_color=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiIjNmQyOTI5IiwiY29sb3IyIjoiIzZkMjkyOSIsIm1peGVkQ29sb3JzIjpbXSwiZGVncmVlIjoiLTkwIiwiY3NzIjoiYmFja2dyb3VuZC1jb2xvcjogIzZkMjkyOTsiLCJjc3NQYXJhbXMiOiIwZGVnLCM2ZDI5MjksIzZkMjkyOSJ9\" tds_title2-f_title_font_size=\"eyJhbGwiOiI0MiIsImxhbmRzY2FwZSI6IjM2IiwicG9ydHJhaXQiOiIzMiIsInBob25lIjoiMzAifQ==\" tds_title2-f_title_font_line_height=\"1.2\" tds_title2-f_title_font_weight=\"700\" tds_title2-f_title_font_family=\"456\" content_align_horizontal=\"content-horiz-center\" tds_title2-title_color=\"#000000\" tds_title1-f_title_font_style=\"undefined\" tds_title1-f_title_font_transform=\"\"][tdm_block_inline_text description=\"V2UlMjBjb3VsZG4ndCUyMGZpbmQlMjB3aGF0JTIweW91J3JlJTIwbG9va2luZyUyMGZvci4lMjBCcm93c2UlMjBvdXIlMjBsYXRlc3QlMjBzdG9yaWVzJTIwb3IlMjB0cnklMjBzZWFyY2hpbmclMjB1c2luZyUyMHRoZSUyMGZvcm0lMjBiZWxvdyUzQQ==\" f_descr_font_family=\"653\" f_descr_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTQiLCJsYW5kc2NhcGUiOiIxNSIsInBob25lIjoiMTUifQ==\" f_descr_font_line_height=\"1.5\" description_color=\"#000000\" f_descr_font_weight=\"400\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjUwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiI0MCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" content_align_horizontal=\"content-horiz-center\"][tdb_search_form f_input_font_family=\"653\" f_placeholder_font_family=\"653\" f_btn_font_family=\"653\" f_msg_font_family=\"653\" f_btn_font_line_height=\"eyJhbGwiOiIyIiwicG9ydHJhaXQiOiIxLjYifQ==\" btn_bg=\"#ec3535\" btn_bg_h=\"#c11f1f\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiYXV0byIsIm1hcmdpbi1ib3R0b20iOiIwIiwibWFyZ2luLWxlZnQiOiJhdXRvIiwid2lkdGgiOiI3MCUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7IndpZHRoIjoiODElIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJ3aWR0aCI6IjEwMCUiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" content_align_horizontal=\"content-horiz-center\" f_btn_font_transform=\"uppercase\" f_msg_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjEzIn0=\" f_msg_font_line_height=\"1.4\" f_input_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjEzIn0=\" f_placeholder_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjEzIn0=\" f_btn_font_size=\"eyJwaG9uZSI6IjEyIn0=\" f_btn_font_weight=\"700\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiYm9yZGVyLWJvdHRvbS13aWR0aCI6IjEiLCJwYWRkaW5nLXRvcCI6IjMwIiwicGFkZGluZy1yaWdodCI6IjYwIiwicGFkZGluZy1ib3R0b20iOiI1MCIsInBhZGRpbmctbGVmdCI6IjYwIiwiYm9yZGVyLWNvbG9yIjoiI2VhZWFlYSIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi1ib3R0b20iOiI1MCIsInBhZGRpbmctdG9wIjoiMjUiLCJwYWRkaW5nLWJvdHRvbSI6IjQ1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJwYWRkaW5nLXRvcCI6IjIwIiwicGFkZGluZy1ib3R0b20iOiI0MCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjUwIiwicGFkZGluZy1yaWdodCI6IjUwIiwicGFkZGluZy1sZWZ0IjoiNTAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][vc_column][tdm_block_column_title title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"653\" tds_title1-f_title_font_weight=\"600\" tds_title1-f_title_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjEzIiwicG9ydHJhaXQiOiIxMiIsInBob25lIjoiMTMifQ==\" tds_title1-title_color=\"#ec3535\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjE1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjEyIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMTAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" tds_title1-f_title_font_line_height=\"1.2\" title_text=\"QnJvd3NlJTIwb3VyJTIwZXhjbHVzaXZlJTIwYXJ0aWNsZXMh\" tds_title1-f_title_font_transform=\"uppercase\" content_align_horizontal=\"content-horiz-center\"][td_flex_block_1 modules_on_row=\"eyJhbGwiOiIyNSUiLCJwaG9uZSI6IjEwMCUifQ==\" image_size=\"\" image_floated=\"hidden\" image_width=\"eyJwaG9uZSI6IjMwIn0=\" image_height=\"eyJwaG9uZSI6IjExMCJ9\" show_btn=\"none\" show_excerpt=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_com=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_author=\"none\" show_cat=\"none\" meta_padding=\"0\" f_title_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjE0IiwicG9ydHJhaXQiOiIxMyJ9\" f_title_font_line_height=\"1.3\" f_title_font_weight=\"600\" all_modules_space=\"eyJwaG9uZSI6IjMwIiwiYWxsIjoiMCJ9\" category_id=\"\" show_date=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" art_excerpt=\"0\" show_review=\"none\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" f_title_font_family=\"456\" mc1_el=\"10\" title_txt_hover=\"#f43f3f\" title_txt=\"#000000\" f_meta_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTAiLCJsYW5kc2NhcGUiOiIxMSJ9\" f_meta_font_line_height=\"1\" f_meta_font_weight=\"400\" f_meta_font_family=\"653\" limit=\"4\" modules_category=\"\" modules_category_padding=\"0\" cat_bg=\"rgba(255,255,255,0)\" cat_txt=\"#f43f3f\" f_title_font_transform=\"\" modules_gap=\"eyJwb3J0cmFpdCI6IjEwIiwicGhvbmUiOiIwIiwibGFuZHNjYXBlIjoiMjAifQ==\" sort=\"\" el_class=\"td-week-slider\" ajax_pagination=\"next_prev\" td_ajax_preloading=\"preload\" pag_space=\"0\" pag_border_width=\"0\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"21\" pag_text=\"#ffffff\" pag_h_text=\"#ffffff\" pag_bg=\"#dddddd\" pag_h_bg=\"#aaaaaa\" pag_border_radius=\"100\" time_ago=\"yes\" show_modified_date=\"yes\" date_txt=\"#000000\" f_title_font_spacing=\"-0.5\" art_title=\"eyJwb3J0cmFpdCI6IjAifQ==\" excl_padd=\"3px 5px\" excl_margin=\"-4px 5px 0 0\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_family=\"653\" f_excl_font_transform=\"uppercase\" f_excl_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_weight=\"500\" f_excl_font_line_height=\"1\" f_excl_font_spacing=\"-0.5\" excl_radius=\"2\" excl_show=\"\" locked_only=\"yes\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\"][vc_column width=\"1/1\" tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI1IiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNjAiLCJwYWRkaW5nLXRvcCI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJwYWRkaW5nLXRvcCI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\"][td_flex_block_4 modules_on_row=\"\" limit=\"20\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"eyJwb3J0cmFpdCI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTMiLCJsYW5kc2NhcGUiOiIxNCJ9\" f_title_font_line_height=\"1.3\" show_cat=\"\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIxNnB4IDMwcHggMCAwIiwibGFuZHNjYXBlIjoiMTRweCAwIDAgMCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9\" modules_divider=\"\" image_size=\"\" meta_info_align=\"\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"600\" image_height=\"eyJhbGwiOiI3MiIsImxhbmRzY2FwZSI6Ijg1IiwicG9ydHJhaXQiOiI5MCJ9\" all_modules_space=\"eyJhbGwiOiIyMCIsInBob25lIjoiMzAiLCJwb3J0cmFpdCI6IjE2In0=\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiI4cHggMCAwIDAiLCJsYW5kc2NhcGUiOiI2cHggMCAwIDAiLCJwb3J0cmFpdCI6IjRweCAwIDAgMCJ9\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"none\" show_author=\"none\" mc1_el=\"10\" f_title_font_family=\"456\" f_title_font_transform=\"\" title_txt=\"#000000\" title_txt_hover=\"#f43f3f\" cat_txt=\"#ec3535\" cat_bg=\"rgba(255,255,255,0)\" modules_category_padding=\"0\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIn0=\" f_cat_font_line_height=\"1\" modules_gap=\"0\" modules_category_margin=\"0\" modules_cat_border=\"0\" modules_category_radius=\"undefined\" f_cat_font_style=\"undefined\" f_cat_font_spacing=\"-0.5\" columns=\"25%\" columns_gap=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE1IiwicG9ydHJhaXQiOiIxMCIsInBob25lIjoiMCJ9\" modules_space1=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE1IiwicG9ydHJhaXQiOiIxMiIsInBob25lIjoiMzAifQ==\" hide_image3=\"yes\" image_height1=\"70\" modules_space2=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE2IiwicG9ydHJhaXQiOiIxMCJ9\" meta_padding2=\"0\" art_title1=\"eyJhbGwiOiIwIDAgMTJweCAwIiwibGFuZHNjYXBlIjoiMCAwIDEwcHgiLCJwb3J0cmFpdCI6IjAgMCA4cHgifQ==\" art_title2=\"eyJhbGwiOiIwIDAgOHB4IDAiLCJwb3J0cmFpdCI6IjAiLCJsYW5kc2NhcGUiOiIwIDAgNnB4IDAifQ==\" f_title1_font_family=\"456\" f_title2_font_family=\"653\" f_title1_font_size=\"eyJhbGwiOiIyNiIsImxhbmRzY2FwZSI6IjE5IiwicG9ydHJhaXQiOiIxNyJ9\" f_title1_font_line_height=\"1.1\" f_title1_font_style=\"undefined\" f_title2_font_style=\"undefined\" f_title1_font_weight=\"600\" f_title2_font_weight=\"600\" f_title1_font_transform=\"\" f_title2_font_transform=\"\" title_txt2=\"#000000\" title_txt_hover2=\"#f43f3f\" show_excerpt2=\"none\" show_com2=\"none\" show_date2=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" show_author2=\"none\" modules_category3=\"\" modules_category_margin1=\"0\" modules_category_margin2=\"0\" modules_category_padding1=\"0\" modules_category_padding2=\"0\" modules_cat_border1=\"0\" modules_cat_border2=\"0\" cat_bg2=\"rgba(255,255,255,0)\" cat_txt2=\"#ec3535\" author_photo_radius1=\"100%\" author_photo_radius2=\"100%\" review_size2=\"eyJhbGwiOiIyLjUiLCJwb3J0cmFpdCI6IjAifQ==\" f_meta1_font_family=\"653\" f_meta2_font_family=\"653\" f_meta1_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta1_font_line_height=\"1\" f_meta1_font_style=\"undefined\" f_meta2_font_style=\"undefined\" f_meta1_font_weight=\"500\" f_meta2_font_weight=\"500\" f_meta1_font_transform=\"capitalize\" f_meta2_font_transform=\"capitalize\" f_meta1_font_spacing=\"-0.5\" meta_info_align1=\"\" meta_padding1=\"eyJhbGwiOiIyMHB4IDAiLCJsYW5kc2NhcGUiOiIxNXB4IDAiLCJwb3J0cmFpdCI6IjEycHggMCIsInBob25lIjoiMjBweCAwIDAifQ==\" show_author1=\"eyJsYW5kc2NhcGUiOiJub25lIiwicG9ydHJhaXQiOiJub25lIn0=\" show_com1=\"none\" show_excerpt1=\"none\" modules_border_size1=\"eyJhbGwiOiIwIDAgMXB4IDAiLCJwaG9uZSI6IjAifQ==\" show_cat1=\"none\" show_cat2=\"none\" author_photo=\"yes\" f_title2_font_size=\"eyJhbGwiOiIxNiIsImxhbmRzY2FwZSI6IjE0IiwicG9ydHJhaXQiOiIxMyJ9\" f_title2_font_line_height=\"1.2\" f_meta2_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta2_font_line_height=\"1\" f_meta2_font_spacing=\"-0.5\" all_underline_color1=\"\" author_txt=\"#000000\" author_txt_hover=\"#ec3535\" date_txt=\"#000000\" all_underline_color2=\"\" date_txt2=\"#000000\" excl_margin_1=\"-4px 8px 0 0\" excl_padd_1=\"5px 8px\" excl_radius_1=\"2\" excl_color_1=\"#ffffff\" excl_color_h_1=\"#ffffff\" excl_bg_1=\"#ec3535\" excl_bg_h_1=\"#ec3535\" f_excl_1_font_family=\"653\" f_excl_1_font_transform=\"uppercase\" f_excl_1_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_1_font_weight=\"600\" f_excl_1_font_line_height=\"1\" f_excl_1_font_spacing=\"-0.5\" excl_margin_2=\"-4px 5px 0 0\" excl_padd_2=\"3px 5px\" excl_radius_2=\"2\" excl_color_2=\"#ffffff\" excl_color_h_2=\"#ffffff\" excl_bg_2=\"#ec3535\" excl_bg_h_2=\"#ec3535\" f_excl_2_font_family=\"653\" f_excl_2_font_transform=\"uppercase\" f_excl_2_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_2_font_weight=\"500\" f_excl_2_font_line_height=\"1\" f_excl_2_font_spacing=\"-0.5\"][/vc_column][/vc_row][/tdc_zone]\r\n', '404 Template - Week PRO', '', 'publish', 'closed', 'closed', '', '404-template-week-pro', '', '', '2022-02-22 08:53:21', '2022-02-22 08:53:21', '', 0, 'http://tdi_378_2d2', 0, 'tdb_templates', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(91, 9467, '2022-02-22 08:53:21', '2022-02-22 08:53:21', '[tdc_zone type=\"tdc_content\"][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiI2MCIsInBhZGRpbmctYm90dG9tIjoiODAiLCJiYWNrZ3JvdW5kLWNvbG9yIjoiI2Y0ZjRmNCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsicGFkZGluZy10b3AiOiI0MCIsInBhZGRpbmctYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJwYWRkaW5nLXRvcCI6IjUwIiwicGFkZGluZy1ib3R0b20iOiI2MCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicGhvbmUiOnsicGFkZGluZy10b3AiOiI1MCIsInBhZGRpbmctYm90dG9tIjoiNTAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][vc_column][tdb_title content_align_horizontal=\"content-horiz-center\" f_title_font_size=\"eyJhbGwiOiI0MiIsImxhbmRzY2FwZSI6IjM2IiwicGhvbmUiOiIzMCIsInBvcnRyYWl0IjoiMzIifQ==\" f_title_font_line_height=\"1\" f_title_font_weight=\"700\" f_title_font_family=\"456\" f_title_font_transform=\"none\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjMwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjI1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" title_color=\"#000000\"][tdb_search_form f_input_font_family=\"653\" f_placeholder_font_family=\"653\" f_btn_font_family=\"653\" f_msg_font_family=\"653\" f_btn_font_line_height=\"eyJhbGwiOiIyIiwicG9ydHJhaXQiOiIxLjYifQ==\" btn_bg=\"#ec3535\" btn_bg_h=\"#c11f1f\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiYXV0byIsIm1hcmdpbi1ib3R0b20iOiIwIiwibWFyZ2luLWxlZnQiOiJhdXRvIiwid2lkdGgiOiI3MCUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7IndpZHRoIjoiODElIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJ3aWR0aCI6IjEwMCUiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" content_align_horizontal=\"content-horiz-center\" f_btn_font_transform=\"uppercase\" f_msg_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjEzIn0=\" f_msg_font_line_height=\"1.4\" f_input_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjEzIn0=\" f_placeholder_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTQiLCJwaG9uZSI6IjEzIn0=\" f_btn_font_size=\"eyJwaG9uZSI6IjEyIn0=\" f_btn_font_weight=\"700\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiYm9yZGVyLWJvdHRvbS13aWR0aCI6IjEiLCJwYWRkaW5nLXRvcCI6IjMwIiwicGFkZGluZy1yaWdodCI6IjYwIiwicGFkZGluZy1ib3R0b20iOiI1MCIsInBhZGRpbmctbGVmdCI6IjYwIiwiYm9yZGVyLWNvbG9yIjoiI2VhZWFlYSIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi1ib3R0b20iOiI1MCIsInBhZGRpbmctdG9wIjoiMjUiLCJwYWRkaW5nLWJvdHRvbSI6IjQ1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJwYWRkaW5nLXRvcCI6IjIwIiwicGFkZGluZy1ib3R0b20iOiI0MCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjUwIiwicGFkZGluZy1yaWdodCI6IjUwIiwicGFkZGluZy1sZWZ0IjoiNTAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][vc_column][tdm_block_column_title title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"653\" tds_title1-f_title_font_weight=\"600\" tds_title1-f_title_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjEzIiwicG9ydHJhaXQiOiIxMiIsInBob25lIjoiMTMifQ==\" tds_title1-title_color=\"#ec3535\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjE1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjEyIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMTAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" tds_title1-f_title_font_line_height=\"1.2\" title_text=\"QnJvd3NlJTIwb3VyJTIwZXhjbHVzaXZlJTIwYXJ0aWNsZXMh\" tds_title1-f_title_font_transform=\"uppercase\" content_align_horizontal=\"content-horiz-center\"][td_flex_block_1 modules_on_row=\"eyJhbGwiOiIyNSUiLCJwaG9uZSI6IjEwMCUifQ==\" image_size=\"\" image_floated=\"hidden\" image_width=\"eyJwaG9uZSI6IjMwIn0=\" image_height=\"eyJwaG9uZSI6IjExMCJ9\" show_btn=\"none\" show_excerpt=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_com=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_author=\"none\" show_cat=\"none\" meta_padding=\"0\" f_title_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjE0IiwicG9ydHJhaXQiOiIxMyJ9\" f_title_font_line_height=\"1.3\" f_title_font_weight=\"600\" all_modules_space=\"eyJwaG9uZSI6IjMwIiwiYWxsIjoiMCJ9\" category_id=\"\" show_date=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" art_excerpt=\"0\" show_review=\"none\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2N30=\" f_title_font_family=\"456\" mc1_el=\"10\" title_txt_hover=\"#f43f3f\" title_txt=\"#000000\" f_meta_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTAiLCJsYW5kc2NhcGUiOiIxMSJ9\" f_meta_font_line_height=\"1\" f_meta_font_weight=\"400\" f_meta_font_family=\"653\" limit=\"4\" modules_category=\"\" modules_category_padding=\"0\" cat_bg=\"rgba(255,255,255,0)\" cat_txt=\"#f43f3f\" f_title_font_transform=\"\" modules_gap=\"eyJwb3J0cmFpdCI6IjEwIiwicGhvbmUiOiIwIiwibGFuZHNjYXBlIjoiMjAifQ==\" sort=\"\" el_class=\"td-week-slider\" ajax_pagination=\"next_prev\" td_ajax_preloading=\"preload\" pag_space=\"0\" pag_border_width=\"0\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"21\" pag_text=\"#ffffff\" pag_h_text=\"#ffffff\" pag_bg=\"#dddddd\" pag_h_bg=\"#aaaaaa\" pag_border_radius=\"100\" time_ago=\"yes\" show_modified_date=\"yes\" date_txt=\"#000000\" f_title_font_spacing=\"-0.5\" art_title=\"eyJwb3J0cmFpdCI6IjAifQ==\" excl_padd=\"3px 5px\" excl_margin=\"-4px 5px 0 0\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_family=\"653\" f_excl_font_transform=\"uppercase\" f_excl_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_weight=\"500\" f_excl_font_line_height=\"1\" f_excl_font_spacing=\"-0.5\" excl_radius=\"2\" excl_show=\"\" locked_only=\"yes\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjEwMCIsImRpc3BsYXkiOiIifSwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2NywibGFuZHNjYXBlIjp7Im1hcmdpbi1ib3R0b20iOiI4MCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicG9ydHJhaXQiOnsibWFyZ2luLWJvdHRvbSI6IjYwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" flex_layout=\"block\" flex_vert_align=\"flex-start\"][vc_column width=\"3/4\" tdc_css=\"eyJsYW5kc2NhcGUiOnsid2lkdGgiOiI3MCUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7IndpZHRoIjoiNzAlIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][tdb_loop modules_on_row=\"\" modules_gap=\"0\" modules_category=\"\" show_excerpt=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" show_btn=\"none\" ajax_pagination=\"numbered\" hide_audio=\"yes\" meta_info_horiz=\"\" hide_image=\"\" image_width=\"eyJhbGwiOiI1MCIsInBob25lIjoiMTAwIn0=\" image_floated=\"eyJhbGwiOiJmbG9hdF9sZWZ0IiwicGhvbmUiOiJub19mbG9hdCJ9\" meta_padding=\"eyJhbGwiOiIwIDAgMCAyNXB4IiwicG9ydHJhaXQiOiIwIDAgMCAxNXB4IiwicGhvbmUiOiIyMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiMCAwIDAgMjBweCJ9\" image_radius=\"\" modules_category_margin=\"eyJhbGwiOiIwIDEycHggMCAwIiwicG9ydHJhaXQiOiIwIDhweCAwIDAiLCJsYW5kc2NhcGUiOiIwIDEwcHggMCAwIn0=\" show_author=\"eyJwb3J0cmFpdCI6ImlubGluZS1ibG9jayJ9\" show_date=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" show_review=\"none\" show_com=\"none\" meta_info_align=\"center\" modules_category_padding=\"5px 0\" art_title=\"eyJsYW5kc2NhcGUiOiIwIDAgMTBweCAwIiwicG9ydHJhaXQiOiIwIDAgOHB4IDAiLCJhbGwiOiIwIDAgMTJweCAwIn0=\" f_title_font_family=\"456\" f_title_font_size=\"eyJhbGwiOiIzMCIsImxhbmRzY2FwZSI6IjI0IiwicG9ydHJhaXQiOiIyMCIsInBob25lIjoiMjQifQ==\" f_title_font_line_height=\"1.1\" f_title_font_weight=\"600\" f_title_font_transform=\"\" title_txt=\"#000000\" title_txt_hover=\"#f43f3f\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTIifQ==\" f_cat_font_line_height=\"1\" f_cat_font_weight=\"600\" f_cat_font_transform=\"uppercase\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" pag_border_width=\"0\" pag_text=\"#000000\" pag_h_text=\"#ffffff\" pag_a_text=\"#ffffff\" pag_bg=\"rgba(255,255,255,0)\" pag_h_bg=\"#ec3535\" pag_a_bg=\"#ec3535\" f_pag_font_family=\"653\" f_pag_font_size=\"13\" limit=\"5\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn19\" pag_space=\"40\" all_modules_space=\"eyJwaG9uZSI6IjQwIiwiYWxsIjoiNDAiLCJsYW5kc2NhcGUiOiIzMCIsInBvcnRyYWl0IjoiMjAifQ==\" offset=\"4\" show_cat=\"\" image_height=\"70\" f_pag_font_weight=\"500\" art_excerpt=\"eyJhbGwiOiIxMHB4IDAgMCAwIiwibGFuZHNjYXBlIjoiNnB4IDAgMCAwIiwicG9ydHJhaXQiOiIwIn0=\" f_ex_font_family=\"653\" f_ex_font_size=\"eyJhbGwiOiIxNiIsInBvcnRyYWl0IjoiMTQiLCJsYW5kc2NhcGUiOiIxNSIsInBob25lIjoiMTUifQ==\" f_ex_font_line_height=\"1.4\" f_ex_font_style=\"undefined\" f_ex_font_weight=\"500\" f_ex_font_transform=\"undefined\" f_ex_font_spacing=\"undefined\" ex_txt=\"#000000\" f_title_font_style=\"undefined\" f_title_font_spacing=\"undefined\" author_photo_size=\"undefined\" author_photo_space=\"undefined\" author_photo_radius=\"100%\" review_size=\"eyJhbGwiOiIyLjUiLCJwb3J0cmFpdCI6IjAifQ==\" f_meta_font_family=\"653\" f_meta_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta_font_line_height=\"1\" f_meta_font_style=\"undefined\" f_meta_font_weight=\"500\" f_meta_font_transform=\"capitalize\" f_meta_font_spacing=\"-0.5\" author_txt=\"#000000\" author_txt_hover=\"#ec3535\" f_cat_font_spacing=\"undefined\" modules_cat_border=\"0\" modules_category_radius=\"2\" f_cat_font_style=\"undefined\" cat_txt=\"#000000\" cat_txt_hover=\"#ec3535\" date_txt=\"#000000\" excl_margin=\"-4px 10px 0 0\" excl_padd=\"4px 6px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" author_photo=\"yes\"][/vc_column][vc_column width=\"1/4\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsid2lkdGgiOiIzMCUiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7IndpZHRoIjoiMzAlIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdF9tYXhfd2lkdGgiOjEwMTgsInBvcnRyYWl0X21pbl93aWR0aCI6NzY4fQ==\" is_sticky=\"yes\"][tdm_block_inline_text description=\"UG9wdWxhcg==\" display_inline=\"yes\" f_descr_font_family=\"456\" f_descr_font_size=\"eyJhbGwiOiIyMCIsImxhbmRzY2FwZSI6IjE4IiwicG9ydHJhaXQiOiIxNiJ9\" f_descr_font_weight=\"700\" f_descr_font_style=\"italic\" description_color=\"#ffffff\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWxlZnQiOiIyMCIsInBhZGRpbmctdG9wIjoiOCIsInBhZGRpbmctcmlnaHQiOiIxNiIsInBhZGRpbmctYm90dG9tIjoiMTAiLCJwYWRkaW5nLWxlZnQiOiIxNCIsImJhY2tncm91bmQtY29sb3IiOiIjZWMzNTM1Iiwiei1pbmRleCI6IjEiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZSI6eyJtYXJnaW4tbGVmdCI6IjE1IiwicGFkZGluZy10b3AiOiI2IiwicGFkZGluZy1yaWdodCI6IjE0IiwicGFkZGluZy1ib3R0b20iOiI4IiwicGFkZGluZy1sZWZ0IjoiMTIiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi1sZWZ0IjoiMTAiLCJwYWRkaW5nLXRvcCI6IjQiLCJwYWRkaW5nLXJpZ2h0IjoiMTIiLCJwYWRkaW5nLWJvdHRvbSI6IjYiLCJwYWRkaW5nLWxlZnQiOiIxMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=\" f_descr_font_spacing=\"0.5\"][td_flex_block_2 modules_on_row=\"\" limit=\"1\" modules_category=\"above\" show_btn=\"none\" show_excerpt=\"none\" ajax_pagination=\"\" td_ajax_preloading=\"\" sort=\"\" category_id=\"\" f_title_font_size=\"eyJhbGwiOiIyMCIsInBvcnRyYWl0IjoiMTYiLCJwaG9uZSI6IjMwIiwibGFuZHNjYXBlIjoiMTgifQ==\" f_title_font_line_height=\"1\" show_cat=\"none\" meta_info_border_style=\"\" meta_padding=\"eyJhbGwiOiIwIDE1cHggMjBweCAxOHB4IiwibGFuZHNjYXBlIjoiMCAxMHB4IDE1cHggMTJweCIsInBvcnRyYWl0IjoiMCA1cHggMTVweCAxMHB4IiwicGhvbmUiOiIwIDIwcHggMjBweCJ9\" modules_divider=\"\" image_size=\"td_696x0\" meta_info_align=\"bottom\" image_floated=\"\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii0yNCIsIm1hcmdpbi1ib3R0b20iOiIyNSIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi10b3AiOiItMjAiLCJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBvcnRyYWl0Ijp7Im1hcmdpbi10b3AiOiItMTYiLCJtYXJnaW4tYm90dG9tIjoiMTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" meta_info_horiz=\"content-horiz-left\" f_title_font_weight=\"700\" image_height=\"eyJhbGwiOiIxMDAiLCJwb3J0cmFpdCI6IjE0MCJ9\" all_modules_space=\"0\" art_excerpt=\"0\" art_title=\"eyJhbGwiOiIxNnB4IDAgMTJweCAwIiwibGFuZHNjYXBlIjoiMTJweCAwIDhweCAwIiwicG9ydHJhaXQiOiIxMHB4IDAgNnB4IDAiLCJwaG9uZSI6IjEycHggMCAxMHB4IDAifQ==\" btn_bg=\"rgba(255,255,255,0)\" f_btn_font_transform=\"uppercase\" f_btn_font_weight=\"\" f_cat_font_transform=\"uppercase\" f_cat_font_weight=\"600\" btn_bg_hover=\"rgba(255,255,255,0)\" meta_width=\"eyJwaG9uZSI6IjEwMCUifQ==\" show_audio=\"\" show_com=\"none\" show_date=\"\" show_author=\"eyJsYW5kc2NhcGUiOiJub25lIiwicG9ydHJhaXQiOiJub25lIn0=\" mc1_el=\"10\" f_title_font_family=\"653\" f_title_font_transform=\"\" title_txt=\"#ffffff\" title_txt_hover=\"rgba(255,255,255,0.8)\" ex_txt=\"#ffffff\" cat_txt=\"#ffffff\" cat_bg=\"#ec3535\" cat_bg_hover=\"#000000\" author_txt=\"#ffffff\" modules_category_padding=\"eyJhbGwiOiI1cHggOHB4IiwicG9ydHJhaXQiOiI0cHggNnB4In0=\" f_cat_font_family=\"653\" f_cat_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTIiLCJwaG9uZSI6IjEyIn0=\" f_cat_font_line_height=\"1\" excerpt_middle=\"yes\" cat_txt_hover=\"#ffffff\" modules_gap=\"0\" modules_space=\"0\" modules_height=\"eyJwb3J0cmFpdCI6IjI4MCIsImFsbCI6IjQyMCIsImxhbmRzY2FwZSI6IjM0MCIsInBob25lIjoiNDUwIn0=\" image_margin=\"0\" color_overlay=\"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjgpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjUpIiwicGVyY2VudGFnZSI6NDJ9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NjF9XSwiZGVncmVlIjoiMCIsImNzcyI6ImJhY2tncm91bmQ6IC13ZWJraXQtbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KDBkZWcscmdiYSgwLDAsMCwwLjgpLHJnYmEoMCwwLDAsMC41KSA0MiUscmdiYSgwLDAsMCwwKSA2MSUscmdiYSgwLDAsMCwwKSk7IiwiY3NzUGFyYW1zIjoiMGRlZyxyZ2JhKDAsMCwwLDAuOCkscmdiYSgwLDAsMCwwLjUpIDQyJSxyZ2JhKDAsMCwwLDApIDYxJSxyZ2JhKDAsMCwwLDApIn0=\" mc2_el=\"26\" modules_category_radius=\"2\" excl_padd=\"5px 8px\" excl_radius=\"2\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" f_excl_font_transform=\"uppercase\" f_excl_font_weight=\"600\" f_excl_font_family=\"653\" f_excl_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMiIsInBob25lIjoiMTEifQ==\" f_excl_font_line_height=\"1\" pag_border_width=\"0\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"20\" pag_border_radius=\"2\" pag_padding=\"0\" excl_show=\"none\" author_txt_hover=\"rgba(255,255,255,0.8)\" date_txt=\"#ffffff\" f_meta_font_family=\"653\" f_meta_font_transform=\"capitalize\" f_meta_font_weight=\"500\" f_meta_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_meta_font_line_height=\"1.2\" block_template_id=\"td_block_template_2\"][td_flex_block_1 modules_on_row=\"\" image_size=\"\" image_floated=\"hidden\" image_width=\"eyJwaG9uZSI6IjMwIn0=\" image_height=\"eyJwaG9uZSI6IjExMCJ9\" show_btn=\"none\" show_excerpt=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_com=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_author=\"none\" show_cat=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" meta_padding=\"0\" f_title_font_size=\"eyJhbGwiOiIxNCIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMyJ9\" f_title_font_line_height=\"eyJhbGwiOiIxLjQiLCJsYW5kc2NhcGUiOiIxLjMifQ==\" f_title_font_weight=\"600\" all_modules_space=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjYiLCJwb3J0cmFpdCI6IjUifQ==\" category_id=\"\" show_date=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" art_excerpt=\"0\" show_review=\"none\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJtYXJnaW4tdG9wIjoiLTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3NjcsImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTl9\" f_title_font_family=\"456\" mc1_el=\"10\" title_txt_hover=\"#f43f3f\" title_txt=\"#000000\" art_title=\"eyJhbGwiOiIwIDAgMTBweCIsInBvcnRyYWl0IjoiMCIsImxhbmRzY2FwZSI6IjAgMCA2cHgifQ==\" modules_border_size=\"0 0 1px 0\" m_padding=\"eyJhbGwiOiIwIDAgMTVweCIsImxhbmRzY2FwZSI6IjAgMCAxMHB4IiwicG9ydHJhaXQiOiIwIDAgOHB4In0=\" modules_gap=\"0\" f_meta_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTAiLCJsYW5kc2NhcGUiOiIxMSJ9\" f_meta_font_line_height=\"1\" f_meta_font_weight=\"500\" f_meta_font_family=\"653\" modules_cat_border=\"0\" modules_category_padding=\"eyJhbGwiOiIycHggMCIsInBvcnRyYWl0IjoiMCJ9\" f_cat_font_family=\"653\" f_cat_font_transform=\"uppercase\" f_cat_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIn0=\" f_cat_font_weight=\"600\" f_cat_font_line_height=\"1\" f_meta_font_spacing=\"-0.5\" f_cat_font_spacing=\"-0.5\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" cat_txt=\"#ec3535\" cat_txt_hover=\"#000000\" modules_category_margin=\"eyJhbGwiOiIwIDVweCAwIDAiLCJwb3J0cmFpdCI6IjAifQ==\" ajax_pagination=\"next_prev\" pag_border_width=\"0\" pag_space=\"eyJhbGwiOiIxNSIsImxhbmRzY2FwZSI6IjEwIiwicG9ydHJhaXQiOiI1In0=\" prev_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-left\" next_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" pag_icons_size=\"eyJhbGwiOiIyMiIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxOCJ9\" pag_text=\"#000000\" pag_h_text=\"#ec3535\" pag_bg=\"rgba(255,255,255,0)\" pag_h_bg=\"rgba(255,255,255,0)\" f_excl_font_family=\"653\" f_excl_font_transform=\"uppercase\" f_excl_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_weight=\"500\" f_excl_font_line_height=\"1\" f_excl_font_spacing=\"-0.5\" excl_padd=\"3px 5px\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" excl_radius=\"2\" excl_margin=\"-4px 5px 0 0\" excl_show=\"\" offset=\"1\" date_txt=\"#000000\" limit=\"4\" sort=\"\"][tds_leads title_text=\"Subscribe\" input_placeholder=\"Email address\" btn_horiz_align=\"content-horiz-center\" pp_checkbox=\"yes\" pp_msg=\"SSd2ZSUyMHJlYWQlMjBhbmQlMjBhY2NlcHQlMjB0aGUlMjAlM0NhJTIwaHJlZiUzRCUyMiUyMyUyMiUzRVByaXZhY3klMjBQb2xpY3klM0MlMkZhJTNFLg==\" f_title_font_family=\"653\" f_title_font_size=\"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIyMiJ9\" f_title_font_line_height=\"1\" f_title_font_weight=\"700\" f_title_font_spacing=\"-1\" msg_composer=\"success\" display=\"column\" gap=\"10\" input_padd=\"eyJhbGwiOiIxNXB4IDEwcHgiLCJsYW5kc2NhcGUiOiIxMnB4IDhweCIsInBvcnRyYWl0IjoiMTBweCA2cHgifQ==\" input_border=\"1\" btn_text=\"I want in\" btn_tdicon=\"tdc-font-tdmp tdc-font-tdmp-arrow-right\" btn_icon_size=\"eyJhbGwiOiIxOSIsImxhbmRzY2FwZSI6IjE3IiwicG9ydHJhaXQiOiIxNSJ9\" btn_icon_space=\"eyJhbGwiOiI1IiwicG9ydHJhaXQiOiIzIn0=\" btn_radius=\"3\" input_radius=\"3\" f_msg_font_family=\"653\" f_msg_font_size=\"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTIifQ==\" f_msg_font_weight=\"600\" f_msg_font_line_height=\"1.4\" f_input_font_family=\"653\" f_input_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjEzIiwicG9ydHJhaXQiOiIxMiJ9\" f_input_font_line_height=\"1.2\" f_btn_font_family=\"653\" f_input_font_weight=\"500\" f_btn_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSJ9\" f_btn_font_line_height=\"1.2\" f_btn_font_weight=\"700\" f_pp_font_family=\"653\" f_pp_font_size=\"eyJhbGwiOiIxMyIsImxhbmRzY2FwZSI6IjEyIiwicG9ydHJhaXQiOiIxMSJ9\" f_pp_font_line_height=\"1.2\" pp_check_color=\"#000000\" pp_check_color_a=\"#ec3535\" pp_check_color_a_h=\"#c11f1f\" f_btn_font_transform=\"uppercase\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjM1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" msg_succ_radius=\"2\" btn_bg=\"#ec3535\" btn_bg_h=\"#c11f1f\" title_space=\"eyJwb3J0cmFpdCI6IjEyIiwibGFuZHNjYXBlIjoiMTQiLCJhbGwiOiIxOCJ9\" msg_space=\"eyJsYW5kc2NhcGUiOiIwIDAgMTJweCJ9\" btn_padd=\"eyJsYW5kc2NhcGUiOiIxMiIsInBvcnRyYWl0IjoiMTBweCJ9\" msg_padd=\"eyJwb3J0cmFpdCI6IjZweCAxMHB4In0=\"][td_block_ad_box spot_img_horiz=\"content-horiz-center\" media_size_image_height=\"848\" media_size_image_width=\"624\" spot_img_all=\"23\" spot_img_mob=\"24\" spot_url=\"https://themeforest.net/item/newspaper/5489609\" spot_url_rel=\"noopener\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwibGFuZHNjYXBlIjp7ImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOX0=\"][/vc_column][/vc_row][/tdc_zone]\r\n', 'Date Template - Week PRO', '', 'publish', 'closed', 'closed', '', 'date-template-week-pro', '', '', '2022-02-22 08:53:21', '2022-02-22 08:53:21', '', 0, 'http://tdi_398_134', 0, 'tdb_templates', '', 0),
(92, 9467, '2022-02-22 08:53:21', '2022-02-22 08:53:21', '[tdc_zone type=\"tdc_footer\" row_bg_gradient=\"#eaeaea\"][vc_row full_width=\"stretch_row_1400 td-stretch-content\" tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiIzMCIsImRpc3BsYXkiOiIifX0=\"][vc_column][vc_row_inner tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiMCIsIm1hcmdpbi1ib3R0b20iOiIzMCIsIm1hcmdpbi1sZWZ0IjoiMCIsImJvcmRlci1ib3R0b20td2lkdGgiOiIzIiwiYm9yZGVyLWNvbG9yIjoiIzAwMDAwMCIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlIjp7Im1hcmdpbi1ib3R0b20iOiIyNSIsImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOSwicGhvbmUiOnsibWFyZ2luLWJvdHRvbSI6IjI1IiwicGFkZGluZy1ib3R0b20iOiIxMCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3NjcsInBvcnRyYWl0Ijp7Im1hcmdpbi1ib3R0b20iOiIyMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=\" flex_layout=\"block\" flex_vert_align=\"flex-start\"][vc_column_inner flex_layout=\"block\" flex_vert_align=\"flex-start\" width=\"1/4\" tdc_css=\"eyJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMTUiLCJjb250ZW50LWgtYWxpZ24iOiJjb250ZW50LWhvcml6LWNlbnRlciIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\"][tdb_header_logo align_vert=\"content-vert-top\" image_width=\"eyJwb3J0cmFpdCI6IjE4MCIsImxhbmRzY2FwZSI6IjI2MCJ9\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWxlZnQiOiItMjAiLCJ6LWluZGV4IjoiMCIsImRpc3BsYXkiOiIifSwicG9ydHJhaXQiOnsibWFyZ2luLWxlZnQiOiItMTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsImxhbmRzY2FwZSI6eyJkaXNwbGF5IjoiIn0sImxhbmRzY2FwZV9tYXhfd2lkdGgiOjExNDAsImxhbmRzY2FwZV9taW5fd2lkdGgiOjEwMTksInBob25lIjp7Im1hcmdpbi1sZWZ0IjoiMCIsImRpc3BsYXkiOiJpbmxpbmUtYmxvY2sifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" show_image=\"none\" f_text_font_family=\"456\" f_text_font_size=\"eyJhbGwiOiI0MiIsInBob25lIjoiNDIiLCJsYW5kc2NhcGUiOiIzNiIsInBvcnRyYWl0IjoiMzAifQ==\" f_text_font_line_height=\"1.2\" icon_align=\"eyJhbGwiOiIwIiwicG9ydHJhaXQiOiIzIn0=\" text=\"Online Shop UAE\" f_text_font_transform=\"\" media_size_image_height=\"320\" media_size_image_width=\"800\" show_title=\"\" show_tagline=\"\" ttl_tag_space=\"0\" show_icon=\"none\" text_color=\"#000000\" f_text_font_weight=\"700\" align_horiz=\"content-horiz-left\" f_text_font_style=\"italic\" f_text_font_spacing=\"eyJhbGwiOiItMiIsImxhbmRzY2FwZSI6Ii0zIiwicG9ydHJhaXQiOiItMS41IiwicGhvbmUiOiItMiJ9\" tagline=\"UFJP\" tagline_pos=\"inline\" tagline_align_vert=\"content-vert-top\" f_tagline_font_line_height=\"eyJhbGwiOiIyIiwicGhvbmUiOiIyIiwicG9ydHJhaXQiOiIxLjgifQ==\" f_tagline_font_family=\"653\" f_tagline_font_weight=\"500\" f_tagline_font_style=\"italic\" tagline_color=\"#000000\" f_tagline_font_size=\"eyJhbGwiOiIxMCIsInBob25lIjoiMTAifQ==\" f_tagline_font_spacing=\"eyJwb3J0cmFpdCI6IjAiLCJsYW5kc2NhcGUiOiIwLjUiLCJwaG9uZSI6IjAifQ==\"][/vc_column_inner][vc_column_inner width=\"3/4\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ==\"][td_block_list_menu menu_id=\"15\" inline=\"yes\" list_padding=\"eyJhbGwiOiIyMHB4IiwicGhvbmUiOiIwIiwicG9ydHJhaXQiOiIxNXB4In0=\" item_space=\"eyJhbGwiOiIzMCIsInBob25lIjoiMTUiLCJsYW5kc2NhcGUiOiIyNSIsInBvcnRyYWl0IjoiMTUifQ==\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiLTIwIiwibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lIjp7Im1hcmdpbi1yaWdodCI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJtYXJnaW4tcmlnaHQiOiItMTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" menu_color=\"#000000\" menu_hover_color=\"#ec3535\" f_list_font_family=\"653\" f_list_font_weight=\"600\" f_list_font_size=\"eyJhbGwiOiIxNCIsInBvcnRyYWl0IjoiMTIiLCJsYW5kc2NhcGUiOiIxMyIsInBob25lIjoiMTMifQ==\" f_list_font_line_height=\"eyJhbGwiOiIxLjIiLCJwaG9uZSI6IjEuNiJ9\" f_list_font_transform=\"\" item_horiz_align=\"eyJhbGwiOiJjb250ZW50LWhvcml6LXJpZ2h0IiwicGhvbmUiOiJjb250ZW50LWhvcml6LWNlbnRlciJ9\"][/vc_column_inner][/vc_row_inner][vc_row_inner tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjQwIiwiZGlzcGxheSI6IiJ9fQ==\" flex_layout=\"block\" flex_vert_align=\"flex-start\"][vc_column_inner flex_layout=\"block\" flex_vert_align=\"flex-start\" width=\"1/4\" tdc_css=\"eyJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMjUiLCJ3aWR0aCI6IjEwMCUiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJhbGwiOnsid2lkdGgiOiIyNyUiLCJkaXNwbGF5IjoiIn19\"][tdm_block_column_title title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"653\" tds_title1-f_title_font_weight=\"700\" tds_title1-f_title_font_size=\"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIyMiJ9\" tds_title1-title_color=\"#000000\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" tds_title1-f_title_font_spacing=\"-1\" tds_title1-f_title_font_line_height=\"1\" title_text=\"QWJvdXQlMjB1cw==\"][tdm_block_inline_text description=\"T25saW5lJTIwU2hvcCUyMFVBRSUyMGlzJTIwdG9wJTIwR3Vlc3QlMjBQb3N0aW5nJTIwV2Vic2l0ZSUyMGluJTIwRHViYWklMjBhbmQlMjBBYnUlMjBEaGFiaS4lMjBDb3ZlcmluZyUyMGFsbCUyMHRoZSUyMGluZm9ybWF0aW9uJTIwc28lMjB5b3UlMjBjYW4lMjB3cml0ZSUyMGZvciUyMHVzLg==\" f_descr_font_family=\"456\" f_descr_font_size=\"eyJhbGwiOiIxNSIsImxhbmRzY2FwZSI6IjE0IiwicG9ydHJhaXQiOiIxMyJ9\" f_descr_font_line_height=\"1.5\" description_color=\"#000000\" links_color=\"#ec3535\" links_color_h=\"#c11f1f\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjI1IiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjIwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" f_descr_font_weight=\"400\"][/vc_column_inner][vc_column_inner width=\"1/4\" tdc_css=\"eyJhbGwiOnsid2lkdGgiOiIxNyUiLCJjb250ZW50LWgtYWxpZ24iOiJjb250ZW50LWhvcml6LXJpZ2h0IiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMjUiLCJ3aWR0aCI6IjEwMCUiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][tdm_block_column_title title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"653\" tds_title1-f_title_font_weight=\"700\" tds_title1-f_title_font_size=\"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIyMiJ9\" tds_title1-title_color=\"#000000\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" tds_title1-f_title_font_spacing=\"-1\" tds_title1-f_title_font_line_height=\"1\" title_text=\"Q29tcGFueQ==\"][td_block_list_menu menu_id=\"13\" list_padding=\"2px 0\" item_space=\"eyJhbGwiOiIxMiIsInBob25lIjoiMTUiLCJwb3J0cmFpdCI6IjEwIn0=\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lIjp7Im1hcmdpbi1yaWdodCI6IjAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" menu_color=\"#000000\" menu_hover_color=\"#ec3535\" f_list_font_family=\"653\" f_list_font_weight=\"600\" f_list_font_size=\"eyJhbGwiOiIxNSIsImxhbmRzY2FwZSI6IjE0IiwicG9ydHJhaXQiOiIxMyJ9\" f_list_font_line_height=\"1.2\" f_list_font_transform=\"\" item_horiz_align=\"\"][/vc_column_inner][vc_column_inner width=\"1/4\" tdc_css=\"eyJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiMjUiLCJ3aWR0aCI6IjEwMCUiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJhbGwiOnsid2lkdGgiOiIyOCUiLCJkaXNwbGF5IjoiIn19\"][tdm_block_column_title title_tag=\"h3\" title_size=\"tdm-title-sm\" tds_title1-f_title_font_family=\"653\" tds_title1-f_title_font_weight=\"700\" tds_title1-f_title_font_size=\"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMjAiLCJsYW5kc2NhcGUiOiIyMiJ9\" tds_title1-title_color=\"#000000\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7ImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9\" tds_title1-f_title_font_spacing=\"-1\" tds_title1-f_title_font_line_height=\"1\" title_text=\"VGhlJTIwbGF0ZXN0\"][td_flex_block_1 modules_on_row=\"\" image_size=\"\" image_floated=\"hidden\" image_width=\"eyJwaG9uZSI6IjMwIn0=\" image_height=\"eyJwaG9uZSI6IjExMCJ9\" show_btn=\"none\" show_excerpt=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_com=\"eyJwaG9uZSI6Im5vbmUiLCJhbGwiOiJub25lIn0=\" show_author=\"none\" show_cat=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" meta_padding=\"0\" f_title_font_size=\"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTMiLCJsYW5kc2NhcGUiOiIxNCJ9\" f_title_font_line_height=\"1.2\" f_title_font_weight=\"600\" all_modules_space=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjEwIiwicG9ydHJhaXQiOiI2In0=\" category_id=\"\" show_date=\"eyJwb3J0cmFpdCI6Im5vbmUifQ==\" art_excerpt=\"0\" show_review=\"none\" tdc_css=\"eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OCwicGhvbmUiOnsiZGlzcGxheSI6IiJ9LCJwaG9uZV9tYXhfd2lkdGgiOjc2NywibGFuZHNjYXBlIjp7ImRpc3BsYXkiOiIifSwibGFuZHNjYXBlX21heF93aWR0aCI6MTE0MCwibGFuZHNjYXBlX21pbl93aWR0aCI6MTAxOX0=\" f_title_font_family=\"653\" mc1_el=\"10\" title_txt_hover=\"#f43f3f\" title_txt=\"#000000\" art_title=\"eyJsYW5kc2NhcGUiOiIwIDAgNnB4IDAiLCJwb3J0cmFpdCI6IjAgMCA0cHggMCIsImFsbCI6IjAgMCA4cHggMCJ9\" modules_gap=\"0\" f_meta_font_size=\"eyJhbGwiOiIxMiIsInBvcnRyYWl0IjoiMTAifQ==\" f_meta_font_line_height=\"1\" f_meta_font_weight=\"500\" f_meta_font_family=\"653\" modules_cat_border=\"0\" modules_category_padding=\"2px 0\" f_cat_font_family=\"653\" f_cat_font_transform=\"uppercase\" f_cat_font_size=\"12\" f_cat_font_weight=\"600\" f_cat_font_line_height=\"1\" f_meta_font_spacing=\"-0.5\" f_cat_font_spacing=\"-0.5\" cat_bg=\"rgba(255,255,255,0)\" cat_bg_hover=\"rgba(255,255,255,0)\" cat_txt=\"#000000\" cat_txt_hover=\"#ec3535\" modules_category_margin=\"0 3px 0 0\" modules_category=\"\" modules_category_radius=\"undefined\" f_cat_font_style=\"undefined\" f_title_font_style=\"undefined\" f_title_font_transform=\"\" sort=\"\" excl_padd=\"3px 5px\" f_excl_font_family=\"653\" f_excl_font_transform=\"uppercase\" f_excl_font_size=\"eyJhbGwiOiIxMiIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTEifQ==\" f_excl_font_weight=\"500\" f_excl_font_line_height=\"1\" f_excl_font_spacing=\"-0.5\" excl_bg=\"#ec3535\" excl_bg_h=\"#ec3535\" excl_color=\"#ffffff\" excl_color_h=\"#ffffff\" excl_radius=\"2\" excl_margin=\"-4px 5px 0 0\" limit=\"3\" f_title_font_spacing=\"undefined\" date_txt=\"#000000\"][/vc_column_inner][vc_column_inner width=\"1/4\" tdc_css=\"eyJhbGwiOnsicGFkZGluZy10b3AiOiIxMCIsIndpZHRoIjoiMjglIiwiZGlzcGxheSI6IiJ9LCJwaG9uZSI6eyJ3aWR0aCI6IjEwMCUiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\"][/vc_column_inner][/vc_row_inner][tdm_block_socials facebook=\"https://onlineincshop.com/\" tds_social=\"tds_social3\" content_align_horizontal=\"content-horiz-left\" name_space_left=\"0\" name_space_right=\"0\" icons_padding=\"2.6\" icons_size=\"eyJhbGwiOjE3LCJwb3J0cmFpdCI6IjEyIiwibGFuZHNjYXBlIjoiMTQifQ==\" tds_social3-icons_background_color=\"#000000\" tdc_css=\"eyJwaG9uZSI6eyJjb250ZW50LWgtYWxpZ24iOiJjb250ZW50LWhvcml6LWxlZnQiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3fQ==\" tds_social3-border_radius=\"2\" icons_spacing=\"eyJsYW5kc2NhcGUiOiI2IiwicG9ydHJhaXQiOiI1In0=\" tds_social3-icons_background_hover_color=\"#ec3535\"][vc_row_inner tdc_css=\"eyJhbGwiOnsibWFyZ2luLXJpZ2h0IjoiMCIsIm1hcmdpbi1sZWZ0IjoiMCIsImJvcmRlci10b3Atd2lkdGgiOiIxIiwicGFkZGluZy10b3AiOiIyMCIsInBhZGRpbmctYm90dG9tIjoiMjAiLCJib3JkZXItY29sb3IiOiIjZGRkZGRkIiwiZGlzcGxheSI6IiJ9fQ==\"][vc_column_inner][tdm_block_inline_text description=\"JUMyJUE5JTIwMjAyMiUyMG9ubGluZWluY3Nob3AuY29tLiUyMEFsbCUyMFJpZ2h0cyUyMFJlc2VydmVkLiUyMA==\" f_descr_font_family=\"653\" f_descr_font_size=\"eyJhbGwiOiIxNCIsImxhbmRzY2FwZSI6IjExIiwicG9ydHJhaXQiOiIxMSIsInBob25lIjoiMTMifQ==\" f_descr_font_line_height=\"1.2\" description_color=\"#000000\" links_color=\"#ec3535\" links_color_h=\"#c11f1f\" tdc_css=\"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGUiOnsibWFyZ2luLWJvdHRvbSI6IjIwIiwiZGlzcGxheSI6IiJ9LCJsYW5kc2NhcGVfbWF4X3dpZHRoIjoxMTQwLCJsYW5kc2NhcGVfbWluX3dpZHRoIjoxMDE5LCJwaG9uZSI6eyJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMTUiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9\" f_descr_font_weight=\"500\" content_align_horizontal=\"content-horiz-center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][/tdc_zone]\r\n', 'Footer Template - Week PRO', '', 'publish', 'closed', 'closed', '', 'footer-template-week-pro', '', '', '2024-07-12 07:39:55', '2024-07-12 07:39:55', '', 0, 'http://tdi_429_1f6', 0, 'tdb_templates', '', 0),
(93, 9467, '2022-02-22 08:53:21', '2022-02-22 08:53:21', '', 'Menu', '', 'publish', 'closed', 'closed', '', 'menu', '', '', '2022-02-22 08:53:21', '2022-02-22 08:53:21', '', 0, 'https://onlineincshop.com/2022/02/22/menu/', 0, 'nav_menu_item', '', 0),
(95, 9467, '2022-07-27 08:34:27', '2022-02-22 08:53:21', '', 'Write For Us', '', 'publish', 'closed', 'closed', '', 'contact-us', '', '', '2022-07-27 08:34:27', '2022-07-27 08:34:27', '', 0, 'https://onlineincshop.com/2022/02/22/contact-us/', 1, 'nav_menu_item', '', 0),
(98, 9467, '2022-07-27 08:35:12', '2022-02-22 08:53:21', '', 'Music', '', 'publish', 'closed', 'closed', '', 'music', '', '', '2022-07-27 08:35:12', '2022-07-27 08:35:12', '', 0, 'https://onlineincshop.com/2022/02/22/music/', 1, 'nav_menu_item', '', 0),
(99, 9467, '2022-07-27 08:35:12', '2022-02-22 08:53:21', '', 'Celebrity', '', 'publish', 'closed', 'closed', '', 'celebrity', '', '', '2022-07-27 08:35:12', '2022-07-27 08:35:12', '', 0, 'https://onlineincshop.com/2022/02/22/celebrity/', 2, 'nav_menu_item', '', 0),
(100, 9467, '2022-07-27 08:35:12', '2022-02-22 08:53:21', '', 'Politics', '', 'publish', 'closed', 'closed', '', 'politics', '', '', '2022-07-27 08:35:12', '2022-07-27 08:35:12', '', 0, 'https://onlineincshop.com/2022/02/22/politics/', 3, 'nav_menu_item', '', 0),
(101, 9467, '2022-07-27 08:35:12', '2022-02-22 08:53:21', '', 'Finance', '', 'publish', 'closed', 'closed', '', 'finance', '', '', '2022-07-27 08:35:12', '2022-07-27 08:35:12', '', 0, 'https://onlineincshop.com/2022/02/22/finance/', 4, 'nav_menu_item', '', 0),
(102, 9467, '2022-07-27 08:35:12', '2022-02-22 08:53:21', '', 'Travel', '', 'publish', 'closed', 'closed', '', 'travel', '', '', '2022-07-27 08:35:12', '2022-07-27 08:35:12', '', 0, 'https://onlineincshop.com/2022/02/22/travel/', 5, 'nav_menu_item', '', 0),
(103, 9467, '2022-07-27 08:35:12', '2022-02-22 08:53:21', '', 'Food', '', 'publish', 'closed', 'closed', '', 'food', '', '', '2022-07-27 08:35:12', '2022-07-27 08:35:12', '', 0, 'https://onlineincshop.com/2022/02/22/food/', 6, 'nav_menu_item', '', 0),
(104, 9467, '2022-07-27 08:35:12', '2022-02-22 08:53:21', '', 'Marketing', '', 'publish', 'closed', 'closed', '', 'marketing', '', '', '2022-07-27 08:35:12', '2022-07-27 08:35:12', '', 0, 'https://onlineincshop.com/2022/02/22/marketing/', 7, 'nav_menu_item', '', 0),
(105, 9467, '2022-07-27 08:35:12', '2022-02-22 08:53:21', '', 'Tech', '', 'publish', 'closed', 'closed', '', 'tech', '', '', '2022-07-27 08:35:12', '2022-07-27 08:35:12', '', 0, 'https://onlineincshop.com/2022/02/22/tech/', 8, 'nav_menu_item', '', 0),
(106, 9467, '2022-07-27 08:35:12', '2022-02-22 08:53:21', '', 'Make-up', '', 'publish', 'closed', 'closed', '', 'make-up', '', '', '2022-07-27 08:35:12', '2022-07-27 08:35:12', '', 0, 'https://onlineincshop.com/2022/02/22/make-up/', 9, 'nav_menu_item', '', 0),
(180, 9467, '2022-03-25 15:51:41', '2022-03-25 15:51:41', '<!-- wp:paragraph -->\n<p>God gave us nature, and nature gave us science. Science further expanded in its ways, making discoveries and inventions and bringing the finest raw materials. These raw materials are further proceeded under intense procedures to create products that one can use to do many different tasks. Steel is a raw material and also a finished product. We mold it into different ways like steel coils that could prove to help make the most benefit out of things.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here is how and why steel manufacturing and supply is a growing business:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"type\":\"1\"} -->\n<ul type=\"1\"><li>World’s most used metal: Out of all the metals that human beings consume to do things, steel is one of the most popular ones. It brings in many different properties that do not have much competition. Steel is much more sustainable, durable, and valuable than any other material we use for specific functions. The world’s most used metal is always a good business.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Never-ending demand: People will always need steel since it is used to make thousands of different products daily. It is always profitable to do a business that holds so much potential. Each day, there are new and better inventions globally; the whole industry system depends on steel to do anything. This demand makes the steel supply a “steal” for sure.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Sustainable outlook of the world: Would you rather have a product that wears off real soon and puts you into the hustle of fixtures after every little while, or would you rather have something good to create sustainability in the environment? All with being durable and robust. The choice is clear. Steel is a long-lasting material, and if appropriately taken care of, it could work perfectly fine for many decades.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Multipurpose capabilities: Is there anything steel can not do? From being useful in manufacturing goods like automobiles to supporting more significant industrial layouts, steel does it all. It makes its demand much more diverse and high. Different kinds of steel are used for other purposes, making it a perfect element to supply. One will never run out of industries that need an adequate steel supply.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>A solution to problems: Steel is popular in the industry because of the spacious layout of keys it provides to its users. One has got stainless steel to avoid rusting; there is colored steel, steel in the shape of wires, tinplate coil, and so much more than a person can use in hundreds and thousands of ways to tackle different problems in the construction and production of tools and machinery.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>These capabilities and benefits of steel have made the whole dynamic a growing business with more and more steel suppliers<strong>,</strong><a href=\"https://shandongtisco.com/product/tinplate-sheet-coil/\"><strong> tinplate coil suppliers</strong></a><strong>,</strong> and more coming into the market each day. The demand will never go down shortly, and steel supply, purchase, and use will forever be a growing business. It is beautiful how science has made it all possible in the best way today. It is best to research and start with the correct utilization of steel than anything else.</p>\n<!-- /wp:paragraph -->\r\n', 'STEEL MANUFACTURING AND SUPPLY - A GROWING BUSINESS', '', 'publish', 'closed', 'open', '', 'steel-manufacturing-and-supply-a-growing-business', '', '', '2022-03-25 15:51:44', '2022-03-25 15:51:44', '', 0, 'https://onlineincshop.com/?p=180', 0, 'post', '', 0),
(114, 9467, '2022-02-26 11:19:34', '2022-02-26 11:19:34', '<!-- wp:paragraph -->\n<p>Have you been to Dubai and have not relished a cruise party? You are missing something exciting in your life. Dubai is one of the known places for vacations because of the numerous places and activities to enjoy and make the trip memorable. From shopping to enjoying a desert safari, Dubai has incorporated beauty and adventure within itself. But, one of the most loved activities is cruising because of the lifelong experience and excitement it brings to life. People obsess over <strong>yacht rental Dubai </strong>to organize and enjoy cruise parties, live remarkable moments of life without doubts about life, and make the most out of the trip to make it unforgettable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here are the reasons why cruising has become one of the most enjoyed activities in Dubai:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true,\"type\":\"1\"} -->\n<ol type=\"1\"><li>Memorable experience: People have been to parties and have danced and enjoyed, but the experience cruise party brings is exceptional. Enjoying the sea with calm winds without any stress is one of the best parts of life. It allows one to free themselves from all the problems and dance and sing with their heart out and relive childhood without any fear of being judged.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Away from ordinary life: Cruising brings you away from the same monotonous schedule of your life and refreshes you with a cool breeze and fascinating view. One might get lost in the moment because of the tidy waves of the sea and all the happiness around. The laughter, giggles, and joy will let one forget about all the worries of life.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Dreams come true: Most people fantasize about having dinner between the sea, and cruising has made it possible. One can purpose their partners for marriage, celebrate the success of their family, and can even enjoy their birthday on a cruise. It is the best way to make a dream come true.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Witness the beauty: Cruise allows one to explore the beauty of Dubai with mesmerizing views. Dubai\'s vast and beautiful architecture is visible from the cruise and will enable one to enjoy it while having the best experience of their lives.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Quality services: One always looks for quality dining and entertainment services when investing in any place. The cruise provides individuals with exceptional services and allows them to enjoy their dinner with the view without stressing over the quality of the food and customer service.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Dubai is all about fun experiences and making memories. A trip to Dubai is on everyone\'s wish list because of all the adventures it offers to individuals. To double the joy of the journey, one must experience cruising in Dubai. It will allow one to collect all the happy moments of their life and lock them in the heart.<strong> Yacht rental Dubai</strong> has been on demand because of people\'s love for cruising. Dubai is a dream place, and cruising in Dubai will always remain on the top because of all the joy.</p>\n<!-- /wp:paragraph -->\r\n', 'Guest Post - 5 REASONS CRUISING IS ONE OF THE LOVED ACTIVITIES IN DUBAI', '', 'publish', 'closed', 'open', '', '5-reasons-cruising-is-one-of-the-loved-activities-in-dubai', '', '', '2022-02-26 11:20:24', '2022-02-26 11:20:24', '', 0, 'https://onlineincshop.com/?p=114', 0, 'post', '', 0),
(115, 9467, '2022-02-26 11:18:22', '2022-02-26 11:18:22', '{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }\r\n', 'Custom Styles', '', 'publish', 'closed', 'closed', '', 'wp-global-styles-newspaper', '', '', '2022-02-26 11:18:22', '2022-02-26 11:18:22', '', 0, 'https://onlineincshop.com/2022/02/26/wp-global-styles-newspaper/', 0, 'wp_global_styles', '', 0),
(116, 9467, '2022-02-26 11:19:10', '2022-02-26 11:19:10', '', 'CRUISING Dubai', '', 'inherit', 'closed', 'closed', '', 'cruising-dubai-min', '', '', '2022-02-26 11:19:26', '2022-02-26 11:19:26', '', 114, 'https://onlineincshop.com/wp-content/uploads/2022/02/CRUISING-Dubai-min.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(171, 9467, '2022-03-05 09:15:37', '2022-03-05 09:15:37', '<!-- wp:paragraph -->\n<p>Dubai is an experience for Elite people who prefer luxury and comfortable experiences over anything else. It is a place where people worldwide gather together to live a classy and high standard of living. As the standards of everything goes up and about, the activities also change into more modern and high-class ones. Cruising is one such, and <strong>Dhow cruise Dubai </strong>is one of the finest experiences. To make the most out of your experience with the Dhow trip, it is essential to know all about it and the activities it offers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here are five things you should not miss on dhow cruise Dubai:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true,\"type\":\"1\"} -->\n<ol type=\"1\"><li>The Authentic Arabian night\'s exposure: The Arabian touch in the glimpses of designs and structure on the boat mesmerizes people of all kinds. It is a genuine aura that brings in a lot of beautiful views and designs with it. While being on the dhow cruise, make sure to look around and not miss a picture of a lifetime. You can also find an amazingly glamorous background for your photographs; make sure to capture it all.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>The exquisite landmarks: The Dubai marina is a landmark itself, and everything around it holds a certain kind of importance in the history of geography. It is best to look around everything and not miss out on any view. You will see Dubai Yacht Club, the yacht club promenade, and so on your way around and bring fascination to the eyes.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:image {\"align\":\"right\",\"id\":173,\"width\":489,\"height\":363,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://onlineincshop.com/wp-content/uploads/2022/03/dhow-cruise-min-1024x768.jpg\" alt=\"\" class=\"wp-image-173\" width=\"489\" height=\"363\"/></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><li>The buffet: Did you know that dhow cruise has a two-hour-long dinner buffet where you can eat anything you like and as much as you want? You know now. Do not miss out on the large varieties of cuisines from all around, making yourself all hungry and in the food world. The combinations and range of items make it possible for everybody to enjoy the food to the fullest.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Unlimited drinks: The cruises offer you unlimited soft drinks, and you can enjoy them all ride long. The soft drinks are available in many different flavors, making it easier to find your choice and enjoy. You might have to pay extra for other beverages like alcohol and wine, but the soft drinks are on the house.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Performances: Since the dhow cruise is an experience of authentic Arabian nights, there are arrangements for many different performances that you can enjoy, including the \"Tanoura\"; it\'s a traditional dance form where people wear long skirts and circle around to portray a way of art. It is an experience worth a while. Many other performances also change with the days and weeks, bringing in more artists and enjoyment for the viewers.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Having a fun night at <strong>dhow cruise Dubai</strong> is easy because all you have to do is these five things. Book your slot today and enjoy the rich and fantastic experience that you will remember forever. Make sure to register and get a confirmation and follow the schedule provided to avoid any inconvenience, Have fun and a good time.</p>\n<!-- /wp:paragraph -->\r\n', '5 THINGS YOU SHOULD NOT MISS ON DHOW CRUISE DUBAI', '', 'publish', 'closed', 'open', '', '5-things-you-should-not-miss-on-dhow-cruise-dubai', '', '', '2022-03-05 09:15:39', '2022-03-05 09:15:39', '', 0, 'https://onlineincshop.com/?p=171', 0, 'post', '', 0),
(172, 9467, '2022-03-05 09:12:19', '2022-03-05 09:12:19', '', 'Dhow wooden ship-min', '', 'inherit', 'closed', 'closed', '', 'dhow-wooden-ship-min', '', '', '2022-03-05 09:13:57', '2022-03-05 09:13:57', '', 171, 'https://onlineincshop.com/wp-content/uploads/2022/03/Dhow-wooden-ship-min.jpg', 0, 'attachment', 'image/jpeg', 0),
(173, 9467, '2022-03-05 09:14:29', '2022-03-05 09:14:29', '', 'dhow cruise-min', '', 'inherit', '', 'closed', '', 'dhow-cruise-min', '', '', '2022-03-05 09:14:29', '2022-03-05 09:14:29', '', 171, 'https://onlineincshop.com/wp-content/uploads/2022/03/dhow-cruise-min.jpg', 0, 'attachment', 'image/jpeg', 0),
(175, 9467, '2022-03-05 09:30:05', '2022-03-05 09:30:05', '<!-- wp:paragraph -->\n<p>Mesmerizing Beaches, traditional shopping malls, exquisite architecture all define the beauty of Dubai. The place encompasses all the aspects of beauty within itself and attracts people around the world to visit the place. People often perceive Dubai as one of the expensive places, but one would regret not relishing all the fun and adventures that Dubai offers to the tourists. Every day in Dubai is so thrilling and exciting that individuals plan to visit three to four places in a day, but the cost of commuting becomes higher than the expense of other activities. One must make wise decisions of using <strong>car rental Dubai </strong>because of the ease and flexibility. People need to explore Dubai by making the right choices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here is the followings reason renting a car in Dubai would benefit one to enjoy:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":177,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://onlineincshop.com/wp-content/uploads/2022/03/car-rental-min-1024x768.jpg\" alt=\"Rent a car in Dubai\" class=\"wp-image-177\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list {\"ordered\":true,\"type\":\"1\"} -->\n<ol type=\"1\"><li>Cost-effective: The idea of renting a car is beneficial because it cuts off the cost of commuting to different places in Dubai. Dubai is all about exploration, which requires continuous traveling from one to another, making it essential for people to rent a car to pay the affordable price and enjoy the trip without paying high fees to cabs and other services.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Ease: If one has not taken the wise decision of renting a car, their entire day is spent looking for cabs. Renting a car allows one to visit and roam around as per their wish and without any constraint of waiting for cabs. It provides one with the ease of enjoying the trip without any hustle.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Suitable for families: It is easy for an individual or couple to use different means of commute, but a family would need to because it would be difficult to commute through various car services because of the high prices. The entire family can enjoy rides and drives together within budget.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Carry everything: People planning to spend the day at beaches or parks in Dubai carry a lot of things to avoid any problem throughout the day. Some car services have policies of not taking a lot of weight at a single time. Renting a car would be beneficial, allowing individuals all their necessary things along with them.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>Time-saver: Renting a car saves a lot of time and allows one to commute at any moment of the day. One has to wait for cabs which wastes a lot of time and can be exhausting. But, renting a car solves numerous problems and allows one to travel freely.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Exploring every corner of Dubai is the dream because it is one of the most beautiful places worldwide, loaded with crowds the entire year. If one has to have an effortless trip without stress, they must look for a <strong>car rental Dubai</strong> and use it properly to relish the journey while maintaining the budget planned. With several benefits, it allows one to feel free during the entire tour, which will keep them energized and active to make the most out of the trip and gather innumerable memories.</p>\n<!-- /wp:paragraph -->\r\n', ' HOW RENTING A CAR IS ESSENTIAL FOR TRIP TO DUBAI', '', 'publish', 'closed', 'open', '', 'how-renting-a-car-is-essential-for-trip-to-dubai', '', '', '2022-03-05 09:30:07', '2022-03-05 09:30:07', '', 0, 'https://onlineincshop.com/?p=175', 0, 'post', '', 0),
(176, 9467, '2022-03-05 09:26:53', '2022-03-05 09:26:53', '', 'car rental Near Me-min', '', 'inherit', '', 'closed', '', 'car-rental-near-me-min', '', '', '2022-03-05 09:26:53', '2022-03-05 09:26:53', '', 175, 'https://onlineincshop.com/wp-content/uploads/2022/03/car-rental-Near-Me-min.jpg', 0, 'attachment', 'image/jpeg', 0),
(177, 9467, '2022-03-05 09:28:23', '2022-03-05 09:28:23', '', 'car rental-min', '', 'inherit', 'closed', 'closed', '', 'car-rental-min', '', '', '2022-03-05 09:29:59', '2022-03-05 09:29:59', '', 175, 'https://onlineincshop.com/wp-content/uploads/2022/03/car-rental-min.jpg', 0, 'attachment', 'image/jpeg', 0),
(181, 9467, '2022-03-25 15:50:33', '2022-03-25 15:50:33', '', 'tinplate coil suppliers', '', 'inherit', 'closed', 'closed', '', 'tinplate-coil-suppliers-min', '', '', '2022-03-25 15:51:37', '2022-03-25 15:51:37', '', 180, 'https://onlineincshop.com/wp-content/uploads/2022/03/tinplate-coil-suppliers-min.jpg', 0, 'attachment', 'image/jpeg', 0),
(189, 9467, '2022-05-30 06:27:50', '2022-05-30 06:27:50', '<!-- wp:heading {\"level\":1} -->\n<h1></h1>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Skincare is an alternative term of self-care. If you love yourself, you are going to love your skin as well. A radiant and glowing skin is what makes you look confident, pretty and attractive. Moreover, it reflects your love for yourself.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the skincare, routine, facial serums are a popular component. You cannot have a successful skincare routine with <a href=\"https://www.yellowberry.co/products/profound-probiotic-facial-serum\">facial serum Pakistan</a>. However, a few people are good enough to get enough results from them. It is because of their poor application.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here are some tips to use these serums with the best practices and get results.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Clean the skin surface&nbsp;</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before applying the serum, it is better to cleanse the skin. Cleaning is essential to let your skin breathe. It helps to remove the clogged pores, dirt, dead skin and black or white heads from the surface.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You will be getting skin rejuvenation. After removing all these barriers, you will let the serum penetrate well in the skin. It eventually gives you the best results.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Use the toner or mist first&nbsp;</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Cleansing the skin can sometimes result in losing the moisture. Once the surface is dry, you may feel some cracks and stiffness. This stiffness does not let the serum absorb well. The best way to deal with the condition is too moist your skin using toner, mist or simple water.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A bit of moisture on the skin makes the cells refer and soft. You will have a little room to let serum merge into the skin well when applied. It eventually brings you the best outcomes of the serum by letting it dive into the skin surface.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Apply it gently&nbsp;</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Rubbing serum on the skin is another wrong move you make. For the best results, it is essential to apply it gently on the surface. You have to keep the light hand on the absorption of the serum on the skin. The soft touch lets the serum penetrate well in the skin and does not cause inflammation. Rubbing it harshly can result possibly in the rashes and other inflammatory reactions sometimes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Let it set with the skin&nbsp;</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Serums are absorbing but not quick absorbing in the skin. These leave a layer on the skin that remains there and gives you a feeling. If you want to have the best results, do not try to get rid of this layer from the skin. Let the serum set on the skin and make it work the way it is supposed to be. It will help you in getting the best results and radiance.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Keep the skin moisturize&nbsp;</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Whether after or before the application of the serum, it is essential to moisturize your skin. Moisture lock in the skin brings a radiance and perfection to its surface. You are able to feel a significant change in the skin texture and best of results as well. Just be sure of using the right moisturizer on skin. It will help you get the best outcomes.&nbsp;</p>\n<!-- /wp:paragraph -->\r\n', 'Five tips to use facial serum for the best results ', '', 'publish', 'closed', 'open', '', 'five-tips-to-use-facial-serum-for-the-best-results', '', '', '2022-05-30 06:27:52', '2022-05-30 06:27:52', '', 0, 'https://onlineincshop.com/?p=189', 0, 'post', '', 0),
(190, 9467, '2022-05-30 06:27:43', '2022-05-30 06:27:43', '', 'content-pixie-WdJ4WnLxyDs-unsplash', '', 'inherit', '', 'closed', '', 'content-pixie-wdj4wnlxyds-unsplash', '', '', '2022-05-30 06:27:43', '2022-05-30 06:27:43', '', 189, 'https://onlineincshop.com/wp-content/uploads/2022/05/content-pixie-WdJ4WnLxyDs-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(193, 9467, '2022-06-08 06:37:38', '2022-06-08 06:37:38', '<!-- wp:heading {\"level\":1} -->\n<h1></h1>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A digital agency is an organization that helps businesses by providing website design, development, SEO and other digital marketing services. Digital agencies in UAE have helped many businesses increase their online presence and step into the digital business world. Digital agencies use the internet to reach their customers. There are many reasons why you might need to hire a digital agency for your project. They can help you with your website design and development, SEO, PPC campaigns, social media marketing and many other things related to online marketing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is always important to choose the right person for the job, otherwise, the output isn’t good. There are more than 800 digital agencies in UAE, but you will need some research to choose the right one. This article will guide you to choose the right digital agency for your business and increase your online presence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><a></a><strong>What to look for in a digital agency</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When you decided to hire a digital agency in UAE, it is always important to do your research. Online reviews are a great place to start because people will talk openly about their experiences with the agency and let you know what they liked and what they didn\'t like. You should also check out the company\'s website for details on their past projects, previous clients and contact information for contacting them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Choosing the right digital agency is not an easy task. There are many factors to consider such as the agency\'s experience, industry specialization and location. The first question you should ask yourself is what type of services do you need? Once you know this, research agencies that offer those services. The best way to find out if a digital marketing agency will be a good fit for your business is to talk with the agency\'s team members. Another factor to consider is the industry-specific services that are offered by an agency. Specializing in a certain niche and industry will allow an agency to understand your business better and will make it a better fit for your brand. This can also lead to increased engagement on social media, better quality content, more informed customers, etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><a></a><strong>Top Digital Agencies In UAE</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The UAE is a region that has been able to adapt to the ever-changing world of technology. It has a very promising future in terms of providing advanced technologies and services. There are a lot of digital agencies in UAE but some of them have achieved more than the others. They have managed popular clients and have a good customer service reputation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true,\"type\":\"1\"} -->\n<ol type=\"1\"><li><strong>Digital Nexa</strong></li><li><strong>McCollins Media</strong></li><li><strong>7G Media</strong></li><li><strong>Glimpse</strong></li><li><strong>EDS</strong></li><li><strong>Grow Combine</strong></li><li><strong>Brand Stallion</strong></li><li><strong>Amplify</strong></li><li><strong>Hugo</strong></li><li><strong>United SEO</strong></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>These are some of the best digital agencies in UAE, mostly based in Dubai. Make sure to follow the tips discussed above before choosing an agency.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In this article, we discussed how one can choose the best digital agency for his/her business in UAE. After reading this article, the reader will be able to identify the qualities of a good digital agency and will get to know the best agencies in the business.</p>\n<!-- /wp:paragraph -->\r\n', 'Choosing The Right Digital Agency In UAE?', '', 'publish', 'closed', 'open', '', 'choosing-the-right-digital-agency-in-uae', '', '', '2022-06-08 06:37:41', '2022-06-08 06:37:41', '', 0, 'https://onlineincshop.com/?p=193', 0, 'post', '', 0),
(194, 9467, '2022-06-08 06:37:31', '2022-06-08 06:37:31', '', 'olieman-eth-w9coDxtsfts-unsplash', '', 'inherit', '', 'closed', '', 'olieman-eth-w9codxtsfts-unsplash', '', '', '2022-06-08 06:37:31', '2022-06-08 06:37:31', '', 193, 'https://onlineincshop.com/wp-content/uploads/2022/06/olieman-eth-w9coDxtsfts-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(196, 9467, '2022-06-08 07:06:50', '2022-06-08 07:06:50', '<!-- wp:heading {\"level\":1} -->\n<h1></h1>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Since its independence in 1971, UAE has grown at a rapid rate. Today, it is one of the business hubs of the world and the UAE’s story can easily be the greatest success story over the past 50 years. Tourism already covers approximately 13% of the total GDP. Visiting UAE during the summers is an excellent opportunity to experience the country differently. The weather is hot, but it has its charm. The locals are always happy and welcoming, and there are plenty of activities you can do during this time of the year.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><a></a><strong>Outdoor Summer Events</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Even though UAE is a deserted place, its use of innovation allows visitors to enjoy a cool outdoor experience even in the dazzling sun.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At Dubai’s Aquaventure waterpark, there are more than 30 water slides and a variety of aquatic animals including friendly sharks that you can swim and play with. You can also visit the Hatta village for various activities like mountain riding, hiking, waterslides and kayaking at the Hatta Dam. Your summer tour isn’t complete if you did not visit Dubai Creek. It links the sea with the desert giving an astonishing view. The breezy weather, street shows and a peaceful cruise in the sea makes Dubai Creek a great summer attraction.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The UAE\'s famous camel racing is a unique summer activity, which begins in June and lasts until September. It is even possible for those with patience and courage to get up close to the event and experience it from the racers\' perspective. Other events include camel riding, falconry, horseback riding tours and photography exhibitions featuring Arabian horses. For those interested in the region’s culture and its history, a visit to an oasis town like Al Ain offers an insight into traditional life. The old city is set around a dusty central square where food is sold from stalls and buildings that feature old conventional architectural designs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><a></a><strong>Indoor Summer Events</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>With the use of modern technology and investments, UAE offers a once in a lifetime indoor experience. You can enjoy the following indoor places and activities in UAE:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true,\"type\":\"1\"} -->\n<ol type=\"1\"><li><strong>Ski Dubai:</strong> make your dream of spending a cold winter day in the middle of a desert come true.</li><li><strong>The Green Planet:</strong> An indoor rainforest which is home to over 3000 plants and animals.</li><li><strong>Chillout Ice Lounge: </strong>Benches, Entrance, Sculptures and more, everything made of ice.</li><li><strong>Dubai Underwater Zoo and Aquarium: </strong>A closer interaction with the amazing marine life including king croc and sharks.</li><li><strong>Warner Bros. World:</strong> A fun and adventure-themed park by Warner Bros. in Abu Dhabi where you’ll meet your favourite characters like the Looney Tunes and Tom n Jerry</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>These were some of the best indoor and outdoor places and activities that you can enjoy this summer in the UAE. Although there is a lot more on offer, that will require a lifetime to explore and explain. Once you have visited this beautiful place, you will surely plan a second trip.</p>\n<!-- /wp:paragraph -->\r\n', 'Best Things To Do In The UAE This Summer', '', 'publish', 'closed', 'open', '', 'best-things-to-do-in-the-uae-this-summer', '', '', '2022-06-08 07:06:52', '2022-06-08 07:06:52', '', 0, 'https://onlineincshop.com/?p=196', 0, 'post', '', 0),
(197, 9467, '2022-06-08 07:06:42', '2022-06-08 07:06:42', '', 'tim-b-motivv-OYvjvIANSD0-unsplash', '', 'inherit', '', 'closed', '', 'tim-b-motivv-oyvjviansd0-unsplash', '', '', '2022-06-08 07:06:42', '2022-06-08 07:06:42', '', 196, 'https://onlineincshop.com/wp-content/uploads/2022/06/tim-b-motivv-OYvjvIANSD0-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(201, 9467, '2022-07-22 07:08:07', '2022-07-22 07:08:07', '<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Many Pakistanis are permanent residents of the USA for many years. Even they are living there for so many years still they like to celebrate and organize their events or occasions like EID, engagement and marriage ceremony according to Pakistani culture in which they wear traditional Pakistani clothes. But as the USA have a complete different culture from Pakistan finding Pakistani cultural dresses is a complicated task and the prices of these dresses are much higher. But there is an option of online shopping. Nafisa Noor USA is trusted boutique in Pakistan and famous for their unique and trendy Pakistani dresses that elaborate Pakistani culture with touch of modern fashion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Avoid scammers and fake websites:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But every online website is not authentic and trusted, but living is the USA you will not be able to find those scammers. So you should avoid being scammed by looking out for these things:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Double check for the brands name: </strong>some scammers use pictures from others brands clothing articles even they stole brands name and establish a website that looks authentic. Many of the Pakistani boutiques are famous but aren’t providing overseas delivery options. Search the name of the website or brand you will find the authentic website or store information. And you should always look for reviews and ratings.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Offers are too good to be true: </strong>A authentic website would never offer unnecessary or unreal offers like buy one, get two free, 80%off on already low prices. The articles of authentic websites are speaking for themselves they don’t need this exaggerated sales or offers. A fake website would offer you all this type of discounts to lure you buying from them but when you receive this articles they will not be even near to shown image on website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Way too low prices:</strong> making a beautiful dress especially Pakistani dresses require investments so the dresses with good quality material and beautiful design is impossible to find in cheap prices. Scammers show images of beautiful dresses with expensive embroidery and promise good quality material in very low prices. Spending some extra money on an authentic item that can be used again and again is better than Spending less money on an item that you will never be able to use. Select an authentic website to order your dresses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Demand money before delivery: </strong>Every website offers you different payment methods. A fake website would only have payment methods in which you have to pay money before delivery. Sometimes they send you a dress which is a poor knock off version of actual article or sometimes they didn’t send you anything at all.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Which website you should choose?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Looking for all of these is a time taking process but in the end is worth it or if you don’t want to spend your time on all these things I would recommend you <a href=\"https://nafisanoor.com/\">Nafisa Noor USA</a> for online shopping. They have huge and best collection with beautiful colors and designs for any occasion with reasonable prices. They will send you the item exactly what they had showed on website. Order from them and save you money and time both.</p>\n<!-- /wp:paragraph -->\r\n', ' Which website is better for purchasing Pakistani dresses from the USA?', '', 'publish', 'closed', 'open', '', 'which-website-is-better-for-purchasing-pakistani-dresses-from-the-usa', '', '', '2022-07-22 07:11:26', '2022-07-22 07:11:26', '', 0, 'https://onlineincshop.com/?p=201', 0, 'post', '', 0),
(204, 9467, '2022-07-22 07:10:19', '2022-07-22 07:10:19', '', 'dollar-gill-tuK5YKAlxWo-unsplash', '', 'inherit', '', 'closed', '', 'dollar-gill-tuk5ykalxwo-unsplash', '', '', '2022-07-22 07:10:19', '2022-07-22 07:10:19', '', 201, 'https://onlineincshop.com/wp-content/uploads/2022/07/dollar-gill-tuK5YKAlxWo-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(205, 9467, '2015-04-06 17:18:12', '2015-04-06 17:18:12', '{\"event\":[\"create\"],\"email_to\":\"socialninjauae@gmail.com\",\"cc\":\"\",\"bcc\":\"\",\"from\":\"[sitename] <[admin_email]>\",\"reply_to\":\"[3]\",\"email_subject\":\"\",\"email_message\":\"[default-message]\"}\r\n', 'Email Notification', 'email', 'publish', 'closed', 'closed', '', '1_email_205', '', '', '2022-07-25 08:18:31', '2022-07-25 08:18:31', '', 0, 'https://onlineincshop.com/frm_form_actions/1_email_1/', 1, 'frm_form_actions', '', 0),
(206, 9467, '2022-07-25 08:13:26', '2022-07-25 08:13:26', '{\"theme_css\":\"ui-lightness\",\"theme_name\":\"UI Lightness\",\"center_form\":\"\",\"form_width\":\"100%\",\"form_align\":\"left\",\"direction\":\"ltr\",\"fieldset\":\"0px\",\"fieldset_color\":\"000000\",\"fieldset_padding\":\"0 0 15px 0\",\"fieldset_bg_color\":\"\",\"title_size\":\"40px\",\"title_color\":\"444444\",\"title_margin_top\":\"10px\",\"title_margin_bottom\":\"60px\",\"form_desc_size\":\"14px\",\"form_desc_color\":\"666666\",\"form_desc_margin_top\":\"10px\",\"form_desc_margin_bottom\":\"25px\",\"form_desc_padding\":\"0\",\"font\":\"\",\"font_size\":\"15px\",\"label_color\":\"3f4b5b\",\"weight\":\"normal\",\"position\":\"none\",\"align\":\"left\",\"width\":\"150px\",\"required_color\":\"B94A48\",\"required_weight\":\"bold\",\"label_padding\":\"0 0 3px 0\",\"description_font_size\":\"12px\",\"description_color\":\"666666\",\"description_weight\":\"normal\",\"description_style\":\"normal\",\"description_align\":\"left\",\"description_margin\":\"0\",\"field_font_size\":\"14px\",\"field_height\":\"32px\",\"line_height\":\"normal\",\"field_width\":\"100%\",\"auto_width\":\"\",\"field_pad\":\"6px 10px\",\"field_margin\":\"20px\",\"field_weight\":\"normal\",\"text_color\":\"555555\",\"border_color\":\"BFC3C8\",\"field_border_width\":\"1px\",\"field_border_style\":\"solid\",\"bg_color\":\"ffffff\",\"remove_box_shadow\":\"\",\"bg_color_active\":\"ffffff\",\"border_color_active\":\"66afe9\",\"remove_box_shadow_active\":\"\",\"text_color_error\":\"444444\",\"bg_color_error\":\"ffffff\",\"border_color_error\":\"B94A48\",\"border_width_error\":\"1px\",\"border_style_error\":\"solid\",\"bg_color_disabled\":\"ffffff\",\"border_color_disabled\":\"E5E5E5\",\"text_color_disabled\":\"A1A1A1\",\"radio_align\":\"block\",\"check_align\":\"block\",\"check_font_size\":\"13px\",\"check_label_color\":\"444444\",\"check_weight\":\"normal\",\"section_font_size\":\"18px\",\"section_color\":\"444444\",\"section_weight\":\"bold\",\"section_pad\":\"15px 0 3px 0\",\"section_mar_top\":\"15px\",\"section_mar_bottom\":\"30px\",\"section_bg_color\":\"\",\"section_border_color\":\"e8e8e8\",\"section_border_width\":\"2px\",\"section_border_style\":\"solid\",\"section_border_loc\":\"-top\",\"collapse_icon\":\"6\",\"collapse_pos\":\"after\",\"repeat_icon\":\"1\",\"repeat_icon_color\":\"ffffff\",\"submit_style\":\"\",\"submit_font_size\":\"15px\",\"submit_width\":\"auto\",\"submit_height\":\"auto\",\"submit_bg_color\":\"579AF6\",\"submit_border_color\":\"579AF6\",\"submit_border_width\":\"1px\",\"submit_text_color\":\"ffffff\",\"submit_weight\":\"normal\",\"submit_border_radius\":\"4px\",\"submit_bg_img\":\"\",\"submit_margin\":\"10px\",\"submit_padding\":\"10px 20px\",\"submit_shadow_color\":\"eeeeee\",\"submit_hover_bg_color\":\"efefef\",\"submit_hover_color\":\"444444\",\"submit_hover_border_color\":\"cccccc\",\"submit_active_bg_color\":\"efefef\",\"submit_active_color\":\"444444\",\"submit_active_border_color\":\"cccccc\",\"border_radius\":\"4px\",\"error_bg\":\"F2DEDE\",\"error_border\":\"EBCCD1\",\"error_text\":\"B94A48\",\"error_font_size\":\"14px\",\"success_bg_color\":\"DFF0D8\",\"success_border_color\":\"D6E9C6\",\"success_text_color\":\"468847\",\"success_font_size\":\"14px\",\"important_style\":\"\",\"progress_bg_color\":\"eaeaea\",\"progress_active_color\":\"ffffff\",\"progress_active_bg_color\":\"579AF6\",\"progress_color\":\"3f4b5b\",\"progress_border_color\":\"E5E5E5\",\"progress_border_size\":\"2px\",\"progress_size\":\"30px\",\"custom_css\":\"\"}\r\n', 'Formidable Style', '', 'publish', 'closed', 'closed', '', 'formidable-style', '', '', '2022-07-25 08:13:26', '2022-07-25 08:13:26', '', 0, 'https://onlineincshop.com/frm_styles/formidable-style/', 1, 'frm_styles', '', 0),
(207, 9467, '2022-07-25 08:13:43', '2022-07-25 08:13:43', '{\"event\":[\"create\"],\"email_to\":\"iam@shayanaman.com\",\"cc\":\"\",\"bcc\":\"\",\"from\":\"[sitename] <[admin_email]>\",\"reply_to\":\"\",\"email_subject\":\"\",\"email_message\":\"[default-message]\"}\r\n', 'Send Email', 'email', 'publish', 'closed', 'closed', '', '2_email_207', '', '', '2022-08-02 05:45:15', '2022-08-02 05:45:15', '', 0, 'https://onlineincshop.com/frm_form_actions/2_email_/', 2, 'frm_form_actions', '', 0),
(208, 9467, '2022-07-25 08:28:24', '2022-07-25 08:28:24', '[tdc_zone type=\"tdc_content\"][vc_row][vc_column][vc_single_image media_size_image_height=\"200\" media_size_image_width=\"300\" image=\"210\" height=\"700\"][/vc_column][/vc_row][vc_row][vc_column][tdm_block_inline_text description=\"MSklMjBBbiUyMHVuaXF1ZSUyMHBpZWNlJTIwb2YlMjB3cml0aW5nJTIwaXMlMjByZXF1aXJlZCUyMGZvciUyMGElMjBndWVzdCUyMHBvc3QuJTNDYnIlM0UlMEEyKSUyMEluY2x1ZGVzJTIwdHdvJTIwcGhvdG9zJTIwYW5kJTIwYSUyMG1pbmltdW0lMjBvZiUyMDUwMCUyMHdvcmRzLiUyME9uZSUyMGRvLWZvbGxvdyUyMGxpbmslMjBpcyUyMHByb3ZpZGVkJTIwYnklMjBvbmxpbmVpbmNzaG9wLiUzQ2JyJTNFJTBBMyklMjBEdWJhaSUyQyUyMEFidSUyMERoYWJpJTJDJTIwYW5kJTIwU2hhcmphaCUyMHBvc3RzJTIwYXJlJTIwd2VsY29tZSUyMHdpdGglMjBlbnRodXNpYXNtLiUzQ2JyJTNFJTBBJTBBNCklMjBZb3UlMjBzaG91bGQlMjBnaXZlJTIwdXBkYXRlcyUyMG9uJTIwZGlnaXRhbCUyMG1hcmtldGluZyUyMGFuZCUyMFNFTy4lMjA1LiUyMExpbmtzJTIwdG8lMjB3ZWJzaXRlcyUyMHdpdGglMjBzcGFtJTIwYXJlJTIwbm90JTIwYWxsb3dlZC4=\" display_inline=\"yes\" f_descr_font_weight=\"600\" f_descr_font_size=\"18\"][/vc_column][/vc_row][vc_row][/vc_row]\n\n[vc_row][formidable id=2 title=true description=true][/vc_row]\n\n[/tdc_zone]\r\n', 'Contact Us', '', 'publish', 'closed', 'closed', '', 'contact-us', '', '', '2022-07-26 11:06:45', '2022-07-26 11:06:45', '', 0, 'https://onlineincshop.com/?page_id=208', 0, 'page', '', 0),
(210, 9467, '2022-07-25 08:24:50', '2022-07-25 08:24:50', '', 'cathryn-lavery-fMD_Cru6OTk-unsplash (1)', '', 'inherit', '', 'closed', '', 'cathryn-lavery-fmd_cru6otk-unsplash-1', '', '', '2022-07-25 08:24:50', '2022-07-25 08:24:50', '', 208, 'https://onlineincshop.com/wp-content/uploads/2022/07/cathryn-lavery-fMD_Cru6OTk-unsplash-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(223, 9467, '2022-07-27 06:31:35', '2022-07-27 06:31:35', '.tdb-logo-text-title{\n	color:#ec3535!important;\n	font-family:PT Serif !important;\n	text-align:center;\n}\n.td_spot_img_all{\n	display:none;\n}\r\n', 'Newspaper', '', 'publish', 'closed', 'closed', '', 'newspaper', '', '', '2022-08-16 09:22:21', '2022-08-16 09:22:21', '', 0, 'https://onlineincshop.com/2022/07/27/newspaper/', 0, 'custom_css', '', 0),
(228, 9467, '2022-07-27 08:35:12', '2022-07-27 08:35:12', '', 'Write For Us', '', 'publish', 'closed', 'closed', '', 'write-for-us', '', '', '2022-07-27 08:35:12', '2022-07-27 08:35:12', '', 0, 'https://onlineincshop.com/?p=228', 10, 'nav_menu_item', '', 0),
(229, 9467, '2022-07-27 09:50:56', '2022-07-27 09:50:56', '<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Are you tired of your acne, hair fall, or any condition related to the texture of the skin? Sometimes getting rid of these problems seems more difficult than raising a child, but nature has always come up with solutions to the problems that seem too unsolvable. Yes! Mother nature has planned everything in the perfect order.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>THE MAGIC:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are some magic ingredients in the plants and herbs, which are known to cast their spell with full swing. These magic ingredients are called \"Essential Oils\". <a href=\"https://www.yellowberry.co/collections/essential-oils\">Essential oils in Pakistan</a> are the mainstream now a days with a natural and synthetic-free way of improving health and to promote a healthy environment to breathe in. They are basically plant ingredients that are proved to be therapeutic. Such ingredients are then isolated from the plant by many different approaches; like distillation, cold pressing, etc. These isolated compounds are then incorporated in a vehicle or carrier compound while keeping its scent and all the healthy benefits intact.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>THE CHARACTERISTICS OF ESSENTIALS:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Essential oils are known to have a characteristic scent and flavor. The scent depends on their source of extraction and the compound that has been isolated form the source. They are not directed to be ingested or for oral use. They are usually put in diffusers and their main route of administration in the body is nasal. There are many benefits of adding essential oils in your daily use and some of them are listed below:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>FEEL THE FRAGRANCE:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One of the most common and the most popular use of essential oils is aromatherapy. Aromatherapy is a kind of therapeutic process where you are subjected to inhale a certain of aroma or scent from a certain type of essential oil. Those scents stimulate the limbic system present in your brain. The limbic system is mainly responsible for behavior, memory and several other important functions. These scents then associate a certain type of moment with the scent and as a result the memory of the individual improves a lot. That is why a perfume reminds us of a particular person we used to be around so much. Scents help stimulate better memory.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>ONLY GOOD SKIN AND NOTHING ELSE:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>They are widely used in skincare routines and are marketed by many social media influencers these days. Their increasing demand proves that they are efficient in what they do and backs up their claims. For people with acne for example, tea tree essential oil, ylang ylang essential oil, bergamot essential oil are the best. Since these are organic in origin they are much liked by people who have had an experience with the medicines out there, leaving many side effects.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>THINK SMART AND GET THE YOUR HAIR BACK:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>They are also frequently used in case of hair fall. These magic ingredients stimulate the hair follicle and cause hair growth at an increased rate. One of the recommended essential oil is rosemary oil for hair loss and if you combine this oil with peppermint oil you can also treat your dandruff that is most likely the reason of your hair loss.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I hope you enjoyed reading this article. Signing off! &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\r\n', 'ESSENTIAL OILS: FEEL THE DIFFERENCE', '', 'publish', 'closed', 'open', '', 'essential-oils-feel-the-difference', '', '', '2022-07-27 09:50:58', '2022-07-27 09:50:58', '', 0, 'https://onlineincshop.com/?p=229', 0, 'post', '', 0),
(230, 9467, '2022-07-27 09:50:49', '2022-07-27 09:50:49', '', 'crystalweed-cannabis-Qd37vTyByBs-unsplash', '', 'inherit', '', 'closed', '', 'crystalweed-cannabis-qd37vtybybs-unsplash', '', '', '2022-07-27 09:50:49', '2022-07-27 09:50:49', '', 229, 'https://onlineincshop.com/wp-content/uploads/2022/07/crystalweed-cannabis-Qd37vTyByBs-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(250, 9467, '2022-12-19 05:49:11', '2022-12-19 05:49:11', '<!-- wp:heading {\"level\":1} -->\n<h1></h1>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Working in a different country in all aspects is a challenging step. However, this risk can be beneficial for you in numerous ways. The first thing required to get any country\'s visa is to go through a detailed application process. For instance, you want a <a href=\"https://dm-consultant.qa/work-permit/canada/\">Canada work permit</a> visa and apply for it by contacting your country\'s embassy. There are different requirements besides documents and others related to the work permit visa approval application process. You need to know about such requirements by many countries to allow someone to enter their territory for work. Have a look at the core requirements for a job permit visa.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true,\"type\":\"1\"} -->\n<ol type=\"1\"><!-- wp:list-item -->\n<li>An applicant must get all the sureties regarding landing a job. The appointment letter, interview date and all other formalities must be completed. You\'ll have to show the credentials to prove you have a job.&nbsp;</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>You will also be required to show a health certificate. Sometimes, a small disease turns out to be bigger, and the visa holder is left with no option but to return to their hometown. Therefore, a good and satisfactory health certificate is also required to submit. This ensures the embassy that you can work in another country without quitting the job in the middle.&nbsp;</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>The required funds for living in an all-new place must be available in your bank account. The visa application is refused immediately if an applicant fails to provide proof of having sufficient money to spend living there.&nbsp;</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>The authorities also investigate if an applicant has any prior criminal record. It is imperative to find, and in-depth research is conducted to know the applicant\'s sort of involvement in criminal activities before. The wrong track record leads to the refusal of a visa.&nbsp;</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>The lack of qualifications or skills for a job is also kept in mind. Though these are also examined by the firm that hires an applicant, embassies check it at their end. Sometimes, providing fake documents (certificates and degrees) can land any person a job in another country. The state providing a visa to that applicant for working there also has a right to verify such documents.</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Concluding Lines</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you\'ve got a job in Canada, you can apply for a visa without wasting a minute. However, reaching the right agency is a daunting task. Therefore, don\'t trust any random visa immigration consultancy agency. Get the ideal services from a DM consultant company to handle your case the best way. <a href=\"https://dm-consultant.qa/\">Consult now</a> and turn your experience of working with us much better. You would never be disappointed with the services.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We would guide you properly, and things would turn in your favor. It means that you\'ll be able to get your visa approval as early as possible. This sounds great that a team of expert consultants would guide you until you successfully obtain a visa. Brighten up your chances of getting a work permit visa for Canada in less than expected time. So, what else are you thinking? Hire us today.&nbsp;</p>\n<!-- /wp:paragraph -->\r\n', 'Work Permit Visa for Canada: Excellent Assistance by a Reliable Agency ', '', 'publish', 'closed', 'open', '', 'work-permit-visa-for-canada-excellent-assistance-by-a-reliable-agency', '', '', '2022-12-19 05:49:12', '2022-12-19 05:49:12', '', 0, 'https://onlineincshop.com/?p=250', 0, 'post', '', 0),
(244, 9467, '2022-11-21 05:21:46', '2022-11-21 05:21:46', '<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One of your best decisions was to take a European vacation. Life in Europe has diversified lakes, breathtaking scenic views, the multicultural side of France and memorable historical sights.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Europe certainly comes under the list of countries with fascinating past tales and many beautiful destinations.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A traveler needs clarification about where to go, given the variety of attractive spots. However, this article makes it easier for you to get to the places you want.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let\'s fly!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Athens, Europe</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Athens is the origin of science, music, art and history. It is your best choice if you\'re the type of person constantly interested in learning about history.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Given that it is one of the oldest cities with modern infrastructure,</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Please do not go away before visiting their shopping malls and restaurants. For proper guidance, look for the best <a href=\"https://dm-consultantoman.com/visit-visa/schengen-visa/\"><strong>visa schengen</strong></a><strong> </strong>consultants here.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Paris, France</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Suppose you\'ve just packed your bags for Europe, including a trip to France. France has attractive destination spots, karaoke nights, tempting food and outstanding sights. France effectively reflects their culture.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Plus, if you are not willing to have an expensive cab, the city offers visitors a public bus. It will eventually help you travel throughout the city.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Vienna, Austria</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you plan for your honeymoon, spending it in Vienna might be your best option. This city is not only the most secure and safest location but also one of the loveliest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Multiple amusement parks, shopping centres and bars are the key attractions of this city.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Barcelona, Spain</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Barcelona is where trends, fashion, food and arts dive into the same pool. It is a multicultural place with beautiful azure beaches and has something yummiest for your tummy.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You decided to travel to Spain because of the country\'s romantic weather and quiet beaches.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Venice, Italy</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are the kind of person who loves to travel on cruise ships, then going to Venice will facilitate you here. Having 177 canals and 120 islands makes this place much more attractive.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This country is viewed negatively regarding entertainment because of its high levels of tourism activity. The atmosphere might be cozy at night, though.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>London, England</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>London is the capital of England and one of the most popular places among tourists. Enjoy a cup of coffee while admiring the turquoise Thames River. It is also said to be “The Greater London” as this place is a mixture of two cities that are ‘The city of London and The City of Westminster’.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you have to grab your ticket to London then do not miss the following places,</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Nelson’s Column.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>House of Parliament.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Big Ben.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>London Eye.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><strong>FAQs</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What is the top attractive place in Europe?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Eiffel tower is one of the best places in Europe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What is a top-rated country in Europe?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>France has the most tourist attractions among all the places in Europe.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Take Away</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;If you\'ve decided to travel to Europe this summer, get your paperwork in as soon as possible. If you are struggling with any issue in your visa process, then there are some best <a href=\"https://dm-consultantoman.com/visit-visa/schengen-visa/\"><strong>visit visa for Europe</strong></a><strong> </strong>which will guide you accordingly. Hurry to take advantage of the most incredible deals and packages.</p>\n<!-- /wp:paragraph -->\r\n', 'Top 5 Tourists Attraction in Europe', '', 'publish', 'closed', 'open', '', 'top-5-tourists-attraction-in-europe', '', '', '2022-11-21 05:22:29', '2022-11-21 05:22:29', '', 0, 'https://onlineincshop.com/?p=244', 0, 'post', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(245, 9467, '2022-11-21 05:21:32', '2022-11-21 05:21:32', '', 'florian-wehde-WBGjg0DsO_g-unsplash', '', 'inherit', '', 'closed', '', 'florian-wehde-wbgjg0dso_g-unsplash', '', '', '2022-11-21 05:21:32', '2022-11-21 05:21:32', '', 244, 'https://onlineincshop.com/wp-content/uploads/2022/11/florian-wehde-WBGjg0DsO_g-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(251, 9467, '2022-12-19 05:49:05', '2022-12-19 05:49:05', '', 'jaimie-harmsen-8d9jdqyGaQA-unsplash', '', 'inherit', '', 'closed', '', 'jaimie-harmsen-8d9jdqygaqa-unsplash', '', '', '2022-12-19 05:49:05', '2022-12-19 05:49:05', '', 250, 'https://onlineincshop.com/wp-content/uploads/2022/12/jaimie-harmsen-8d9jdqyGaQA-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(254, 9467, '2022-12-28 04:58:42', '2022-12-28 04:58:42', '<!-- wp:heading {\"level\":1} -->\n<h1></h1>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Children of growing ages need the best toys to improve their motor and cognitive skills. A child starts this process by learning hand and eye coordination. The right coordination of eyes and hands actually makes them able to learn and explore a lot of things. If you really want your child to get quick problem solving capabilities and cognitive skills, these early life activities can help them well in this regard. The busy board Buckle Toy can keep your child engaged with the genius activities.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Those colourful buckles, shapes based on the zipper and snap pocket make it worth playing with for all the right reasons. It is made up of the best quality material and by keeping all the kid\'s safety measures in consideration. Give this best thing to your kid, and they will love spending their time on this screen-free activity. Your child would find fifteen different laces, zip pockets and buckles. The use of soft and comfortable fabric makes the toy totally secure for all the right reasons.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true,\"type\":\"1\"} -->\n<ol type=\"1\"><!-- wp:list-item -->\n<li>It is made by focussing on all the things that can provide a safe paying experience to the kids. It is portable and easy to take anywhere. Your kid can enjoy playing with this toy either solo or with a group of friends. It is best to play both ways.&nbsp;</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>You would be much elated by seeing your child\'s improved cognitive, motor, and self-dressing skills by spending time with this board. It is a fun-filled toy you would definitely love to use again and again.&nbsp;</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>As a parent, you would love to see your child\'s skills of self-care, patience and concentration. Their full involvement with this toy would make them able to love it and play again and again.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>It is ideal to teach the core manual skills to the kids. You\'ll end up finding your child truly involved in it. This is the best toy to give education and fun simultaneously. If you want to see your child happy, busy and learning something great, you better place an order for this amazing thing. It\'s a guarantee that you will be super glad to make a decision to buy this product.&nbsp;</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>It is easy to understand and best for your kid. They will learn a lot from this best toy.&nbsp;</li>\n<!-- /wp:list-item --></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Hurry up and buy the best <a href=\"https://montessorivision.com/products/montessori-buckle-toy-busy-board\"><strong>montessori buckle board</strong></a> for your child. It\'s time to add this amazing toy in their collection of educational toys. Not just your child but you would also love seeing them playing with it. It is not pricey and comes up with the best quality and amazing accessories.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So, let your child play and learn best through this board. They will simply love you more after getting such amazing things to play with and for educational purposes. Keep in mind that a toddler only learns well by engaging into such interesting and joyful activities. Otherwise, they would definitely prefer spending their time surfing videos or playing games on electronic gadgets. Be wiser and choose the best and most helpful toys for your kids.&nbsp;</p>\n<!-- /wp:paragraph -->\r\n', 'Improve your Child\'s Cognitive Skills with Appealing Buckle Toy Busy Board ', '', 'publish', 'closed', 'open', '', 'improve-your-childs-cognitive-skills-with-appealing-buckle-toy-busy-board', '', '', '2022-12-28 04:58:44', '2022-12-28 04:58:44', '', 0, 'https://onlineincshop.com/?p=254', 0, 'post', '', 0),
(255, 9467, '2022-12-28 04:58:37', '2022-12-28 04:58:37', '', 'product-image-1764992751', '', 'inherit', '', 'closed', '', 'product-image-1764992751', '', '', '2022-12-28 04:58:37', '2022-12-28 04:58:37', '', 254, 'https://onlineincshop.com/wp-content/uploads/2022/12/product-image-1764992751.webp', 0, 'attachment', 'image/webp', 0),
(257, 9467, '2022-12-30 06:19:33', '2022-12-30 06:19:33', '<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The trend of search engine optimization to boost the ranking of a webpage gets modifications almost every year. This is because of some adaptations in search engine requirements to let the site owners experience the transparent process of gaining traffic. Also, the need for attracting organic traffic makes the webpage owner worried.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The best way is to focus on highly effective SEO strategies. The right tactics can bring a site from the lower to the top ranking. All you have to do is to stay determined and work on it honestly. The results would be the way you want. Following are some not-to-miss hacks to give your webpage a secured position on SERP in no time. Let\'s give these hacks a view.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Make Keywords Research through Genius Planning</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well, there are plenty of sites to guide you about finding keywords for crafting excellent SEO articles and blogs. But the fact is something else. Finding suitable keywords won\'t be much helpful nowadays. There is a lot to remember and follow the latest ways to make this experience more advanced. Yes, you are required to focus on some tools for it, which would be workable too.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One of the suggested tools is Google Keyword Planner. Give it a try and learn modern ways of finding the best keywords. Also, make sure you\'re familiar with using short and long-tail keywords. The content must be stuffed with fewer keywords. Make it worth reading rather than cluster the keyphrases with confusing sentences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Latent Semantic Indexing: The Other Best Solution</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One must take advantage of LSI. Using LSI keywords in the content works for a site on a long-term basis. The more readers would crave to go through content if it\'s well-crafted and intelligently based on LSI keyphrases. Forget getting more bounce rate because the best content keeps their readers around it. More traffic is directly proportional to more positive feedback. And guess what? You\'ll be able to reach your goal in the shortest possible span.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>The Strategy of Outbound Link Optimization</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are numerous advantages of relying on outbound links to connect your site to fresh content. High-quality writing pieces play a primary role in increasing the worth of a site. In this way, those written posts would get a direct link with the high authority websites. You will enjoy desired ranking power as the best content develops readers\' trust. This is an ideal strategy to help sites gain organic traffic. Say goodbye to fake site followers and views.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Summing Up..</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is always recommended to keep your attention towards any updates about improving the SEO of a website. Every site needs an upgrade, and SEO maintenance is also a part of it. Anyone searching for a trusted <a href=\"https://www.shayanaman.com/\">Dubai SEO</a> service should now stop their search. A reliable platform is here to help you out by assuring excellent SEO success. There won\'t be any objections to making revisions multiple times if you\'re unsatisfied with our work.</p>\n<!-- /wp:paragraph -->\r\n', 'Much Effective SEO Hacks to Give Your Site a Desired Ranking', '', 'publish', 'closed', 'open', '', 'much-effective-seo-hacks-to-give-your-site-a-desired-ranking', '', '', '2022-12-30 06:19:35', '2022-12-30 06:19:35', '', 0, 'https://onlineincshop.com/?p=257', 0, 'post', '', 0),
(258, 9467, '2022-12-30 06:19:28', '2022-12-30 06:19:28', '', 'myriam-jessier-CElY_ESswGU-unsplash', '', 'inherit', '', 'closed', '', 'myriam-jessier-cely_esswgu-unsplash', '', '', '2022-12-30 06:19:28', '2022-12-30 06:19:28', '', 257, 'https://onlineincshop.com/wp-content/uploads/2022/12/myriam-jessier-CElY_ESswGU-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(261, 9467, '2023-01-18 08:16:39', '2023-01-18 08:16:39', '<!-- wp:paragraph -->\n<p>Is your kid obsessed with toys based on locks? Do they love to hide the keys (of locked toys) so that no one touches them? Well, they are doing the same which you used to do in your childhood. Never keep your babies away from such toys. They are curious about many things related to playing with such toys. They love exploring new things like playing, locking it and hiding their keys. They consider <a href=\"https://montessorivision.com/\">toy keys and locks</a> more valuable than the toy itself. Therefore, don\'t say \'No\' to your kid if they are demanding such kinds of toys from you.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>​</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For children, nothing is more fun than opening a lock and key. Kids enjoy the challenge of finding the right combination to open the lock while also using their imagination to figure out what secret treasure awaits inside. Locks and keys offer an exciting experience that will keep your child entertained for hours. With this in mind, you must be familiar with a collection of kids’ favorite toys with locks and keys.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Unique Toys with Locks and Keys</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A Treasure Chest can be the best toy for them. This charming set comes complete with a pirate, hidden treasures and several surprises to discover behind the chest\'s doors. Children can put their skills to use, unlocking each door and figuring out where all the pieces are located before revealing their contents. The secret entrance offers lots of exciting challenges for young adventurers who can spend hours having imaginary endless fun.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another must-have toy for young detectives is Tiles Secret Lock Boxes. Inside these beautifully designed boxes is a unique locking mechanism requiring several tiles combinations before finally being opened. The secrets behind these boxes create mystery, adventure and entertainment for all brave enough to crack the code. This puzzle set provides hours of problem-solving practice while igniting creativity with building block challenges.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lastly is an interactive discovery game with a key and lock. In this two-player game, each person gets to build one of two secure locks by assembling parts such as wheels, levers, blocks and codes that they must follow to solve puzzles before unlocking their lockbox first. Working together or against each other makes it exciting and challenging, great for family nights or friendly competitions.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Kids of all ages love exploring such different toys with locks and keys. From puzzle solving to imaginary adventures, your little ones will have plenty of creative ideas to work through. Playing with toys with keys and locks is a right of every child. Remember that you played with them too in your childhood. So, don\'t make your kids sad and buy them the best quality toys. Take their curiosity to an end. They would simply love to play with these toys individually and with pals. Develop a sense of keeping things/belongings secured in your child in this way. They would love to play, and you would love to make them happy.</p>\n<!-- /wp:paragraph -->\r\n', 'Ideal Collection of Kids\' Favorite Toys with Locks and Keys ', '', 'publish', 'closed', 'open', '', 'ideal-collection-of-kids-favorite-toys-with-locks-and-keys', '', '', '2023-01-18 08:16:40', '2023-01-18 08:16:40', '', 0, 'https://onlineincshop.com/?p=261', 0, 'post', '', 0),
(263, 9467, '2023-01-18 08:16:31', '2023-01-18 08:16:31', '', 'product-image-1986828354', '', 'inherit', '', 'closed', '', 'product-image-1986828354', '', '', '2023-01-18 08:16:31', '2023-01-18 08:16:31', '', 261, 'https://onlineincshop.com/wp-content/uploads/2023/01/product-image-1986828354.webp', 0, 'attachment', 'image/webp', 0),
(308, 9467, '2023-07-25 10:56:55', '2023-07-25 10:56:55', '<span style=\"font-weight: 400;\">Dubai, the city of superlatives, is renowned for its opulence, grandeur, and extravagant lifestyle. One of the most captivating ways to experience the true essence of luxury in Dubai is by sailing on its pristine waters aboard magnificent yachts. Whether you seek a serene escape, a glamorous party venue, or a memorable adventure, Yachts Dubai offers an experience like no other. In this article, we will delve into the world of Yachts in Dubai and discover why it has become the ultimate indulgence for locals and tourists alike.</span>\r\n<h2><b>A Paradise for Yachting Enthusiasts</b></h2>\r\n<span style=\"font-weight: 400;\">Dubai\'s azure waters and stunning coastline provide the perfect playground for yachting enthusiasts. From sleek and stylish motor yachts to majestic sailing yachts, there\'s a wide array of vessels available for charter. Whether you are a seasoned sailor or a first-time explorer, Yachts Dubai caters to all, promising an unforgettable voyage on the Arabian Gulf.</span>\r\n<h2><b>Private Yacht Charters: The Epitome of Luxury</b></h2>\r\n<span style=\"font-weight: 400;\">For those seeking the utmost privacy and exclusivity, private yacht charters are the epitome of luxury. Imagine cruising the waters with your closest friends and family, basking in the warm Arabian sun, and indulging in five-star amenities. From lavish interiors to personalized services, private yacht charters in Dubai redefine opulence.</span>\r\n<h2><b>A World of Water Adventures</b></h2>\r\n<span style=\"font-weight: 400;\">Beyond leisurely cruises, Yachts Dubai offers a plethora of water adventures for the thrill-seekers. Experience the rush of adrenaline with water sports such as jet skiing, wakeboarding, and flyboarding. For the underwater enthusiasts, diving and snorkeling adventures allow you to explore the vibrant marine life of the Arabian Gulf.</span>\r\n<h2><b>Savoring the Iconic Dubai Skyline</b></h2>\r\n<span style=\"font-weight: 400;\">Sailing on a yacht not only provides a unique perspective of Dubai\'s stunning skyline but also offers the perfect backdrop for capturing memorable moments. As the sun sets over the city, the skyline transforms into a mesmerizing display of lights, making your yacht excursion an enchanting experience.</span>\r\n<h2><b>Celebrate in Style: Yacht Parties</b></h2>\r\n<span style=\"font-weight: 400;\">Dubai is renowned for its vibrant nightlife, and yacht parties are a highlight of the city\'s social scene. From intimate gatherings to lavish events, yacht parties cater to every celebration. Whether it\'s a birthday bash, a corporate event, or a special occasion, Yachts Dubai sets the stage for unforgettable celebrations amidst the glimmering waters.</span>\r\n<h2><b>Dubai\'s Nautical Events: A Feast for the Senses</b></h2>\r\n<span style=\"font-weight: 400;\">Dubai\'s nautical calendar is peppered with exciting events that attract yacht enthusiasts from around the world. From prestigious yacht shows to thrilling regattas, these events showcase the latest in yacht design and innovation, making them a must-visit for those passionate about sailing.</span>\r\n<h2><b>An Eco-Friendly Approach</b></h2>\r\n<span style=\"font-weight: 400;\">Yachts Dubai is also committed to sustainability and eco-friendly practices. Many yacht operators in Dubai are adopting green initiatives to reduce their environmental impact, ensuring that future generations can continue to enjoy the beauty of the Arabian Gulf.</span>\r\n<h2><b>Choosing the Perfect Yacht</b></h2>\r\n<span style=\"font-weight: 400;\">With a plethora of yachts to choose from, finding the perfect one for your needs can be overwhelming. Consider factors such as group size, desired amenities, and the type of experience you seek to narrow down your options. Consulting with reputable yacht charter companies can help you make an informed choice.</span>\r\n<h3><b>Conclusion</b></h3>\r\n<span style=\"font-weight: 400;\">Yachts Dubai offers a tantalizing taste of the city\'s luxurious lifestyle, where sailing on the pristine waters of the Arabian Gulf becomes an experience of unparalleled indulgence. From private yacht charters that exude opulence to thrilling water adventures and glamorous yacht parties, Dubai\'s yachting scene is a world of extravagance waiting to be explored. So, set sail on a remarkable journey, and let Yachts Dubai redefine your understanding of luxury and elegance.</span>\r\n', 'Yachts Dubai: Sailing in Luxury on the Waters of Extravagance', '', 'publish', 'closed', 'open', '', 'yachts-dubai-sailing-in-luxury-on-the-waters-of-extravagance', '', '', '2023-07-25 10:56:55', '2023-07-25 10:56:55', '', 0, 'https://onlineincshop.com/?p=308', 0, 'post', '', 0),
(309, 9467, '2023-07-25 10:56:43', '2023-07-25 10:56:43', '', 'Yachts Dubai', '', 'inherit', 'closed', 'closed', '', 'alonso-reyes-ca4xzm3xabg-unsplash', '', '', '2023-07-25 10:56:50', '2023-07-25 10:56:50', '', 308, 'https://onlineincshop.com/wp-content/uploads/2023/07/alonso-reyes-Ca4XZM3xABg-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(266, 9467, '2023-01-30 09:37:18', '2023-01-30 09:37:18', '', 'dollar-gill-SoG-vKZ9bU4-unsplash (1)', '', 'inherit', '', 'closed', '', 'dollar-gill-sog-vkz9bu4-unsplash-1', '', '', '2023-01-30 09:37:18', '2023-01-30 09:37:18', '', 0, 'https://onlineincshop.com/wp-content/uploads/2023/01/dollar-gill-SoG-vKZ9bU4-unsplash-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(311, 9467, '2023-07-26 10:57:26', '2023-07-26 10:57:26', '<span style=\"font-weight: 400;\">Dubai, the iconic city of the United Arab Emirates, has long been synonymous with ambition and progress. And now, it stands ready to host one of the most significant events in its history - Dubai Expo 2020. This eagerly anticipated world exposition promises to be a transformative journey, where innovation, culture, and progress converge to showcase the vibrant essence of this dynamic city on the global stage. In this article, let\'s explore the significance and the exciting prospects of Dubai Expo 2020.</span>\r\n<h2><b>What is Dubai Expo 2020?</b></h2>\r\n<span style=\"font-weight: 400;\">Dubai Expo 2020 is a six-month-long world exposition that will be held in the heart of Dubai from October 1, 2021, to March 31, 2022. It is the first World Expo to be hosted in the Middle East, North Africa, and South Asia region, making it an event of tremendous significance and global attention.</span>\r\n<h2><b>The Theme: \"Connecting Minds, Creating the Future\"</b></h2>\r\n<span style=\"font-weight: 400;\">At the core of Dubai Expo 2020 lies the theme, \"Connecting Minds, Creating the Future.\" This theme reflects Dubai\'s dedication to collaboration and innovation as catalysts for progress. The expo aims to bring together people from diverse backgrounds, cultures, and nations to foster dialogue and work towards sustainable solutions for the challenges facing humanity.</span>\r\n<h2><b>A Global Platform for Innovation</b></h2>\r\n<span style=\"font-weight: 400;\">Dubai Expo 2020 will serve as a global platform to showcase cutting-edge innovations and technological advancements. It will feature pavilions from over 190 participating countries, each presenting their unique vision of the future. From artificial intelligence and sustainable architecture to renewable energy and space exploration, visitors can expect a mind-boggling array of innovations.</span>\r\n<h2><b>Showcasing the Best of Dubai</b></h2>\r\n<span style=\"font-weight: 400;\">For Dubai, hosting Expo 2020 is an opportunity to showcase its unique culture, heritage, and vision for the future. The event will exhibit the city\'s remarkable journey from a humble trading hub to a modern metropolis that stands at the forefront of innovation and development.</span>\r\n<h2><b>The Iconic Expo Site: Dubai South</b></h2>\r\n<span style=\"font-weight: 400;\">The sprawling Expo 2020 site is located in Dubai South, spanning over 4.38 square kilometers. It is strategically positioned near the Al Maktoum International Airport, ensuring easy access for millions of visitors from around the world.</span>\r\n<h2><b>Thematic Districts: A Journey of Discovery</b></h2>\r\n<span style=\"font-weight: 400;\">Dubai Expo 2020 will be divided into thematic districts, each designed to captivate visitors with its unique offerings. The districts include Mobility, Sustainability, Opportunity, and the captivating Al Wasl Plaza - the heart of the expo.</span>\r\n<h2><b>A Celebration of Culture</b></h2>\r\n<span style=\"font-weight: 400;\">Beyond technology and innovation, Dubai Expo 2020 will be a celebration of cultural diversity. Visitors can immerse themselves in captivating performances, art installations, and culinary delights from different corners of the globe.</span>\r\n<h2><b>Sustainability at the Forefront</b></h2>\r\n<span style=\"font-weight: 400;\">Dubai Expo 2020 is committed to sustainability and environmental responsibility. The expo site has been designed with eco-friendly principles, and initiatives to reduce waste, conserve water, and promote renewable energy will be showcased throughout the event.</span>\r\n<h2><b>An Economic Boost</b></h2>\r\n<span style=\"font-weight: 400;\">The impact of Dubai Expo 2020 extends beyond the event\'s duration. The expo is expected to significantly boost the city\'s economy by attracting millions of tourists, generating business opportunities, and leaving a lasting legacy of infrastructure and innovation.</span>\r\n<h3><b>Conclusion</b></h3>\r\n<span style=\"font-weight: 400;\">Dubai Expo 2020 is poised to be a momentous event that celebrates the spirit of human ingenuity and cultural diversity. As the world converges in Dubai to explore the future of technology, sustainability, and collaboration, this dynamic city is ready to shine on the global stage. Dubai Expo 2020 promises to be an unforgettable experience, leaving an indelible mark on the city\'s history and the world at large.</span>\r\n', 'Dubai Expo 2020: Unveiling the Future of a Dynamic City', '', 'publish', 'closed', 'open', '', 'dubai-expo-2020-unveiling-the-future-of-a-dynamic-city', '', '', '2023-07-25 11:04:10', '2023-07-25 11:04:10', '', 0, 'https://onlineincshop.com/?p=311', 0, 'post', '', 0),
(292, 9467, '2023-06-27 09:11:13', '2023-06-27 09:11:13', '<!-- wp:paragraph -->\n<p>Dubai, the bustling metropolis known for its opulence and grandeur, is not only a hub of luxury and extravagance but also a paradise for automotive enthusiasts. If you have a passion for cars and aspire to experience the ultimate in automotive excellence, Cars Dubai is the destination you\'ve been dreaming of. In this article, we invite you to dive into the world of luxury cars and discover why Dubai is a haven for automotive enthusiasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>The Hub of Luxury Cars</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dubai is renowned for its extravagant lifestyle, and this extends to the world of automobiles. Luxury car enthusiasts flock to Dubai to witness a mesmerizing collection of high-end and exotic cars that grace the city\'s streets. From sleek sports cars to elegant sedans, Dubai offers an unrivaled selection of luxury vehicles from renowned brands such as Lamborghini, Ferrari, Rolls-Royce, Bentley, and many more. Whether you\'re a collector, an admirer, or simply someone with a taste for the finer things in life, Dubai\'s luxury car scene will leave you in awe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Exotic Car Showrooms and Dealerships</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In Dubai, you\'ll find an abundance of state-of-the-art showrooms and dealerships that specialize in luxury and exotic cars. These establishments are meticulously designed to showcase the beauty and craftsmanship of each vehicle, providing a truly immersive experience for enthusiasts. From the moment you step into these showrooms, you\'ll be surrounded by a symphony of automotive marvels, with sleek designs, powerful engines, and unparalleled attention to detail. Whether you\'re seeking to purchase, lease, or simply indulge in the world of luxury cars, Dubai\'s showrooms and dealerships are a haven for automotive enthusiasts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Unforgettable Driving Experiences</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dubai not only offers the opportunity to admire luxury cars but also provides unforgettable driving experiences for enthusiasts. Imagine yourself behind the wheel of a powerful sports car, cruising along the iconic streets of Dubai, and soaking in the breathtaking cityscape. Whether you opt for a thrilling supercar rental or join a luxury car club, Dubai offers a range of experiences that allow you to fulfill your automotive dreams. Feel the exhilaration of acceleration, revel in the precise handling, and immerse yourself in the luxury and comfort that these vehicles provide.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Supercar Events and Exhibitions</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dubai hosts various supercar events and exhibitions throughout the year, attracting automotive enthusiasts from around the world. These events showcase a dazzling array of rare and exclusive cars, allowing visitors to witness automotive masterpieces up close. From glamorous car exhibitions to adrenaline-pumping supercar rallies, Dubai\'s automotive events are a spectacle to behold. Immerse yourself in the vibrant atmosphere, connect with fellow enthusiasts, and witness the passion and dedication that goes into creating these automotive works of art.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Customization and Personalization</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dubai is home to a plethora of renowned car customization and personalization specialists. Whether you desire a unique paint job, custom interior, performance enhancements, or bespoke modifications, Dubai\'s experts can bring your automotive visions to life. These specialists work closely with car owners to transform their vehicles into one-of-a-kind masterpieces, reflecting individual style and preferences. Dubai\'s customization scene is a testament to the city\'s dedication to automotive excellence and personalization.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Conclusion</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In conclusion, Cars Dubai is a paradise for automotive enthusiasts, offering a world of luxury, excitement, and unparalleled automotive experiences. Whether you\'re a collector, a driver, or simply captivated by the beauty of high-performance vehicles, Dubai\'s vibrant automotive scene will leave an indelible mark on your passion for cars.</p>\n<!-- /wp:paragraph -->\r\n', 'Discover the Ultimate Luxury: Cars Dubai - A Haven for Automotive Enthusiasts', '', 'publish', 'closed', 'open', '', 'discover-the-ultimate-luxury-cars-dubai-a-haven-for-automotive-enthusiasts', '', '', '2023-06-27 09:11:23', '2023-06-27 09:11:23', '', 0, 'https://onlineincshop.com/?p=292', 0, 'post', '', 0),
(272, 9467, '2023-05-29 09:51:21', '2023-05-29 09:51:21', '', 'Default Kit', '', 'publish', 'closed', 'closed', '', 'default-kit', '', '', '2023-05-29 09:51:21', '2023-05-29 09:51:21', '', 0, 'https://onlineincshop.com/?p=272', 0, 'elementor_library', '', 0),
(273, 9467, '2023-05-29 09:57:42', '2023-05-29 09:57:42', '<p>Are you planning a trip to Abu Dhabi and looking for the perfect place to stay? Look no further than Abu Dhabi Mall hotels, where luxury and convenience blend seamlessly. In this article, we\'ll explore the world of Abu Dhabi Mall hotels, their benefits, top options, and the incredible experiences they offer. Get ready to immerse yourself in the vibrant atmosphere and discover why these hotels are the ideal choice for your stay in Abu Dhabi.</p><h2><b>Introduction</b></h2><p>Abu Dhabi Mall hotels are located in close proximity to the city\'s premier shopping destination, the Abu Dhabi Mall. These hotels offer a unique and unforgettable experience, combining luxurious accommodations with world-class amenities and exceptional services. Whether you\'re traveling for business or leisure, Abu Dhabi Mall hotels provide a comfortable and convenient base for your stay.</p><h2><b>What are Abu Dhabi Mall Hotels?</b></h2><p>Abu Dhabi Mall hotels are upscale accommodations situated within or adjacent to the Abu Dhabi Mall. They cater to a wide range of travelers, including tourists, business professionals, and families. These hotels offer an array of room options, from standard rooms to lavish suites, ensuring there\'s something to suit every traveler\'s needs.</p><h2><b>Benefits of Staying at Abu Dhabi Mall Hotels</b></h2><h3><b>Convenience</b></h3><p> Staying at Abu Dhabi Mall hotels means having everything you need right at your doorstep. You can easily access the mall\'s shops, restaurants, and entertainment venues without having to travel far.</p><h3><b>Luxury</b></h3><p>Abu Dhabi Mall hotels boast elegant and stylish interiors, providing a luxurious atmosphere for guests. From opulent furnishings to breathtaking views, every aspect of these hotels is designed to create a memorable experience.</p><h3><b>World-Class Amenities</b></h3><p> Guests can indulge in a wide range of amenities, including state-of-the-art fitness centers, rejuvenating spas, and sparkling swimming pools. These amenities ensure that guests have a relaxing and enjoyable stay.</p><h3><b>Impeccable Service</b></h3><p> The staff at Abu Dhabi Mall hotels are known for their warm hospitality and attention to detail. They strive to make every guest feel welcomed and ensure that their needs are met throughout their stay.</p><h2><b>Top Abu Dhabi Mall Hotels</b></h2><h3><b>The Grand Tower Hotel</b></h3><p> Offering panoramic views of the city skyline, The Grand Tower Hotel is a luxurious retreat within walking distance of Abu Dhabi Mall. With its spacious rooms, gourmet dining options, and extensive leisure facilities, this hotel provides an exceptional experience for guests.</p><h3><b>Royal Suites Hotel</b></h3><p> Situated adjacent to Abu Dhabi Mall, Royal Suites Hotel offers stylish and contemporary accommodations. Guests can enjoy the hotel\'s rooftop pool, fine dining restaurants, and convenient access to shopping and entertainment.</p><h3><b>Oasis Resort &amp; Spa</b></h3><p> Nestled in a tranquil oasis, Oasis Resort &amp; Spa provides a serene escape from the bustling city. This hotel offers lush gardens, a rejuvenating spa, and elegant rooms, ensuring a relaxing stay for guests.</p><h2><b>Luxurious Amenities at Abu Dhabi Mall Hotels</b></h2><p>Abu Dhabi Mall hotels offer a wide range of luxurious amenities to enhance your stay. From plush bedding to state-of-the-art technology, these hotels prioritize comfort and convenience. Some notable amenities include:</p><ul><li style=\"font-weight: 400;\" aria-level=\"1\">Spacious and well-appointed rooms with modern furnishings</li><li style=\"font-weight: 400;\" aria-level=\"1\">High-speed internet access and smart TVs in every room</li><li style=\"font-weight: 400;\" aria-level=\"1\">Fitness centers equipped with the latest exercise equipment</li><li style=\"font-weight: 400;\" aria-level=\"1\">On-site spa and wellness facilities for ultimate relaxation</li><li style=\"font-weight: 400;\" aria-level=\"1\">Gourmet restaurants serving a variety of cuisines</li><li style=\"font-weight: 400;\" aria-level=\"1\">Rooftop pools with stunning views of the city</li><li style=\"font-weight: 400;\" aria-level=\"1\">24/7 concierge services to cater to guests\' needs</li></ul><h2><b>Shopping and Dining Experiences</b></h2><p>One of the highlights of staying at Abu Dhabi Mall hotels is the unparalleled shopping and dining experiences they offer. Abu Dhabi Mall, located just steps away, features a vast array of international and local brands, allowing guests to indulge in a world-class shopping spree. Additionally, the mall houses numerous restaurants and cafes, providing a diverse culinary journey for every palate.</p><h2><b>Proximity to Attractions and Entertainment</b></h2><p>Abu Dhabi Mall hotels are strategically located near popular attractions and entertainment venues, making it easy for guests to explore the city\'s vibrant offerings. Some nearby attractions include:</p><ul><li style=\"font-weight: 400;\" aria-level=\"1\">Sheikh Zayed Grand Mosque: A magnificent architectural marvel that showcases the rich cultural heritage of the UAE.</li><li style=\"font-weight: 400;\" aria-level=\"1\">Ferrari World Abu Dhabi: An exhilarating theme park that offers thrilling rides and experiences for the whole family.</li><li style=\"font-weight: 400;\" aria-level=\"1\">Corniche Beach: A pristine stretch of coastline where visitors can relax and enjoy the azure waters of the Arabian Gulf.</li></ul><h2><b>Events and Activities</b></h2><p>Abu Dhabi Mall hotels often host special events and activities to enrich guests\' experiences. From live music performances to culinary workshops, there\'s always something happening within the hotel premises. These events provide opportunities for guests to immerse themselves in the local culture and create lasting memories.</p><h2><b>Business Facilities</b></h2><p>For business travelers, Abu Dhabi Mall hotels offer a range of business facilities and services. With well-equipped meeting rooms, high-speed internet access, and professional staff, these hotels provide an ideal setting for conferences, seminars, and corporate events.</p><h2><b>Transportation and Accessibility</b></h2><p>Abu Dhabi Mall hotels are well-connected to the city\'s transportation network, making it convenient for guests to explore Abu Dhabi. Public transportation options, such as taxis and buses, are readily available, and the hotels also provide car rental services for guests who prefer to drive. Additionally, Abu Dhabi International Airport is just a short drive away, ensuring a smooth arrival and departure experience.</p><h2><b>Tips for Choosing the Right Abu Dhabi Mall Hotel</b></h2><p>When selecting an Abu Dhabi Mall hotel for your stay, consider the following tips:</p><h3><b>Location</b></h3><p> Choose a hotel that is conveniently located near attractions and amenities you plan to visit.</p><h3><b>Budget</b></h3><p> Determine your budget and find a hotel that offers the best value for your money.</p><h3><b>Reviews and Ratings</b></h3><p> Read reviews and check ratings from previous guests to gauge the hotel\'s quality and service.</p><h3><b>Amenities</b></h3><p> Consider the amenities that are important to you, such as fitness facilities, dining options, or business services.</p><h3><b>Special Offers</b></h3><p> Look out for any special promotions or packages that can enhance your stay.</p><h4><b>Conclusion</b></h4><p>Abu Dhabi Mall hotels provide an exceptional experience for travelers visiting Abu Dhabi. From their convenient locations to luxurious amenities and proximity to shopping and entertainment, these hotels offer a perfect blend of comfort and style. Whether you\'re traveling for business or leisure, staying at an Abu Dhabi Mall hotel ensures a memorable stay in this dynamic city.</p>\r\n', 'Abu Dhabi Mall Hotels: Unforgettable Experiences Await You', '', 'publish', 'closed', 'open', '', 'abu-dhabi-mall-hotels-unforgettable-experiences-await-you', '', '', '2023-05-29 10:01:42', '2023-05-29 10:01:42', '', 0, 'https://onlineincshop.com/?p=273', 0, 'post', '', 0),
(274, 9467, '2023-05-29 09:57:15', '2023-05-29 09:57:15', '', 'abu dhabi mall hotels', '', 'inherit', 'closed', 'closed', '', 'kent-tupas-8tyxhw3udu8-unsplash', '', '', '2023-05-29 09:57:36', '2023-05-29 09:57:36', '', 273, 'https://onlineincshop.com/wp-content/uploads/2023/05/kent-tupas-8tyxHW3uDU8-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(279, 9467, '2023-05-30 10:02:09', '2023-05-30 10:02:09', '<p>Dubai, with its awe-inspiring skyline, luxurious resorts, and vibrant culture, has become a top tourist destination attracting millions of visitors each year. Exploring the wonders of this city can be an exhilarating experience, but to truly make the most of your trip, it\'s essential to partner with a reliable and proficient Destination Management Company (DMC). In this article, we will delve into the world of DMCs in Dubai, highlighting their role in the city\'s tourism industry, the services they provide, and the benefits of hiring them for your travel needs.</p><h2><b>What is a Destination Management Company (DMC)?</b></h2><p>A Destination Management Company (DMC) is a professional entity that specializes in managing and coordinating all aspects of a visitor\'s travel experience in a particular destination. DMCs act as local experts, providing a comprehensive range of services to ensure a seamless and unforgettable journey. From event planning and transportation logistics to accommodation selection and cultural experiences, DMCs take care of every detail, allowing travelers to focus on enjoying their trip.</p><h2><b>The Role of DMCs in Dubai\'s Tourism Industry</b></h2><p>Dubai\'s tourism industry thrives on providing exceptional experiences to travelers, and DMCs play a pivotal role in achieving this goal. These companies possess an in-depth understanding of Dubai\'s unique attractions, cultural nuances, and hidden gems. They collaborate closely with hotels, tour operators, and local suppliers to curate tailored itineraries that showcase the best of the city. By working hand in hand with DMCs, visitors can explore Dubai\'s iconic landmarks, immerse themselves in local traditions, and create cherished memories.</p><h2><b>Benefits of Hiring a DMC in Dubai</b></h2><p>Partnering with a DMC in Dubai offers numerous benefits for travelers. Firstly, DMCs have extensive knowledge of the local market and can provide insider recommendations and insights that are often inaccessible to independent travelers. Their expertise ensures that you can explore Dubai like a local, discovering off-the-beaten-path attractions and engaging in authentic cultural experiences.</p><p>Secondly, DMCs have established networks and relationships with reliable suppliers and service providers, guaranteeing the highest standards of quality and professionalism. Whether it\'s arranging airport transfers, securing exclusive reservations at top restaurants, or organizing unique activities, DMCs have the connections to make it happen seamlessly.</p><h2><b>Services Provided by DMCs in Dubai</b></h2><p>DMCs in Dubai offer a wide array of services designed to cater to the diverse needs and preferences of travelers. Some of the key services include:</p><h2><b>Event Planning and Management</b></h2><p>If you\'re organizing a corporate event, conference, or special celebration in Dubai, a DMC can handle all the intricate details. From conceptualizing the event theme to venue selection, catering arrangements, audiovisual setups, and entertainment, the DMC ensures a flawlessly executed event that leaves a lasting impression.</p><h2><b>Transportation and Logistics</b></h2><p>Navigating Dubai\'s sprawling cityscape can be challenging, but with a DMC by your side, you can leave the logistics to the experts. DMCs coordinate airport transfers, chauffeur-driven car rentals, group transportation, and even luxury yacht or helicopter charters. Their meticulous planning ensures you reach your destinations on time, hassle-free.</p><h2><b>Accommodation and Venue Selection</b></h2><p>Dubai boasts a wide range of luxurious hotels and unique venues, and selecting the right one can be overwhelming. DMCs help you find the perfect accommodation based on your preferences, budget, and location requirements. Whether it\'s a stylish city hotel, a tranquil beach resort, or an opulent desert retreat, DMCs have access to exclusive rates and insider deals.</p><h2><b>Sightseeing and Excursions</b></h2><p>Dubai offers a plethora of captivating attractions, from the iconic Burj Khalifa to the bustling traditional markets (souks) and the enchanting Palm Jumeirah. DMCs organize sightseeing tours and excursions that cater to different interests, whether you want to explore the city\'s modern architecture, delve into its historical heritage, or indulge in thrilling desert adventures.</p><h2><b>Cultural Experiences and Activities</b></h2><p>To truly immerse yourself in Dubai\'s rich culture and traditions, DMCs can arrange authentic experiences and activities. From camel riding and falconry demonstrations to traditional Emirati dining experiences and henna painting, these activities provide a deeper understanding of the local culture, making your visit even more meaningful.</p><h2><b>The Expertise and Local Knowledge of DMCs in Dubai</b></h2><p>One of the significant advantages of partnering with a DMC in Dubai is their unmatched expertise and local knowledge. DMCs have a finger on the pulse of the city, staying up-to-date with the latest attractions, events, and trends. They can recommend the best times to visit specific attractions, guide you to hidden gems, and suggest unique experiences that align with your preferences. Their personalized approach ensures that every aspect of your trip is tailored to your needs, making it truly exceptional.</p><h2><b>How DMCs Ensure a Seamless Travel Experience</b></h2><p>DMCs are committed to providing a seamless travel experience for their clients. They meticulously plan every detail, paying close attention to logistics, timing, and quality. From the moment you arrive in Dubai until your departure, DMCs are available to assist you 24/7, ensuring that your journey unfolds effortlessly. Their goal is to remove any stress or uncertainties, allowing you to relax and enjoy the city\'s wonders with peace of mind.</p><h2><b>The Importance of DMCs for Corporate Events and Incentive Travel</b></h2><p>Dubai has become a sought-after destination for corporate events, meetings, and incentive travel. DMCs play a vital role in organizing these trips, leveraging their expertise to create tailored experiences that leave a lasting impression on attendees. Whether it\'s an executive conference, team-building activities, or incentive trips to reward top performers, DMCs bring creativity and professionalism to ensure the event\'s success.</p><h2><b>Selecting the Right DMC in Dubai</b></h2><p>When choosing a DMC in Dubai, several factors should be considered:</p><ul><li style=\"font-weight: 400;\" aria-level=\"1\">Reputation and Experience: Look for DMCs with a proven track record and positive reviews from previous clients.</li><li style=\"font-weight: 400;\" aria-level=\"1\">Client Testimonials and References: Request testimonials or references from past clients to gauge their satisfaction levels.</li><li style=\"font-weight: 400;\" aria-level=\"1\">Customization and Creativity: Ensure that the DMC can tailor their services to your specific needs and preferences, adding a creative touch to your itinerary.</li><li style=\"font-weight: 400;\" aria-level=\"1\">Network and Resources: Assess the DMC\'s connections with local suppliers, venues, and attractions to ensure access to exclusive experiences and competitive rates.</li></ul><h2><b>The Future of Destination Management Companies in Dubai</b></h2><p>As Dubai continues to evolve as a global tourism hub, the future of destination management companies in the city looks promising. The demand for personalized, immersive travel experiences is on the rise, and DMCs are poised to meet this demand. With their ability to curate bespoke itineraries, provide insider knowledge, and ensure seamless logistics, DMCs will continue to play a vital role in enhancing the travel experiences of visitors to Dubai.</p><h3><b>Conclusion</b></h3><p>Partnering with a Destination Management Company in Dubai opens the doors to a world of unforgettable experiences. These professionals bring together their local expertise, network of resources, and creative vision to create tailor-made journeys that exceed expectations. From planning corporate events to organizing sightseeing tours and cultural experiences, DMCs in Dubai handle every aspect of your trip, ensuring a seamless and remarkable adventure. So, embrace the expertise of a DMC and embark on a journey through Dubai\'s wonders like never before.</p>\r\n', 'Destination Management Company Dubai: Enhancing Your Travel Experience', '', 'publish', 'closed', 'open', '', 'destination-management-company-dubai-enhancing-your-travel-experience', '', '', '2023-05-29 10:10:49', '2023-05-29 10:10:49', '', 0, 'https://onlineincshop.com/?p=279', 0, 'post', '', 0),
(280, 9467, '2023-05-29 10:07:19', '2023-05-29 10:07:19', '', 'destination management company dubai', '', 'inherit', 'closed', 'closed', '', 'wael-hneini-qjkea9n3yn8-unsplash', '', '', '2023-05-29 10:07:33', '2023-05-29 10:07:33', '', 279, 'https://onlineincshop.com/wp-content/uploads/2023/05/wael-hneini-QJKEa9n3yN8-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(285, 9467, '2023-05-31 10:11:11', '2023-05-31 10:11:11', '<p>Dubai Expo 2020 is a global event that captures the essence of innovation, culture, and collaboration. As one of the most anticipated expos in recent times, Dubai Expo 2020 brings together nations from around the world to showcase their achievements and foster meaningful connections. In this article, we will delve into the fascinating world of Dubai Expo 2020, exploring its history, architecture, exhibitions, and the overall impact it has on the city of Dubai.</p><h2><b>History and Background of Dubai Expo 2020</b></h2><p>Dubai\'s selection as the host city for Expo 2020 marked a significant milestone for the United Arab Emirates (UAE). The Expo, originally scheduled for 2020 but postponed to 2021 due to the global pandemic, is a testament to Dubai\'s status as a thriving cosmopolitan hub. The theme of Dubai Expo 2020 is \"Connecting Minds, Creating the Future,\" with subthemes focused on Opportunity, Mobility, and Sustainability.</p><h2><b>Architecture and Infrastructure of Dubai Expo 2020</b></h2><p>One cannot discuss Dubai Expo 2020 without admiring the awe-inspiring architecture and infrastructure that define the event. Iconic structures such as the Al Wasl Plaza, designed to resemble a massive dome of woven steel, serve as the heart of the expo. Visitors will also be treated to an array of stunning pavilions representing different countries, each showcasing their unique heritage, technological advancements, and cultural treasures. Sustainability is at the core of Dubai Expo 2020, with initiatives in place to minimize environmental impact and promote renewable energy sources.</p><h2><b>Exhibitions and Events at Dubai Expo 2020</b></h2><p>Dubai Expo 2020 is a melting pot of cultures, traditions, and ideas. Visitors can embark on a journey across the world by exploring the diverse range of country pavilions, each offering a glimpse into their nation\'s achievements and aspirations. From interactive displays to cultural performances, the exhibitions and events at Dubai Expo 2020 aim to foster understanding, collaboration, and appreciation of global diversity. The expo provides a platform for nations to share ideas, forge partnerships, and create a better future together.</p><h2><b>Innovation and Technology at Dubai Expo 2020</b></h2><p>Dubai Expo 2020 is a hub of innovation and technological advancements. The event serves as a launchpad for cutting-edge inventions and ideas, offering startups and entrepreneurs an unparalleled opportunity to showcase their solutions to a global audience. Visitors can expect to witness futuristic technologies such as augmented reality, artificial intelligence, and sustainable innovations that are poised to shape the world we live in. Dubai Expo 2020 is a testament to the city\'s commitment to embracing the future and driving innovation.</p><h2><b>Economic Impact of Dubai Expo 2020</b></h2><p>Hosting Dubai Expo 2020 has far-reaching economic implications for the city of Dubai and the wider UAE. The event is expected to attract millions of visitors, resulting in a significant boost to the tourism industry. With increased tourism comes job creation and economic growth, as new opportunities emerge across various sectors. Dubai Expo 2020 serves as a catalyst for trade and investment, fostering partnerships between businesses and driving economic diversification.</p><h2><b>Cultural Exchange and Diversity at Dubai Expo 2020</b></h2><p>Dubai Expo 2020 celebrates the rich tapestry of cultures that exist around the world. Visitors have the opportunity to immerse themselves in the traditions, customs, and cuisines of different nations, fostering cross-cultural understanding and appreciation. The expo serves as a global platform for cultural exchange, breaking down barriers and promoting dialogue between people from diverse backgrounds. Dubai Expo 2020 is a testament to the power of unity and collaboration in a rapidly changing world.</p><h2><b>Legacy and Sustainability of Dubai Expo 2020</b></h2><p>While Dubai Expo 2020 is a temporary event, its legacy extends far beyond its duration. The infrastructure created for the expo will be repurposed for various uses, ensuring long-term benefits for the city and its residents. Additionally, sustainability is a key focus of the expo, with initiatives in place to minimize waste, promote eco-friendly practices, and leave a positive environmental footprint. Dubai Expo 2020 showcases the city\'s commitment to sustainable development and serves as a model for future global events.</p><h3><b>Conclusion</b></h3><p>Dubai Expo 2020 is a testament to Dubai\'s vision, ambition, and ability to bring the world together. The event offers a unique opportunity to experience the vibrancy of different cultures, witness technological marvels, and embrace the future of innovation. Dubai Expo 2020 is not just an expo; it is a celebration of humanity, collaboration, and the limitless possibilities that arise when nations unite.</p>\r\n', 'Discover the Vibrant City of Dubai Expo 2020', '', 'publish', 'closed', 'open', '', 'discover-the-vibrant-city-of-dubai-expo-2020', '', '', '2023-05-29 10:18:35', '2023-05-29 10:18:35', '', 0, 'https://onlineincshop.com/?p=285', 0, 'post', '', 0),
(286, 9467, '2023-05-29 10:13:40', '2023-05-29 10:13:40', '', 'dubai expo 2020 city', '', 'inherit', 'closed', 'closed', '', 'sagar-bhujel-m_cpmaedpje-unsplash', '', '', '2023-05-29 10:13:51', '2023-05-29 10:13:51', '', 285, 'https://onlineincshop.com/wp-content/uploads/2023/05/sagar-bhujel-M_CpMaeDPJE-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(293, 9467, '2023-06-27 09:10:47', '2023-06-27 09:10:47', '', 'Cars Dubai', '', 'inherit', 'closed', 'closed', '', 'peter-broomfield-m3m-lnr90um-unsplash-1', '', '', '2023-06-27 09:11:04', '2023-06-27 09:11:04', '', 292, 'https://onlineincshop.com/wp-content/uploads/2023/06/peter-broomfield-m3m-lnR90uM-unsplash-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(295, 9467, '2023-06-28 09:11:28', '2023-06-28 09:11:28', '<!-- wp:paragraph -->\n<p>Al Ain, nestled in the heart of the United Arab Emirates, is a city renowned for its captivating blend of history, culture, and natural beauty. While the bustling city offers a plethora of attractions and modern comforts, it is the serene desert landscape that truly captivates the soul. For those seeking a tranquil escape away from the city\'s hustle and bustle, a stay at a desert hotel in Al Ain is the perfect choice. In this article, we invite you to discover the charm of desert hotels in Al Ain and experience the serene beauty of the desert.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Embrace Nature\'s Beauty</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Al Ain\'s desert landscape is a sight to behold, with its vast stretches of golden sand dunes, rugged mountains, and enchanting oases. Desert hotels in Al Ain provide the perfect vantage point to immerse yourself in this natural wonder. Wake up to panoramic views of the desert from your hotel room, witness breathtaking sunrises and sunsets, and let the tranquility of the surroundings rejuvenate your spirit. The serene ambiance and untouched beauty of the desert create a sense of peace and harmony, offering a unique experience for guests.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Experience Traditional Arabian Hospitality</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Desert hotels in Al Ain pride themselves on providing warm Arabian hospitality that reflects the rich cultural heritage of the region. From the moment you step foot in the hotel, you\'ll be greeted with genuine warmth and a traditional Arabian welcome. The staff is dedicated to ensuring your comfort and well-being, making your stay a memorable one. Experience the graciousness of the local culture, indulge in Arabian delicacies, and engage in cultural activities that showcase the traditions and customs of the desert.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Adventure and Exploration</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Staying at a desert hotel in Al Ain opens up a world of adventure and exploration. Engage in exhilarating activities such as dune bashing, desert safaris, camel riding, and sandboarding. Embark on guided tours that take you deep into the desert, allowing you to discover hidden gems, encounter wildlife, and learn about the fascinating ecosystem that thrives in this seemingly harsh environment. From star gazing under the vast desert sky to experiencing traditional Bedouin life, the desert offers a wealth of unique experiences for the adventurous traveler.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Serene Retreats and Luxurious Comfort</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Desert hotels in Al Ain provide a seamless blend of serene retreats and luxurious comforts. Step into an oasis of tranquility as you enter your hotel, where you\'ll find beautifully appointed rooms and suites designed to provide the utmost relaxation and comfort. Take a dip in the sparkling pool, unwind in the spa and wellness facilities, or simply bask in the serenity of your surroundings. Desert hotels offer a peaceful haven where you can rejuvenate your mind, body, and soul.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Cultural and Educational Experiences</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Al Ain\'s desert region is steeped in history and culture, offering ample opportunities for cultural and educational experiences. Desert hotels often organize cultural programs, allowing guests to participate in traditional activities such as henna painting, falconry displays, and Arabic calligraphy. Immerse yourself in the rich heritage of the region by visiting nearby historical sites such as the Al Ain Palace Museum or the Al Jahili Fort. These experiences offer a glimpse into the Bedouin way of life, ensuring a deeper understanding of the region\'s cultural significance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong><strong>Conclusion</strong></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A stay at a desert hotel in Al Ain is a gateway to serenity and natural beauty. Immerse yourself in the tranquility of the desert landscape, experience traditional Arabian hospitality, indulge in adventure and exploration, and enjoy the luxurious comforts of these serene retreats. Whether you seek relaxation, cultural immersion, or thrilling experiences, the desert hotels in Al Ain provide the perfect escape from the ordinary.</p>\n<!-- /wp:paragraph -->\r\n', 'Serenity in the Sands: Discover the Charm of Desert Hotels in Al Ain', '', 'publish', 'closed', 'open', '', 'serenity-in-the-sands-discover-the-charm-of-desert-hotels-in-al-ain', '', '', '2023-06-27 09:16:40', '2023-06-27 09:16:40', '', 0, 'https://onlineincshop.com/?p=295', 0, 'post', '', 0),
(296, 9467, '2023-06-27 09:15:11', '2023-06-27 09:15:11', '', 'desert hotel al ain', '', 'inherit', 'closed', 'closed', '', 'edvin-johansson-rlwe8f8anoc-unsplash', '', '', '2023-06-27 09:16:28', '2023-06-27 09:16:28', '', 295, 'https://onlineincshop.com/wp-content/uploads/2023/06/edvin-johansson-rlwE8f8anOc-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(298, 9467, '2023-06-29 09:16:48', '2023-06-29 09:16:48', '<!-- wp:paragraph -->\n<p>The Maldives, a mesmerizing archipelago nestled in the heart of the Indian Ocean, is a destination that evokes images of pristine white sandy beaches, crystal-clear turquoise waters, and luxurious resorts. If you\'re dreaming of a tropical escape that surpasses all expectations, our exclusive Maldives tour packages are designed to make your dreams a reality. In this article, we invite you to embark on an unforgettable journey to the Maldives and discover the beauty and tranquility of this exotic paradise.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>A Tropical Haven Awaits</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Maldives is renowned for its unparalleled natural beauty. With our tour packages, you have the opportunity to experience the breathtaking beauty of this tropical haven firsthand. Picture yourself stepping onto the soft, powdery sands of pristine beaches, feeling the warm embrace of the sun, and gazing out at the endless expanse of crystal-clear waters. The Maldives is a sanctuary of tranquility, offering an escape from the hustle and bustle of daily life and a chance to reconnect with nature in its purest form.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Luxurious Resorts and Villas</strong> </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our tour packages provide access to the most luxurious resorts and villas in the Maldives, ensuring that your stay is nothing short of extraordinary. From overwater bungalows to beachfront villas, each accommodation is meticulously designed to offer privacy, comfort, and stunning views of the surrounding beauty. Imagine waking up to the gentle sound of waves lapping against your villa, enjoying a refreshing dip in your private pool, and savoring exquisite culinary delights prepared by world-class chefs. The Maldives\' resorts are renowned for their unparalleled hospitality, ensuring that every moment of your stay is filled with luxury and indulgence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Crystal-Clear Waters and Vibrant Marine Life</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>One of the highlights of the Maldives is its incredible marine biodiversity. With our tour packages, you have the opportunity to explore the underwater wonders of the Maldives. Dive into the crystal-clear waters and discover a world teeming with vibrant coral reefs, tropical fish of every color imaginable, and majestic marine creatures such as manta rays and sea turtles. Snorkeling and diving enthusiasts will be awe-struck by the kaleidoscope of colors and the sheer abundance of marine life that call the Maldives home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Indulge in Exhilarating Water Sports</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For adventure seekers, the Maldives offers a wide range of exhilarating water sports activities. From jet skiing and parasailing to windsurfing and kayaking, there is no shortage of thrilling experiences to be had. Feel the adrenaline rush as you glide across the turquoise waters, feel the wind in your hair, and create memories that will last a lifetime. Whether you\'re a beginner or an experienced water sports enthusiast, the Maldives offers something for everyone.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Unwind and Rejuvenate</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Maldives is not just a destination for adventure and exploration; it is also a place of relaxation and rejuvenation. Our tour packages include access to world-class spas and wellness centers, where you can indulge in rejuvenating treatments and therapies inspired by ancient healing traditions. Let the skilled hands of expert therapists melt away your stress and tension, leaving you feeling refreshed, revitalized, and ready to embrace the tranquility of the Maldives.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\">C<strong>onclusion</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In conclusion, the Maldives tour packages offer an unparalleled opportunity to experience the natural beauty, luxury, and serenity of this tropical paradise. Allow yourself to be swept away by the enchanting allure of the Maldives, where every moment is filled with wonder and awe. Choose our exclusive tour packages to create memories that will last a lifetime and to embark on a journey that will leave you longing to return to this paradise on Earth.</p>\n<!-- /wp:paragraph -->\r\n', 'Unforgettable Maldives Tour Packages: Experience Paradise in the Indian Ocean', '', 'publish', 'closed', 'open', '', 'unforgettable-maldives-tour-packages-experience-paradise-in-the-indian-ocean', '', '', '2023-06-27 09:19:25', '2023-06-27 09:19:25', '', 0, 'https://onlineincshop.com/?p=298', 0, 'post', '', 0),
(299, 9467, '2023-06-27 09:18:35', '2023-06-27 09:18:35', '', 'maldives tour packages', '', 'inherit', 'closed', 'closed', '', 'jennvmy_-uwpggib3ihs-unsplash', '', '', '2023-06-27 09:18:54', '2023-06-27 09:18:54', '', 298, 'https://onlineincshop.com/wp-content/uploads/2023/06/jennvmy_-uWpggIb3iHs-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(301, 9467, '2023-06-30 09:19:33', '2023-06-30 09:19:33', '<!-- wp:paragraph -->\n<p>Dubai, the gleaming jewel of the United Arab Emirates, is a city that never fails to mesmerize with its captivating blend of modernity and tradition. From towering skyscrapers to pristine beaches, opulent shopping malls to bustling souks, and world-class dining to cultural experiences, Dubai offers a kaleidoscope of wonders for every traveler. If you\'re in Saudi Arabia and dreaming of an extraordinary journey to this vibrant city, our exclusive tour packages to Dubai from Saudi Arabia are designed to make your dreams come true. In this article, we unveil the marvels of Dubai and introduce you to the enticing tour packages available from Saudi Arabia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Discover Iconic Landmarks</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dubai is renowned for its iconic landmarks that define its skyline. With our tour packages, you\'ll have the opportunity to witness the breathtaking Burj Khalifa, the world\'s tallest building, and enjoy panoramic views of the city from its observation decks. Explore the magnificent Palm Jumeirah, an artificial island shaped like a palm tree, and visit the luxurious Atlantis, The Palm. Take a stroll along the stunning Dubai Marina, with its impressive architecture and lively atmosphere. Our tour packages ensure that you don\'t miss out on these iconic landmarks that have put Dubai on the global map.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Indulge in Luxurious Shopping and Dining</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dubai is a paradise for shopaholics and food enthusiasts. With our tour packages, you\'ll have the chance to explore the world-famous Dubai Mall, a retail haven offering a vast array of luxury brands and entertainment options. Experience the traditional charm of the Gold Souk and Spice Souk, where you can indulge in a sensory delight of dazzling jewelry and aromatic spices. Treat yourself to a culinary extravaganza at Dubai\'s renowned restaurants, offering a fusion of flavors from around the world. Our tour packages ensure that you savor the best of Dubai\'s shopping and dining experiences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Immerse Yourself in Cultural Delights</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Beyond its modern facade, Dubai boasts a rich cultural tapestry waiting to be discovered. With our tour packages, you\'ll have the opportunity to explore the historic Al Bastakiya Quarter, known for its traditional architecture and art galleries. Visit the Dubai Museum housed in the Al Fahidi Fort, offering a glimpse into the city\'s heritage. Experience the vibrant atmosphere of the traditional souks, where you can haggle for unique souvenirs, textiles, and spices. Our tour packages provide a perfect balance of modernity and tradition, allowing you to immerse yourself in Dubai\'s cultural delights.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Thrilling Desert Safaris</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No trip to Dubai is complete without experiencing the thrill of a desert safari. Our tour packages include exciting desert safari adventures, where you can ride on exhilarating dune buggies, experience the adrenaline rush of sandboarding, and enjoy traditional Bedouin entertainment under the starlit sky. Embark on a mesmerizing sunset safari, followed by a sumptuous BBQ dinner amidst the enchanting desert landscape. Our tour packages offer an unforgettable desert safari experience that showcases the raw beauty and adventure of the Arabian Desert.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Unwind in Luxury Accommodations</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>After a day of exploration and excitement, unwind in the luxurious accommodations that Dubai has to offer. Our tour packages include comfortable and prestigious hotels that provide a sanctuary of relaxation and rejuvenation. Immerse yourself in the opulence and comfort of world-class hospitality, ensuring a restful night\'s sleep and a memorable stay throughout your journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Conclusion</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Embark on a remarkable journey to Dubai from Saudi Arabia with our exclusive tour packages. Explore the iconic landmarks, indulge in luxurious shopping and dining, immerse yourself in the cultural delights, experience thrilling desert safaris, and unwind in lavish accommodations. Dubai\'s charm and allure await you, and our tour packages ensure that you make the most of your visit to this extraordinary city.</p>\n<!-- /wp:paragraph -->\r\n', 'Unveiling the Marvels of Dubai: Tour Packages from Saudi Arabia', '', 'publish', 'closed', 'open', '', 'unveiling-the-marvels-of-dubai-tour-packages-from-saudi-arabia', '', '', '2023-06-27 09:22:17', '2023-06-27 09:22:17', '', 0, 'https://onlineincshop.com/?p=301', 0, 'post', '', 0),
(302, 9467, '2023-06-27 09:21:40', '2023-06-27 09:21:40', '', 'tour packages to dubai from saudi arabia', '', 'inherit', 'closed', 'closed', '', 'adryan-ra-rjzl2xk8gf4-unsplash', '', '', '2023-06-27 09:21:47', '2023-06-27 09:21:47', '', 301, 'https://onlineincshop.com/wp-content/uploads/2023/06/adryan-ra-RJzL2xK8GF4-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(304, 9467, '2023-06-27 09:24:40', '0000-00-00 00:00:00', '<!-- wp:paragraph -->\n<p>The United Arab Emirates (UAE) is renowned for its extravagant shopping malls that redefine the concept of retail therapy. Offering a seamless blend of luxury, entertainment, and convenience, these malls have become synonymous with opulence and indulgence. Let\'s delve into the world of shopping malls in UAE and discover the unrivaled experiences they have to offer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>The Dubai Mall, Dubai:</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;A world-renowned retail destination, The Dubai Mall stands as an epitome of luxury and grandeur. With over 1,200 stores, it boasts an unparalleled collection of high-end fashion brands, exquisite jewelry, and cutting-edge electronics. Apart from shopping, visitors can immerse themselves in the wonders of the Dubai Aquarium &amp; Underwater Zoo, witness the mesmerizing Dubai Fountain shows, or indulge in thrilling VR experiences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Mall of the Emirates, Dubai:</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nestled in the heart of Dubai, Mall of the Emirates is a haven for fashion enthusiasts and discerning shoppers. It houses an impressive array of designer boutiques, international brands, and stylish accessories. The mall\'s iconic Ski Dubai offers a unique experience of indoor skiing and snowboarding, adding a touch of adventure to the shopping journey.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Yas Mall, Abu Dhabi:</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Located on the vibrant Yas Island, Yas Mall captivates visitors with its upscale ambiance and diverse retail offerings. This expansive mall showcases an enticing mix of global fashion brands, luxury retailers, and specialized stores catering to all tastes. Moreover, visitors can explore the world-class Yas Marina Circuit and indulge in exhilarating motorsport experiences.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Ibn Battuta Mall, Dubai:</strong> </h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Inspired by the travels of the renowned explorer Ibn Battuta, this distinctive-themed mall takes shoppers on a journey through various countries and cultures. Spanning six different zones, each representing a specific region, Ibn Battuta Mall boasts an eclectic mix of fashion, lifestyle, and home decor stores. Visitors can wander through the stunning architecture and immerse themselves in the spirit of exploration.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\"><strong>Mirdif City Centre, Dubai:</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nestled in a vibrant residential area, Mirdif City Centre caters to families seeking a comprehensive shopping experience. This community mall offers an extensive range of retail outlets, including popular fashion brands, electronics, and home furnishing stores. It also features a dedicated entertainment zone, Playnation, ensuring a fun-filled experience for children of all ages.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 class=\"wp-block-heading\"><strong>Conclusion:</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The shopping malls in UAE transcend the boundaries of conventional retail spaces, elevating the shopping experience to new heights. From the world-class luxury of The Dubai Mall to the thematic exploration of Ibn Battuta Mall, each mall offers a unique ambiance, a plethora of shopping options, and a captivating atmosphere. These retail havens not only fulfill your shopping desires but also create memorable moments through their diverse entertainment offerings and culinary delights.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Discover the shopping malls of UAE and embark on a journey of indulgence and opulence. Immerse yourself in the world of luxury fashion, embrace the cultural diversity, and savor the delectable flavors that await you. The shopping malls in UAE truly epitomize the phrase \"shopper\'s paradise,\" promising an experience like no other.</p>\n<!-- /wp:paragraph -->\r\n', 'Unveiling the Exquisite Shopping Malls in UAE: A Shopper\'s Paradise', '', 'draft', 'closed', 'open', '', '', '', '', '2023-06-27 09:24:40', '2023-06-27 09:24:40', '', 0, 'https://onlineincshop.com/?p=304', 0, 'post', '', 0),
(305, 9467, '2023-06-27 09:24:09', '2023-06-27 09:24:09', '', 'john-cameron-i8u5gz-ZeIc-unsplash', '', 'inherit', '', 'closed', '', 'john-cameron-i8u5gz-zeic-unsplash', '', '', '2023-06-27 09:24:09', '2023-06-27 09:24:09', '', 304, 'https://onlineincshop.com/wp-content/uploads/2023/06/john-cameron-i8u5gz-ZeIc-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(312, 9467, '2023-07-25 11:03:14', '2023-07-25 11:03:14', '', 'dubai expo 2020 city', '', 'inherit', 'closed', 'closed', '', 'aleksey-smagin-sov72e-7wsi-unsplash', '', '', '2023-07-25 11:03:21', '2023-07-25 11:03:21', '', 311, 'https://onlineincshop.com/wp-content/uploads/2023/07/aleksey-smagin-sOV72e-7WsI-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(316, 9467, '2023-07-27 11:04:18', '2023-07-27 11:04:18', '<span style=\"font-weight: 400;\">Dubai, the city of dreams and extravagance, offers a plethora of captivating experiences for locals and tourists alike. Among the most coveted and luxurious experiences is sailing on the pristine waters of the Arabian Gulf aboard a magnificent yacht. With \"Get Your Guide Dubai Yacht,\" you can embark on an unforgettable journey that promises to redefine opulence and indulge your senses. In this article, we will delve into the world of Get Your Guide Dubai Yacht and explore why it has become the ultimate choice for those seeking the epitome of luxury.</span>\r\n<h2><b>What is Get Your Guide?</b></h2>\r\n<span style=\"font-weight: 400;\">Get Your Guide is a leading platform that curates and offers a wide array of tours, activities, and experiences in top destinations around the world. With a strong focus on customer satisfaction, ease of booking, and quality of service, Get Your Guide has become a go-to platform for travelers seeking unique and unforgettable adventures.</span>\r\n<h2><b>The Luxury of Private Yacht Charters</b></h2>\r\n<span style=\"font-weight: 400;\">One of the crown jewels of Get Your Guide Dubai is its collection of private yacht charters. Imagine cruising the azure waters of the Arabian Gulf with your select group of friends or family, surrounded by luxury and personalized service. Get Your Guide Dubai Yacht ensures that your private charter experience is nothing short of extraordinary, from the finest amenities to a dedicated crew catering to your every need.</span>\r\n<h2><b>Tailored Experiences for Every Occasion</b></h2>\r\n<span style=\"font-weight: 400;\">Whether it\'s a romantic getaway, a celebration with friends, or a corporate event, Get Your Guide Dubai Yacht offers tailored experiences to suit every occasion. With an extensive fleet of yachts in various sizes and styles, you can find the perfect vessel to match your preferences and group size.</span>\r\n<h2><b>Captivating Cruises and Sunset Sailings</b></h2>\r\n<span style=\"font-weight: 400;\">Beyond private charters, Get Your Guide Dubai Yacht also presents a range of captivating cruises and sunset sailings. Set sail on a scenic journey, gliding past iconic landmarks and savoring the panoramic views of Dubai\'s skyline. The mesmerizing experience of witnessing the sunset from the deck of a yacht is unparalleled.</span>\r\n<h2><b>Exclusive Water Adventures</b></h2>\r\n<span style=\"font-weight: 400;\">For the adventure enthusiasts, Get Your Guide Dubai Yacht presents a host of water-based activities that promise an adrenaline rush. From exhilarating water sports like jet skiing and parasailing to serene snorkeling adventures, there\'s an experience for every water lover.</span>\r\n<h2><b>Exquisite Dining on the Waters</b></h2>\r\n<span style=\"font-weight: 400;\">Get Your Guide Dubai Yacht takes dining to new heights with its exquisite onboard dining experiences. Indulge in delectable cuisines prepared by talented chefs, complemented by the gentle rocking of the yacht and the stunning views that surround you.</span>\r\n<h2><b>Professional Crew and Safety Assurance</b></h2>\r\n<span style=\"font-weight: 400;\">When you choose Get Your Guide Dubai Yacht, you can rest assured that you are in safe hands. The yachts are equipped with experienced crews who prioritize your safety and comfort. Whether you are a seasoned sailor or a first-time adventurer, the crew will ensure a seamless and enjoyable experience.</span>\r\n<h2><b>Booking Made Easy</b></h2>\r\n<span style=\"font-weight: 400;\">Booking your dream yacht experience with Get Your Guide is a hassle-free process. Simply browse the available options, select your desired yacht or cruise, choose the date and time, and secure your reservation with ease. The intuitive platform makes the entire booking process seamless and convenient.</span>\r\n<h3><b>Conclusion</b></h3>\r\n<span style=\"font-weight: 400;\">Get Your Guide Dubai Yacht offers an unparalleled journey into the world of luxury and extravagance, where you can savor the beauty of the Arabian Gulf in style. With private yacht charters, captivating cruises, and exclusive water adventures, Get Your Guide Dubai Yacht ensures that every moment on the water is nothing short of magical. So, embark on this extraordinary experience and let Get Your Guide redefine luxury and indulgence in the enchanting city of Dubai.</span>\r\n', 'Get Your Guide Dubai Yacht: Unraveling the Ultimate Luxury Experience', '', 'publish', 'closed', 'open', '', 'get-your-guide-dubai-yacht-unraveling-the-ultimate-luxury-experience', '', '', '2023-07-25 11:08:56', '2023-07-25 11:08:56', '', 0, 'https://onlineincshop.com/?p=316', 0, 'post', '', 0),
(317, 9467, '2023-07-25 11:06:43', '2023-07-25 11:06:43', '', 'get your guide dubai yacht', '', 'inherit', 'closed', 'closed', '', 'marcin-ciszewski-zexjl0v3mru-unsplash', '', '', '2023-07-25 11:06:55', '2023-07-25 11:06:55', '', 316, 'https://onlineincshop.com/wp-content/uploads/2023/07/marcin-ciszewski-Zexjl0v3MRU-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(319, 9467, '2023-07-28 11:09:46', '2023-07-28 11:09:46', '<span style=\"font-weight: 400;\">When it comes to exploring the beauty of nature and iconic landmarks, there\'s something magical about experiencing it from the waters. Water sightseeing offers a unique perspective, allowing you to witness stunning landscapes and cityscapes like never before. If you\'re searching for water sightseeing near you, get ready to embark on a series of picturesque adventures that will leave you in awe. In this article, we\'ll guide you through the diverse options for water sightseeing excursions nearby.</span>\r\n<h2><b>Cruising on Serene Waters</b></h2>\r\n<span style=\"font-weight: 400;\">One of the most tranquil ways to enjoy water sightseeing is by embarking on serene cruises. Whether it\'s a peaceful lake, a meandering river, or the vast expanse of the sea, cruising on calm waters allows you to connect with nature and soak in the beauty of your surroundings. Enjoy the gentle rocking of the boat as you gaze at picturesque landscapes passing by.</span>\r\n<h2><b>Scenic River Tours</b></h2>\r\n<span style=\"font-weight: 400;\">For those living near rivers, scenic river tours offer an opportunity to explore the heart of a city from a different angle. As you glide along the water, you\'ll be treated to panoramic views of iconic landmarks and historic architecture. River tours often come with informative guides who share fascinating stories about the city\'s history, making the experience both educational and awe-inspiring.</span>\r\n<h2><b>Lake Adventures</b></h2>\r\n<span style=\"font-weight: 400;\">If you\'re lucky to have a beautiful lake nearby, don\'t miss the chance to explore its serene waters. Lake sightseeing excursions provide a peaceful escape from the hustle and bustle of everyday life. You can enjoy leisurely boat rides, spot wildlife, or simply bask in the tranquility of the surroundings.</span>\r\n<h2><b>Coastal Explorations</b></h2>\r\n<span style=\"font-weight: 400;\">For those residing near the coast, coastal sightseeing excursions offer a chance to witness the meeting of land and sea in all its grandeur. Coastal cruises allow you to take in breathtaking ocean views, spot marine life, and maybe even catch a glimpse of playful dolphins swimming alongside the boat.</span>\r\n<h2><b>Adventure with Water Sports</b></h2>\r\n<span style=\"font-weight: 400;\">If you\'re more of a thrill-seeker, water sightseeing can take on a whole new level of excitement with water sports. Activities like jet skiing, parasailing, and paddleboarding offer an adrenaline-pumping adventure on the waters. While enjoying the thrill of the ride, you\'ll also get to appreciate the beauty of your surroundings from a different perspective.</span>\r\n<h2><b>Sailing Adventures</b></h2>\r\n<span style=\"font-weight: 400;\">Sailing enthusiasts will find joy in nearby sailing adventures. Whether you own a sailboat or join a sailing tour, gliding gracefully on the waters powered by the wind is an experience like no other. Sailing allows you to feel at one with nature and connect with the elements.</span>\r\n<h2><b>Kayaking and Canoeing Escapades</b></h2>\r\n<span style=\"font-weight: 400;\">For a more immersive experience, kayaking and canoeing provide an up-close encounter with nature\'s beauty. Paddle through calm waters, explore hidden coves, and get lost in the tranquility of the surroundings. It\'s a perfect way to escape the noise of the city and find solace in nature.</span>\r\n<h2><b>Safety First</b></h2>\r\n<span style=\"font-weight: 400;\">While water sightseeing can be a delightful experience, it\'s essential to prioritize safety. Always wear life jackets, follow safety guidelines, and be aware of weather conditions before venturing out on the waters. If you\'re new to water activities, consider taking guided tours with experienced instructors to ensure a safe and enjoyable experience.</span>\r\n<h3><b>Conclusion</b></h3>\r\n<span style=\"font-weight: 400;\">Water sightseeing near you opens up a world of scenic adventures and unforgettable experiences. From leisurely cruises on serene waters to thrilling water sports that get your heart racing, exploring the waters provides a unique perspective on nature and iconic landmarks. Whether you\'re near a river, lake, or the sea, seize the opportunity to embark on water sightseeing excursions and create lasting memories on the waters.</span>\r\n', 'Water Sightseeing Near Me: Discover Scenic Adventures on the Waters', '', 'publish', 'closed', 'open', '', 'water-sightseeing-near-me-discover-scenic-adventures-on-the-waters', '', '', '2023-07-25 11:16:00', '2023-07-25 11:16:00', '', 0, 'https://onlineincshop.com/?p=319', 0, 'post', '', 0),
(320, 9467, '2023-07-25 11:13:42', '2023-07-25 11:13:42', '', 'water sightseeing near me', '', 'inherit', 'closed', 'closed', '', 'ralph-ravi-kayden-vaiked35j3e-unsplash', '', '', '2023-07-25 11:15:52', '2023-07-25 11:15:52', '', 319, 'https://onlineincshop.com/wp-content/uploads/2023/07/ralph-ravi-kayden-VaIKED35j3E-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(327, 9467, '2023-08-30 08:05:01', '2023-08-30 08:05:01', '<h2><b>Exploring Yas Waterworld: A Splashing Adventure in the Heart of Yas Island</b></h2>\r\n<h2><b>Introduction</b></h2>\r\n<span style=\"font-weight: 400;\">Yas Waterworld, nestled within the vibrant Yas Island in Abu Dhabi, UAE, is a paradise for water enthusiasts seeking thrills, relaxation, and family fun. This sprawling waterpark promises an unforgettable experience with its exciting attractions, soothing ambiance, and variety of aquatic adventures. Dive into the excitement as we explore the wonders of Yas Waterworld in this comprehensive guide.</span>\r\n<h2><b>Unveiling Yas Waterworld: A Tropical Oasis</b></h2>\r\n<h3><b>The Jewel of Yas Island</b></h3>\r\n<span style=\"font-weight: 400;\">Nestled on the tranquil shores of Yas Island, Yas Waterworld stands as a captivating oasis where visitors can escape the hustle and bustle of everyday life.</span>\r\n<h3><b>A World of Aquatic Marvels</b></h3>\r\n<span style=\"font-weight: 400;\">Yas Waterworld boasts a diverse collection of attractions, from heart-pounding water slides to serene lazy rivers, ensuring there\'s something for everyone.</span>\r\n<h3><b>The Pearl Diving Experience</b></h3>\r\n<span style=\"font-weight: 400;\">Embark on a journey back in time with the park\'s unique Pearl Diving Adventure, offering a glimpse into the rich history of pearl diving in the region.</span>\r\n<h2><b>The Thrills Await: Yas Waterworld\'s Top Attractions</b></h2>\r\n<h3><b>Dawwama: The Tornado\'s Embrace</b></h3>\r\n<span style=\"font-weight: 400;\">Thrill-seekers unite as the Dawwama takes you on a whirlwind adventure, hurtling through a colossal funnel before plunging into the depths below.</span>\r\n<h3><b>Liwa Loop: A Looping Plunge</b></h3>\r\n<span style=\"font-weight: 400;\">Experience the adrenaline rush of the Liwa Loop, a high-speed slide that takes you on a looping journey before a dramatic splashdown.</span>\r\n<h3><b>Hamlool\'s Humps: Family Fun</b></h3>\r\n<span style=\"font-weight: 400;\">Families can bond over the gentle waves of Hamlool\'s Humps, a wave pool perfect for creating lasting memories.</span>\r\n<h3><b>Falcon\'s Falaj: A Tranquil Respite</b></h3>\r\n<span style=\"font-weight: 400;\">For a serene escape, drift along the meandering Falcon\'s Falaj, an enchanting lazy river that winds its way through lush landscapes.</span>\r\n<h2><b>Yas Waterworld\'s Unique Offerings</b></h2>\r\n<h3><b>Cinesplash: Dive-In Movies</b></h3>\r\n<span style=\"font-weight: 400;\">Indulge in cinematic delight at Cinesplash, where guests watch movies while floating in the pool—a one-of-a-kind experience.</span>\r\n<h3><b>Marah Fortress: Splashy Playtime</b></h3>\r\n<span style=\"font-weight: 400;\">Little adventurers can unleash their imaginations at Marah Fortress, a water playground filled with slides, water cannons, and interactive surprises.</span>\r\n<h3><b>Amwaj Wave Pool: Endless Waves</b></h3>\r\n<span style=\"font-weight: 400;\">Amwaj Wave Pool presents the perfect opportunity to relax and catch some waves in a controlled environment suitable for all ages.</span>\r\n<h2><b>Navigating the Yas Waterworld Experience</b></h2>\r\n<h3><b>Ticketing and Packages</b></h3>\r\n<span style=\"font-weight: 400;\">Plan your visit with ease by exploring the variety of ticketing options and packages that cater to individual preferences.</span>\r\n<h3><b>Dining Delights</b></h3>\r\n<span style=\"font-weight: 400;\">Indulge your taste buds with an array of dining options, from casual snacks to satisfying meals, all curated to enhance your experience.</span>\r\n<h3><b>Souvenir Splendors</b></h3>\r\n<span style=\"font-weight: 400;\">Bring a piece of Yas Waterworld home with you by perusing the diverse selection of souvenirs, ensuring cherished memories live on.</span>\r\n<h4><b>Conclusion</b></h4>\r\n<i><span style=\"font-weight: 400;\">Yas Waterworld</span></i><span style=\"font-weight: 400;\"> is more than just a waterpark; it\'s a realm of aquatic wonders where adventure, relaxation, and entertainment converge. From heart-stopping thrills to serene respites, this destination promises an experience like no other. Dive into the excitement and create unforgettable memories with family and friends.</span>\r\n', 'Unveiling Yas Waterworld: A Splashing Adventure on Yas Island', '', 'publish', 'closed', 'open', '', 'unveiling-yas-waterworld-a-splashing-adventure-on-yas-island', '', '', '2023-08-30 08:05:01', '2023-08-30 08:05:01', '', 0, 'https://onlineincshop.com/?p=327', 0, 'post', '', 0),
(328, 9467, '2023-08-30 08:02:26', '2023-08-30 08:02:26', '', 'akvapark_yas_waterworld_6', '', 'inherit', '', 'closed', '', 'akvapark_yas_waterworld_6', '', '', '2023-08-30 08:02:26', '2023-08-30 08:02:26', '', 327, 'https://onlineincshop.com/wp-content/uploads/2023/08/akvapark_yas_waterworld_6.jpg', 0, 'attachment', 'image/jpeg', 0),
(337, 9467, '2023-08-30 08:10:38', '2023-08-30 08:10:38', '<h2><b>Unleashing Imagination at IMG Theme Park: A Wonderland of Thrills and Entertainment</b></h2>\r\n<span style=\"font-weight: 400;\">Nestled within the heart of [City Name], IMG Theme Park stands as a beacon of exhilaration and amusement, offering an unmatched experience that caters to thrill-seekers and families alike. From heart-pounding rides to captivating live shows, IMG Theme Park is a haven of entertainment where imagination knows no bounds.</span>\r\n<h2><b>The Thrilling Rides</b></h2>\r\n<span style=\"font-weight: 400;\">IMG Theme Park is a paradise for adrenaline enthusiasts, boasting a plethora of exhilarating rides that are sure to get your heart racing. Daredevils can brave the heights of the [Ride Name], a gravity-defying roller coaster that twists and turns in ways you\'ve never imagined. For those seeking a wet and wild adventure, the [Ride Name] water ride promises a splash-filled escapade that will leave you exhilarated and refreshed.</span>\r\n<h2><b>Captivating Live Shows</b></h2>\r\n<span style=\"font-weight: 400;\">Step into a world of fantasy and enchantment with IMG Theme Park\'s captivating live shows. From mesmerizing acrobatic performances to dazzling theatrical productions, every show is a masterpiece that transports you to a realm of wonder. Witness the magic come to life before your eyes as talented performers bring stories to the stage in a spectacle of music, dance, and visual effects.</span>\r\n<h2><b>Family-Friendly Fun</b></h2>\r\n<span style=\"font-weight: 400;\">IMG Theme Park is not just for thrill-seekers; it\'s a haven for families seeking quality time together. Little ones can embark on whimsical adventures in the [Area Name], where interactive attractions and delightful characters await. Watch as their faces light up with joy as they meet their favorite characters and explore imaginative play zones designed to spark creativity and laughter.</span>\r\n<h2><b>Culinary Delights</b></h2>\r\n<span style=\"font-weight: 400;\">Indulge your taste buds in a culinary journey like no other as IMG Theme Park offers an array of dining options that cater to all palates. From delectable gourmet meals to quick and satisfying bites, there\'s something to satisfy every craving. Take a break from the excitement and savor a delicious meal while taking in breathtaking views of the park\'s vibrant surroundings.</span>\r\n<h2><b>Plan Your Visit</b></h2>\r\n<span style=\"font-weight: 400;\">Make the most of your experience at IMG Theme Park by planning your visit in advance. Purchase tickets online to secure your spot and avoid queues, ensuring more time for fun and less time waiting. Whether you\'re visiting with friends, family, or flying solo, IMG Theme Park promises an unforgettable adventure that will leave you with cherished </span><span style=\"font-weight: 400;\">memories.</span>\r\n<h3><b>Conclusion:</b></h3>\r\n<span style=\"font-weight: 400;\">In conclusion, IMG Theme Park is more than just an amusement park; it\'s a realm of boundless imagination, exhilarating rides, and unforgettable moments. Whether you\'re seeking heart-pounding thrills or family-friendly fun, IMG Theme Park has it all. Plan your visit today and embark on a journey of excitement and wonder like no other.</span>\r\n', 'Unleashing Imagination at IMG Theme Park: A Wonderland of Thrills and Entertainment', '', 'publish', 'closed', 'open', '', 'unleashing-imagination-at-img-theme-park-a-wonderland-of-thrills-and-entertainment', '', '', '2023-08-30 08:10:38', '2023-08-30 08:10:38', '', 0, 'https://onlineincshop.com/?p=337', 0, 'post', '', 0),
(338, 9467, '2023-08-30 08:10:12', '2023-08-30 08:10:12', '', 'Mideast Dubai Theme Park', 'A man puts a small boy on his shoulders to look at an animatronic dinosaur at the IMG Worlds of Adventure amusement park in Dubai, United Arab Emirates, on Wednesday, Aug. 31, 2016. The IMG Worlds of Adventure indoor theme park opened Wednesday in Dubai, hoping to draw thrill seekers to its air-conditioned confines. (AP Photo/Jon Gambrell)', 'inherit', '', 'closed', '', 'mideast-dubai-theme-park', '', '', '2023-08-30 08:10:12', '2023-08-30 08:10:12', '', 337, 'https://onlineincshop.com/wp-content/uploads/2023/08/1x-1.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(340, 9467, '2023-08-30 08:14:21', '2023-08-30 08:14:21', '<h2><b>Exploring Dubai in a Day: Unforgettable Day Trip Adventures</b></h2>\r\n<span style=\"font-weight: 400;\">Dubai, with its modern skyline and rich cultural heritage, is a city that beckons travelers from around the world. While a longer stay is ideal to truly experience everything it has to offer, a day trip in Dubai can still provide a taste of its grandeur and charm. From soaring skyscrapers to traditional souks, here\'s how to make the most of your day and explore the best of Dubai\'s attractions and experiences.</span>\r\n<h2><b>Discover Iconic Landmarks</b></h2>\r\n<span style=\"font-weight: 400;\">No day trip to Dubai is complete without marveling at its iconic landmarks. Begin your adventure by visiting the world-famous </span><b>Burj Khalifa</b><span style=\"font-weight: 400;\">, the tallest building on the planet. Ascend to its observation deck for panoramic views of the city\'s stunning skyline and beyond. Next, head to the </span><b>Dubai Mall</b><span style=\"font-weight: 400;\">, a shopper\'s paradise with luxury boutiques and entertainment galore. Don\'t miss the impressive </span><b>Dubai Fountain Show</b><span style=\"font-weight: 400;\">, a mesmerizing dance of water, light, and music that takes place in front of the Burj Khalifa.</span>\r\n<h2><b>Dive into Culture and Heritage</b></h2>\r\n<span style=\"font-weight: 400;\">Immerse yourself in Dubai\'s rich cultural heritage by exploring the </span><b>Dubai Museum</b><span style=\"font-weight: 400;\"> in the historic </span><b>Al Fahidi Fort</b><span style=\"font-weight: 400;\">. Delve into the city\'s past through exhibits that showcase its transformation from a humble fishing village to a global metropolis. Stroll through the </span><b>Al Fahidi Historical Neighborhood</b><span style=\"font-weight: 400;\">, characterized by its traditional wind-tower architecture, art galleries, and charming cafés. For a taste of local life, venture into the bustling </span><b>Gold Souk</b><span style=\"font-weight: 400;\"> and </span><b>Spice Souk</b><span style=\"font-weight: 400;\">, where you can haggle for precious metals and fragrant spices.</span>\r\n<h2><b>Soak in Coastal Beauty</b></h2>\r\n<span style=\"font-weight: 400;\">Dubai\'s coastline is a paradise waiting to be explored. Spend some time at </span><b>Jumeirah Beach</b><span style=\"font-weight: 400;\">, where soft white sands and turquoise waters create a serene oasis in the heart of the city. Capture stunning photos of the iconic </span><b>Burj Al Arab</b><span style=\"font-weight: 400;\"> hotel, known for its sail-like design and luxurious amenities. If time allows, consider taking a relaxing </span><b>Dhow Cruise</b><span style=\"font-weight: 400;\"> along Dubai Creek, where you can admire the city\'s evolving skyline while enjoying a delightful meal.</span>\r\n<h2><b>Unveil Hidden Gems</b></h2>\r\n<span style=\"font-weight: 400;\">Escape the bustling cityscape and uncover Dubai\'s hidden gems. The tranquil </span><b>Dubai Miracle Garden</b><span style=\"font-weight: 400;\"> is a true marvel, boasting a vibrant display of flowers and sculptures that create a whimsical atmosphere. Explore the enchanting </span><b>Dubai Butterfly Garden</b><span style=\"font-weight: 400;\">, where colorful butterflies flutter amidst lush greenery. For a taste of authentic Emirati cuisine, indulge in a meal at the </span><b>Al Fanar Restaurant</b><span style=\"font-weight: 400;\">, offering a glimpse into the traditional flavors of the region.</span>\r\n<h2><b>Make the Most of Your Day</b></h2>\r\n<span style=\"font-weight: 400;\">To optimize your day trip in Dubai, consider joining a guided tour that covers the city\'s highlights efficiently. Alternatively, if you\'re an adventurer at heart, hop on the </span><b>Dubai Metro</b><span style=\"font-weight: 400;\"> to navigate the city like a local. Remember to pack comfortable footwear, sunscreen, and plenty of water to stay hydrated throughout your exploration.</span>\r\n<h3><strong>conclusion</strong></h3>\r\n<span style=\"font-weight: 400;\">In conclusion, a day trip in Dubai promises an unforgettable journey filled with iconic landmarks, cultural treasures, and hidden gems. From modern marvels to historical sites, this city offers a diverse range of experiences that can be savored even in a single day. So, seize the opportunity, embark on an adventure, and create lasting memories in this captivating city.</span>\r\n', 'Exploring Dubai in a Day: Unforgettable Day Trip Adventures', '', 'publish', 'closed', 'open', '', 'exploring-dubai-in-a-day-unforgettable-day-trip-adventures', '', '', '2023-08-30 08:14:21', '2023-08-30 08:14:21', '', 0, 'https://onlineincshop.com/?p=340', 0, 'post', '', 0),
(341, 9467, '2023-08-30 08:14:06', '2023-08-30 08:14:06', '', '7Knraibc-Fairmont-The-Palm-kids', '', 'inherit', '', 'closed', '', '7knraibc-fairmont-the-palm-kids', '', '', '2023-08-30 08:14:06', '2023-08-30 08:14:06', '', 340, 'https://onlineincshop.com/wp-content/uploads/2023/08/7Knraibc-Fairmont-The-Palm-kids.jpg', 0, 'attachment', 'image/jpeg', 0),
(343, 9467, '2023-08-30 08:20:46', '2023-08-30 08:20:46', '<h2><b>Musandam Dubai Tour: A Journey of Discovery and Tranquility</b></h2>\r\n<span style=\"font-weight: 400;\">Nestled between the Arabian Gulf and the majestic Hajar Mountains, the Musandam Peninsula beckons travelers with its unparalleled natural beauty and serene landscapes. A Musandam Dubai tour offers a unique opportunity to escape the bustling city and embark on a captivating journey to explore hidden gems, fjords, and breathtaking vistas that will leave you in awe.</span>\r\n<h2><b>Setting Off on an Adventure</b></h2>\r\n<span style=\"font-weight: 400;\">Your Musandam Dubai tour begins with a scenic drive from the heart of Dubai, winding through picturesque landscapes and traditional villages. As you venture towards the Musandam Peninsula, anticipation builds, and the promise of a remarkable adventure lies ahead.</span>\r\n<h2><b>Captivating Fjords and Pristine Beaches</b></h2>\r\n<span style=\"font-weight: 400;\">Arriving at Musandam, you\'ll be greeted by the mesmerizing sight of rugged fjords carving through the coastline. Embark on a serene dhow cruise through the tranquil waters, where the towering cliffs and crystal-clear waters create a picturesque setting. Relax on deck as you take in the breathtaking views and perhaps even spot playful dolphins swimming alongside the boat.</span>\r\n<h2><b>Snorkeling and Underwater Wonders</b></h2>\r\n<span style=\"font-weight: 400;\">Dive into the azure waters and discover a vibrant underwater world teeming with marine life. The Musandam Peninsula is a haven for snorkelers and divers, offering an opportunity to explore colorful coral reefs and encounter a variety of fish species. Immerse yourself in the beauty beneath the waves and marvel at the harmony of life beneath the surface.</span>\r\n<h2><b>Exploring Traditional Villages</b></h2>\r\n<span style=\"font-weight: 400;\">As your Musandam Dubai tour continues, you\'ll have the chance to visit charming traditional villages nestled along the coastline. Engage with the local communities, learn about their way of life, and gain insights into the region\'s rich cultural heritage. Wander through the narrow alleyways, admire the intricately designed architecture, and perhaps even shop for unique handmade crafts.</span>\r\n<h2><b>Spectacular Mountain Landscapes</b></h2>\r\n<span style=\"font-weight: 400;\">The Musandam Peninsula is also renowned for its rugged mountain landscapes that offer a stark contrast to the serene coastal scenes. The towering Hajar Mountains provide a stunning backdrop as you navigate through winding roads and enjoy panoramic vistas that showcase the untamed beauty of the region.</span>\r\n<h2><b>A Tranquil Retreat</b></h2>\r\n<span style=\"font-weight: 400;\">The tranquility of Musandam is truly unmatched, making it a perfect retreat for those seeking respite from the hustle and bustle of city life. Whether you\'re unwinding on a secluded beach, marveling at the fjords\' grandeur, or simply gazing at the starry night sky, Musandam offers a serene escape that rejuvenates the soul.</span>\r\n<h3><strong> conclusion</strong></h3>\r\n<span style=\"font-weight: 400;\">In conclusion, a Musandam Dubai tour is a journey of discovery and tranquility that unveils the natural wonders of the Musandam Peninsula. From captivating fjords to pristine beaches and rugged mountains, this excursion provides a unique opportunity to immerse yourself in the beauty of nature. Embark on this enchanting adventure and create cherished memories that will linger long after you\'ve returned.</span>\r\n', 'Musandam Dubai Tour: A Journey of Discovery and Tranquility', '', 'publish', 'closed', 'open', '', 'musandam-dubai-tour-a-journey-of-discovery-and-tranquility', '', '', '2023-08-30 08:20:46', '2023-08-30 08:20:46', '', 0, 'https://onlineincshop.com/?p=343', 0, 'post', '', 0),
(344, 9467, '2023-08-30 08:20:11', '2023-08-30 08:20:11', '', 'amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash', '', 'inherit', '', 'closed', '', 'amin-hosseinzadeh-fardnia-cvdodxgkqmg-unsplash', '', '', '2023-08-30 08:20:11', '2023-08-30 08:20:11', '', 343, 'https://onlineincshop.com/wp-content/uploads/2023/08/amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(360, 9467, '2023-09-18 08:16:08', '2023-09-18 08:16:08', 'Dubai, a city known for its luxury and modernity, offers travellers many attractions and experiences. To truly explore this vibrant destination at your own pace, opting for a <a href=\"https://quicklease.ae/\"><strong>car rental Dubai</strong></a> is an intelligent choice. Whether you\'re a tourist seeking adventure or a business traveller with a busy itinerary, the flexibility and convenience of <strong>car rental Dubai</strong> can enhance your trip. Moreover, <strong>monthly car rental</strong> options can provide substantial savings and convenience if you plan an extended stay.\r\n<h2>BENEFITS OF CHOOSING CAR RENTAL DUBAI</h2>\r\nThere are numerous benefits to picking a <strong>car rental Dubai </strong>over public transport or taxis to traverse the vibrant city of Dubai:\r\n<ol>\r\n 	<li><strong><u>Freedom to Explore:</u></strong> Dubai has several tourist attractions all across the city, from the iconic Burj Khalifa to the historic Al Fahidi district. With a <strong>car rental Dubai</strong>, you can conveniently navigate the city to explore hidden gems without hassles. You can create your itinerary, visit off-the-beaten-path locations, and set your schedule free from public transportation constraints.</li>\r\n</ol>\r\n&nbsp;\r\n<ol start=\"2\">\r\n 	<li><strong><u>Cost-Efficiency:</u></strong> Public transportation costs usually add up quickly, especially if you try to visit multiple places in a day. Contrary to the misconception that renting a car is expensive, it can be cost-effective, especially for families with children. When you factor in the cost of taxis or rideshares for multiple trips, a <strong>car rental Dubai</strong> offers better value for money.</li>\r\n 	<li><strong><u>Comfort and Privacy:</u></strong> <strong>Car rental Dubai</strong> enables you to enjoy the comfort and privacy of your vehicle, which is particularly beneficial for families with children, business travellers, or those looking for a more relaxed and hassle-free travel experience.</li>\r\n 	<li><strong><u>Convenience:</u></strong> Visiting all the tourist attractions Dubai offers is not possible in a day. Having a car means you won\'t have to rely on taxis or public transport to get from one place to another. It\'s a more convenient way to navigate the city, especially if you have multiple locations to visit in a day.</li>\r\n 	<li><strong><u>Accessibility:</u></strong> Dubai has excellent road infrastructure, and many attractions have ample parking facilities. With a <strong>car rental Dubai</strong>, you can easily access popular destinations, including those outside the city centre, without the hassle of looking for parking.</li>\r\n 	<li><strong><u>Time-Saving:</u></strong> Renting a car can save time waiting for taxis or dealing with public transport schedules. You can efficiently visit multiple places in a day while maximizing your time in Dubai.</li>\r\n 	<li><strong><u>Exploring Beyond the City:</u></strong> Dubai\'s charm extends beyond the city limits. With a <strong>car rental Dubai</strong>, you can easily explore the stunning deserts, landscapes, and nearby emirates or take road trips to other parts of the United Arab Emirates.</li>\r\n 	<li><strong><u>Concierge Services:</u></strong> Many car rental agencies in Dubai offer additional services like GPS navigation, child seats, and roadside assistance, enhancing your overall experience and convenience.</li>\r\n 	<li><strong><u>Comfortable Airport Transfers:</u></strong> Arriving in Dubai? <strong>Car rental Dubai</strong> may also provide a hassle-free and comfortable airport transfer, allowing you to start your trip smoothly without waiting for a cab or taxi.</li>\r\n 	<li><strong><u>Safety and Reliability:</u></strong> Reputable car rental agencies keep their rental vehicles updated in terms of service, maintenance, cleaning, and safety standards, giving you peace of mind while driving in a foreign city.</li>\r\n 	<li><strong><u>Local Knowledge:</u></strong> Car rental agencies often provide maps and information about Dubai\'s attractions, helping you navigate the city and discover hidden gems smoothly and seamlessly.</li>\r\n</ol>\r\nTherefore, renting a car to explore Dubai offers numerous advantages, including the freedom to create your itinerary, cost-efficiency, convenience, and the ability to explore the city and its surroundings at your own pace. It\'s a choice that can enhance your overall travel experience in this dynamic and exciting destination.\r\n<h2>MONTHLY CAR RENTAL: A WISE CHOICE FOR A PROLONGED STAY IN DUBAI</h2>\r\nBesides all the benefits that car rentals provide, as mentioned earlier, extended rental options are available for long-term usage. A <strong>monthly car rental</strong> is a practical option for a prolonged stay in Dubai. Here\'s why:\r\n<ol>\r\n 	<li><strong><u>Savings:</u></strong> <strong>Monthly car rental</strong> in Dubai often provides significant savings compared to daily or weekly rates. You\'ll benefit from a fixed monthly fee, which includes insurance and maintenance costs, reducing unexpected expenses.</li>\r\n 	<li><strong><u>Flexibility:</u></strong> <strong>Monthly car rentals</strong> offer the flexibility to change your vehicle or upgrade as needed, which is significantly helpful if your plans evolve during your stay.</li>\r\n 	<li><strong><u>No Long-Term Commitment:</u></strong> <strong>Monthly car rentals</strong> don\'t tie you to a long-term commitment like purchasing a vehicle does. You can revel in the convenience of a car without the hassles of ownership. Usually, car rental companies provide you with maintenance, roadside assistance, and much more.</li>\r\n</ol>\r\n<h2>A FINAL WORD</h2>\r\n<strong>Car rental Dubai</strong>, including <a href=\"https://quicklease.ae/our-fleet/monthl...ent-a-car/\"><strong>monthly car rental</strong></a> options, offers travellers the freedom, convenience, and cost savings they need to make the most of their trip to this dynamic city. You can secure a reliable rental vehicle that fits your budget and preferences with proper research. So, gear up, hit the road, and embark on an unforgettable Dubai adventure with the flexibility and comfort of your rental car in Dubai.\r\n', 'CRUISING THROUGH DUBAI\'S DELIGHTS VIA MONTHLY CAR RENTALS IN DUBAI', '', 'publish', 'closed', 'open', '', 'cruising-through-dubais-delights-via-monthly-car-rentals-in-dubai', '', '', '2023-09-19 05:50:15', '2023-09-19 05:50:15', '', 0, 'https://onlineincshop.com/?p=360', 0, 'post', '', 0),
(378, 9467, '2023-11-09 05:46:34', '2023-11-09 05:46:34', 'In a world that\'s becoming increasingly interconnected, travel has become more accessible than ever before. Whether you\'re a seasoned traveler or a first-timer, finding <strong>cheap flight tickets</strong> is often at the top of everyone\'s agenda. The good news is that with the right strategy and resources, you can score affordable flights to your dream destinations. In this article, we\'ll explore how you can find the best deals on <strong>cheap flight tickets</strong>, and we\'ll direct you to GoBestPlan.com, a trusted platform to kickstart your journey.\r\n<h2><strong>Unlocking the Secrets of Cheap Flight Tickets</strong></h2>\r\nFinding <a href=\"https://gobestplan.com/\"><strong>cheap flight tickets</strong></a> doesn\'t mean sacrificing comfort or safety. It\'s about being resourceful, flexible, and patient. Here are some tips to help you discover budget-friendly options:\r\n<ol>\r\n 	<li>\r\n<h3><strong> Be Flexible with Your Travel Dates:</strong></h3>\r\nAirfare prices can fluctuate dramatically depending on the time of year, day of the week, and even the time of day. By being flexible with your travel dates, you can find significantly cheaper options. Use the search tool on GoBestPlan.com to compare prices across various dates effortlessly.</li>\r\n 	<li>\r\n<h3><strong> Book in Advance:</strong></h3>\r\nPlanning your trip well in advance is one of the most effective ways to secure <strong>cheap flight tickets</strong>. Airlines often release their lowest-priced seats several months ahead, so booking early can lead to significant savings.</li>\r\n 	<li>\r\n<h3><strong> Use Fare Comparison Websites:<img class=\"wp-image-379 alignright\" src=\"https://onlineincshop.com/wp-content/uploads/2023/11/suhyeon-choi-tTfDMaRq-FE-unsplash-300x200.jpg\" alt=\"\" width=\"353\" height=\"235\" /></strong></h3>\r\nUtilize online tools like GoBestPlan.com to compare <strong>cheap flight ticket</strong> prices across multiple airlines and travel agencies. These platforms allow you to filter and sort results, helping you find the best deals quickly.</li>\r\n 	<li>\r\n<h3><strong> Opt for Red-Eye Flights:</strong></h3>\r\nOvernight flights, also known as red-eye flights, tend to be cheaper than daytime options. If you\'re comfortable with the idea of sleeping on a plane, this can be a great way to save money.</li>\r\n 	<li>\r\n<h3><strong> Set Fare Alerts:</strong></h3>\r\nTo stay updated on price fluctuations for your desired routes, set up fare alerts. GoBestPlan.com and many other travel websites offer this feature, notifying you when prices drop.</li>\r\n 	<li>\r\n<h3><strong> Consider Nearby Airports:</strong></h3>\r\nIf you\'re willing to be a bit more adventurous, consider flying into or out of nearby airports. These smaller airports often offer lower fares and can be well worth the extra travel.</li>\r\n</ol>\r\n<h2><strong>GoBestPlan.com: Your Ultimate Destination for Cheap Flight Tickets</strong></h2>\r\nTo make the search for <a href=\"https://flights.gobestplan.com/\"><strong>cheapest flight tickets</strong></a> even more accessible, GoBestPlan.com is here to help. With an easy-to-use interface and a vast database of flight options, finding affordable travel choices has never been simpler. GoBestPlan.com is your one-stop solution for all your travel needs.\r\n\r\nHere\'s why GoBestPlan.com is the ultimate choice:\r\n<ol>\r\n 	<li>\r\n<h3><strong>Comprehensive Search:</strong></h3>\r\ncom provides access to a wide range of airlines and travel agencies, ensuring that you have access to the best and most competitive options for <strong>cheap flight tickets</strong>.</li>\r\n 	<li>\r\n<h3><strong>User-Friendly Interface:</strong></h3>\r\nThe platform\'s intuitive design allows you to search for flights, compare prices, and book tickets with ease. No more confusion or frustration when trying to find the best deal for <strong>cheap flight tickets</strong>.</li>\r\n 	<li>\r\n<h3><strong>Verified Deals:</strong></h3>\r\ncom only displays verified and trustworthy flight options for <strong>cheap flight tickets</strong>, so you can be confident in your choices.</li>\r\n 	<li>\r\n<h3><strong>24/7 Customer Support:</strong></h3>\r\nIf you have any questions or concerns during your booking process for <strong>cheap flight tickets</strong>, the dedicated customer support team at GoBestPlan.com is always available to assist you.</li>\r\n</ol>\r\nDon\'t let the cost of airfare deter you from experiencing the world. With GoBestPlan.com, finding <strong>cheap flight tickets</strong> is a breeze. Start your next adventure today by visiting <a href=\"https://gobestplan.com/\">GoBestPlan.com</a> and explore the endless possibilities that await you. It\'s time to turn your travel dreams into reality without breaking the bank with <strong>cheap flight tickets</strong>.\r\n\r\n&nbsp;\r\n', 'Find Your Next Adventure with Cheap Flight Tickets', '', 'publish', 'closed', 'open', '', 'find-your-next-adventure-with-cheap-flight-tickets', '', '', '2023-11-09 05:47:24', '2023-11-09 05:47:24', '', 0, 'https://onlineincshop.com/?p=378', 0, 'post', '', 0),
(356, 9467, '2023-09-05 16:17:25', '2023-09-05 16:17:25', 'In the realm of luxury jewelry, Celinni stands out as a beacon of elegance and craftsmanship. Nestled in the heart of the United Arab Emirates (UAE), <a href=\"https://www.celinni.ae/\"><strong>Celinni\'s affordable jewelry store UAE</strong></a> is a treasure trove of exquisite gemstones that have been transformed into timeless pieces of wearable art. In this article, we will take you on a journey through the enchanting world of Celinni\'s jewelry collection, highlighting the allure of gemstones and the mastery behind their creation.\r\n<h2><strong>The Fascination with Gemstones</strong></h2>\r\n&nbsp;\r\n\r\nGemstones have held a special place in human history for centuries. These precious stones, with their radiant colors and unique properties, have not only adorned royalty but also captivated the hearts of countless individuals worldwide. At Celinni, the fascination with gemstones is at the core of their jewelry creations.\r\n\r\n&nbsp;\r\n<h2><strong>A Kaleidoscope of Colors</strong></h2>\r\n&nbsp;\r\n\r\nStep into Celinni\'s jewelry store in the UAE, and you\'ll be greeted by a mesmerizing array of gemstones in every hue imaginable. From the deep, velvety blues of sapphires to the fiery reds of rubies, and from the lush greens of emeralds to the enchanting play of colors in opals, Celinni\'s collection celebrates the diverse beauty of gemstones.\r\n\r\n&nbsp;\r\n<h2><strong>The Art of Gemstone Selection</strong></h2>\r\n&nbsp;\r\n\r\nWhat sets Celinni apart is their commitment to sourcing only the finest gemstones. Their experts travel the world in search of these rare treasures, selecting stones that meet the highest standards of quality, clarity, and brilliance. Each gemstone is handpicked for its exceptional beauty and uniqueness.\r\n\r\n&nbsp;\r\n<h2><strong>Masterful Craftsmanship</strong></h2>\r\n&nbsp;\r\n\r\nCelinni\'s artisans are not just jewelry makers; they are storytellers. They take these carefully chosen gemstones and transform them into exquisite pieces of jewelry, each with its own narrative. Whether it\'s a sparkling diamond engagement ring or a vibrant emerald pendant, Celinni\'s craftsmanship brings out the inherent splendor of each gemstone.\r\n\r\n&nbsp;\r\n<h2><strong>Custom Creations</strong></h2>\r\n&nbsp;\r\n\r\nAt Celinni, they understand that jewelry is a personal expression of one\'s style and emotions. That\'s why they offer custom jewelry design services, allowing you to be a part of the creative process. Whether you dream of a one-of-a-kind engagement ring or wish to revamp a family heirloom, Celinni\'s artisans will work closely with you to bring your vision to life.\r\n\r\n&nbsp;\r\n<h2><strong>Beyond Tradition: Modern Design</strong></h2>\r\n&nbsp;\r\n\r\nWhile Celinni takes pride in their timeless and classic designs, they also embrace modernity. Their jewelry collection features contemporary pieces that appeal to those with a flair for the contemporary. Whether you prefer sleek, minimalist designs or bold, avant-garde statements, Celinni has something to suit your taste.\r\n\r\n&nbsp;\r\n<h2><strong>The Celinni Experience</strong></h2>\r\n&nbsp;\r\n\r\nVisiting Celinni\'s jewelry store in the UAE is not just about shopping for jewelry; it\'s about embarking on a journey of discovery. Their knowledgeable staff is dedicated to helping you find the perfect piece that resonates with your style and personality. Whether you\'re a seasoned jewelry collector or a first-time buyer, Celinni ensures a memorable and educational experience.\r\n<h3><strong>In Conclusion</strong></h3>\r\n&nbsp;\r\n\r\nCelinni\'s jewelry collection is a testament to the enduring fascination with gemstones and the artistry of jewelry making. From the moment you step into their store, you\'ll be captivated by the kaleidoscope of colors and the expertly crafted pieces that celebrate the beauty of gemstones. Whether you\'re seeking a timeless symbol of love or a modern statement of individuality, Celinni\'s jewelry collection offers a world of possibilities. Visit their store in the UAE and immerse yourself in the magic of gemstones, where each piece tells a story as unique as you are.\r\n\r\n&nbsp;\r\n', 'Exploring the Beauty of Gemstones: A Guide to Celinni\'s Jewelry Collection', '', 'publish', 'closed', 'open', '', 'exploring-the-beauty-of-gemstones-a-guide-to-celinnis-jewelry-collection', '', '', '2023-09-05 16:17:25', '2023-09-05 16:17:25', '', 0, 'https://onlineincshop.com/?p=356', 0, 'post', '', 0),
(357, 9467, '2023-09-05 16:16:52', '2023-09-05 16:16:52', '', 'WhatsApp Image 2023-09-05 at 1.34.21 PM', '', 'inherit', '', 'closed', '', 'whatsapp-image-2023-09-05-at-1-34-21-pm', '', '', '2023-09-05 16:16:52', '2023-09-05 16:16:52', '', 356, 'https://onlineincshop.com/wp-content/uploads/2023/09/WhatsApp-Image-2023-09-05-at-1.34.21-PM.jpeg', 0, 'attachment', 'image/jpeg', 0),
(361, 9467, '2023-09-18 08:14:48', '2023-09-18 08:14:48', '', 'Car rental Dubai', '', 'inherit', 'closed', 'closed', '', 'news-banner-1-1', '', '', '2023-09-18 08:15:30', '2023-09-18 08:15:30', '', 360, 'https://onlineincshop.com/wp-content/uploads/2023/09/news-banner-1-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(365, 9467, '2023-09-19 05:49:50', '2023-09-19 05:49:50', '', 'Rent a car', '', 'inherit', 'closed', 'closed', '', 'rent-a-car', '', '', '2023-09-19 05:50:08', '2023-09-19 05:50:08', '', 360, 'https://onlineincshop.com/wp-content/uploads/2023/09/Rent-a-car.png', 0, 'attachment', 'image/png', 0),
(367, 9467, '2023-10-15 09:16:32', '2023-10-15 09:16:32', 'Are you in the vibrant city of Dubai and in need of a fresh and stylish <strong>haircut</strong>? Look no further than the renowned <strong>House of Cuts</strong> – your go-to destination for top-notch hair grooming in this cosmopolitan hub.\r\n<h2><strong>Crafting Artistry: The House of Barber Experience</strong></h2>\r\nWhen it comes to getting a <a href=\"https://houseofcuts.ae/\">haircut in Dubai</a>, it\'s not just about the scissors and clippers; it\'s about the experience and the artistry that goes into crafting the perfect look. The House of Barber understands this sentiment and has become a staple for those seeking a blend of expertise and luxury in their grooming routine.\r\n\r\nAt the <strong>House of Cuts</strong>, each visit is an indulgence in precision and pampering. The skilled barbers at this establishment are not just haircutters; they are artists, sculpting and shaping your hair with finesse.\r\n<h2><strong>Trends and Traditions: A Cut Above the Rest</strong></h2>\r\nOne of the standout features of the House of Barber is its commitment to staying on top of the latest trends. Whether you\'re looking for a classic cut or a modern, avant-garde style, the talented team at House of Barber is well-versed in diverse techniques and trends, ensuring that you leave the salon not just satisfied but transformed.\r\n<h2><strong>Beyond the Cut: An Oasis of Relaxation</strong></h2>\r\nFor those who appreciate an immersive and upscale grooming experience, the House of Barber goes beyond just providing a <strong>haircut in Dubai</strong>. It\'s an oasis of relaxation and rejuvenation, offering a range of services that extend beyond the conventional trim. From soothing hot towel treatments to meticulous beard grooming, the House of Barber is a haven for those who appreciate the finer things in life.\r\n<h2><strong>House of Cuts: Setting the Standard for Excellence</strong></h2>\r\nAnd s<img class=\"size-medium wp-image-369 alignright\" src=\"https://onlineincshop.com/wp-content/uploads/2023/10/WhatsApp-Image-2023-10-12-at-3.42.36-PM-1-200x300.jpeg\" alt=\"\" width=\"200\" height=\"300\" />peaking of finer things, if you\'re looking for an establishment that truly understands the art of barbering, look no further than the esteemed <strong>House of Cuts</strong>. This iconic salon has become synonymous with excellence in the grooming industry, setting the standard for what a premium haircut experience should be.\r\n\r\nThe House of Cuts is not just a place to get your hair done; it\'s a destination that embraces the heritage of traditional barbering while incorporating modern flair. The ambiance is inviting, the service is impeccable, and the results are nothing short of exceptional.\r\n<h2><strong>Making a Statement: Style Meets Expertise</strong></h2>\r\nIn the bustling city of Dubai, where style is a language of its own, your choice of a <strong>haircut</strong> destination matters. The House of Barber and House of Cuts stand out as pillars of excellence, offering not just a service but an experience. So, the next time you find yourself in need of a trim or a complete hair transformation, make your way to the House of Barber or the House of Cuts – where style meets expertise in the heart of Dubai.\r\n', 'Discover Style at House of Cuts: Your Ultimate Destination for a Haircut in Dubai', '', 'publish', 'closed', 'open', '', 'discover-style-at-house-of-cuts-your-ultimate-destination-for-a-haircut-in-dubai', '', '', '2023-10-15 09:16:32', '2023-10-15 09:16:32', '', 0, 'https://onlineincshop.com/?p=367', 0, 'post', '', 0),
(368, 9467, '2023-10-15 09:15:18', '2023-10-15 09:15:18', '', 'WhatsApp Image 2023-10-12 at 3.42.36 PM', '', 'inherit', '', 'closed', '', 'whatsapp-image-2023-10-12-at-3-42-36-pm', '', '', '2023-10-15 09:15:18', '2023-10-15 09:15:18', '', 367, 'https://onlineincshop.com/wp-content/uploads/2023/10/WhatsApp-Image-2023-10-12-at-3.42.36-PM.jpeg', 0, 'attachment', 'image/jpeg', 0),
(369, 9467, '2023-10-15 09:15:46', '2023-10-15 09:15:46', '', 'WhatsApp Image 2023-10-12 at 3.42.36 PM (1)', '', 'inherit', '', 'closed', '', 'whatsapp-image-2023-10-12-at-3-42-36-pm-1', '', '', '2023-10-15 09:15:46', '2023-10-15 09:15:46', '', 367, 'https://onlineincshop.com/wp-content/uploads/2023/10/WhatsApp-Image-2023-10-12-at-3.42.36-PM-1.jpeg', 0, 'attachment', 'image/jpeg', 0),
(478, 9467, '2024-03-25 08:20:18', '2024-03-25 08:20:18', '<a href=\"https://freezonemarket.ae/meydan-free-zone-company-setup/\">Meydan Free Zone</a>, renowned for its economic dynamism and entrepreneurial spirit, continues to attract businesses from around the globe. Let\'s delve deeper into the intricacies of Meydan Free Zone and explore how it serves as a catalyst for business success in Dubai.\r\n<h2>Prime Location and Accessibility:</h2>\r\nNestled in close proximity to Downtown Dubai, Meydan Free Zone enjoys a strategic location that provides businesses with easy access to key commercial and financial districts. Its proximity to major transportation hubs, including Dubai International Airport and major highways, ensures seamless connectivity to global markets, making it an ideal choice for businesses with international aspirations.\r\n<h2>Cost-Effective Setup Options:</h2>\r\nOne of the most appealing aspects of Meydan Free Zone is its affordability. With setup fees starting at a competitive rate of Dh12,500, Meydan Free Zone offers entrepreneurs and SMEs a cost-effective pathway to establish their businesses in Dubai. This low barrier to entry enables startups to allocate their resources more efficiently, focusing on growth and expansion from the outset.\r\n<h2>Flexible Office Spaces:</h2>\r\nMeydan Free Zone understands that one size does not fit all when it comes to office spaces. That\'s why it offers a diverse range of office solutions tailored to meet the unique requirements of businesses. Whether it\'s serviced offices, co-working spaces, or customizable office suites, entrepreneurs have the flexibility to choose the workspace that best aligns with their needs and preferences.\r\n<h2>Cutting-Edge Digital Services:</h2>\r\nIn today\'s digital age, convenience and efficiency are paramount. Meydan Free Zone recognizes this and has embraced digitalization to streamline its services. Through its user-friendly online portal, business owners can access a wide range of services with just a few clicks. From company registration and licensing to visa processing and administrative support, Meydan Free Zone\'s digital platform offers a seamless experience, saving businesses time and effort.\r\n<h2>Comprehensive Business Support:</h2>\r\nSetting up a business can be daunting, especially in a foreign market. Meydan Free Zone alleviates this burden by providing comprehensive business support services every step of the way. From expert guidance on company registration and compliance to assistance with visa processing and legal matters, entrepreneurs can rely on Meydan Free Zone\'s dedicated team of professionals to navigate the complexities of starting and running a business in Dubai.\r\n<h2>Networking and Collaboration Opportunities:</h2>\r\nBeyond its practical benefits, Meydan Free Zone fosters a vibrant community of entrepreneurs and businesses. Regular networking events and collaborative initiatives create opportunities for knowledge-sharing, partnership building, and market expansion. By facilitating interactions among its members, Meydan Free Zone nurtures a culture of innovation and collaboration, driving collective growth and success.\r\n<h2>Conclusion:</h2>\r\nMeydan Free Zone stands as a testament to Dubai\'s commitment to fostering a thriving business ecosystem that is inclusive, innovative, and supportive of entrepreneurship. With its strategic location, cost-effective setup options, cutting-edge digital services, and comprehensive business support, Meydan Free Zone provides entrepreneurs with the ideal platform to turn their business aspirations into reality. Whether you\'re a budding entrepreneur with a groundbreaking idea or an established business looking to expand your footprint, Meydan Free Zone offers the perfect environment to thrive and succeed in the dynamic landscape of Dubai\'s business world.\r\n', 'Meydan Free Zone: A Gateway to Business Success in Dubai', '', 'publish', 'closed', 'open', '', 'meydan-free-zone-a-gateway-to-business-success-in-dubai', '', '', '2024-07-12 07:41:12', '2024-07-12 07:41:12', '', 0, 'https://onlineincshop.com/?p=478', 0, 'post', '', 0),
(372, 9467, '2023-10-23 07:35:56', '2023-10-23 07:35:56', '&nbsp;\r\n<h2><strong>Choose the right light</strong></h2>\r\n<h3><strong>Color temperature</strong></h3>\r\nSimply put, the lower the color temperature, the warmer the color, which is reddish; conversely, the higher the color temperature, the cooler it is, which is bluish.\r\n<h3><strong>Just give a simple example:</strong></h3>\r\nThe working area is suitable for white light with a color temperature of about 5000K, and the leisure area is suitable for yellow light with a color temperature of about 3000K.\r\n\r\nThe color rendering of white light is more realistic, the contrast of illumination is larger, it tends to sunlight, and the color temperature is cooler, so it is suitable for lighting for work purposes. The ambient light source is brighter and clearer, which can boost the spirit;\r\n\r\nBecause of its color temperature, yellow light has a visual warmth and has less lighting contrast, making it suitable for shaping interpersonal relationships and atmosphere.\r\n<h3><strong>Illumination</strong></h3>\r\nIllumination refers to the luminous flux of visible light received by the unit area of the illuminated surface. The unit is lux, 1ux=1 lumen/square meter. We often talk about whether the working desktop is bright enough, which usually refers to whether the illumination is sufficient. In the case of the same area, the higher the luminous flux of the light source, that is, the higher the lumen value, the higher the illumination will be. Generally speaking, if the lighting environment is required to be bright and clear, the illumination requirements will be higher.\r\n\r\nThe state stipulates that the illumination in office areas should not be less than 300lux. The general space illumination brightness is not less than 100lux, and the local lighting brightness is not less than 600lux.\r\n<h2><strong>Choose the right lamp</strong></h2>\r\n<h3><strong>Linear strip lighting</strong></h3>\r\nDesks in most companies have a rectangular design, in which case strip lights (flat panels, panel lights, linear lights) are most suitable. Moreover, such light has high brightness without being too dazzling, and the illuminated area is uniform.\r\n<h3><strong>Round/Square lamps</strong></h3>\r\nLeisure areas generally choose round lights. The brightness of the lighting here is not so important. The main thing is that the light is soft and can make people relax. Compared with angular office furniture, round shape and square <a href=\"https://grnled.com/\">backlit panel light</a> can also soften the atmosphere of the space.\r\n<h3><strong>Lighting requirements for different areas</strong></h3>\r\n<h3><strong>Front desk</strong></h3>\r\nThe front desk of every company is the face of the company, and it is the area where the corporate image is displayed. Therefore, in addition to the lighting fixtures providing a certain amount of illumination, the design also requires diversified lighting styles to increase the sense of design and make the lighting design consistent with the corporate image.\r\n<h3><strong>Open office area</strong></h3>\r\nThe open office area, which currently accounts for the largest proportion of office space, cannot be set up in a location without natural lighting. In terms of lighting, uniformity and comfort should be combined as design principles. Lighting fixtures are usually arranged at a uniform spacing, and corresponding lighting fixtures are used in combination with functional areas on the ground. Strip lights (flat panels, panels, linear lights) and <a href=\"https://grnled.com/\">ip65 led downlights</a> are often used in workbench areas to evenly light the workspace and reduce glare.\r\n<h3><strong>Personal office</strong></h3>\r\nA personal office is a small space, so the brightness of the ceiling lighting fixtures is not that important. Personal offices should use natural light as much as possible, because natural light is the light source most suitable for human eyes, and working under natural light is the most comfortable.\r\n<h3><strong>Conference room</strong></h3>\r\nFor conference room lighting, the lighting above the conference table should be considered as the main lighting. To make people feel concentrated, the illumination should be appropriate and auxiliary lighting can be added around.\r\n', 'Ideas for office lighting', '', 'publish', 'closed', 'open', '', 'ideas-for-office-lighting', '', '', '2023-10-23 08:27:52', '2023-10-23 08:27:52', '', 0, 'https://onlineincshop.com/?p=372', 0, 'post', '', 0),
(373, 9467, '2023-10-23 07:31:35', '2023-10-23 07:31:35', '', 'ppp', '', 'inherit', '', 'closed', '', 'ppp', '', '', '2023-10-23 07:31:35', '2023-10-23 07:31:35', '', 372, 'https://onlineincshop.com/wp-content/uploads/2023/10/ppp.png', 0, 'attachment', 'image/png', 0),
(375, 9467, '2023-10-23 07:49:13', '2023-10-23 07:49:13', '', 'ppp-300x174', '', 'inherit', '', 'closed', '', 'ppp-300x174', '', '', '2023-10-23 07:49:13', '2023-10-23 07:49:13', '', 372, 'https://onlineincshop.com/wp-content/uploads/2023/10/ppp-300x174-1.png', 0, 'attachment', 'image/png', 0),
(379, 9467, '2023-11-09 05:45:49', '2023-11-09 05:45:49', '', 'suhyeon-choi-tTfDMaRq-FE-unsplash', '', 'inherit', '', 'closed', '', 'suhyeon-choi-ttfdmarq-fe-unsplash', '', '', '2023-11-09 05:45:49', '2023-11-09 05:45:49', '', 378, 'https://onlineincshop.com/wp-content/uploads/2023/11/suhyeon-choi-tTfDMaRq-FE-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(380, 9467, '2023-11-09 05:46:19', '2023-11-09 05:46:19', '', 'john-mcarthur-8KLLgqHMAv4-unsplash', '', 'inherit', '', 'closed', '', 'john-mcarthur-8kllgqhmav4-unsplash', '', '', '2023-11-09 05:46:19', '2023-11-09 05:46:19', '', 378, 'https://onlineincshop.com/wp-content/uploads/2023/11/john-mcarthur-8KLLgqHMAv4-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(382, 9467, '2023-11-16 08:39:14', '2023-11-16 08:39:14', '<span style=\"font-weight: 400;\">he digital age has certainly made things a lot easier. You can simply pop into an industrial marketplace like Industbay, buy hands tools online, or whatever else you desire, and you’re good to go. For all its conveniences, certain unique concerns come into the picture when you </span><strong><a href=\"https://blogs.industbay.com/do-you-want-to-know-the-secret-to-get-a-fair-price-when-purchasing-or-selling-industrial-machines-online/\">buy and sell industrial equipment online</a></strong><span style=\"font-weight: 400;\">. Chef among them are warranty and service agreements. What should you be looking out for? What are some red flags that indicate you should pull out of the deal? Finally, what are the standard expectations? We answer all your questions right now as we dissect service agreements and warranty expectations when purchasing machinery online. </span>\r\n<h2><b>Warranty period </b></h2>\r\n<span style=\"font-weight: 400;\">Of course, the first thing you want to be taking a look at is the warranty period. You want to check to see if the warranty period is still valid or if it is past its use. This is particularly important if you’ve opted to buy used machinery online. If it’s a totally new piece of equipment, on the other hand, some common warranty durations you may get span: </span>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">5 years </span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">3 years</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">12 months</span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\">The exact duration will vary from one equipment to another and according to the policies of that machine supplier. If you’re getting used equipment, expect that part of this warranty period has elapsed. It’s also possible that the warranty has completely expired, which you should confirm by liaising with your dealer. This really shouldn’t be a problem if you’re buying industrial equipment with great longevity such as air compressors, for example. </span>\r\n<h2><b>Type of warranty </b></h2>\r\n<span style=\"font-weight: 400;\">Now that we’ve confirmed that your warranty period is still valid, there’s something else you should do as well- determine what type of warranty covers the equipment you’re buying. Generally, there 3 types namely, specialized, extended, and standard. </span>\r\n\r\n<span style=\"font-weight: 400;\">A standard warranty covers essential equipment protection but crucially leaves out servicing. It may also carter for the transportation expense of the equipment if you’re buying directly from an OEM on the marketplace. </span>\r\n\r\n<span style=\"font-weight: 400;\">True to its name, an extended warranty covers a lot more. It also includes the cost of servicing such as when you get equipment parts that would have required an additional warranty. The devil is the detail though. With an extended warranty, you need to be specific about what has to be covered.</span>\r\n\r\n<span style=\"font-weight: 400;\">Finally, a specialized warranty covers just a particular part of the machine such as the powertrain for example. In this case, other parts of the machine are not covered by the warranty. All in all, that is what you can expect from all these types of warranty. Be sure to ask for more information from your seller about what type of warranty they offer. </span>\r\n<h2><b>Conditions of use <img class=\" wp-image-383 alignright\" src=\"https://onlineincshop.com/wp-content/uploads/2023/11/WhatsApp-Image-2023-11-15-at-4.20.49-PM-300x200.jpeg\" alt=\"\" width=\"340\" height=\"226\" /></b></h2>\r\n<span style=\"font-weight: 400;\">You really need to pay attention to the fine print when it comes to your service agreement. Some sellers or manufacturers put certain conditions when they sell industrial machines online. These normally have to do with the terms of use of a particular tool or machinery. Using the equipment one way may result in a violation of the warranty, hence mechanical failures resulting from this application may not be covered by your seller. </span>\r\n\r\n<span style=\"font-weight: 400;\">In a nutshell, seek to understand what the dealer terms as misuse of the equipment before shaking on any sale agreement. You want to leave no room for doubt in terms of:</span>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">What you can or cannot do with the equipment</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">What qualifies as negligence (Note that some sellers may not respect the warranty or service agreement based on negligence. Luckily, most will define what passes for negligence)</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">What counts as improper use and so on</span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\">That said, a good service agreement shouldn’t have lots of red tape. Respectable sellers have clear but simple warranty agreements which essentially serve as a vote of confidence in the quality of their machinery.</span>\r\n<h2><b>History sheet/maintenance record</b></h2>\r\n<span style=\"font-weight: 400;\">Some sellers document the equipment’s history. They may present this to you in digital format as a PDF or some other file format. Your service agreement may include provisions for you to access the equipment breakdown record or history sheet, among other documentation. Generally, you want to be on the lookout for what documents you’ll have access to. </span>\r\n\r\n<span style=\"font-weight: 400;\">It’s important to note that some service agreements may not be outrightly clear in the documentation. That said, the seller may still grant you access to it upon inquiry. In other cases, a seller may not have been documenting the machine\'s history. While this is not a deal breaker or a clear sign of foul play, you want to have full insights into potential problems or malfunctions that the machine has. </span>\r\n\r\n<span style=\"font-weight: 400;\">Additionally, another thing to keep in mind is that some service agreements may require that you document repairs/servicing that you will perform on the equipment. Failure to do that may result in the violation of your warranty.</span>\r\n<h2><b>Scope of Coverage</b></h2>\r\n<span style=\"font-weight: 400;\">Service level agreements differ across machinery companies in UAE and that’s to be expected. What you may not fully realize is that coverage of a warranty may also exclude other costs related to maintenance that you may have to foot out of your own pocket, some of which may include: </span>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Equipment inspections</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Costs of labor for the repair or servicing of the machine</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Cost of labor for repairing certain parts or accessories</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Travel costs for labors </span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Training of equipment operators and so on</span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\">There are a lot of minor yet important details to keep an eye out for. The good news though is that most industrial equipment suppliers will provide a checklist, or some other reference, highlighting the scope of this coverage, while addressing the above concerns and others. </span>\r\n<h2><b>Knowledge is power! Never skip due diligence</b></h2>\r\n<span style=\"font-weight: 400;\">It can be challenging to know what to expect when you buy and sell industrial equipment online. There are lots of unscrupulous dealers out there looking to pull one over on you by way of fishy warranty and service agreements. The best way to avoid them is by purchasing industrial machines for sale from a reliable website that comprehensively vets its vendors. As an example, we recommend </span><strong><a href=\"https://blogs.industbay.com/do-you-want-to-know-the-secret-to-get-a-fair-price-when-purchasing-or-selling-industrial-machines-online/\">Industbay</a></strong><span style=\"font-weight: 400;\">, a leading industrial marketplace with proven quality. That being said, we understand that service and warranty agreements can be lengthy, but it’s always in your best interest to take the time to go through every word to be on the safe side.</span>\r\n', 'Warranty and Service Agreements: What to Expect When Buying Machinery Online', '', 'publish', 'closed', 'open', '', 'warranty-and-service-agreements-what-to-expect-when-buying-machinery-online', '', '', '2023-11-16 09:04:15', '2023-11-16 09:04:15', '', 0, 'https://onlineincshop.com/?p=382', 0, 'post', '', 0),
(383, 9467, '2023-11-16 08:37:52', '2023-11-16 08:37:52', '', 'WhatsApp Image 2023-11-15 at 4.20.49 PM', '', 'inherit', '', 'closed', '', 'whatsapp-image-2023-11-15-at-4-20-49-pm', '', '', '2023-11-16 08:37:52', '2023-11-16 08:37:52', '', 382, 'https://onlineincshop.com/wp-content/uploads/2023/11/WhatsApp-Image-2023-11-15-at-4.20.49-PM.jpeg', 0, 'attachment', 'image/jpeg', 0),
(384, 9467, '2023-11-16 08:38:50', '2023-11-16 08:38:50', '', 'WhatsApp Image 2023-11-15 at 4.20.49 PM (1)', '', 'inherit', '', 'closed', '', 'whatsapp-image-2023-11-15-at-4-20-49-pm-1', '', '', '2023-11-16 08:38:50', '2023-11-16 08:38:50', '', 382, 'https://onlineincshop.com/wp-content/uploads/2023/11/WhatsApp-Image-2023-11-15-at-4.20.49-PM-1.jpeg', 0, 'attachment', 'image/jpeg', 0),
(388, 9467, '2023-11-28 06:57:39', '2023-11-28 06:57:39', '<span style=\"font-weight: 400;\">The United Arab Emirates (UAE) is a country known for its modernity, economic prosperity, and stunning landscapes. Behind its impressive facade lies a well-structured political map that defines its administrative divisions and regions. In this article, we will delve into the political map of the UAE, shedding light on its various components and governance structure.</span>\r\n<h2><b>Political Map of the UAE: An Overview</b></h2>\r\n<span style=\"font-weight: 400;\">The UAE is a federal absolute monarchy, which means it is a federation of seven emirates, each governed by its own monarch. The country\'s political map is divided into these seven distinct emirates, each with its unique characteristics and role in the federal system. These emirates are:</span>\r\n<h3><b>Abu Dhabi:</b><span style=\"font-weight: 400;\">  </span></h3>\r\n<span style=\"font-weight: 400;\">The capital of the UAE and the largest emirate by area, Abu Dhabi is known for its vast oil reserves, economic influence, and modern infrastructure. It plays a central role in the country\'s governance and economy.</span>\r\n<h3><b>Dubai:</b><span style=\"font-weight: 400;\">   </span></h3>\r\n<span style=\"font-weight: 400;\">Dubai is the most populous emirate and a global business hub. It is renowned for its towering skyscrapers, luxury lifestyle, and innovative projects like the Burj Khalifa and Palm Jumeirah.</span>\r\n<h3><b>Sharjah:</b><span style=\"font-weight: 400;\">   </span></h3>\r\n<span style=\"font-weight: 400;\">Sharjah is often referred to as the \"Cultural Capital of the UAE\" due to its strong focus on art, history, and heritage. It is known for its cultural institutions and commitment to preserving the country\'s traditions.</span>\r\n<h3><b>Ajman:</b><span style=\"font-weight: 400;\">   </span></h3>\r\n<span style=\"font-weight: 400;\">The smallest emirate in terms of land area, Ajman is characterized by its laid-back atmosphere and pristine beaches. It is also home to a growing industrial sector.</span>\r\n<h3><b>Umm Al-Quwain:</b><span style=\"font-weight: 400;\">   </span></h3>\r\n<span style=\"font-weight: 400;\">This emirate is known for its natural beauty, including mangrove forests and sandy beaches. It is one of the less-developed emirates and maintains a more traditional way of life.</span>\r\n<h3><b>Ras Al Khaimah:</b><span style=\"font-weight: 400;\">   </span></h3>\r\n<span style=\"font-weight: 400;\">Ras Al Khaimah is the northernmost emirate and boasts a diverse landscape that includes mountains, desert, and coastline. It has been actively promoting tourism and industrialization.</span>\r\n<h3><b>Fujairah:</b><span style=\"font-weight: 400;\">   </span></h3>\r\n<span style=\"font-weight: 400;\">Fujairah is the only emirate located on the eastern coast, along the Gulf of Oman. It is known for its strategic location and is home to the UAE\'s only access to the Indian Ocean.</span>\r\n<h2><b>The Federal System</b></h2>\r\n<span style=\"font-weight: 400;\">While each emirate has its own ruler and local government, the UAE operates under a federal system that brings them together into a unified nation. The federal government, based in Abu Dhabi, holds authority over matters such as defense, foreign affairs, and monetary policy. It also ensures that the UAE functions as a single economic entity with a common currency (the UAE dirham) and a unified legal framework.</span>\r\n<h4><b>Conclusion:</b></h4>\r\n<span style=\"font-weight: 400;\">The political map of the UAE illustrates the delicate balance between unity and diversity. While the seven emirates retain their individual identities and governing authorities, they collaborate under the umbrella of the federal government to form a cohesive nation. This federal structure has enabled the UAE to achieve remarkable progress in various fields, from infrastructure development to economic diversification.</span>\r\n\r\n<span style=\"font-weight: 400;\">As you explore the political map of the UAE, you\'ll discover a nation that embraces its cultural heritage while embracing innovation and modernity. Each emirate contributes its unique character to the rich tapestry of the UAE, making it a country where tradition and progress harmoniously coexist</span>\r\n', 'Unveiling the Political Map of the UAE: A Closer Look at Its Administrative Divisions', '', 'publish', 'closed', 'open', '', 'unveiling-the-political-map-of-the-uae-a-closer-look-at-its-administrative-divisions', '', '', '2023-11-28 06:57:39', '2023-11-28 06:57:39', '', 0, 'https://onlineincshop.com/?p=388', 0, 'post', '', 0),
(389, 9467, '2023-11-28 06:57:29', '2023-11-28 06:57:29', '', 'chris-lawton-o0l-M8W_7wA-unsplash', '', 'inherit', '', 'closed', '', 'chris-lawton-o0l-m8w_7wa-unsplash', '', '', '2023-11-28 06:57:29', '2023-11-28 06:57:29', '', 388, 'https://onlineincshop.com/wp-content/uploads/2023/11/chris-lawton-o0l-M8W_7wA-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(391, 9467, '2023-11-28 07:02:14', '2023-11-28 07:02:14', '<span style=\"font-weight: 400;\">The United Arab Emirates (UAE), with its rapid growth and dynamic political landscape, offers a host of opportunities for professionals in the field of political science. Whether you are a UAE resident or an international job seeker, there are various avenues to explore within this discipline. In this article, we will delve into the world of political science jobs in the UAE, highlighting career pathways and possibilities.</span>\r\n<h2><b>Political Science Jobs in the UAE: An Overview</b></h2>\r\n<span style=\"font-weight: 400;\">Political science is a multifaceted field that encompasses the study of government, politics, policy analysis, and international relations. In the UAE, this field has gained significant importance due to the country\'s evolving political and economic landscape.</span>\r\n<h2><b> Government Roles</b></h2>\r\n<span style=\"font-weight: 400;\">The UAE\'s federal government and individual emirate governments offer a wide range of opportunities for political science graduates. These roles may include:</span>\r\n<h3><b>Policy Analyst:</b><span style=\"font-weight: 400;\">  </span></h3>\r\n<span style=\"font-weight: 400;\">Analyzing government policies and providing recommendations for improvements.</span>\r\n<h3><b>Public Affairs Specialist:</b><span style=\"font-weight: 400;\">  </span></h3>\r\n<span style=\"font-weight: 400;\">Managing government communication and public relations strategies.</span>\r\n<h3><b>Legislative Analyst:</b><span style=\"font-weight: 400;\">  </span></h3>\r\n<span style=\"font-weight: 400;\">Assisting in the development and analysis of legislation.</span>\r\n<h3><b>Diplomat:</b><span style=\"font-weight: 400;\">  </span></h3>\r\n<span style=\"font-weight: 400;\">Representing the UAE\'s interests in international relations and diplomacy.</span>\r\n<h2><b> International Organizations</b></h2>\r\n<span style=\"font-weight: 400;\">The UAE is home to numerous international organizations and diplomatic missions, making it a hub for political science professionals. Opportunities in this sector may include:</span>\r\n<h3><b>International Relations Specialist:</b><span style=\"font-weight: 400;\">  </span></h3>\r\n<span style=\"font-weight: 400;\">Working with international organizations, embassies, and consulates on diplomatic issues.</span>\r\n<h3><b>Political Advisor:</b><span style=\"font-weight: 400;\">  </span></h3>\r\n<span style=\"font-weight: 400;\">Providing strategic political advice to international entities based in the UAE.</span>\r\n<h3><b>NGO Roles:</b><span style=\"font-weight: 400;\">  </span></h3>\r\n<span style=\"font-weight: 400;\">Contributing to the work of non-governmental organizations focused on political, social, or humanitarian causes.</span>\r\n<h2><b> Research and Academia</b></h2>\r\n<span style=\"font-weight: 400;\">For those with a passion for research and education, the UAE has a growing academic sector that offers positions such as:</span>\r\n<h3><b>Political Science Professor:</b><span style=\"font-weight: 400;\">  </span></h3>\r\n<span style=\"font-weight: 400;\">Teaching and conducting research at universities and educational institutions.</span>\r\n<h3><b>Research Analyst:</b><span style=\"font-weight: 400;\">  </span></h3>\r\n<span style=\"font-weight: 400;\">Conducting political research for think tanks and research organizations.</span>\r\n<h2><b>Career Growth and Prospects</b></h2>\r\n<span style=\"font-weight: 400;\">The UAE\'s commitment to innovation and diversification has led to an increasing demand for political science professionals. As the country continues to play a prominent role in regional and international affairs, the need for experts in political analysis, international relations, and public policy is expected to grow.</span>\r\n<h4><b>Conclusion: </b></h4>\r\n<span style=\"font-weight: 400;\">Political science jobs in the UAE offer a diverse and dynamic career landscape. Whether you aspire to work within the government, contribute to international organizations, or engage in research and education, the UAE provides a fertile ground for your professional growth.</span>\r\n\r\n<span style=\"font-weight: 400;\">As the UAE\'s influence on the global stage continues to expand, so do the opportunities for political science professionals. Whether you are a UAE resident or considering a move to this thriving nation, the field of political science promises a rewarding career path filled with opportunities to make a meaningful impact on regional and international affairs.</span>\r\n', 'Navigating Political Science Jobs in the UAE: Opportunities and Prospects', '', 'publish', 'closed', 'open', '', 'navigating-political-science-jobs-in-the-uae-opportunities-and-prospects', '', '', '2023-11-28 07:02:14', '2023-11-28 07:02:14', '', 0, 'https://onlineincshop.com/?p=391', 0, 'post', '', 0),
(392, 9467, '2023-11-28 07:00:06', '2023-11-28 07:00:06', '', 'cdc-LiNIONbajm4-unsplash', '', 'inherit', '', 'closed', '', 'cdc-linionbajm4-unsplash', '', '', '2023-11-28 07:00:06', '2023-11-28 07:00:06', '', 391, 'https://onlineincshop.com/wp-content/uploads/2023/11/cdc-LiNIONbajm4-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(394, 9467, '2023-11-28 07:07:24', '2023-11-28 07:07:24', '<span style=\"font-weight: 400;\">The Dubai Finance Market, often referred to as DFM, stands as a symbol of Dubai\'s transformation into a global financial powerhouse. Established in the heart of the city, the DFM has played a pivotal role in shaping the financial landscape not only in the United Arab Emirates (UAE) but also on the international stage. In this article, we will explore the Dubai Finance Market, its historical journey, and its current significance in the world of finance.</span>\r\n<h2><b>The Dubai Finance Market: A Historical Perspective</b></h2>\r\n<span style=\"font-weight: 400;\">The journey of the DFM dates back to the early 2000s when Dubai embarked on a mission to diversify its economy beyond oil and become a major global financial center. The DFM was officially launched on March 26, 2000, with the aim of providing a transparent and efficient platform for trading and investment in various financial instruments.</span>\r\n<h2><b>The Role of DFM Today</b></h2>\r\n<h3><b> Attracting International Investors</b></h3>\r\n<span style=\"font-weight: 400;\">The DFM has become a magnet for international investors, thanks to its strategic location, strong regulatory framework, and impressive growth. It offers a wide range of investment opportunities, including equities, bonds, and exchange-traded funds (ETFs), attracting investors from around the world.</span>\r\n<h3><b> A Key Player in Islamic Finance</b></h3>\r\n<span style=\"font-weight: 400;\">Dubai has emerged as a global hub for Islamic finance, and the DFM plays a significant role in this sector. It offers a platform for trading Sharia-compliant instruments and has contributed to the development of Islamic finance products and services.</span>\r\n<h2><b> Innovation and Technology</b></h2>\r\n<span style=\"font-weight: 400;\">The DFM has embraced technology to enhance its operations. It introduced smart services and mobile applications, making it easier for investors to access information and trade on the go. Additionally, the DFM launched \"Dubai Financial Market (DFM) One,\" a state-of-the-art trading platform, to provide investors with a seamless and efficient trading experience.</span>\r\n<h3><b> Promoting Sustainability and ESG Practices</b></h3>\r\n<span style=\"font-weight: 400;\">In line with global trends, the DFM has prioritized sustainability and environmental, social, and governance (ESG) practices. It encourages listed companies to adopt sustainable business practices and disclose ESG-related information to investors.</span>\r\n<h4><b>Conclusion: </b></h4>\r\n<span style=\"font-weight: 400;\">In conclusion, the Dubai Finance Market stands as a testament to Dubai\'s vision and ambition. It has not only transformed the city into a financial powerhouse but has also contributed to the development of the UAE\'s economy and the broader region. As it continues to evolve and adapt to changing</span>\r\n', 'Dubai Finance Market: Navigating the Heart of Financial Prosperity', '', 'publish', 'closed', 'open', '', 'dubai-finance-market-navigating-the-heart-of-financial-prosperity', '', '', '2023-11-28 07:07:24', '2023-11-28 07:07:24', '', 0, 'https://onlineincshop.com/?p=394', 0, 'post', '', 0),
(395, 9467, '2023-11-28 07:07:12', '2023-11-28 07:07:12', '', 'alexander-grey-8lnbXtxFGZw-unsplash', '', 'inherit', '', 'closed', '', 'alexander-grey-8lnbxtxfgzw-unsplash', '', '', '2023-11-28 07:07:12', '2023-11-28 07:07:12', '', 394, 'https://onlineincshop.com/wp-content/uploads/2023/11/alexander-grey-8lnbXtxFGZw-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(397, 9467, '2023-11-28 07:11:55', '2023-11-28 07:11:55', '<span style=\"font-weight: 400;\">Dubai, a global business hub known for its rapid economic growth, has become a magnet for entrepreneurs and investors seeking financial success. Amid the bustling financial landscape of the city, finance consultants in Dubai play a crucial role in guiding businesses and individuals toward their financial goals. In this article, we will explore the significance of finance consultants in Dubai, their expertise, and their contributions to financial prosperity.</span>\r\n<h2><b>The Role of Finance Consultants in Dubai</b></h2>\r\n<h3><b> Strategic Financial Planning</b></h3>\r\n<span style=\"font-weight: 400;\">Finance consultants in Dubai are experts in creating comprehensive financial plans tailored to the unique needs and goals of their clients. Whether it\'s a business aiming to expand or an individual planning for retirement, these consultants analyze financial situations and develop strategies to achieve long-term objectives.</span>\r\n<h3><b> Investment Advisory</b></h3>\r\n<span style=\"font-weight: 400;\">Dubai is a thriving investment hub, attracting investors from around the world. Finance consultants provide valuable insights into investment opportunities, risk management, and portfolio diversification. They help clients make informed investment decisions aligned with their financial goals.</span>\r\n<h3><b> Tax Optimization</b></h3>\r\n<span style=\"font-weight: 400;\">Understanding and navigating the intricacies of taxation is essential for individuals and businesses in Dubai. Finance consultants assist clients in optimizing their tax strategies, ensuring compliance with local tax regulations, and minimizing tax liabilities.</span>\r\n<h3><b> Wealth Management</b></h3>\r\n<span style=\"font-weight: 400;\">High-net-worth individuals and families often turn to finance consultants in Dubai for wealth management services. These experts offer tailored solutions for asset allocation, estate planning, and wealth preservation.</span>\r\n<h3><b> Business Financial Consulting</b></h3>\r\n<span style=\"font-weight: 400;\">For businesses in Dubai, finance consultants provide a range of services, including financial analysis, cost optimization, and financial restructuring. They help companies improve their financial performance and make informed decisions.</span>\r\n<h2><b>The Expertise of Finance Consultants</b></h2>\r\n<h3><b> Market Knowledge</b></h3>\r\n<span style=\"font-weight: 400;\">Finance consultants in Dubai possess in-depth knowledge of local and global financial markets. They stay updated on market trends, economic developments, and regulatory changes, allowing them to provide timely and relevant advice to their clients.</span>\r\n<h3><b> Regulatory Expertise</b></h3>\r\n<span style=\"font-weight: 400;\">Dubai has a well-defined regulatory framework for financial services. Finance consultants are well-versed in local regulations and compliance requirements, ensuring that their clients operate within the legal boundaries of the financial landscape.</span>\r\n<h3><b> Customized Solutions</b></h3>\r\n<span style=\"font-weight: 400;\">Every client\'s financial situation is unique. Finance consultants understand this and offer customized solutions tailored to individual and business needs. They take the time to assess financial goals and design strategies that align with them.</span>\r\n<h4><b>Conclusion: </b></h4>\r\n<span style=\"font-weight: 400;\">Finance consultants in Dubai are more than advisors; they are partners on the journey to financial success. Their expertise, market knowledge, and commitment to providing customized solutions make them invaluable assets to individuals and businesses in Dubai.</span>\r\n\r\n<span style=\"font-weight: 400;\">As Dubai continues to grow and evolve as a global financial center, the role of finance consultants becomes increasingly significant. Whether you are an entrepreneur seeking to optimize your business finances or an individual planning for a secure financial future, the guidance and expertise of finance consultants in Dubai can make all the difference. In this bustling city of opportunity, finance consultants serve as beacons of financial wisdom, helping clients navigate the complex world of finance with confidence and achieve their financial aspirations.</span>\r\n', 'Navigating Financial Success: The Role of Finance Consultants in Dubai', '', 'publish', 'closed', 'open', '', 'navigating-financial-success-the-role-of-finance-consultants-in-dubai', '', '', '2023-11-28 07:11:55', '2023-11-28 07:11:55', '', 0, 'https://onlineincshop.com/?p=397', 0, 'post', '', 0),
(398, 9467, '2023-11-28 07:11:49', '2023-11-28 07:11:49', '', 'headway-5QgIuuBxKwM-unsplash', '', 'inherit', '', 'closed', '', 'headway-5qgiuubxkwm-unsplash', '', '', '2023-11-28 07:11:49', '2023-11-28 07:11:49', '', 397, 'https://onlineincshop.com/wp-content/uploads/2023/11/headway-5QgIuuBxKwM-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(400, 9467, '2023-11-28 07:15:28', '2023-11-28 07:15:28', '<span style=\"font-weight: 400;\">Dubai, known for its towering skyscrapers, thriving business environment, and remarkable economic growth, has become a global hotspot for professionals in the finance and accounting fields. The city\'s dynamic financial landscape, tax-free income, and strategic location attract talent from all over the world. In this article, we will delve into the world of accounting and finance jobs in Dubai, exploring the diverse career opportunities this vibrant city has to offer.</span>\r\n<h2><b>The Expansive World of Finance and Accounting Jobs in Dubai</b></h2>\r\n<span style=\"font-weight: 400;\">Dubai\'s financial sector encompasses a wide range of career opportunities, catering to professionals with various skills and expertise. Whether you are an accountant, financial analyst, or an aspiring finance executive, Dubai has a role for you. Here are some key areas within the finance and accounting job market in Dubai:</span>\r\n<h2><b> Accounting Roles</b></h2>\r\n<span style=\"font-weight: 400;\">Dubai hosts a multitude of businesses, from startups to multinational corporations. As a result, there is a constant demand for accounting professionals. Roles such as financial accountant, management accountant, and tax accountant are abundant. These professionals play a crucial role in managing financial records, ensuring compliance, and providing financial insights to support business decisions.</span>\r\n<h2><b> Financial Analysis</b></h2>\r\n<span style=\"font-weight: 400;\">Financial analysts in Dubai are responsible for assessing the financial health of organizations, analyzing investment opportunities, and providing recommendations to investors. These roles are vital in Dubai\'s investment-focused environment, where sound financial analysis is the key to success.</span>\r\n<h2><b> Banking and Finance</b></h2>\r\n<span style=\"font-weight: 400;\">Dubai is home to a thriving banking sector with opportunities ranging from retail banking to investment banking. Professionals in these roles manage financial transactions, provide banking services, and offer investment advisory services to clients.</span>\r\n<h2><b> Auditing and Compliance</b></h2>\r\n<span style=\"font-weight: 400;\">With a strong emphasis on transparency and regulation, Dubai offers a plethora of opportunities for auditors and compliance professionals. These roles ensure that businesses adhere to legal and regulatory requirements, contributing to the city\'s reputation as a well-regulated financial hub.</span>\r\n<h2><b> Financial Planning and Wealth Management</b></h2>\r\n<span style=\"font-weight: 400;\">Dubai attracts high-net-worth individuals and expatriates, making it an ideal location for financial planners and wealth managers. These professionals assist clients in managing their finances, planning for retirement, and optimizing investments.</span>\r\n<h2><b>Why Dubai for Finance and Accounting Professionals?</b></h2>\r\n<span style=\"font-weight: 400;\">Dubai\'s appeal to finance and accounting professionals is multifaceted:</span>\r\n<h3><b>Tax Benefits: </b></h3>\r\n<span style=\"font-weight: 400;\"> Dubai offers tax-free income, allowing professionals to maximize their earnings.</span>\r\n<h3><b>Global Business Hub: </b></h3>\r\n<span style=\"font-weight: 400;\"> As a global business center, Dubai provides exposure to a wide range of industries and international clients.</span>\r\n<h3><b>Cultural Diversity:</b><span style=\"font-weight: 400;\">  </span></h3>\r\n<span style=\"font-weight: 400;\">The city\'s diverse population creates a multicultural work environment, fostering collaboration and cross-cultural experiences.</span>\r\n<h3><b>Economic Growth:</b><span style=\"font-weight: 400;\">  </span></h3>\r\n<span style=\"font-weight: 400;\">Dubai\'s economy continues to grow, leading to a constant demand for finance and accounting expertise.</span>\r\n<h4><b>Conclusion: </b></h4>\r\n<span style=\"font-weight: 400;\">Dubai\'s thriving financial sector presents a world of opportunities for accounting and finance professionals. Whether you are an entry-level accountant or a seasoned financial analyst, the city\'s dynamic business environment and tax benefits make it an attractive destination to build and advance your career. With its strategic location, Dubai serves as a bridge between East and West, offering an exciting and promising landscape for professionals looking to excel in the finance and accounting fields.</span>\r\n', 'Unlocking Opportunities: Accounting and Finance Jobs in Dubai', '', 'publish', 'closed', 'open', '', 'unlocking-opportunities-accounting-and-finance-jobs-in-dubai', '', '', '2023-11-28 07:15:28', '2023-11-28 07:15:28', '', 0, 'https://onlineincshop.com/?p=400', 0, 'post', '', 0),
(401, 9467, '2023-11-28 07:15:21', '2023-11-28 07:15:21', '', 'alexander-mils-lCPhGxs7pww-unsplash', '', 'inherit', '', 'closed', '', 'alexander-mils-lcphgxs7pww-unsplash', '', '', '2023-11-28 07:15:21', '2023-11-28 07:15:21', '', 400, 'https://onlineincshop.com/wp-content/uploads/2023/11/alexander-mils-lCPhGxs7pww-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(403, 9467, '2023-11-30 10:33:05', '2023-11-30 10:33:05', '<span style=\"font-weight: 400;\">In the realm of glitz and glamour, celebrities\' birthdays are not just personal milestones but grand events celebrated with style and extravagance. In this article, we take a peek behind the velvet curtains to explore the star-studded celebrations that mark the birthdays of our favorite icons.</span>\r\n<h2><b>The Extravagance of Celebrity Birthdays</b></h2>\r\n<h3><b>Red Carpet Affairs</b></h3>\r\n<span style=\"font-weight: 400;\">For many celebrities, birthdays are an opportunity to shine even brighter on the red carpet. Extravagant parties hosted at upscale venues become the talk of the town, adorned with A-list guests, luxurious décor, and, of course, the signature glamorous attire that graces the red carpet.</span>\r\n<h3><b>Intimate Gatherings</b></h3>\r\n<span style=\"font-weight: 400;\">While some celebrities prefer the spotlight, others opt for more intimate gatherings with close friends and family. These private celebrations provide a moment of respite from the public eye, allowing celebrities to enjoy the warmth of personal connections on their special day.</span>\r\n<h3><b>Notable Celebrity Birthday Celebrations</b></h3>\r\n<h3><b> Oprah Winfrey\'s Legendary Bash</b></h3>\r\n<span style=\"font-weight: 400;\">Oprah Winfrey, the media mogul, is known for throwing legendary birthday bashes. Her celebrations often feature surprise performances, star-studded guest lists, and thoughtful touches that reflect her appreciation for those in attendance.</span>\r\n<h3><b> Beyoncé\'s Annual Extravaganza</b></h3>\r\n<span style=\"font-weight: 400;\">Queen Bey doesn\'t hold back when it comes to celebrating her birthday. From luxurious vacations to exclusive parties, Beyoncé\'s birthdays are a spectacle, often shared with fans through glimpses on her social media platforms.</span>\r\n<h3><b> Ellen DeGeneres\' Acts of Kindness</b></h3>\r\n<span style=\"font-weight: 400;\">Ellen DeGeneres takes a unique approach to her birthdays by incorporating acts of kindness. Instead of extravagant parties, she often engages in charitable activities, encouraging her fans to join in and make a positive impact on the world.</span>\r\n<h3><b>Social Media Spotlight</b></h3>\r\n<h2><b>Birthday Wishes from Fans</b></h2>\r\n<span style=\"font-weight: 400;\">Social media has transformed the way celebrities and fans connect during birthdays. Fans flood social platforms with heartfelt messages, creating virtual celebrations that further amplify the joy surrounding a celebrity\'s special day.</span>\r\n<h2><b>Celebrity Posts and Tributes</b></h2>\r\n<span style=\"font-weight: 400;\">Celebrities themselves take to social media to share glimpses of their birthday celebrations. From candid moments to glamorous photos, these posts offer fans an exclusive peek into the festivities.</span>\r\n<h2><b>The Evolution of Birthday Gifts</b></h2>\r\n<h3><b>Lavish Presents</b></h3>\r\n<span style=\"font-weight: 400;\">Celebrity birthdays are often marked by the exchange of lavish gifts. From luxury cars to designer accessories, the gifts exchanged among celebrities reflect their opulent lifestyles.</span>\r\n<h3><b>Charitable Contributions</b></h3>\r\n<span style=\"font-weight: 400;\">In recent years, some celebrities have shifted the focus from receiving gifts to making a positive impact. Charitable contributions and fundraising efforts on birthdays have become a meaningful trend, showcasing a desire to give back to the community.</span>\r\n<h2><b>The Fans\' Role in Celebrations</b></h2>\r\n<h3><b>Fan Projects and Tributes</b></h3>\r\n<span style=\"font-weight: 400;\">Dedicated fan bases often come together to organize special projects and tributes for their favorite celebrities. These initiatives range from billboard campaigns to online fundraisers, demonstrating the depth of admiration fans have for their idols.</span>\r\n<h3><b>Trending Hashtags</b></h3>\r\n<span style=\"font-weight: 400;\">On the big day, fans unite on social media platforms, creating trending hashtags to celebrate the occasion. These online celebrations provide a global platform for fans to express their love and admiration for the celebrity.</span>\r\n<h4><b>Conclusion</b></h4>\r\n<span style=\"font-weight: 400;\">In conclusion, celebrities\' birthdays are not just personal affairs; they are dazzling spectacles that capture the essence of fame and adoration. Whether through opulent parties, intimate gatherings, or acts of kindness, these celebrations offer a glimpse into the lives of the stars we admire. As fans join in the festivities through social media and heartfelt gestures, the magic of celebrity birthdays continues to enchant and unite admirers worldwide.</span>\r\n', 'Stars Aligned: Celebrating Celebrities\' Birthdays – A Glimpse into the Glamorous Occasions', '', 'publish', 'closed', 'open', '', 'stars-aligned-celebrating-celebrities-birthdays-a-glimpse-into-the-glamorous-occasions', '', '', '2023-11-30 10:33:05', '2023-11-30 10:33:05', '', 0, 'https://onlineincshop.com/?p=403', 0, 'post', '', 0),
(404, 9467, '2023-11-30 10:32:50', '2023-11-30 10:32:50', '', 'chris-benson-IV17FOQnwcE-unsplash', '', 'inherit', '', 'closed', '', 'chris-benson-iv17foqnwce-unsplash', '', '', '2023-11-30 10:32:50', '2023-11-30 10:32:50', '', 403, 'https://onlineincshop.com/wp-content/uploads/2023/11/chris-benson-IV17FOQnwcE-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(406, 9467, '2023-11-30 10:41:30', '2023-11-30 10:41:30', '<span style=\"font-weight: 400;\">Dubai, the City of Gold, is not only a haven for luxury and extravagance but also a culinary paradise that attracts celebrities from around the world. In this article, we unveil the culinary gems that grace Dubai\'s dining scene – the celebrity-owned restaurants that offer a taste of the glamorous life.</span>\r\n<h2><b>The Allure of Celebrity Restaurants in Dubai</b></h2>\r\n<h3><b>Opulent Settings</b></h3>\r\n<span style=\"font-weight: 400;\">Celebrity-owned restaurants in Dubai are known not just for their exquisite cuisine but also for their opulent settings. Lavish interiors, stunning views, and carefully curated atmospheres contribute to a dining experience that is as much about the ambiance as it is about the food.</span>\r\n<h3><b>Gourmet Delights</b></h3>\r\n<span style=\"font-weight: 400;\">Renowned chefs and celebrities curate the menus at these establishments, offering gourmet delights that tantalize the taste buds. From international cuisine to innovative fusions, the culinary offerings are as diverse as the stars themselves.</span>\r\n<h2><b>Top Celebrity Restaurants in Dubai</b></h2>\r\n<h3><b>  Nusr-Et Steakhouse by Salt Bae</b></h3>\r\n<span style=\"font-weight: 400;\">Owned by the infamous Salt Bae, Nusr-Et Steakhouse has become a global sensation. This celebrity-owned restaurant in Dubai is renowned for its theatrical presentation of succulent steaks and a dining experience that blends exquisite flavors with entertainment.</span>\r\n<h3><b>  Zuma Dubai by Chef Rainer Becker</b></h3>\r\n<span style=\"font-weight: 400;\">Zuma Dubai, owned by Chef Rainer Becker, is a contemporary Japanese izakaya-style restaurant that has earned global acclaim. With its chic ambiance and a menu featuring modern Japanese dishes, Zuma is a favorite among discerning diners.</span>\r\n<h3><b>  Social by Heinz Beck at Waldorf Astoria</b></h3>\r\n<span style=\"font-weight: 400;\">Michelin-starred Chef Heinz Beck brings his culinary expertise to Dubai with Social, an upscale restaurant at the Waldorf Astoria. The menu features Italian-inspired dishes, combining classic flavors with modern techniques to create an unparalleled dining experience.</span>\r\n<h3><b> Gordon Ramsay Bar &amp; Grill</b></h3>\r\n<span style=\"font-weight: 400;\">Renowned chef Gordon Ramsay brings his culinary prowess to Dubai with the Gordon Ramsay Bar &amp; Grill. This celebrity-owned establishment offers a menu of classic British and American dishes, ensuring a dining experience that reflects Chef Ramsay\'s commitment to excellence.</span>\r\n<h2><b>Celebrities as Restaurateurs</b></h2>\r\n<h3><b>Global Appeal</b></h3>\r\n<span style=\"font-weight: 400;\">Celebrities venturing into the restaurant business in Dubai is not only a testament to the city\'s global appeal but also a reflection of its status as a culinary destination. These establishments attract both locals and international visitors seeking a taste of stardom.</span>\r\n<h3><b>Personal Touch</b></h3>\r\n<span style=\"font-weight: 400;\">Many celebrity-owned restaurants in Dubai exude a personal touch, reflecting the passion and preferences of the celebrity restaurateurs. From menu curation to design elements, these establishments often bear the distinctive mark of their famous owners.</span>\r\n<h2><b>Culinary Events and Experiences</b></h2>\r\n<h3><b>Exclusive Events</b></h3>\r\n<span style=\"font-weight: 400;\">Celebrity-owned restaurants in Dubai frequently host exclusive events, from themed nights to private gatherings. These events provide patrons with an opportunity to experience the culinary expertise of celebrity chefs in a more intimate setting.</span>\r\n<h3><b>Culinary Experiences</b></h3>\r\n<span style=\"font-weight: 400;\">Some celebrity-owned restaurants offer curated culinary experiences, allowing diners to embark on a gastronomic journey led by the celebrity chef. These experiences often include chef\'s tables, tasting menus, and behind-the-scenes insights into the culinary world.</span>\r\n<h2><b>The Dubai Dining Experience</b></h2>\r\n<h3><b>A Fusion of Cultures</b></h3>\r\n<span style=\"font-weight: 400;\">Dubai\'s dining scene is a vibrant fusion of cultures, and celebrity-owned restaurants contribute to this diversity. From Middle Eastern influences to international flavors, these establishments cater to the cosmopolitan tastes of Dubai\'s diverse population.</span>\r\n<h3><b>Global Recognition</b></h3>\r\n<span style=\"font-weight: 400;\">Dubai\'s celebrity-owned restaurants have garnered global recognition, contributing to the city\'s reputation as a culinary hotspot. The international acclaim not only draws food enthusiasts but also positions Dubai as a destination where the stars come to dine.</span>\r\n<h4><b>Conclusion</b></h4>\r\n<span style=\"font-weight: 400;\">In conclusion, dining in Dubai goes beyond mere sustenance – it\'s a luxurious experience curated by celebrity chefs and restaurateurs. From the theatrical presentations at Nusr-Et Steakhouse to the modern Japanese delights at Zuma, these celebrity-owned restaurants elevate the Dubai dining scene to new heights. Join us in savoring the star-studded culinary journey that awaits in the City of Gold.</span>\r\n', 'A Culinary Affair with the Stars: Celebrity Restaurants in Dubai', '', 'publish', 'closed', 'open', '', 'a-culinary-affair-with-the-stars-celebrity-restaurants-in-dubai', '', '', '2023-11-30 10:41:30', '2023-11-30 10:41:30', '', 0, 'https://onlineincshop.com/?p=406', 0, 'post', '', 0),
(407, 9467, '2023-11-30 10:41:20', '2023-11-30 10:41:20', '', 'priscilla-du-preez-W3SEyZODn8U-unsplash', '', 'inherit', '', 'closed', '', 'priscilla-du-preez-w3seyzodn8u-unsplash', '', '', '2023-11-30 10:41:20', '2023-11-30 10:41:20', '', 406, 'https://onlineincshop.com/wp-content/uploads/2023/11/priscilla-du-preez-W3SEyZODn8U-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(409, 9467, '2023-11-30 10:50:35', '2023-11-30 10:50:35', '<span style=\"font-weight: 400;\">In the fast-paced world of fame and fortune, celebrities news serves as a captivating window into the lives of the rich and famous. In this article, we delve into the allure of celebrities news, providing an avenue for readers to stay abreast of the latest happenings in the dazzling realm of stardom.</span>\r\n<h2><b>The Ubiquity of Celebrities News</b></h2>\r\n<h3><b>Real-Time Updates</b></h3>\r\n<span style=\"font-weight: 400;\">In the digital age, celebrities news unfolds in real-time, offering instant access to the latest events, scandals, and triumphs in the lives of celebrities. From red carpet appearances to social media posts, the news cycle never sleeps.</span>\r\n<h3><b>Social Media Presence</b></h3>\r\n<span style=\"font-weight: 400;\">Celebrities actively engage with their audience through social media, making platforms like Instagram, Twitter, and TikTok crucial sources for breaking news. Fans can directly follow their favorite stars and receive updates on their activities and projects.</span>\r\n<h2><b>Categories of Celebrities News</b></h2>\r\n<h3><b>Entertainment Events</b></h3>\r\n<span style=\"font-weight: 400;\">Coverage of high-profile events such as award shows, film premieres, and fashion weeks dominates celebrities news. Fans get an up-close look at their favorite stars walking the red carpet and making style statements.</span>\r\n<h3><b>Personal Milestones</b></h3>\r\n<span style=\"font-weight: 400;\">News about celebrities\' personal lives, including weddings, pregnancies, and adoptions, often takes center stage. These personal milestones offer a more intimate glimpse into the lives of public figures.</span>\r\n<h3><b>Career Highlights</b></h3>\r\n<span style=\"font-weight: 400;\">From album releases to movie premieres, celebrities news also highlights career milestones. Fans eagerly anticipate updates on upcoming projects and celebrate the successes of their favorite stars.</span>\r\n<h2><b>The Scandalous Side</b></h2>\r\n<h3><b>Controversies</b></h3>\r\n<span style=\"font-weight: 400;\">While not always glamorous, controversies make headlines in the world of celebrities news. Whether it\'s a public feud, legal issues, or unexpected revelations, scandals add an element of drama to the narrative.</span>\r\n<h3><b>Paparazzi Shots</b></h3>\r\n<span style=\"font-weight: 400;\">Paparazzi shots capture unguarded moments, providing a candid perspective on celebrities\' lives. While some stars embrace the attention, others navigate the challenges of constant surveillance.</span>\r\n<h2><b>The Evolution of Celebrities News Platforms</b></h2>\r\n<h3><b>Traditional Media Outlets</b></h3>\r\n<span style=\"font-weight: 400;\">Historically, celebrities news was primarily disseminated through traditional media outlets like newspapers, magazines, and television. Today, these platforms continue to play a significant role in delivering news to a wide audience.</span>\r\n<h3><b>Digital Platforms</b></h3>\r\n<span style=\"font-weight: 400;\">The rise of digital platforms has revolutionized the way celebrities news is consumed. Online publications, entertainment websites, and social media platforms have become primary sources for instantaneous updates and in-depth features.</span>\r\n<h3><b>The Fan Connection</b></h3>\r\n<h2><b>Fandom Culture</b></h2>\r\n<span style=\"font-weight: 400;\">Celebrities news fosters a sense of community among fans. Fandom culture thrives on the shared excitement, discussions, and fan theories that arise from the latest news about beloved celebrities.</span>\r\n<h2><b>Celebrity Interactions</b></h2>\r\n<span style=\"font-weight: 400;\">Social media has bridged the gap between celebrities and their fans. Direct interactions, live Q&amp;A sessions, and fan shoutouts contribute to a more connected and engaged fan base.</span>\r\n<h2><b>The Impact of Celebrities News</b></h2>\r\n<h3><b>Influence on Pop Culture</b></h3>\r\n<span style=\"font-weight: 400;\">Celebrities news has a profound impact on pop culture, influencing trends, fashion choices, and even language. What celebrities wear, say, and do often sets the tone for broader societal conversations.</span>\r\n<h3><b>Philanthropy and Advocacy</b></h3>\r\n<span style=\"font-weight: 400;\">News about celebrities\' philanthropic endeavors and advocacy work sheds light on social issues. Many celebrities use their platforms to raise awareness and contribute to meaningful causes.</span>\r\n<h4><b>Conclusion</b></h4>\r\n<span style=\"font-weight: 400;\">In conclusion, celebrities news is more than just entertainment; it\'s a cultural phenomenon that shapes conversations, influences trends, and connects fans with their favorite stars. From the glitz and glamour of red carpet events to the candid moments captured by paparazzi, the world of celebrities news offers a captivating glimpse into the lives of those who live in the spotlight.</span>\r\n', 'Celeb Chronicles: Staying Updated with the Latest Celebrities News', '', 'publish', 'closed', 'open', '', 'celeb-chronicles-staying-updated-with-the-latest-celebrities-news', '', '', '2023-11-30 10:50:35', '2023-11-30 10:50:35', '', 0, 'https://onlineincshop.com/?p=409', 0, 'post', '', 0),
(410, 9467, '2023-11-30 10:50:17', '2023-11-30 10:50:17', '', 'absolutvision-WYd_PkCa1BY-unsplash', '', 'inherit', '', 'closed', '', 'absolutvision-wyd_pkca1by-unsplash', '', '', '2023-11-30 10:50:17', '2023-11-30 10:50:17', '', 409, 'https://onlineincshop.com/wp-content/uploads/2023/11/absolutvision-WYd_PkCa1BY-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(412, 9467, '2023-11-30 11:00:15', '2023-11-30 11:00:15', '<span style=\"font-weight: 400;\">In the heart of the United Arab Emirates (UAE), the culinary landscape is a testament to the rich cultural heritage that has shaped the region for centuries. This article delves into the delectable world of traditional UAE food, where flavorsome dishes carry the essence of tradition and community.</span>\r\n<h2><b>The Essence of Traditional UAE Food</b></h2>\r\n<h3><b>Cultural Diversity</b></h3>\r\n<span style=\"font-weight: 400;\">Traditional UAE food is a reflection of the country\'s cultural diversity, drawing inspiration from the Arabian Peninsula\'s nomadic Bedouin traditions and the influences of Persian, Indian, and Levantine cuisines. This fusion of flavors has created a culinary tapestry that caters to a variety of palates.</span>\r\n<h3><b>Local Ingredients</b></h3>\r\n<span style=\"font-weight: 400;\">One of the defining characteristics of traditional UAE food is the use of local ingredients that thrive in the arid climate. From dates and camel meat to aromatic herbs and spices, these ingredients contribute to the unique and authentic flavors of UAE cuisine.</span>\r\n<h2><b>Popular Traditional UAE Dishes</b></h2>\r\n<h3><b> Al Harees</b></h3>\r\n<span style=\"font-weight: 400;\">Considered the national dish of the UAE, Al Harees is a savory dish prepared during special occasions such as Eid. It consists of a slow-cooked blend of wheat, meat (usually chicken or lamb), and a pinch of salt, resulting in a dish with a smooth, porridge-like consistency.</span>\r\n<h3><b> Al Majboos</b></h3>\r\n<span style=\"font-weight: 400;\">Al Majboos, also known as Kabsa, is a spiced rice dish that typically features meat, such as chicken, lamb, or fish. The rice is seasoned with a blend of aromatic spices, including cardamom, cinnamon, and black lime, giving the dish its distinctive flavor.</span>\r\n<h3><b> Luqaimat</b></h3>\r\n<span style=\"font-weight: 400;\">For those with a sweet tooth, Luqaimat is a popular dessert enjoyed during festive occasions. These bite-sized dumplings are deep-fried until golden brown and then drizzled with date syrup or honey, offering a delightful combination of crunchy exteriors and soft, sweet interiors.</span>\r\n<h3><b> Balaleet</b></h3>\r\n<span style=\"font-weight: 400;\">Balaleet is a sweet and savory breakfast dish that combines vermicelli noodles with eggs, saffron, and cardamom. Topped with a generous sprinkle of sugar, it offers a unique blend of flavors that satisfies both sweet and savory cravings.</span>\r\n<h2><b>Traditional Culinary Techniques</b></h2>\r\n<h3><b> Slow Cooking</b></h3>\r\n<span style=\"font-weight: 400;\">Many traditional UAE dishes involve slow cooking, a technique that allows the flavors to meld and intensify over time. Al Harees and Al Majboos are prime examples of dishes that benefit from this patient culinary approach.</span>\r\n<h3><b>Preservation Methods</b></h3>\r\n<span style=\"font-weight: 400;\">Given the region\'s history of nomadic lifestyles, traditional UAE food often incorporates preservation methods such as sun-drying and pickling. These techniques allow for the storage of ingredients, ensuring a year-round supply of flavorful components.</span>\r\n<h2><b>Cultural Significance of Traditional UAE Food</b></h2>\r\n<h3><b> Community Bonding</b></h3>\r\n<span style=\"font-weight: 400;\">Traditional UAE food plays a central role in fostering community bonds. Meals are often shared communally, bringing family and friends together to partake in the joy of sharing delicious dishes.</span>\r\n<h3><b> Celebratory Occasions</b></h3>\r\n<span style=\"font-weight: 400;\">Many traditional dishes are associated with celebratory occasions, whether religious festivals, weddings, or other significant events. The preparation and sharing of these dishes add an extra layer of meaning to special moments.</span>\r\n<h2><b>Modern Interpretations and Global Influence</b></h2>\r\n<h3><b>Fusion Cuisine</b></h3>\r\n<span style=\"font-weight: 400;\">While preserving its rich heritage, the UAE\'s culinary scene has evolved to embrace modern interpretations of traditional dishes. Chefs often infuse traditional flavors into contemporary dishes, creating a fusion cuisine that resonates with both locals and international visitors.</span>\r\n<h3><b>Global Influence</b></h3>\r\n<span style=\"font-weight: 400;\">As the UAE continues to position itself as a global hub, traditional UAE food has found its way onto international menus. Emirati restaurants around the world showcase the authenticity and flavors of UAE cuisine, introducing global audiences to the nation\'s culinary treasures.</span>\r\n<h4><b>Conclusion</b></h4>\r\n<span style=\"font-weight: 400;\">In conclusion, traditional UAE food is a celebration of cultural diversity, local ingredients, and time-honored culinary techniques. From savory delights like Al Harees and Al Majboos to sweet treats like Luqaimat, these dishes encapsulate the essence of the UAE\'s rich heritage. Join us in savoring the flavors that tell a story of tradition, community, and the enduring love for delicious cuisine.</span>\r\n', 'Savoring Tradition: Exploring the Culinary Riches of Traditional UAE Food', '', 'publish', 'closed', 'open', '', 'savoring-tradition-exploring-the-culinary-riches-of-traditional-uae-food', '', '', '2023-11-30 11:00:15', '2023-11-30 11:00:15', '', 0, 'https://onlineincshop.com/?p=412', 0, 'post', '', 0),
(413, 9467, '2023-11-30 10:59:53', '2023-11-30 10:59:53', '', 'louis-hansel-wTJcMKnd1ls-unsplash', '', 'inherit', '', 'closed', '', 'louis-hansel-wtjcmknd1ls-unsplash', '', '', '2023-11-30 10:59:53', '2023-11-30 10:59:53', '', 412, 'https://onlineincshop.com/wp-content/uploads/2023/11/louis-hansel-wTJcMKnd1ls-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(415, 9467, '2023-11-30 11:13:59', '2023-11-30 11:13:59', '<span style=\"font-weight: 400;\">In the heart of the Middle East, the United Arab Emirates (UAE) stands as a gastronomic hub, boasting a dynamic food and beverage industry that caters to diverse tastes. This article unveils the culinary titans – the top food and beverage companies in the UAE – and explores their contributions to the region\'s thriving gastronomic culture.</span>\r\n<h2><b>The UAE Culinary Landscape</b></h2>\r\n<h3><b>Rich Diversity</b></h3>\r\n<span style=\"font-weight: 400;\">The UAE\'s culinary scene reflects the nation\'s rich cultural diversity, with influences from Middle Eastern, Asian, and Western cuisines. Food and beverage companies play a pivotal role in translating this diversity into a vibrant tapestry of flavors and culinary experiences.</span>\r\n<h3><b>Innovative Concepts</b></h3>\r\n<span style=\"font-weight: 400;\">Innovation is a hallmark of the UAE\'s food and beverage industry. From avant-garde dining concepts to cutting-edge culinary technologies, companies continually push boundaries, offering residents and visitors alike a taste of the extraordinary.</span>\r\n<h2><b>Leading Food and Beverage Companies in the </b></h2>\r\n<h3><b>UAE</b><b style=\"font-size: 22px;\">Emirates Hospitality</b></h3>\r\n<span style=\"font-weight: 400;\">Emirates Hospitality is a prominent player in the UAE\'s F&amp;B sector, managing a diverse portfolio of restaurants and catering services. With a commitment to quality and customer satisfaction, Emirates Hospitality is synonymous with culinary excellence.</span>\r\n<h3><b> Majid Al Futtaim Ventures</b></h3>\r\n<span style=\"font-weight: 400;\">Majid Al Futtaim Ventures oversees a range of food and beverage outlets, including popular brands like Carrefour, VOX Cinemas, and Magic Planet. Their diverse offerings cater to a broad audience, combining entertainment with exceptional dining experiences.</span>\r\n<h3><b> The First Group Hospitality</b></h3>\r\n<span style=\"font-weight: 400;\">The First Group Hospitality is recognized for its innovative approach to hospitality and F&amp;B ventures. With a focus on delivering unique dining experiences, their restaurants and lounges contribute to the vibrancy of the UAE\'s culinary landscape.</span>\r\n<h3><b> Emaar Hospitality Group</b></h3>\r\n<span style=\"font-weight: 400;\">Emaar Hospitality Group, a subsidiary of Emaar Properties, is a key player in the UAE\'s hospitality sector. With a portfolio of premium hotels and a variety of dining establishments, Emaar Hospitality Group is dedicated to providing unparalleled culinary experiences.</span>\r\n<h2><b>Culinary Trends and Concepts</b></h2>\r\n<h3><b>Fusion Cuisine</b></h3>\r\n<span style=\"font-weight: 400;\">Many F&amp;B companies in the UAE embrace fusion cuisine, blending traditional flavors with innovative twists. This approach caters to the diverse tastes of the multicultural population and attracts global food enthusiasts.</span>\r\n<h3><b>Health and Wellness</b></h3>\r\n<span style=\"font-weight: 400;\">A rising trend in the UAE\'s F&amp;B industry is a focus on health and wellness. Companies are introducing nutritious and balanced menu options, catering to the growing demand for healthier dining choices among residents and visitors.</span>\r\n<h2><b>Sustainability Initiatives</b></h2>\r\n<h3><b>Eco-Friendly Practices</b></h3>\r\n<span style=\"font-weight: 400;\">Several food and beverage companies in the UAE are championing sustainability. From sourcing local, organic ingredients to implementing eco-friendly packaging, these initiatives align with global efforts to promote environmentally conscious dining.</span>\r\n<h3><b>Food Waste Reduction</b></h3>\r\n<span style=\"font-weight: 400;\">Efforts to minimize food waste are gaining traction, with F&amp;B companies implementing practices such as composting, donation programs, and innovative cooking techniques to maximize the use of ingredients.</span>\r\n<h2><b>Culinary Events and Festivals</b></h2>\r\n<h3><b>Dubai Food Festival</b></h3>\r\n<span style=\"font-weight: 400;\">Dubai Food Festival stands as a testament to the UAE\'s commitment to celebrating its culinary prowess. This annual event showcases the talents of local and international chefs, highlighting the diversity and innovation within the country\'s food and beverage scene.</span>\r\n<h3><b>Taste of Abu Dhabi</b></h3>\r\n<span style=\"font-weight: 400;\">Taste of Abu Dhabi is another notable culinary event that brings together the UAE\'s top restaurants, chefs, and F&amp;B companies. The festival provides a platform for food enthusiasts to savor an array of flavors while experiencing the latest trends in the industry.</span>\r\n<h4><b>Conclusion</b></h4>\r\n<span style=\"font-weight: 400;\">In conclusion, the UAE\'s food and beverage companies play a crucial role in shaping the nation\'s culinary identity. From established giants like Emaar Hospitality Group to innovative players like The First Group Hospitality, these companies contribute to the richness and diversity that define the UAE\'s gastronomic landscape. As culinary trends evolve and sustainability takes center stage, the future promises even more exciting developments in the Emirates\' food and beverage industry.</span>\r\n', 'Savoring Success: A Glimpse into the Culinary Titans – Food and Beverage Companies in the UAE', '', 'publish', 'closed', 'open', '', 'savoring-success-a-glimpse-into-the-culinary-titans-food-and-beverage-companies-in-the-uae', '', '', '2023-11-30 11:13:59', '2023-11-30 11:13:59', '', 0, 'https://onlineincshop.com/?p=415', 0, 'post', '', 0),
(416, 9467, '2023-11-30 11:13:47', '2023-11-30 11:13:47', '', 'jack-brown-Px_vgkwCJFI-unsplash', '', 'inherit', '', 'closed', '', 'jack-brown-px_vgkwcjfi-unsplash', '', '', '2023-11-30 11:13:47', '2023-11-30 11:13:47', '', 415, 'https://onlineincshop.com/wp-content/uploads/2023/11/jack-brown-Px_vgkwCJFI-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(418, 9467, '2023-11-30 11:18:38', '2023-11-30 11:18:38', '<span style=\"font-weight: 400;\">In the bustling cities of the United Arab Emirates (UAE), where time is of the essence, fast food stands as a culinary cornerstone offering quick, delicious solutions for those on the go. This article delves into the world of fast food in the UAE, exploring the diverse options that cater to the diverse tastes and fast-paced lifestyle of the region.</span>\r\n<h2><b>The UAE\'s Fast Food Scene</b></h2>\r\n<h3><b>Culinary Diversity</b></h3>\r\n<span style=\"font-weight: 400;\">The fast food scene in the UAE mirrors the nation\'s cultural diversity, offering a mix of international chains and local flavors. From familiar global brands to unique local interpretations, fast food caters to the varied tastes of the multicultural population.</span>\r\n<h3><b>Quick and Convenient</b></h3>\r\n<span style=\"font-weight: 400;\">Fast food\'s appeal lies in its speed and convenience, making it a popular choice for those looking for a quick bite between work commitments, during shopping sprees, or while exploring the vibrant streets of the UAE\'s cities.</span>\r\n<h2><b>International Fast Food Chains in the UAE</b></h2>\r\n<h3><b> McDonald\'s</b></h3>\r\n<span style=\"font-weight: 400;\">As a global icon, McDonald\'s has established a significant presence in the UAE. The menu caters to local preferences, offering a blend of international favorites and region-specific creations, such as the McArabia.</span>\r\n<h3><b> KFC</b></h3>\r\n<span style=\"font-weight: 400;\">Kentucky Fried Chicken (KFC) is a fast-food giant known for its crispy fried chicken. In the UAE, KFC maintains its reputation for finger-licking goodness, with outlets serving a range of chicken-centric meals.</span>\r\n<h3><b> Subway</b></h3>\r\n<span style=\"font-weight: 400;\">For those seeking a healthier fast-food option, Subway provides customizable sandwiches and salads. With a focus on fresh ingredients, Subway appeals to those looking for a quick and wholesome meal.</span>\r\n<h3><b> Pizza Hut</b></h3>\r\n<span style=\"font-weight: 400;\">Pizza Hut brings its renowned pizzas to the UAE, offering a variety of toppings and crust options. The pizza chain caters to diverse palates, combining classic favorites with unique regional twists.</span>\r\n<h2><b>Local Fast Food Gems</b></h2>\r\n<h3><b> Shawarma Stands</b></h3>\r\n<span style=\"font-weight: 400;\">Shawarma, a Middle Eastern favorite, is readily available at local fast food stands across the UAE. These establishments serve up savory shawarma wraps, featuring thinly sliced meat, fresh vegetables, and flavorful sauces.</span>\r\n<h3><b> Falafel Joints</b></h3>\r\n<span style=\"font-weight: 400;\">Falafel, a popular vegetarian option, is a staple in local fast food. Crispy and flavorful chickpea patties are often served in wraps or as part of platters, offering a satisfying and quick dining experience.</span>\r\n<h3><b>Fast Food Innovations</b></h3>\r\n<h2><b>Technology Integration</b></h2>\r\n<span style=\"font-weight: 400;\">Fast food establishments in the UAE are embracing technology for enhanced convenience. Mobile apps, online ordering, and self-service kiosks are becoming common features, streamlining the ordering process for customers.</span>\r\n<h3><b>Health-Conscious Options</b></h3>\r\n<span style=\"font-weight: 400;\">In response to evolving consumer preferences, many fast food chains in the UAE are expanding their menus to include healthier options. From salads to grilled alternatives, these choices cater to those seeking nutritious fast food alternatives.</span>\r\n<h2><b>Street Food Culture</b></h2>\r\n<h3><b>Food Trucks</b></h3>\r\n<span style=\"font-weight: 400;\">The UAE\'s street food culture includes a growing number of food trucks offering diverse culinary experiences. From gourmet burgers to artisanal ice cream, these mobile eateries bring a touch of innovation to the fast food landscape.</span>\r\n<h3><b>Cultural Fusion</b></h3>\r\n<span style=\"font-weight: 400;\">Street food vendors often fuse traditional flavors with global influences, creating a unique culinary experience. The streets of the UAE come alive with the aroma of shawarma, falafel, and international street food delights.</span>\r\n<h4><b>Conclusion</b></h4>\r\n<span style=\"font-weight: 400;\">In conclusion, fast food in the UAE is a testament to the region\'s culinary dynamism, offering a blend of international favorites and local gems. From the speed and efficiency of global chains like McDonald\'s to the rich flavors of local shawarma stands, fast food caters to the diverse tastes and fast-paced lifestyles of residents and visitors alike. As the UAE continues to evolve, so too does its fast food scene, promising even more culinary delights for those seeking bite-sized bliss on the go.</span>\r\n\r\n&nbsp;\r\n', 'Bite-sized Bliss: Exploring the Quick Culinary Delights of Fast Food in the UAE', '', 'publish', 'closed', 'open', '', 'bite-sized-bliss-exploring-the-quick-culinary-delights-of-fast-food-in-the-uae', '', '', '2023-11-30 11:18:38', '2023-11-30 11:18:38', '', 0, 'https://onlineincshop.com/?p=418', 0, 'post', '', 0),
(419, 9467, '2023-11-30 11:18:22', '2023-11-30 11:18:22', '', 'pablo-merchan-montes-0nT08Z-MhiE-unsplash', '', 'inherit', '', 'closed', '', 'pablo-merchan-montes-0nt08z-mhie-unsplash', '', '', '2023-11-30 11:18:22', '2023-11-30 11:18:22', '', 418, 'https://onlineincshop.com/wp-content/uploads/2023/11/pablo-merchan-montes-0nT08Z-MhiE-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(421, 9467, '2023-11-30 11:23:19', '2023-11-30 11:23:19', '<span style=\"font-weight: 400;\">In the fast-evolving landscape of the United Arab Emirates (UAE), the demand for Information Technology (IT) professionals is surging, creating a wealth of opportunities for those seeking exciting and rewarding careers. This article sheds light on the expansive realm of IT jobs in the UAE, showcasing the diverse roles available and the dynamic nature of the technology sector.</span>\r\n\r\n<b>The Pinnacle of Innovation</b>\r\n\r\n<b>Booming Tech Industry</b>\r\n\r\n<span style=\"font-weight: 400;\">The UAE stands at the forefront of technological advancements, with a thriving tech industry that encompasses diverse sectors, including finance, healthcare, and government services. This boom has led to an increased demand for skilled IT professionals to drive innovation and digital transformation.</span>\r\n\r\n<b>Smart City Initiatives</b>\r\n\r\n<span style=\"font-weight: 400;\">As the UAE embarks on ambitious Smart City initiatives, technology becomes integral to the fabric of urban development. This commitment to smart technologies creates a multitude of IT roles focused on enhancing efficiency, connectivity, and sustainability.</span>\r\n\r\n<b>Key Information Technology Jobs in the UAE</b>\r\n<ol>\r\n 	<li><b> Cybersecurity Analysts</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">In an era of digital connectivity, the role of cybersecurity analysts is pivotal. Protecting sensitive information and securing digital infrastructures, these professionals play a critical role in safeguarding organizations from cyber threats.</span>\r\n<ol start=\"2\">\r\n 	<li><b> Software Developers</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">Software developers are in high demand, driving innovation through the creation of applications, systems, and platforms. From mobile apps to enterprise software, developers contribute to shaping the digital landscape of the UAE.</span>\r\n<ol start=\"3\">\r\n 	<li><b> Data Scientists</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">With the increasing importance of data-driven decision-making, data scientists are sought after to extract meaningful insights from vast datasets. Their analytical skills are crucial for businesses aiming to leverage big data for strategic purposes.</span>\r\n<ol start=\"4\">\r\n 	<li><b> IT Project Managers</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">The execution of complex technology projects requires skilled IT project managers. From planning to execution, these professionals ensure that IT initiatives align with organizational goals and are completed within specified timelines and budgets.</span>\r\n\r\n<b>The Diversity of IT Roles</b>\r\n\r\n<b>Emerging Technologies</b>\r\n\r\n<span style=\"font-weight: 400;\">The UAE\'s focus on emerging technologies, such as artificial intelligence (AI), blockchain, and the Internet of Things (IoT), opens up a plethora of roles for IT professionals. Opportunities to work on cutting-edge projects abound, driving continuous learning and professional growth.</span>\r\n\r\n<b>Cloud Computing Specialists</b>\r\n\r\n<span style=\"font-weight: 400;\">As organizations migrate to cloud-based infrastructures, the demand for cloud computing specialists is on the rise. These experts manage and optimize cloud environments, ensuring seamless and secure operations for businesses.</span>\r\n\r\n<b>Qualifications and Skill Sets</b>\r\n\r\n<b>Education and Certifications</b>\r\n\r\n<span style=\"font-weight: 400;\">Qualifications in computer science, information technology, or related fields are commonly sought in IT professionals. Additionally, industry-recognized certifications enhance the marketability of candidates, with certifications from vendors like Cisco, Microsoft, and AWS being particularly valuable.</span>\r\n\r\n<b>Key Skills</b>\r\n\r\n<span style=\"font-weight: 400;\">Employers in the UAE seek IT professionals with a robust skill set, including proficiency in programming languages, cybersecurity knowledge, data analytics expertise, and project management skills. Effective communication and adaptability are also highly valued in this dynamic field.</span>\r\n\r\n<b>The UAE as a Tech Hub</b>\r\n\r\n<b>Tech-Friendly Policies</b>\r\n\r\n<span style=\"font-weight: 400;\">The UAE\'s tech-friendly policies and initiatives, such as the issuance of Golden Visas for skilled professionals, position the country as an attractive destination for tech talent. These policies aim to attract and retain top-tier IT professionals to contribute to the nation\'s technological progress.</span>\r\n\r\n<b>Collaborative Ecosystem</b>\r\n\r\n<span style=\"font-weight: 400;\">Dubai Internet City, a thriving technology business community, and similar hubs across the UAE foster collaboration and innovation. Tech professionals benefit from being part of a vibrant ecosystem where ideas are shared, and partnerships flourish.</span>\r\n\r\n<b>Conclusion</b>\r\n\r\n<span style=\"font-weight: 400;\">In conclusion, Information Technology jobs in the UAE offer a gateway to a dynamic and forward-thinking career landscape. Whether you\'re a cybersecurity expert, software developer, data scientist, or IT project manager, the UAE provides a fertile ground for professionals to make a significant impact in the tech industry. Join the innovation journey and explore the exciting possibilities that await in the heart of technological advancement in the Emirates.</span>\r\n', 'Navigating the Future: Exciting Opportunities in Information Technology Jobs in the UAE', '', 'publish', 'closed', 'open', '', 'navigating-the-future-exciting-opportunities-in-information-technology-jobs-in-the-uae', '', '', '2023-11-30 11:23:19', '2023-11-30 11:23:19', '', 0, 'https://onlineincshop.com/?p=421', 0, 'post', '', 0),
(422, 9467, '2023-11-30 11:22:58', '2023-11-30 11:22:58', '', 'kaitlyn-baker-vZJdYl5JVXY-unsplash', '', 'inherit', '', 'closed', '', 'kaitlyn-baker-vzjdyl5jvxy-unsplash', '', '', '2023-11-30 11:22:58', '2023-11-30 11:22:58', '', 421, 'https://onlineincshop.com/wp-content/uploads/2023/11/kaitlyn-baker-vZJdYl5JVXY-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(424, 9467, '2023-11-30 11:31:04', '2023-11-30 11:31:04', '<span style=\"font-weight: 400;\">In the heart of the Middle East, the United Arab Emirates (UAE) stands as a beacon of innovation and progress in the realm of science and technology. This article delves into the dynamic landscape of science and technology in the UAE, highlighting the nation\'s achievements, advancements, and its unwavering commitment to shaping a futuristic landscape.</span>\r\n<h2><b>The UAE\'s Technological Ambitions</b></h2>\r\n<h3><b>Visionary Leadership</b></h3>\r\n<span style=\"font-weight: 400;\">Under the visionary leadership of the UAE, science and technology have become pivotal components of the nation\'s strategy for future development. Ambitious goals and investments have catapulted the UAE into the global arena of technological prowess.</span>\r\n<h3><b>National Innovation Strategy</b></h3>\r\n<span style=\"font-weight: 400;\">The UAE\'s National Innovation Strategy aims to position the country as a global leader in innovation. Through initiatives that foster research, development, and the application of cutting-edge technologies, the nation strives to create a sustainable and knowledge-based economy.</span>\r\n<h2><b>Groundbreaking Achievements</b></h2>\r\n<h3><b> Mars Mission – Hope Probe</b></h3>\r\n<span style=\"font-weight: 400;\">The UAE made history with the successful launch of the Hope Probe, an unmanned spacecraft destined for Mars. This groundbreaking mission aims to study the Martian atmosphere and provide valuable insights into the planet\'s climate and weather patterns.</span>\r\n<h3><b> Quantum Computing</b></h3>\r\n<span style=\"font-weight: 400;\">In the realm of quantum computing, the UAE has made significant strides. Research centers and institutions are actively exploring the potential of quantum technologies, with a focus on enhancing computing power and solving complex problems that were once deemed unsolvable.</span>\r\n<h3><b> Renewable Energy Innovation</b></h3>\r\n<span style=\"font-weight: 400;\">As a leader in renewable energy, the UAE is driving innovation in solar power and sustainable technologies. The development of the world\'s largest single-site solar park, the Mohammed bin Rashid Al Maktoum Solar Park, showcases the country\'s commitment to clean and sustainable energy solutions.</span>\r\n<h2><b>Research and Development Ecosystem</b></h2>\r\n<h3><b> Masdar City</b></h3>\r\n<span style=\"font-weight: 400;\">Masdar City, a sustainable urban development project in Abu Dhabi, serves as a hub for research and development in clean energy and sustainable technologies. The city is designed to be a living laboratory, fostering innovation and collaboration among scientists and researchers.</span>\r\n<h3><b> Mohammed bin Rashid Space Centre</b></h3>\r\n<span style=\"font-weight: 400;\">Dedicated to space exploration and research, the Mohammed bin Rashid Space Centre has played a crucial role in the UAE\'s achievements in space missions. It serves as a hub for developing advanced satellite technologies and nurturing local talent in the aerospace industry.</span>\r\n<h2><b>Education and Skills Development</b></h2>\r\n<h3><b> UAE\'s STEM Education Initiative</b></h3>\r\n<span style=\"font-weight: 400;\">The UAE places a strong emphasis on Science, Technology, Engineering, and Mathematics (STEM) education. Initiatives and programs are designed to cultivate a future workforce equipped with the skills and knowledge required for the evolving landscape of science and technology.</span>\r\n<h3><b> Tech Hubs and Innovation Centers</b></h3>\r\n<span style=\"font-weight: 400;\">Tech hubs and innovation centers across the UAE provide platforms for startups, entrepreneurs, and researchers to collaborate and innovate. These hubs contribute to the development of a vibrant ecosystem that nurtures creativity and technological advancements.</span>\r\n<h2><b>The Future of Science and Technology in the UAE</b></h2>\r\n<h3><b style=\"font-size: 22px;\">AI and Robotics</b></h3>\r\n<span style=\"font-weight: 400;\">The UAE is actively exploring the potential of Artificial Intelligence (AI) and robotics to drive efficiency and innovation across various sectors. Initiatives focus on integrating AI into daily life, from smart city applications to enhancing healthcare services.</span>\r\n<h3><b> Space Exploration</b></h3>\r\n<span style=\"font-weight: 400;\">Building on the success of the Hope Probe mission, the UAE has ambitious plans for further space exploration. The development of a lunar rover and the establishment of a Mars Science City demonstrate the nation\'s commitment to advancing space technologies.</span>\r\n<h4><b>Conclusion</b></h4>\r\n<span style=\"font-weight: 400;\">In conclusion, the UAE\'s journey in science and technology is marked by visionary leadership, groundbreaking achievements, and a commitment to fostering innovation. From space missions that captivate the world to advancements in quantum computing and renewable energy, the nation stands at the forefront of technological progress. As the UAE continues to invest in research, development, and education, it paves the way for a future where innovation and discovery thrive.</span>\r\n', 'Innovation Oasis: The Pinnacle of Science and Technology in the UAE', '', 'publish', 'closed', 'open', '', 'innovation-oasis-the-pinnacle-of-science-and-technology-in-the-uae', '', '', '2023-11-30 11:31:04', '2023-11-30 11:31:04', '', 0, 'https://onlineincshop.com/?p=424', 0, 'post', '', 0),
(425, 9467, '2023-11-30 11:30:43', '2023-11-30 11:30:43', '', 'aideal-hwa-OYzbqk2y26c-unsplash', '', 'inherit', '', 'closed', '', 'aideal-hwa-oyzbqk2y26c-unsplash', '', '', '2023-11-30 11:30:43', '2023-11-30 11:30:43', '', 424, 'https://onlineincshop.com/wp-content/uploads/2023/11/aideal-hwa-OYzbqk2y26c-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(427, 9467, '2023-11-30 11:39:16', '2023-11-30 11:39:16', '<span style=\"font-weight: 400;\">In the cosmopolitan oasis of Dubai, where the desert meets towering skyscrapers, the art of shopping is elevated to a luxurious experience. Dubai is not only a global business hub but also a shopping paradise, offering an array of sales events that entice both seasoned shoppers and enthusiastic tourists. Let\'s delve into the heart of the city\'s retail allure and explore the magic of sales in Dubai.</span>\r\n<h2><b>Dubai\'s Year-Round Retail Symphony:</b></h2>\r\n<span style=\"font-weight: 400;\">Unlike many cities, Dubai\'s sales events are not confined to specific seasons. The city\'s dynamic retail calendar ensures a continuous flow of sales throughout the year, each offering a unique shopping experience. From high-end luxury stores to traditional markets, Dubai provides a diverse range of options for those seeking unbeatable deals.</span>\r\n<h2><b>Dubai Shopping Festival (DSF): The Epitome of Luxury Sales:</b></h2>\r\n<span style=\"font-weight: 400;\">At the pinnacle of Dubai\'s sales events stands the Dubai Shopping Festival (DSF), an annual extravaganza that transforms the city into a vibrant shopping haven. Spanning a month, the DSF not only delivers irresistible discounts but also features cultural events, live performances, and dazzling fireworks. It\'s a celebration that elevates the act of shopping to a holistic experience, attracting visitors from around the globe.</span>\r\n<h2><b>Luxury Unleashed:</b></h2>\r\n<span style=\"font-weight: 400;\">What sets Dubai\'s sales apart is the seamless blend of luxury and affordability. High-end fashion brands, designer boutiques, and upscale department stores participate wholeheartedly, allowing shoppers to indulge in the world\'s most prestigious labels without the prohibitive price tags. Dubai\'s sales are an invitation to explore the lap of luxury without compromise.</span>\r\n<h2><b>Strategic Shopping Tips for Success:</b></h2>\r\n<span style=\"font-weight: 400;\">To navigate the bustling sales landscape of Dubai successfully, strategic planning is essential. Early birds often catch the best deals, and many retailers offer additional discounts during specific hours or days. Embracing a mix of traditional souks and modern malls allows shoppers to uncover hidden gems and unique finds. Being aware of exclusive promotions and limited-time offers further enhances the overall shopping experience.</span>\r\n<h2><b>Beyond Malls: Souks and Markets:</b></h2>\r\n<span style=\"font-weight: 400;\">While Dubai is renowned for its ultramodern malls, the city\'s soul lies in its traditional souks and markets. The Gold Souk in Deira, with its glittering displays, and the Spice Souk, where exotic aromas fill the air, provide a contrast to the contemporary shopping experience. During sales events, these markets become treasure troves for those seeking authentic bargains and culturally rich finds.</span>\r\n<h2><b>Dubai\'s Unique Shopping Vibe:</b></h2>\r\n<span style=\"font-weight: 400;\">Dubai\'s cosmopolitan nature is reflected in its diverse shopping offerings. From traditional goods in the bustling souks to cutting-edge technology in the high-end malls, the city caters to every taste and preference. Dubai\'s unique shopping vibe isn\'t just about making purchases; it\'s about immersing oneself in the rich tapestry of the city\'s culture and identity.</span>\r\n<h3><strong>conclusion</strong></h3>\r\n<span style=\"font-weight: 400;\">In conclusion, sales in Dubai are more than a transaction; they\'re a celebration of luxury, diversity, and the city\'s commitment to providing a world-class shopping experience. Whether you\'re a seasoned shopper or a first-time visitor, Dubai\'s sales events promise not only unbeatable deals but also an unforgettable journey through the dynamic and opulent retail landscape of this global shopping destination.</span>\r\n', 'Dubai\'s Shopping Extravaganza: Navigating Unbeatable Deals and Luxury Sales in the Heart of the UAE', '', 'publish', 'closed', 'open', '', 'dubais-shopping-extravaganza-navigating-unbeatable-deals-and-luxury-sales-in-the-heart-of-the-uae', '', '', '2023-11-30 11:39:16', '2023-11-30 11:39:16', '', 0, 'https://onlineincshop.com/?p=427', 0, 'post', '', 0),
(428, 9467, '2023-11-30 11:39:04', '2023-11-30 11:39:04', '', 'linkedin-sales-solutions-YDVdprpgHv4-unsplash', '', 'inherit', '', 'closed', '', 'linkedin-sales-solutions-ydvdprpghv4-unsplash', '', '', '2023-11-30 11:39:04', '2023-11-30 11:39:04', '', 427, 'https://onlineincshop.com/wp-content/uploads/2023/11/linkedin-sales-solutions-YDVdprpgHv4-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(430, 9467, '2023-12-01 11:49:13', '2023-12-01 11:49:13', '<span style=\"font-weight: 400;\">Dubai, already a jewel in the desert, transforms into a magical wonderland with the arrival of the highly anticipated </span><b>Winter Markets in Dubai</b><span style=\"font-weight: 400;\">. As the temperature cools, the city comes alive with festive cheer, offering residents and visitors alike a unique and enchanting experience. This guide is your ticket to navigating the wonders of Dubai\'s Winter Markets and immersing yourself in the magic of the season.</span>\r\n\r\n<b>A Global Celebration at the Global Village</b>\r\n\r\n<span style=\"font-weight: 400;\">The beating heart of Dubai\'s Winter Markets is undoubtedly the iconic Global Village. This multicultural destination seamlessly blends the holiday traditions of various nations. As you stroll through pavilions adorned with festive lights, the Global Village offers a journey around the world. Sample international cuisines, experience diverse cultural performances, and shop for unique crafts that reflect the spirit of the season.</span>\r\n\r\n<b>Local Markets: Where Tradition Meets Festivity</b>\r\n\r\n<span style=\"font-weight: 400;\">While the Global Village dazzles with its global appeal, Dubai\'s local markets provide a more intimate experience. Traditional souks and marketplaces decked out in festive decorations showcase the city\'s own vibrant culture. Explore stalls filled with handcrafted ornaments, locally made treasures, and festive delights. Dubai\'s local markets offer a glimpse into the rich cultural tapestry that makes the city truly special.</span>\r\n\r\n<b>Winter Wonderland Decor: Setting the Stage for Magic</b>\r\n\r\n<span style=\"font-weight: 400;\">Dubai\'s Winter Markets are not merely about shopping; they are an immersive visual experience. The entire city becomes a canvas for dazzling lights, festive decorations, and enchanting displays. From iconic landmarks to popular shopping districts, Dubai\'s winter decor creates a magical ambiance, transforming the city into a winter wonderland that captivates the imagination.</span>\r\n\r\n<b>Culinary Delights: A Feast for the Senses</b>\r\n\r\n<span style=\"font-weight: 400;\">No winter market experience is complete without indulging in festive treats, and Dubai\'s Winter Markets are a gastronomic delight. From traditional holiday sweets to international cuisines, the markets cater to every palate. Warm up with a cup of rich hot chocolate, savor the flavors of global street food, and treat yourself to the culinary delights that abound in this festive season.</span>\r\n\r\n<b>Family-Friendly Entertainment: Creating Lasting Memories</b>\r\n\r\n<span style=\"font-weight: 400;\">Dubai\'s Winter Markets are designed with families in mind, offering an array of family-friendly entertainment. Enjoy enchanting performances, festive parades, and interactive activities for visitors of all ages. The markets create a wholesome atmosphere where families can come together, creating cherished holiday memories.</span>\r\n\r\n<b>Conclusion: Embracing the Festive Magic</b>\r\n\r\n<span style=\"font-weight: 400;\">In conclusion, Dubai\'s Winter Markets are a testament to the city\'s ability to blend tradition with innovation, creating a magical experience for all. Whether you find yourself captivated by the global allure of the Global Village, the local charm of traditional markets, or the enchanting winter decor, Dubai\'s Winter Markets invite you to embrace the magic of the season. Immerse yourself in the festive spirit, explore the treasures on display, and create unforgettable moments in this winter wonderland.</span>\r\n', 'Discover the Festive Splendor: A Guide to Dubai\'s Winter Markets Extravaganza', '', 'publish', 'closed', 'open', '', 'discover-the-festive-splendor-a-guide-to-dubais-winter-markets-extravaganza', '', '', '2023-12-01 11:49:13', '2023-12-01 11:49:13', '', 0, 'https://onlineincshop.com/?p=430', 0, 'post', '', 0),
(431, 9467, '2023-12-01 11:48:49', '2023-12-01 11:48:49', '', 'Winter markets dubai', '', 'inherit', 'closed', 'closed', '', 'winter-markets-dubai', '', '', '2023-12-01 11:49:05', '2023-12-01 11:49:05', '', 430, 'https://onlineincshop.com/wp-content/uploads/2023/12/Winter-markets-dubai.jpeg', 0, 'attachment', 'image/jpeg', 0),
(434, 9467, '2023-12-09 13:30:19', '2023-12-09 13:30:19', '<span style=\"font-weight: 400;\">Abu Dhabi, the vibrant capital of the United Arab Emirates, is not only known for its stunning architecture and cultural richness but also for its enticing shopping experiences. Among the city\'s many attractions, the Abu Dhabi Discount Sale stands out as a shopper\'s haven, offering unbeatable deals and savings. Let\'s embark on a journey through this shopping extravaganza.</span>\r\n\r\n<b>The Abu Dhabi Discount Sale Experience</b>\r\n\r\n<span style=\"font-weight: 400;\">The Abu Dhabi Discount Sale is more than just a shopping event; it\'s a celebration of savings and value. With a myriad of participating stores, shoppers can expect significant discounts on a wide range of products, from fashion and electronics to home goods and more. The sale transforms the city into a paradise for bargain hunters and savvy shoppers.</span>\r\n\r\n<b>Navigating the Deals: What to Expect</b>\r\n\r\n<span style=\"font-weight: 400;\">As you explore the Abu Dhabi Discount Sale, be prepared for an array of discounts and promotions. Participating retailers often slash prices, offering exclusive deals that make luxury and quality more accessible. Whether you\'re looking to update your wardrobe, upgrade your gadgets, or enhance your living space, the sale has something for everyone.</span>\r\n\r\n<b>Exclusive Offers from Top Brands</b>\r\n\r\n<span style=\"font-weight: 400;\">One of the highlights of the Abu Dhabi Discount Sale is the opportunity to access exclusive offers from renowned brands. From international fashion houses to cutting-edge electronics, the sale brings together a diverse range of products, allowing shoppers to indulge in high-quality items at a fraction of the regular cost.</span>\r\n\r\n<b>Insider Tips for Maximizing Savings</b>\r\n\r\n<span style=\"font-weight: 400;\">To make the most of the Abu Dhabi Discount Sale, consider arriving early to beat the crowds and secure the best deals. Check for additional discounts and loyalty program perks offered by participating stores. It\'s also advisable to plan your visit in advance, ensuring that you have ample time to explore the various offerings.</span>\r\n\r\n<b>Why Abu Dhabi for Discount Shopping?</b>\r\n\r\n<span style=\"font-weight: 400;\">Abu Dhabi\'s commitment to providing unparalleled shopping experiences extends to the Discount Sale. The city\'s blend of tradition and modernity is reflected in the diverse range of products available. Whether you\'re a local resident or a visitor, the Abu Dhabi Discount Sale offers a unique opportunity to enhance your lifestyle without breaking the bank.</span>\r\n\r\n<b>Planning Your Shopping Spree</b>\r\n\r\n<span style=\"font-weight: 400;\">If you\'re gearing up for the Abu Dhabi Discount Sale, consider practical aspects such as transportation and parking. Familiarize yourself with the participating stores and their locations to streamline your shopping experience. With a bit of planning, you can unlock substantial savings on items you\'ve been eyeing.</span>\r\n\r\n<span style=\"font-weight: 400;\">In conclusion, the Abu Dhabi Discount Sale is a testament to the city\'s commitment to providing exceptional shopping experiences. Whether you\'re a seasoned shopper or a first-timer, this event is an opportunity to unlock savings on premium products and elevate your lifestyle.</span>\r\n', 'Unlock Savings: Navigating the Abu Dhabi Discount Sale Extravaganza', '', 'publish', 'closed', 'open', '', 'unlock-savings-navigating-the-abu-dhabi-discount-sale-extravaganza', '', '', '2023-12-09 13:30:19', '2023-12-09 13:30:19', '', 0, 'https://onlineincshop.com/?p=434', 0, 'post', '', 0),
(435, 9467, '2023-12-09 13:25:24', '2023-12-09 13:25:24', '', 'Abu dhabi discount sale', '', 'inherit', 'closed', 'closed', '', 'abu-dhabi-discount-sale', '', '', '2023-12-09 13:29:49', '2023-12-09 13:29:49', '', 434, 'https://onlineincshop.com/wp-content/uploads/2023/12/Abu-dhabi-discount-sale.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(437, 9467, '2023-12-15 12:52:37', '2023-12-15 12:52:37', '<b>Introduction</b>\r\n\r\n<span style=\"font-weight: 400;\">In the heart of the desert oasis of Dubai, the festive season transforms the city into a captivating wonderland. </span><b>Christmas in Dubai</b><span style=\"font-weight: 400;\"> is not just a celebration; it\'s a harmonious convergence of tradition and luxury, creating an atmosphere that resonates with both residents and visitors. In this article, we will delve into the unique charm of Christmas in Dubai, exploring the opulent decorations, festive events, and the magical spirit that pervades the city during this joyous season.</span>\r\n\r\n<b>Dazzling Decorations and Iconic Landmarks</b>\r\n\r\n<span style=\"font-weight: 400;\">Dubai, known for its opulence, spares no expense in adorning its iconic landmarks with dazzling Christmas decorations. The Burj Khalifa, the world\'s tallest building, takes center stage with its grandiose lighting ceremonies and festive projections. The city\'s malls, streets, and public spaces are adorned with glittering lights, creating a magical ambiance that beckons residents and tourists alike to immerse themselves in the festive spirit.</span>\r\n<h2><b>Winter Wonderland in the Desert</b></h2>\r\n<span style=\"font-weight: 400;\">While Dubai may lack the snowy landscapes traditionally associated with Christmas, it compensates with creative alternatives. Winter-themed events bring a touch of the North Pole to the desert, featuring artificial snow, ice rinks, and festive markets. Families can enjoy the enchanting experience of building snowmen and indulging in seasonal treats, creating cherished memories against the backdrop of Dubai\'s unique charm.</span>\r\n<h2><b>Festive Events and Entertainment</b></h2>\r\n<span style=\"font-weight: 400;\">Christmas in Dubai is not just about decorations; it\'s a season filled with festive events and entertainment. The city hosts Christmas markets offering a diverse array of gifts, crafts, and seasonal delights. From traditional carol performances to themed parties and live entertainment, Dubai ensures that the holiday season is not only visually enchanting but also a joyous celebration for all.</span>\r\n<h2><b>Culinary Delights and Gastronomic Experiences</b></h2>\r\n<span style=\"font-weight: 400;\">Dubai\'s culinary scene takes a festive turn during Christmas, offering a gastronomic journey for residents and visitors alike. Hotels and restaurants curate special menus featuring a fusion of traditional Christmas dishes and international delicacies. From lavish Christmas brunches to intimate dinners, the city provides a culinary experience that caters to diverse tastes and adds a touch of luxury to the festive season.</span>\r\n<h1><b>Conclusion</b></h1>\r\n<span style=\"font-weight: 400;\">In conclusion, Christmas in Dubai is a harmonious blend of tradition and luxury, creating a festive atmosphere that captivates the senses. As the city transforms into a winter wonderland, residents and visitors alike are invited to partake in the enchanting celebrations, from dazzling decorations to winter-themed events and culinary delights. Dubai\'s Christmas celebration is a testament to its commitment to creating magical moments and ensuring that the festive spirit is felt across the desert landscape.</span>\r\n', 'Experiencing Enchantment: Christmas in Dubai', '', 'publish', 'closed', 'open', '', 'experiencing-enchantment-christmas-in-dubai', '', '', '2023-12-15 12:52:37', '2023-12-15 12:52:37', '', 0, 'https://onlineincshop.com/?p=437', 0, 'post', '', 0),
(438, 9467, '2023-12-15 12:52:26', '2023-12-15 12:52:26', '', 'Christmas in dubai', '', 'inherit', 'closed', 'closed', '', 'christmas-in-dubai', '', '', '2023-12-15 12:52:31', '2023-12-15 12:52:31', '', 437, 'https://onlineincshop.com/wp-content/uploads/2023/12/Christmas-in-dubai.jpg', 0, 'attachment', 'image/jpeg', 0),
(441, 9467, '2023-12-22 12:38:22', '2023-12-22 12:38:22', '<b>Introduction</b>\r\n\r\n<span style=\"font-weight: 400;\">The dawn of a new year is a symbol of fresh beginnings and limitless possibilities. As we stand on the cusp of 2024, this guide aims to provide insights and inspiration for a meaningful celebration and a purposeful start to the new year.</span>\r\n\r\n<b>Reflecting on the Year Gone By</b>\r\n\r\n<span style=\"font-weight: 400;\">Before embracing the future, it\'s crucial to take a moment to reflect on the year that\'s coming to a close. Acknowledge accomplishments, navigate challenges, and cherish the memories that have shaped the past year. Reflection sets the stage for a meaningful transition into the New Year.</span>\r\n\r\n<b>Embracing Traditions and Celebrations</b>\r\n\r\n<span style=\"font-weight: 400;\">New Year\'s Eve is synonymous with celebrations worldwide, and 2024 is no exception. Whether you prefer a lively party, a quiet night in with loved ones, or a communal gathering, this section explores various traditions and contemporary celebrations that make ringing in the New Year a special and personal experience.</span>\r\n\r\n<b>Setting Empowering Resolutions</b>\r\n\r\n<span style=\"font-weight: 400;\">The start of a new year presents an opportunity for personal growth and positive change. Instead of generic resolutions, consider crafting empowering goals that align with your values and aspirations. This section provides insights into creating realistic and meaningful resolutions that set the stage for a fulfilling and purposeful 2024.</span>\r\n\r\n<b>Embracing Optimism and Hope</b>\r\n\r\n<span style=\"font-weight: 400;\">As the calendar turns to 2024, infuse your spirit with optimism and hope. The New Year symbolizes a fresh start, a blank canvas upon which you can paint your dreams and aspirations. This section explores ways to cultivate a positive mindset, overcome challenges, and approach the future with a sense of optimism that paves the way for a fulfilling year ahead.</span>\r\n\r\n<b>Communal Celebrations and Global Unity</b>\r\n\r\n<span style=\"font-weight: 400;\">New Year\'s celebrations are not just individual affairs; they are also moments of global unity. Explore how communities around the world come together to welcome the New Year with shared traditions, fireworks, and festivities. Whether in bustling city squares or serene villages, the sense of communal joy is palpable as the world unites in celebration.</span>\r\n\r\n<b>Virtual Celebrations and Global Connectivity</b>\r\n\r\n<span style=\"font-weight: 400;\">In an era of digital connectivity, virtual celebrations have become a significant part of New Year\'s festivities. This section explores how technology allows individuals to connect with friends and family across the globe, sharing the joy of welcoming 2024 through video calls, virtual parties, and online celebrations that transcend geographical boundaries.</span>\r\n\r\n<b>Cultivating Gratitude</b>\r\n\r\n<span style=\"font-weight: 400;\">Gratitude is a powerful mindset that can enrich your journey into the New Year. Take a moment to appreciate the people, experiences, and opportunities that have graced your life. Cultivating gratitude sets the tone for a positive and fulfilling year, reminding you of the abundance that surrounds you.</span>\r\n\r\n<b>New Year\'s Day Traditions</b>\r\n\r\n<span style=\"font-weight: 400;\">The celebration doesn\'t end when the clock strikes midnight. New Year\'s Day traditions vary across cultures and regions, offering a myriad of ways to commence the year auspiciously. Whether it\'s enjoying a special meal, participating in a polar plunge, or practicing cultural rituals, this section delves into unique New Year\'s Day traditions that add depth to the celebratory experience.</span>\r\n\r\n<b>Conclusion</b>\r\n\r\n<span style=\"font-weight: 400;\">As the countdown to 2024 begins, let the spirit of celebration, reflection, and optimism guide you into the New Year. May the coming year be filled with joy, growth, and new opportunities. Embrace the festivities, set empowering resolutions, and step into 2024 with a heart full of hope.</span>\r\n', 'Embracing New Beginnings: A Guide to Welcoming the New Year 2024', '', 'publish', 'closed', 'open', '', 'embracing-new-beginnings-a-guide-to-welcoming-the-new-year-2024', '', '', '2023-12-22 12:38:22', '2023-12-22 12:38:22', '', 0, 'https://onlineincshop.com/?p=441', 0, 'post', '', 0),
(442, 9467, '2023-12-22 12:37:46', '2023-12-22 12:37:46', '', 'New year 2024', '', 'inherit', 'closed', 'closed', '', 'new-year-2024', '', '', '2023-12-22 12:38:16', '2023-12-22 12:38:16', '', 441, 'https://onlineincshop.com/wp-content/uploads/2023/12/New-year-2024.jpeg', 0, 'attachment', 'image/jpeg', 0),
(444, 9467, '2023-12-29 11:12:51', '2023-12-29 11:12:51', '<strong>Financial Technology Service in UAE:</strong>\r\n\r\nFinancial technology is the use of technology to provide creative financial services. Fintech has become a key driver of the global financial sector, transforming the way consumers access and manage their finances and businesses operate and compete. The UAE is one of the leading countries in the region in terms of fintech development, adoption, and innovation. This article will provide an overview of the<a href=\"https://www.ipayholding.com/our-playground/fintech/\"><strong> Financial technology service in uae</strong></a>.\r\n\r\n<strong>Segments of Financial Technology Services in UAE:</strong>\r\n\r\nIn the UAE it covers a wide range of segments. Some of the notable segments are:\r\n<ul>\r\n 	<li><strong>Payment:</strong> Payment is the most developed segment of the financial technology service providing solutions that enable consumers and businesses to make and receive payments online in a convenient way.</li>\r\n 	<li><strong>Lending:</strong> It is the second most developed segment which enables consumers and businesses to access credit and financing in a fast, flexible, and transparent way.</li>\r\n 	<li><strong>Remittance: </strong>The third most developed segment enables consumers and businesses to send and receive money internationally by mobile, web, and kiosk.</li>\r\n</ul>\r\n<strong>Ecosystem and Trends of Financial Technology Service in UAE:</strong>\r\n\r\nThe financial technology service in UAE has a vibrant and diverse ecosystem, consisting of various stakeholders, such as:\r\n<ul>\r\n 	<li><strong>Startups:</strong> The UAE is home to some of the most innovative fintech startups in the region, such as Sarwa, a robo-advisory platform that provides personalized and low-cost investment services.</li>\r\n 	<li><strong>Investors: </strong>They are a magnet that, attracts both local and foreign investors, and assist in some of the notable fintech deals in the UAE which are: Tabby, a buy now pay later platform, Sarwa, a robo-advisory platform, and Ziina, a peer-to-peer payment app.</li>\r\n 	<li><strong>Accelerators, Incubators, and Hubs: </strong>The UAE has several platforms that support fintech startups in their growth and development and empower entrepreneurs to create sustainable businesses.</li>\r\n 	<li><strong>Universities and Associations: </strong>They have some academic institutions that foster fintech education such as the Emirates Institute for Banking and Financial Studies, the FinTech School, and the MENA FinTech Association.</li>\r\n</ul>\r\nThe financial technology service in UAE is also witnessing some emerging trends and opportunities, such as:\r\n<ul>\r\n 	<li><strong>Rise of digital banks and neobanks: </strong>it offers more convenient, personalized, and cost-effective banking services to customers, especially the unbanked and underbanked segments.</li>\r\n 	<li><strong>Adoption of blockchain and distributed ledger technology: </strong>They offer more secure, transparent, and efficient solutions for various financial processes and transactions.</li>\r\n 	<li><strong>The integration of artificial intelligence and machine learning:  </strong>They offer more intelligent, automated, and data-driven solutions for various financial functions and services.</li>\r\n</ul>\r\n<strong>Conclusion:</strong>\r\n\r\nThe UAE has an igneous financial technology service, which is driven by the high demand and adoption from the customers. Which has a vibrant and diverse ecosystem, consisting of various stakeholders, such as startups, investors, accelerators, incubators, hubs, universities, and associations. Their service is expected to grow further in the coming years as well.\r\n', 'Financial Technology Service in UAE: Segments, Ecosystem, and Trends.', '', 'publish', 'closed', 'open', '', 'financial-technology-service-in-uae-segments-ecosystem-and-trends', '', '', '2023-12-29 11:12:51', '2023-12-29 11:12:51', '', 0, 'https://onlineincshop.com/?p=444', 0, 'post', '', 0),
(445, 9467, '2023-12-29 11:11:06', '2023-12-29 11:11:06', '', 'Administrator business man financial inspector and secretary making report calculating balance. Internal Revenue Service checking document. Audit concept', 'Administrator business man financial inspector and secretary making report calculating balance. Internal Revenue Service checking document. Audit concept', 'inherit', '', 'closed', '', 'administrator-business-man-financial-inspector-and-secretary-making-report-calculating-balance-internal-revenue-service-checking-document-audit-concept', '', '', '2023-12-29 11:11:06', '2023-12-29 11:11:06', '', 444, 'https://onlineincshop.com/wp-content/uploads/2023/12/Financial-technology-service-in-uae.jpg', 0, 'attachment', 'image/jpeg', 0),
(448, 9467, '2024-01-06 10:58:22', '2024-01-06 10:58:22', '<span style=\"font-weight: 400;\">Dubai, a jewel in the crown of the United Arab Emirates (UAE), is not only a global hub for commerce and tourism but also a key player in the political dynamics of the region. In this exploration of Dubai politics within the UAE, we\'ll delve into the governance structure, prominent political figures, and the city\'s significance in the broader political landscape of the United Arab Emirates.</span>\r\n\r\n<b>The Federal Structure of the UAE: A Shared Governance System</b>\r\n\r\n<span style=\"font-weight: 400;\">The UAE follows a federal structure, consisting of seven emirates, each governed by its own monarch. Dubai is one of these emirates, and its political landscape is deeply intertwined with the federal governance system. The President of the UAE is elected from among the rulers of the seven emirates, and the Vice President and Prime Minister of the UAE is selected from the ruling family of Dubai.</span>\r\n\r\n<b>Ruler of Dubai: His Highness Sheikh Mohammed bin Rashid Al Maktoum</b>\r\n\r\n<span style=\"font-weight: 400;\">At the helm of Dubai\'s political affairs is His Highness Sheikh Mohammed bin Rashid Al Maktoum. Serving as the Vice President and Prime Minister of the UAE, as well as the ruler of Dubai, Sheikh Mohammed is a central figure in both the local and federal political spheres. His visionary leadership has played a pivotal role in shaping Dubai into a global city and economic powerhouse.</span>\r\n\r\n<b>The Dubai Executive Council: Decision-Making for Development</b>\r\n\r\n<span style=\"font-weight: 400;\">The Dubai Executive Council, chaired by Sheikh Mohammed bin Rashid Al Maktoum, is a crucial institution in the governance structure of Dubai. Comprising high-ranking officials and experts, the council plays a key role in decision-making processes related to the development and execution of policies, strategies, and projects aimed at advancing the city\'s growth and prosperity.</span>\r\n\r\n<b>Dubai\'s Economic and Political Significance: A Global Player</b>\r\n\r\n<span style=\"font-weight: 400;\">Dubai\'s political significance goes hand in hand with its economic prowess. As a major player in global trade, finance, and tourism, Dubai\'s political decisions have far-reaching impacts. The city\'s strategic location, world-class infrastructure, and business-friendly policies have positioned it as a hub for international businesses, contributing to the UAE\'s standing on the global stage.</span>\r\n\r\n<b>Political Stability and Visionary Leadership: A Driving Force</b>\r\n\r\n<span style=\"font-weight: 400;\">Dubai\'s political stability and visionary leadership have been instrumental in its success. The emphasis on innovation, sustainable development, and diversification of the economy has allowed Dubai to weather challenges and emerge as a resilient and forward-thinking city. The government\'s commitment to long-term planning and continuous improvement underscores Dubai\'s role as a dynamic and adaptive political entity.</span>\r\n\r\n<b>Conclusion</b>\r\n\r\n<span style=\"font-weight: 400;\">Understanding Dubai politics provides a glimpse into the intricate governance structure of the United Arab Emirates and the role that Dubai plays in shaping the nation\'s political landscape. With visionary leadership, a commitment to development, and a strategic focus on global integration, Dubai stands as a testament to the harmonious coexistence of tradition and modernity. As the city continues to evolve, its political influence will undoubtedly contribute to the UAE\'s continued prominence on the world stage.</span>\r\n', 'Navigating the Political Landscape: Understanding Dubai Politics in the UAE', '', 'publish', 'closed', 'open', '', 'navigating-the-political-landscape-understanding-dubai-politics-in-the-uae', '', '', '2024-01-06 10:58:22', '2024-01-06 10:58:22', '', 0, 'https://onlineincshop.com/?p=448', 0, 'post', '', 0),
(449, 9467, '2024-01-06 10:58:11', '2024-01-06 10:58:11', '', 'politics in uae', '', 'inherit', 'closed', 'closed', '', 'politics-in-uae', '', '', '2024-01-06 10:58:16', '2024-01-06 10:58:16', '', 448, 'https://onlineincshop.com/wp-content/uploads/2024/01/politics-in-uae.jpg', 0, 'attachment', 'image/jpeg', 0),
(452, 9467, '2024-01-20 10:28:34', '2024-01-20 10:28:34', '<b>Understanding Political Stability in the UAE</b>\r\n<ol>\r\n 	<li><b>Visionary Leadership</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">At the heart of the UAE\'s political stability is visionary leadership. The country\'s leaders have demonstrated foresight, strategic planning, and a commitment to sustainable development. Their guidance has been instrumental in steering the nation through various challenges while maintaining stability.</span>\r\n<ol start=\"2\">\r\n 	<li><b>Consensus-Based Decision-Making</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">The UAE prioritizes consensus-based decision-making, fostering collaboration and unity among its leaders. This approach ensures that major decisions are made collectively, reflecting the diverse perspectives and priorities of the country\'s leadership.</span>\r\n<ol start=\"3\">\r\n 	<li><b>Economic Diversification and Resilience</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">The UAE\'s commitment to economic diversification has played a pivotal role in maintaining political stability. By reducing reliance on oil revenues and investing in sectors like tourism, technology, and renewable energy, the country has built economic resilience, mitigating external shocks and ensuring sustained stability.</span>\r\n\r\n<b>Factors Contributing to Political Resilience</b>\r\n<ol>\r\n 	<li><b>Social Cohesion and Inclusivity</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">The UAE places a strong emphasis on social cohesion and inclusivity. Policies that promote harmony among the diverse population, regardless of nationality or background, contribute to a unified society. Inclusivity is a cornerstone of the country\'s political stability.</span>\r\n<ol start=\"2\">\r\n 	<li><b>Strategic Foreign Relations</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">The UAE\'s strategic foreign relations have bolstered its political standing on the global stage. Through diplomatic initiatives and partnerships, the country has established itself as a key player in regional and international affairs, contributing to its political stability and influence.</span>\r\n<ol start=\"3\">\r\n 	<li><b>Investment in Education and Innovation</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">A commitment to education and innovation has positioned the UAE as a knowledge-based economy. By investing in human capital and fostering innovation, the country ensures a skilled workforce and a dynamic society, reinforcing political stability through continuous progress.</span>\r\n\r\n<b>Embracing SEO for Political Stability in the UAE</b>\r\n\r\n<span style=\"font-weight: 400;\">In an era where geopolitical stability is a crucial factor for economic and social development, optimizing for the keywords \"political stability in UAE\" ensures that valuable insights into the UAE\'s political landscape reach a global audience.</span>\r\n\r\n<span style=\"font-weight: 400;\">Crafting an Engaging Meta Title and Description</span>\r\n\r\n<span style=\"font-weight: 400;\">A compelling meta title and description invite readers into the world of stability and progress, emphasizing keywords like \"Delving into the Political Landscape of the UAE\" and \"Fortress of Stability.\" These enhance the article\'s discoverability.</span>\r\n\r\n<span style=\"font-weight: 400;\">User-Friendly Website</span>\r\n\r\n<span style=\"font-weight: 400;\">A well-designed website enhances the reader\'s experience, allowing seamless navigation through the nuances of political stability in the UAE. Engaging visuals and informative content create a comprehensive guide for those seeking to understand the political foundations of the nation.</span>\r\n\r\n<span style=\"font-weight: 400;\">In conclusion, political stability is the bedrock upon which the UAE has built its journey towards prosperity and progress. With visionary leadership, consensus-based decision-making, economic diversification, social inclusivity, strategic foreign relations, and a commitment to education and innovation, the UAE stands as a fortress of stability in the region.</span>\r\n', 'Anchoring Prosperity: Exploring Political Stability in the UAE', '', 'publish', 'closed', 'open', '', 'anchoring-prosperity-exploring-political-stability-in-the-uae', '', '', '2024-01-20 10:28:34', '2024-01-20 10:28:34', '', 0, 'https://onlineincshop.com/?p=452', 0, 'post', '', 0),
(453, 9467, '2024-01-20 10:26:25', '2024-01-20 10:26:25', '', 'political stability in uae', '', 'inherit', 'closed', 'closed', '', 'political-stability-in-uae', '', '', '2024-01-20 10:26:51', '2024-01-20 10:26:51', '', 452, 'https://onlineincshop.com/wp-content/uploads/2024/01/political-stability-in-uae.jpg', 0, 'attachment', 'image/jpeg', 0),
(455, 9467, '2024-01-20 11:00:19', '2024-01-20 11:00:19', '<b>Introduction</b>\r\n\r\n<span style=\"font-weight: 400;\">In the thriving landscape of the United Arab Emirates (UAE), the finance sector stands as a pillar of economic strength, offering a plethora of opportunities for professionals seeking dynamic and rewarding careers. Let\'s delve into the diverse realm of finance jobs in UAE, where ambition meets innovation.</span>\r\n\r\n<b>Opportunities Across Key Sectors</b>\r\n\r\n<span style=\"font-weight: 400;\">The finance job market in UAE spans various sectors, each contributing to the country\'s robust economic growth. Banking, investment, insurance, and financial consultancy are among the key sectors that offer a wide array of roles. Whether you\'re a seasoned professional or a fresh graduate, there are opportunities to suit every skill set and career aspiration.</span>\r\n\r\n<b>Roles in Banking: Navigating the Financial Hub</b>\r\n\r\n<span style=\"font-weight: 400;\">Dubai, one of the emirates in the UAE, has positioned itself as a global financial hub, making it an attractive destination for banking professionals. Finance jobs in UAE\'s banking sector range from retail banking to investment banking, with roles in risk management, wealth management, and corporate finance. The sector provides a dynamic environment for those seeking to make a significant impact on the financial landscape.</span>\r\n\r\n<b>Investment Opportunities: Fueling Growth</b>\r\n\r\n<span style=\"font-weight: 400;\">As a global investment hotspot, the UAE offers enticing opportunities for finance professionals in investment firms, private equity, and venture capital. Professionals with expertise in financial analysis, asset management, and investment strategy find a vibrant environment to contribute to the country\'s economic growth.</span>\r\n\r\n<b>Insurance and Risk Management: Safeguarding Futures</b>\r\n\r\n<span style=\"font-weight: 400;\">The insurance sector in the UAE is expanding rapidly, creating demand for skilled professionals in underwriting, risk assessment, and claims management. Finance jobs in UAE\'s insurance sector play a crucial role in safeguarding businesses and individuals against unforeseen events, offering a rewarding career path for those with a passion for risk management.</span>\r\n\r\n<b>Financial Consultancy: Guiding Success</b>\r\n\r\n<span style=\"font-weight: 400;\">Financial consultancy firms in the UAE cater to a diverse clientele, providing services ranging from tax advisory to financial planning. Professionals in this sector play a pivotal role in guiding businesses and individuals toward financial success. With a focus on strategic financial management, consultancy roles offer a challenging yet rewarding career path.</span>\r\n\r\n<b>Key Skills and Trends in UAE Finance Jobs</b>\r\n\r\n<span style=\"font-weight: 400;\">To excel in finance jobs in UAE, professionals need a combination of technical skills and a keen understanding of the local and global financial landscape. Skills such as financial analysis, risk management, and regulatory compliance are highly valued. Moreover, staying updated on emerging trends like fintech innovation, sustainable finance, and digital transformation is crucial for remaining competitive in the job market.</span>\r\n\r\n<b>Conclusion</b>\r\n\r\n<span style=\"font-weight: 400;\">Embarking on a career in finance in the UAE opens doors to a world of possibilities. Whether you\'re drawn to the bustling banking sector, the dynamic investment landscape, or the strategic realm of financial consultancy, finance jobs in UAE offer a diverse range of opportunities for growth and success. It\'s a journey where ambition meets innovation, and professionals play a vital role in shaping the financial future of this economic powerhouse.</span>\r\n', 'Unlocking Opportunities: Finance Jobs in UAE', '', 'publish', 'closed', 'open', '', 'unlocking-opportunities-finance-jobs-in-uae', '', '', '2024-01-20 11:00:19', '2024-01-20 11:00:19', '', 0, 'https://onlineincshop.com/?p=455', 0, 'post', '', 0),
(456, 9467, '2024-01-20 10:49:40', '2024-01-20 10:49:40', '', 'finance jobs in uae', '', 'inherit', 'closed', 'closed', '', 'finance-jobs-in-uae', '', '', '2024-01-20 11:00:13', '2024-01-20 11:00:13', '', 455, 'https://onlineincshop.com/wp-content/uploads/2024/01/finance-jobs-in-uae.jpg', 0, 'attachment', 'image/jpeg', 0),
(458, 9467, '2024-01-27 11:05:02', '2024-01-27 11:05:02', '<b>Introduction</b>\r\n\r\n<span style=\"font-weight: 400;\">In the dynamic and thriving landscape of the United Arab Emirates (UAE), finance careers emerge as gateways to success and prosperity. This article serves as a comprehensive guide, delving into the various finance careers available in the UAE, shedding light on the key roles, educational prerequisites, and essential skills that can propel individuals towards financial triumph.</span>\r\n\r\n<b>Popular Finance Careers in UAE</b>\r\n\r\n<b>Financial Analyst</b>\r\n\r\n<span style=\"font-weight: 400;\">Embarking on a career as a financial analyst opens doors to a world where numbers come to life. Analyzing financial data, creating reports, and providing insights, financial analysts play a crucial role in guiding organizations towards sound financial decisions.</span>\r\n\r\n<b>Investment Banker</b>\r\n\r\n<span style=\"font-weight: 400;\">For those drawn to high-stakes finance, becoming an investment banker is a compelling choice. Managing mergers, acquisitions, and capital raising, investment bankers navigate the complex world of finance with finesse, contributing to the economic growth of the UAE.</span>\r\n\r\n<b>Accountant</b>\r\n\r\n<span style=\"font-weight: 400;\">The bedrock of any financial system, accountants ensure that financial records are accurate and comply with regulations. In the UAE\'s dynamic business environment, skilled accountants are in constant demand.</span>\r\n\r\n<b>Financial Planner</b>\r\n\r\n<span style=\"font-weight: 400;\">Helping individuals navigate their financial journeys, financial planners offer personalized advice on investments, retirement planning, and wealth management. In the UAE, where prosperity meets ambition, financial planners play a pivotal role in shaping people\'s financial futures.</span>\r\n\r\n<b>Educational Requirements</b>\r\n\r\n<b>Degrees and Certifications</b>\r\n\r\n<span style=\"font-weight: 400;\">Attaining a degree in finance, accounting, or a related field serves as a foundation for a successful finance career. Additionally, pursuing relevant certifications, such as CFA or ACCA, enhances one\'s marketability and expertise.</span>\r\n\r\n<b>Specialized Courses</b>\r\n\r\n<span style=\"font-weight: 400;\">As the financial landscape evolves, staying abreast of the latest trends is crucial. Specialized courses in fintech, blockchain, and risk management can provide a competitive edge in the UAE job market.</span>\r\n\r\n<b>Importance of Continuous Learning</b>\r\n\r\n<span style=\"font-weight: 400;\">In the fast-paced world of finance, continuous learning is not just an asset; it\'s a necessity. Embracing new technologies, regulations, and market trends ensures that finance professionals in the UAE remain at the forefront of their field.</span>\r\n\r\n<b>Skills Required</b>\r\n\r\n<b>Analytical Skills</b>\r\n\r\n<span style=\"font-weight: 400;\">Finance professionals in the UAE must possess sharp analytical skills to interpret complex data and make informed decisions.</span>\r\n\r\n<b>Communication Skills</b>\r\n\r\n<span style=\"font-weight: 400;\">Effective communication is paramount in the financial sector. Whether presenting reports or advising clients, clear communication fosters success.</span>\r\n\r\n<b>Adaptability</b>\r\n\r\n<span style=\"font-weight: 400;\">The ability to adapt to changing market conditions and regulatory landscapes is a hallmark of successful finance professionals in the UAE.</span>\r\n\r\n<b>Conclusion</b>\r\n\r\n<span style=\"font-weight: 400;\">Embarking on a finance career in the UAE is not just a job; it\'s a journey towards financial success and personal fulfillment. By choosing the right path, acquiring the necessary education, and honing essential skills, individuals can carve out a niche in the thriving financial sector of the UAE.</span>\r\n', 'Navigating Financial Success: Exploring Finance Careers in UAE', '', 'publish', 'closed', 'open', '', 'navigating-financial-success-exploring-finance-careers-in-uae', '', '', '2024-01-27 11:05:02', '2024-01-27 11:05:02', '', 0, 'https://onlineincshop.com/?p=458', 0, 'post', '', 0),
(459, 9467, '2024-01-27 11:04:31', '2024-01-27 11:04:31', '', 'finance careers in uae', '', 'inherit', 'closed', 'closed', '', 'finance-careers-in-uae', '', '', '2024-01-27 11:04:35', '2024-01-27 11:04:35', '', 458, 'https://onlineincshop.com/wp-content/uploads/2024/01/finance-careers-in-uae.jpg', 0, 'attachment', 'image/jpeg', 0),
(462, 9467, '2024-02-03 10:29:04', '2024-02-03 10:29:04', '<b>Introduction</b>\r\n\r\n<span style=\"font-weight: 400;\">The United Arab Emirates (UAE), known for its modern skyline, vibrant economy, and cultural richness, also possesses a unique political landscape that plays a crucial role in shaping the nation. In this exploration, we unravel the complexities of politics in the UAE, shedding light on the governance structure, key political figures, and the evolution of the political system in this dynamic country.</span>\r\n\r\n<b>Political Structure of the UAE</b>\r\n<ol>\r\n 	<li><b> Federal System:</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">The UAE operates under a federal system of governance, consisting of seven emirates. Each emirate, including Abu Dhabi and Dubai, maintains a considerable degree of autonomy while contributing to the overall federal structure. This decentralized system allows for localized governance and decision-making.</span>\r\n<ol start=\"2\">\r\n 	<li><b> Supreme Council of Rulers:</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">At the federal level, the Supreme Council of Rulers serves as the highest authority. Comprising the rulers of each emirate, this council selects the President and Vice President of the UAE from amongst its members. The President, in turn, appoints the Prime Minister and Cabinet.</span>\r\n<ol start=\"3\">\r\n 	<li><b> The President and Vice President:</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">The President holds a pivotal role in UAE\'s politics, serving as the head of state and government. The Vice President supports the President in their duties. These positions are pivotal in steering the nation\'s policies and decisions.</span>\r\n<ol start=\"4\">\r\n 	<li><b> Cabinet and Ministries:</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">The Cabinet, appointed by the President, is responsible for policymaking and administration. Various ministries oversee specific sectors, such as finance, education, and foreign affairs. This structured approach ensures a comprehensive and organized governance system.</span>\r\n\r\n<b>Political Evolution and Modernization</b>\r\n<ol>\r\n 	<li><b> Founding Fathers:</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">The political foundations of the UAE were laid by its Founding Fathers, particularly Sheikh Zayed bin Sultan Al Nahyan, the first President of the UAE. His vision and leadership were instrumental in unifying the emirates and establishing a stable political framework.</span>\r\n<ol start=\"2\">\r\n 	<li><b> Modernization Initiatives:</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">The UAE has undergone significant modernization and development, driven by visionary leaders. Initiatives such as Vision 2021 and Vision 2030 outline comprehensive plans for economic diversification, social development, and sustainable growth.</span>\r\n<ol start=\"3\">\r\n 	<li><b> Role of Youth:</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">Recognizing the importance of the younger generation, the UAE has actively engaged its youth in the political process. Youth councils and forums provide a platform for young Emiratis to contribute ideas, ensuring a dynamic and inclusive political landscape.</span>\r\n\r\n<b>Key Political Figures</b>\r\n<ol>\r\n 	<li><b> Sheikh Khalifa bin Zayed Al Nahyan:</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">As the current President of the UAE and the ruler of Abu Dhabi, Sheikh Khalifa bin Zayed Al Nahyan plays a central role in guiding the nation\'s policies. His leadership continues the legacy of his father, Sheikh Zayed.</span>\r\n<ol start=\"2\">\r\n 	<li><b> Sheikh Mohammed bin Rashid Al Maktoum:</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">The Vice President and Prime Minister of the UAE, as well as the ruler of Dubai, Sheikh Mohammed bin Rashid Al Maktoum is renowned for his forward-thinking vision. He actively promotes innovation and economic diversification.</span>\r\n<ol start=\"3\">\r\n 	<li><b> Sheikh Mohammed bin Zayed Al Nahyan:</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">Crown Prince of Abu Dhabi and Deputy Supreme Commander of the UAE Armed Forces, Sheikh Mohammed bin Zayed Al Nahyan is a key figure in UAE\'s politics. His strategic initiatives contribute to the country\'s development and global standing.</span>\r\n\r\n<b>Challenges and Diplomacy</b>\r\n<ol>\r\n 	<li><b> Regional Dynamics:</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">The UAE faces geopolitical challenges, navigating the complexities of the Middle East. Active involvement in diplomatic efforts and strategic alliances underscores the nation\'s commitment to regional stability.</span>\r\n<ol start=\"2\">\r\n 	<li><b> Economic Diversification:</b></li>\r\n</ol>\r\n<span style=\"font-weight: 400;\">The UAE\'s leaders are actively working towards reducing dependency on oil and fostering economic diversification. This shift requires strategic planning and dynamic policies to ensure sustainable development.</span>\r\n\r\n<b>Conclusion</b>\r\n\r\n<span style=\"font-weight: 400;\">In conclusion, the political landscape of the UAE reflects a blend of tradition and modernization, with a focus on stability, growth, and global engagement. The federal structure, visionary leaders, and initiatives for youth involvement contribute to the resilience and adaptability of UAE\'s political system. As the nation continues to evolve, understanding the nuances of politics in the UAE becomes essential for appreciating its journey and future aspirations. The United Arab Emirates, with its rich history and contemporary vision, stands as a testament to effective governance in a rapidly changing world.</span>\r\n', 'Navigating the Political Landscape: Understanding Politics in the UAE', '', 'publish', 'closed', 'open', '', 'navigating-the-political-landscape-understanding-politics-in-the-uae', '', '', '2024-02-03 10:29:04', '2024-02-03 10:29:04', '', 0, 'https://onlineincshop.com/?p=462', 0, 'post', '', 0),
(463, 9467, '2024-02-03 10:27:49', '2024-02-03 10:27:49', '', 'politics in uae', '', 'inherit', 'closed', 'closed', '', 'politics-in-uae-2', '', '', '2024-02-03 10:27:54', '2024-02-03 10:27:54', '', 462, 'https://onlineincshop.com/wp-content/uploads/2024/02/politics-in-uae.jpg', 0, 'attachment', 'image/jpeg', 0),
(466, 9467, '2024-02-14 14:07:59', '2024-02-14 14:07:59', '<span style=\"font-weight: 400;\">Planning a trip to Dubai is an exciting experience, but staying informed about potential travel alerts is crucial for ensuring a safe and enjoyable journey. Travel alerts provide valuable information about safety advisories, health concerns, weather conditions, and transportation disruptions that may impact your travel plans. In this article, we\'ll explore the importance of travel alerts for Dubai and provide tips on how to access and interpret them to stay informed and prepared during your visit.</span>\r\n\r\n<b>Understanding Travel Alerts for Dubai</b>\r\n\r\n<span style=\"font-weight: 400;\">Travel alerts are official notifications issued by government agencies, embassies, and travel organizations to inform travelers about potential risks, hazards, or disruptions that may affect their travel plans. These alerts cover a wide range of topics, including safety advisories, health alerts, weather warnings, transportation updates, and security threats. By staying informed about travel alerts, travelers can make informed decisions, take necessary precautions, and avoid potential risks or disruptions during their trip.</span>\r\n\r\n<b>Types of Travel Alerts for Dubai</b>\r\n<ol>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Safety Advisories</b>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"2\"><span style=\"font-weight: 400;\">Safety advisories provide information about potential safety hazards or security threats in Dubai, such as civil unrest, political instability, or terrorist threats. These alerts may include recommendations or restrictions on travel to certain areas or regions within Dubai and advise travelers to exercise caution and remain vigilant while exploring the city.</span></li>\r\n</ul>\r\n</li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Health Alerts</b>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"2\"><span style=\"font-weight: 400;\">Health alerts inform travelers about potential health risks or outbreaks in Dubai, such as infectious diseases, epidemics, or public health emergencies. These alerts may include recommendations or requirements for vaccinations, health screenings, or other preventive measures to protect against illness or disease transmission.</span></li>\r\n</ul>\r\n</li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Weather Warnings</b>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"2\"><span style=\"font-weight: 400;\">Weather warnings provide information about severe weather conditions or natural disasters that may affect Dubai, such as hurricanes, tropical storms, sandstorms, or extreme temperatures. These alerts may include recommendations or instructions for staying safe during adverse weather conditions and avoiding outdoor activities or travel if necessary.</span></li>\r\n</ul>\r\n</li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Transportation Updates</b>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"2\"><span style=\"font-weight: 400;\">Transportation updates provide information about disruptions or changes to transportation services in Dubai, such as flight delays, road closures, or public transportation disruptions. These alerts may include alternative routes, travel advisories, or recommendations for adjusting travel plans to minimize disruptions and delays.</span></li>\r\n</ul>\r\n</li>\r\n</ol>\r\n<b>Tips for Accessing and Interpreting Travel Alerts</b>\r\n<ol>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Stay Connected</b>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"2\"><span style=\"font-weight: 400;\">Stay connected to reliable sources of information, such as government websites, travel advisories, embassy websites, and news outlets, to access up-to-date travel alerts for Dubai. Sign up for email alerts or mobile notifications to receive real-time updates and notifications about potential risks or disruptions.</span></li>\r\n</ul>\r\n</li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Verify Information</b>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"2\"><span style=\"font-weight: 400;\">Verify information from multiple sources to ensure accuracy and reliability. Cross-reference travel alerts from official sources and reputable organizations to confirm the validity and credibility of the information before taking any action or making travel decisions.</span></li>\r\n</ul>\r\n</li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Take Precautions</b>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"2\"><span style=\"font-weight: 400;\">Take necessary precautions and preventive measures based on the information provided in travel alerts. Follow recommended safety guidelines, heed warnings or advisories, and exercise caution while traveling in Dubai to minimize risks and ensure your safety and well-being.</span></li>\r\n</ul>\r\n</li>\r\n</ol>\r\n<b>Conclusion</b>\r\n\r\n<span style=\"font-weight: 400;\">Travel alerts play a crucial role in helping travelers stay informed, prepared, and safe while exploring the vibrant city of Dubai. By staying updated on safety advisories, health alerts, weather warnings, and transportation updates, travelers can make informed decisions, take necessary precautions, and enjoy a smooth and hassle-free travel experience. Whether you\'re planning a vacation, business trip, or relocation to Dubai, staying informed about travel alerts is essential for ensuring a safe and memorable journey.</span>\r\n', 'Staying Informed: Understanding Travel Alerts for Dubai', '', 'publish', 'closed', 'open', '', 'staying-informed-understanding-travel-alerts-for-dubai', '', '', '2024-02-14 14:07:59', '2024-02-14 14:07:59', '', 0, 'https://onlineincshop.com/?p=466', 0, 'post', '', 0),
(467, 9467, '2024-02-14 14:03:01', '2024-02-14 14:03:01', '', 'travel alerts dubai', '', 'inherit', 'closed', 'closed', '', 'travel-alerts-dubai', '', '', '2024-02-14 14:03:04', '2024-02-14 14:03:04', '', 466, 'https://onlineincshop.com/wp-content/uploads/2024/02/travel-alerts-dubai.jpg', 0, 'attachment', 'image/jpeg', 0),
(469, 9467, '2024-02-19 08:30:36', '2024-02-19 08:30:36', '<span style=\"font-weight: 400;\">The United Arab Emirates (UAE) is renowned for its thriving economy, strategic location, and business-friendly environment, making it a magnet for entrepreneurs and investors seeking lucrative opportunities for growth and profitability. With its diverse economic landscape and strategic position as a global hub for trade and commerce, the UAE offers a wealth of business opportunities across various industries and sectors. In this article, we\'ll explore some of the most profitable business ventures in the UAE and why they hold promise for entrepreneurial success.</span>\r\n<h2><b>Understanding the Business Landscape in the UAE</b></h2>\r\n<span style=\"font-weight: 400;\">Before delving into specific business opportunities, it\'s essential to understand the broader business landscape in the UAE. The UAE boasts a diverse economy driven by multiple sectors, including oil and gas, real estate, tourism, finance, technology, healthcare, and more. Each emirate within the UAE offers unique advantages and opportunities for entrepreneurs, with Dubai and Abu Dhabi leading the way as major business hubs with world-class infrastructure and investment incentives.</span>\r\n<h2><b>Profitable Business Opportunities in the UAE</b></h2>\r\n<h3><b>Real Estate Development:</b></h3>\r\n<span style=\"font-weight: 400;\">The real estate sector in the UAE continues to be a key driver of economic growth, with ongoing demand for residential, commercial, and hospitality developments. Dubai, in particular, offers lucrative opportunities for real estate investment, with iconic projects such as the Dubai Expo 2020 site and the Dubai Creek Harbour attracting investors from around the world.</span>\r\n<h3><b>Tourism and Hospitality:</b></h3>\r\n<span style=\"font-weight: 400;\">The UAE\'s tourism and hospitality sector is thriving, thanks to its world-renowned attractions, luxury resorts, and vibrant cultural experiences. With initiatives such as Vision 2030 and Expo 2020 driving tourism growth, there are ample opportunities for entrepreneurs to invest in hotels, restaurants, tour operators, and leisure attractions that cater to both domestic and international visitors.</span>\r\n<h3><b>Technology and Innovation:</b></h3>\r\n<span style=\"font-weight: 400;\"> The UAE is emerging as a regional leader in technology and innovation, with initiatives such as Dubai Silicon Oasis and Abu Dhabi\'s Hub71 fostering a vibrant startup ecosystem. Opportunities abound for entrepreneurs in areas such as fintech, e-commerce, artificial intelligence, cybersecurity, and smart city solutions, as the UAE aims to become a global hub for innovation and digital transformation.</span>\r\n<h3><b>Healthcare and Wellness:</b></h3>\r\n<span style=\"font-weight: 400;\"> The UAE\'s healthcare sector is experiencing rapid growth, driven by increasing demand for quality healthcare services and investments in healthcare infrastructure. Entrepreneurs can capitalize on opportunities in areas such as specialized medical clinics, telemedicine, wellness resorts, and healthcare technology solutions to meet the growing needs of residents and visitors alike.</span>\r\n<h2><b>Factors to Consider When Evaluating Business Opportunities</b></h2>\r\n<span style=\"font-weight: 400;\">While the UAE offers a plethora of profitable business opportunities, it\'s essential for entrepreneurs to conduct thorough research and due diligence before making investment decisions. Factors to consider include market demand, competition, regulatory environment, investment requirements, and potential risks and challenges. Additionally, leveraging local partnerships and seeking guidance from industry experts can help entrepreneurs navigate the nuances of doing business in the UAE and maximize their chances of success.</span>\r\n<h4><b>Conclusion: Seizing Opportunities for Entrepreneurial Success</b></h4>\r\n<span style=\"font-weight: 400;\">In conclusion, the UAE presents a fertile ground for entrepreneurial success, with a dynamic economy, strategic location, and business-friendly environment that attract investors and entrepreneurs from around the world. Whether you\'re interested in real estate development, tourism and hospitality, technology and innovation, healthcare and wellness, or other sectors, the UAE offers a diverse array of profitable business opportunities that hold promise for growth and profitability. By staying informed, conducting thorough research, and leveraging local resources and expertise, entrepreneurs can capitalize on the most promising business ventures in the UAE and embark on a path to success in one of the world\'s most dynamic and prosperous markets.</span>\r\n', 'Unveiling the Most Profitable Business Opportunities in the UAE: A Guide to Entrepreneurial Success', '', 'publish', 'closed', 'open', '', 'unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success', '', '', '2024-02-19 08:30:36', '2024-02-19 08:30:36', '', 0, 'https://onlineincshop.com/?p=469', 0, 'post', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(470, 9467, '2024-02-19 08:30:27', '2024-02-19 08:30:27', '', 'kenny-eliason-y_6rqStQBYQ-unsplash', '', 'inherit', '', 'closed', '', 'kenny-eliason-y_6rqstqbyq-unsplash', '', '', '2024-02-19 08:30:27', '2024-02-19 08:30:27', '', 469, 'https://onlineincshop.com/wp-content/uploads/2024/02/kenny-eliason-y_6rqStQBYQ-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(473, 9467, '2024-03-08 09:56:51', '2024-03-08 09:56:51', '<span style=\"font-weight: 400;\">Ramadan in the UAE is a time of spiritual reflection, cultural celebration, and communal solidarity. As one of the most diverse and dynamic countries in the Middle East, the UAE embraces the traditions and rituals of Ramadan with fervor, offering residents and visitors a unique opportunity to experience the essence of this sacred month. Let\'s delve into the vibrant atmosphere of Ramadan in the UAE and discover the traditions, customs, and celebrations that make this time of year so special.</span>\r\n<h2><b>The Significance of Ramadan</b></h2>\r\n<span style=\"font-weight: 400;\">Ramadan holds deep religious significance for Muslims in the UAE and around the world, marking the ninth month of the Islamic lunar calendar and commemorating the revelation of the Quran to Prophet Muhammad. It is a time of fasting, prayer, and self-reflection, during which believers strive for spiritual growth, purification, and forgiveness. In the UAE, Ramadan is observed with reverence and devotion, as Muslims come together to fulfill their religious obligations and deepen their connection to Allah.</span>\r\n<h2><b>Traditions and Customs</b></h2>\r\n<span style=\"font-weight: 400;\">The traditions and customs of Ramadan in the UAE are steeped in centuries-old practices that bring communities together in unity and faith. Each day during Ramadan, Muslims in the UAE observe Sawm, the act of fasting from dawn until sunset, refraining from food, drink, and other worldly pleasures as a demonstration of piety and self-discipline. The fast is broken each evening with Iftar, the evening meal shared with family and friends, often beginning with dates and water followed by a variety of delicious dishes and delicacies. Another cherished tradition is Suhoor, the pre-dawn meal eaten before the fast begins, providing sustenance and spiritual preparation for the day ahead.</span>\r\n<h2><b>Spirit of Charity and Community</b></h2>\r\n<span style=\"font-weight: 400;\">Ramadan in the UAE is also a time of heightened charity and community spirit, with Muslims encouraged to engage in acts of kindness, generosity, and compassion towards those less fortunate. Throughout the month, mosques, charitable organizations, and community groups organize Iftar tents and food distribution programs to provide meals for the needy and homeless. The spirit of giving extends beyond food donations to include Zakat, the act of giving alms to the poor and needy, and Sadaqah, voluntary acts of charity and kindness that bring joy and blessings to those in need.</span>\r\n<h2><b>Festive Celebrations and Events</b></h2>\r\n<span style=\"font-weight: 400;\">Ramadan in the UAE is marked by a series of festive celebrations and events that bring communities together in joyous camaraderie. From traditional bazaars and Ramadan markets selling a variety of goods and handicrafts to cultural performances and exhibitions showcasing Emirati arts and traditions, there is something for everyone to enjoy during Ramadan. Families can participate in communal activities such as Ramadan-themed arts and crafts, storytelling sessions, and heritage tours that offer insights into the customs and rituals of Ramadan in the UAE.</span>\r\n<h3><b>Conclusion: </b></h3>\r\n<span style=\"font-weight: 400;\">As Ramadan unfolds in the UAE, residents and visitors alike are invited to embrace the blessings of this sacred month and experience the beauty of its traditions, customs, and celebrations. Whether observing the fast, attending Iftar gatherings, or participating in charitable initiatives, Ramadan in the UAE offers a unique opportunity to deepen one\'s spiritual connection, foster community bonds, and create lasting memories with family and friends. May the spirit of Ramadan bring peace, joy, and prosperity to all who observe it in the UAE and beyond.</span>\r\n', 'Embracing the Spirit of Ramadan in the UAE: Traditions, Customs, and Celebrations', '', 'publish', 'closed', 'open', '', 'embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations', '', '', '2024-03-08 09:56:51', '2024-03-08 09:56:51', '', 0, 'https://onlineincshop.com/?p=473', 0, 'post', '', 0),
(475, 9467, '2024-03-08 09:56:43', '2024-03-08 09:56:43', '', 'fadkhera-official-gRtiUp1VKbs-unsplash', '', 'inherit', '', 'closed', '', 'fadkhera-official-grtiup1vkbs-unsplash', '', '', '2024-03-08 09:56:43', '2024-03-08 09:56:43', '', 473, 'https://onlineincshop.com/wp-content/uploads/2024/03/fadkhera-official-gRtiUp1VKbs-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(479, 9467, '2024-03-25 08:19:43', '2024-03-25 08:19:43', '', 'Meydan Free Zone', '', 'inherit', 'closed', 'closed', '', 'meydan-free-zone', '', '', '2024-03-25 08:19:51', '2024-03-25 08:19:51', '', 478, 'https://onlineincshop.com/wp-content/uploads/2024/03/Meydan-Free-Zone.jpg', 0, 'attachment', 'image/jpeg', 0),
(482, 9467, '2024-04-13 11:01:42', '2024-04-13 11:01:42', 'Are you seeking a thrilling and unique venue for your child\'s next birthday bash? Look no further than SeaYou Watersports, where the excitement of the sea meets the joy of celebration. Located in the stunning Palm Jumeirah, SeaYou\'s Watersports offers an exceptional setting for <a href=\"https://seayou.ae/activities/kids-birthdays\">kids\' birthday parties</a>, promising a day filled with adventure and laughter.\r\n\r\n<strong>Presentation of the Activity</strong>\r\n\r\nTired of the usual soft play venues and indoor activities? SeaYou Watersports presents an enticing alternative with their specially curated birthday party packages. Imagine celebrating your child\'s special day amidst the sun, sand, and surf, creating memories that will last a lifetime.\r\n\r\nSeaYou\'s Watersports provides two exciting party packages, each packed with a variety of watersports and beach games to keep the young ones entertained. Whether it\'s splashing in the gentle waves, building sandcastles, or trying out thrilling watersport activities, there\'s something for every child to enjoy.\r\n\r\n<strong>The Packages</strong>\r\n\r\nSeaYou\'s Watersports offers flexibility in party planning, catering to different preferences and age groups. The birthday packages include a selection of engaging activities, ensuring an action-packed day by the sea. Parents can choose from various options, such as jet skiing, banana boat rides, paddleboarding, beach volleyball, and more.\r\n\r\nThe Palm Jumeirah location adds an extra touch of charm to the festivities, providing a picturesque backdrop for the celebration. While the kids are having a blast, parents can also relish the scenic beauty and perhaps indulge in their own leisure activities nearby.\r\n\r\n<strong>Contact SeaYou\'s Watersports</strong>\r\n\r\nTo discover more about the exciting birthday party packages and what\'s included, don\'t hesitate to reach out to <a href=\"https://seayou.ae/\">SeaYou\'s Watersports</a> team today. They are dedicated to ensuring that your child\'s birthday celebration is nothing short of spectacular.\r\n\r\nImagine the joy on your child\'s face as they celebrate with friends, surrounded by the beauty of the sea and the thrill of watersports. SeaYou\'s Watersports promises not just a birthday party but an unforgettable experience for your little one and their guests.\r\n\r\n<strong>Why Choose SeaYou\'s Watersports?</strong>\r\n<ul>\r\n 	<li><strong>Unique Experience:</strong> Break away from conventional party venues and opt for a one-of-a-kind celebration by the sea.</li>\r\n 	<li><strong>Exciting Activities:</strong> From adrenaline-pumping watersports to classic beach games, there\'s something for everyone.</li>\r\n 	<li><strong>Beautiful Setting:</strong> The Palm Jumeirah location offers stunning views and ample space for a memorable gathering.</li>\r\n 	<li><strong>Expert Guidance:</strong> SeaYou\'s Watersports team ensures safety and fun throughout the event, leaving you free to enjoy the celebration.</li>\r\n</ul>\r\nSo, if you\'re ready to make a splash with your child\'s birthday party, consider SeaYou\'s Watersports as your next venue. Contact them today and start planning a birthday celebration that will be talked about for years to come. With SeaYou\'s Watersports, every birthday is a wave of fun!\r\n', 'Making Waves: Unforgettable Kids Birthday Parties at SeaYou\'s Watersports', '', 'publish', 'closed', 'open', '', 'making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports', '', '', '2024-04-13 11:01:42', '2024-04-13 11:01:42', '', 0, 'https://onlineincshop.com/?p=482', 0, 'post', '', 0),
(483, 9467, '2024-04-13 11:00:40', '2024-04-13 11:00:40', '', 'sea you', '', 'inherit', 'closed', 'closed', '', 'kids-birthday-768x512', '', '', '2024-04-13 11:01:37', '2024-04-13 11:01:37', '', 482, 'https://onlineincshop.com/wp-content/uploads/2024/04/KIDS-BIRTHDAY-768x512-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(502, 9467, '2024-05-10 07:17:13', '2024-05-10 07:17:13', 'In the bustling landscape of the United Arab Emirates (UAE), opportunities abound in various sectors, from automotive to real estate and employment. Whether you\'re navigating the market for car selling or buying, seeking properties for rent or sale, or exploring job prospects, the UAE offers a dynamic environment for individuals and businesses alike. Amidst this vibrant landscape, bkamthis emerges as a beacon, offering a comprehensive platform for classified ads that cater to diverse needs.\r\n<h2><strong>Car Selling or Buying in UAE</strong></h2>\r\nThe UAE\'s automotive market is a melting pot of opportunities for both buyers and sellers. Whether you\'re in the market for a sleek sedan, a rugged SUV, or a luxury sports car, the UAE has it all. On the flip side, if you\'re looking to sell your vehicle, tapping into the right channels is key. bkamthis provides a convenient platform to list your car for sale, attracting potential buyers from across the UAE. With its user-friendly interface and wide reach, bkamthis streamlines the process of car selling and buying, ensuring a seamless experience for all parties involved.\r\n<h2><strong>Properties for Rent or Sale in UAE</strong></h2>\r\nWith its thriving real estate sector, the UAE offers a plethora of options for those seeking properties for rent or sale. Whether you\'re in search of a cozy apartment, a spacious villa, or a commercial space for your business, the UAE\'s property market has something for everyone. bkamthis serves as a one-stop destination for property listings, allowing users to browse through a diverse range of options and connect with property owners and real estate agents. From studio apartments in bustling urban centers to sprawling estates in serene suburbs, bkamthis caters to all preferences and budgets.\r\n<h2><strong>Looking for Jobs in UAE</strong></h2>\r\nThe UAE\'s dynamic economy attracts professionals from across the globe, offering a myriad of job opportunities in various industries. Whether you\'re a seasoned executive, a fresh graduate, or a skilled professional seeking new challenges, the UAE has something to offer. bkamthis job portal features a wide array of job listings, spanning sectors such as IT, finance, healthcare, hospitality, and more. With its intuitive search filters and personalized job alerts, bkamthis empowers job seekers to find their dream job with ease. Whether you\'re looking for full-time employment, part-time gigs, or freelance opportunities, bkamthis has you covered.\r\n<h2><strong>Publish Your Ad for Free on bkamthis </strong></h2>\r\nOne of the standout features of bkamthis is its free ad publishing service, which allows users to showcase their products and services to a wide audience without any cost. Whether you\'re a small business owner, a freelancer, or an individual looking to sell personal belongings, bkamthis provides a platform to reach potential buyers and customers. From electronics and furniture to clothing and accessories, Bkam accommodates a wide range of categories, ensuring that your ad gets the visibility it deserves. With bkamthis, you can publish your ad in minutes and start receiving inquiries and offers instantly.\r\n<h2><strong>Classified Ads Website UAE - bkamthis </strong></h2>\r\nbkamthis stands out as a <a href=\"https://bkamthis.com/en\"><strong>leading classified ads website in the UAE</strong></a>, offering a plethora of features and benefits for both buyers and sellers. With its user-friendly interface, extensive reach, and robust security measures, bkamthis provides a seamless and secure online marketplace for all your buying and selling needs. Whether you\'re looking to buy a car, rent a property, find a job, or sell your belongings, bkamthis is your go-to destination. And with its instant response feature, you can rest assured that your ads will reach the right audience in no time.\r\n<h3><strong>conclusion:</strong></h3>\r\nIn conclusion, the UAE\'s vibrant market offers abundant opportunities for car selling or buying, <a href=\"https://bkamthis.com/en\"><strong>properties for rent or sale</strong></a>, and job hunting. With bkamthis comprehensive platform for classified ads, you can navigate these opportunities with ease and efficiency. Whether you\'re a buyer, seller, or job seeker, bkamthis is your trusted partner in the UAE\'s dynamic marketplace.\r\n\r\n&nbsp;\r\n', 'Seize the Day: Explore Car Sales, Property Rentals, and Job Searches in the UAE with bkamthis Classifieds', '', 'publish', 'closed', 'open', '', 'seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds', '', '', '2024-05-10 07:20:00', '2024-05-10 07:20:00', '', 0, 'https://onlineincshop.com/?p=502', 0, 'post', '', 0),
(503, 9467, '2024-05-10 07:16:48', '2024-05-10 07:16:48', '', 'austin-distel-21GWwco-JBQ-unsplash', '', 'inherit', '', 'closed', '', 'austin-distel-21gwwco-jbq-unsplash', '', '', '2024-05-10 07:16:48', '2024-05-10 07:16:48', '', 502, 'https://onlineincshop.com/wp-content/uploads/2024/05/austin-distel-21GWwco-JBQ-unsplash.jpg', 0, 'attachment', 'image/jpeg', 0),
(524, 9474, '2024-08-07 16:27:26', '0000-00-00 00:00:00', 'Thank you for reading this post, don\'t forget to subscribe!\r\n', 'Display a message after the 1st paragraph of posts', '', 'draft', 'closed', 'closed', '', '', '', '', '2024-08-07 16:27:26', '0000-00-00 00:00:00', '', 0, 'https://onlineincshop.com/?post_type=wpcode&p=524', 0, 'wpcode', '', 0),
(525, 9474, '2024-08-07 16:27:26', '0000-00-00 00:00:00', 'add_action(\'admin_init\', function () {\r\n    // Redirect any user trying to access comments page\r\n    global $pagenow;\r\n    \r\n    if ($pagenow === \'edit-comments.php\') {\r\n        wp_safe_redirect(admin_url());\r\n        exit;\r\n    }\r\n\r\n    // Remove comments metabox from dashboard\r\n    remove_meta_box(\'dashboard_recent_comments\', \'dashboard\', \'normal\');\r\n\r\n    // Disable support for comments and trackbacks in post types\r\n    foreach (get_post_types() as $post_type) {\r\n        if (post_type_supports($post_type, \'comments\')) {\r\n            remove_post_type_support($post_type, \'comments\');\r\n            remove_post_type_support($post_type, \'trackbacks\');\r\n        }\r\n    }\r\n});\r\n\r\n// Close comments on the front-end\r\nadd_filter(\'comments_open\', \'__return_false\', 20, 2);\r\nadd_filter(\'pings_open\', \'__return_false\', 20, 2);\r\n\r\n// Hide existing comments\r\nadd_filter(\'comments_array\', \'__return_empty_array\', 10, 2);\r\n\r\n// Remove comments page in menu\r\nadd_action(\'admin_menu\', function () {\r\n    remove_menu_page(\'edit-comments.php\');\r\n});\r\n\r\n// Remove comments links from admin bar\r\nadd_action(\'init\', function () {\r\n    if (is_admin_bar_showing()) {\r\n        remove_action(\'admin_bar_menu\', \'wp_admin_bar_comments_menu\', 60);\r\n    }\r\n});\r\n', 'Completely Disable Comments', '', 'draft', 'closed', 'closed', '', '', '', '', '2024-08-07 16:27:26', '0000-00-00 00:00:00', '', 0, 'https://onlineincshop.com/?post_type=wpcode&p=525', 0, 'wpcode', '', 0),
(526, 9474, '2024-08-07 16:27:32', '2024-08-07 16:27:32', '', 'Wordpress snippet', '', 'trash', 'closed', 'closed', '', 'wordpress-snippet__trashed', '', '', '2025-12-09 02:43:24', '2025-12-09 02:43:24', '', 0, 'https://onlineincshop.com/wpcode/wordpress-snippet/', 0, 'wpcode', '', 0),
(509, 9467, '2024-07-05 18:40:27', '2024-07-05 18:40:27', '', 'tdn_pic_1', '', 'inherit', '', 'closed', '', 'tdn_pic_1', '', '', '2024-07-05 18:40:27', '2024-07-05 18:40:27', '', 0, 'https://onlineincshop.com/wp-content/uploads/2024/07/tdn_pic_1.png', 0, 'attachment', 'image/png', 0),
(510, 9467, '2024-07-05 18:40:27', '2024-07-05 18:40:27', '', 'tdn_pic_2', '', 'inherit', '', 'closed', '', 'tdn_pic_2', '', '', '2024-07-05 18:40:27', '2024-07-05 18:40:27', '', 0, 'https://onlineincshop.com/wp-content/uploads/2024/07/tdn_pic_2.png', 0, 'attachment', 'image/png', 0),
(511, 9467, '2024-07-05 18:40:27', '2024-07-05 18:40:27', '', 'tdn_pic_3', '', 'inherit', '', 'closed', '', 'tdn_pic_3', '', '', '2024-07-05 18:40:27', '2024-07-05 18:40:27', '', 0, 'https://onlineincshop.com/wp-content/uploads/2024/07/tdn_pic_3.png', 0, 'attachment', 'image/png', 0),
(570, 9467, '2025-05-26 08:12:31', '2025-05-26 08:12:31', '', 'WhatsApp Image 2025-05-26 at 12.11.34 PM (1)', '', 'inherit', '', 'closed', '', 'whatsapp-image-2025-05-26-at-12-11-34-pm-1', '', '', '2025-05-26 08:12:31', '2025-05-26 08:12:31', '', 569, 'https://onlineincshop.com/wp-content/uploads/2025/05/WhatsApp-Image-2025-05-26-at-12.11.34-PM-1.jpeg', 0, 'attachment', 'image/jpeg', 0),
(561, 9467, '2025-04-22 11:09:18', '2025-04-22 11:09:18', '<span style=\"font-weight: 400;\">In today’s fast-paced digital world, luxury isn’t just found in boutiques—it’s experienced at your fingertips. </span><b>Chic Shoes</b><span style=\"font-weight: 400;\">, a leading name in the UAE’s fashion industry, has seamlessly merged the elegance of in-store shopping with the </span><b>efficiency and comfort of online retail</b><span style=\"font-weight: 400;\">, offering customers across the region a truly refined </span><b>eCommerce experience</b><span style=\"font-weight: 400;\">.</span>\r\n<h3><b>A Digital Platform with a Premium Feel</b></h3>\r\n<span style=\"font-weight: 400;\">At</span><a href=\"https://chic.ae\"> <b>chic.ae</b></a><span style=\"font-weight: 400;\">, customers are welcomed into a virtual boutique that reflects the same values the brand is known for in its physical stores: </span><b>luxury, quality, and personalized care</b><span style=\"font-weight: 400;\">. The online store has been designed to be </span><b>intuitive, fast, and visually appealing</b><span style=\"font-weight: 400;\">, making it easy for users to:</span>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Browse curated leather collections for men and women</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Choose from a wide range of Arabic sandals, handbags, jewelry, and accessories</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">View detailed product descriptions and sizing information</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Complete purchases securely with multiple payment options</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n</ul>\r\n<h3><b>Genuine Leather Shopping, Simplified</b></h3>\r\n<span style=\"font-weight: 400;\">While many fashion retailers struggle to translate product quality through digital screens, Chic excels. Every product listed online includes </span><b>high-resolution images</b><span style=\"font-weight: 400;\">, detailed material descriptions, and styling suggestions to help customers make confident choices.</span>\r\n\r\n<span style=\"font-weight: 400;\">This level of detail reinforces Chic’s commitment to </span><b>genuine leather fashion</b><span style=\"font-weight: 400;\">, even when the purchase journey is virtual.</span>\r\n<h3><b>Fast, Reliable Delivery Across the UAE</b></h3>\r\n<span style=\"font-weight: 400;\">Luxury should never come with delays. Chic’s logistics are optimized for </span><b>speed and dependability</b><span style=\"font-weight: 400;\">, ensuring that products are:</span>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Shipped within hours of order confirmation</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Beautifully packaged in elegant boxes, suitable for gifting</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Delivered with care across </span><b>Dubai, Abu Dhabi, Sharjah</b><span style=\"font-weight: 400;\">, and beyond</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\">Whether it\'s a last-minute present or a personal style upgrade, Chic delivers on time—every time.</span>\r\n<h3><b>Personalized Service via WhatsApp</b></h3>\r\n<span style=\"font-weight: 400;\">Luxury also means having someone to talk to when you need help. Chic offers </span><b>real-time customer support on WhatsApp</b><span style=\"font-weight: 400;\">, where shoppers can:</span>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Ask about product availability</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Get size or styling recommendations</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Track orders or request exchange information</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Request personalized gift wrapping</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\">This direct line to the Chic team enhances trust and replicates the boutique experience, virtually.</span>\r\n<h3><b>Why Customers Love Shopping Online at Chic</b></h3>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>User-friendly website</b><span style=\"font-weight: 400;\"> with elegant design</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Authentic luxury products</b><span style=\"font-weight: 400;\"> with rich detail and clarity</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Secure checkout</b><span style=\"font-weight: 400;\"> and multiple payment options (COD, cards, etc.)</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Easy returns and customer-first policies</b><b>\r\n\r\n</b></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Live support</b><span style=\"font-weight: 400;\"> and gifting services to elevate the experience</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n</ul>\r\n<h3><b>Adapting to the Future of Fashion</b></h3>\r\n<span style=\"font-weight: 400;\">Chic is not only keeping up with the digital shift—it’s leading it in the Gulf’s luxury retail space. As eCommerce continues to evolve, Chic remains committed to </span><b>enhancing the online customer journey</b><span style=\"font-weight: 400;\">, blending tradition with technology and elegance with convenience.</span>\r\n\r\n&nbsp;\r\n\r\n<strong>About Chic</strong>\r\n\r\nWebsite:<a href=\"https://www.chic.ae/\"> https://www.chic.ae/</a>\r\n\r\nFacebook:<a href=\"https://www.facebook.com/ChicShoesUAE\"> https://www.facebook.com/ChicShoesUAE</a>\r\n\r\nInstagram:<a href=\"https://www.instagram.com/chicshoesuae/\"> https://www.instagram.com/chicshoesuae/</a>\r\n\r\nX:<a href=\"https://x.com/chicshoesuae\">https://x.com/chicshoesuae</a>\r\n\r\nLinkedIn:<a href=\"https://www.linkedin.com/company/chic-shoes-co-llc/\"> https://www.linkedin.com/company/chic-shoes-co-llc/</a>\r\n\r\nPinterest:<a href=\"https://www.pinterest.com/chiconlineuae/\"> https://www.pinterest.com/chiconlineuae/</a>\r\n', 'The Online Elegance: How Chic Shoes is Redefining Luxury eCommerce in the UAE', '', 'publish', 'closed', 'open', '', 'the-online-elegance-how-chic-shoes-is-redefining-luxury-ecommerce-in-the-uae', '', '', '2025-05-07 11:11:10', '2025-05-07 11:11:10', '', 0, 'https://onlineincshop.com/?p=561', 0, 'post', '', 0),
(562, 9467, '2025-05-07 11:09:59', '2025-05-07 11:09:59', '', 'chic', '', 'inherit', 'closed', 'closed', '', '486156189_18496431868034048_381048846317508702_n', '', '', '2025-05-07 11:11:06', '2025-05-07 11:11:06', '', 561, 'https://onlineincshop.com/wp-content/uploads/2025/05/486156189_18496431868034048_381048846317508702_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(563, 9467, '2025-05-07 11:11:10', '2025-05-07 11:11:10', '<span style=\"font-weight: 400;\">In today’s fast-paced digital world, luxury isn’t just found in boutiques—it’s experienced at your fingertips. </span><b>Chic Shoes</b><span style=\"font-weight: 400;\">, a leading name in the UAE’s fashion industry, has seamlessly merged the elegance of in-store shopping with the </span><b>efficiency and comfort of online retail</b><span style=\"font-weight: 400;\">, offering customers across the region a truly refined </span><b>eCommerce experience</b><span style=\"font-weight: 400;\">.</span>\r\n<h3><b>A Digital Platform with a Premium Feel</b></h3>\r\n<span style=\"font-weight: 400;\">At</span><a href=\"https://chic.ae\"> <b>chic.ae</b></a><span style=\"font-weight: 400;\">, customers are welcomed into a virtual boutique that reflects the same values the brand is known for in its physical stores: </span><b>luxury, quality, and personalized care</b><span style=\"font-weight: 400;\">. The online store has been designed to be </span><b>intuitive, fast, and visually appealing</b><span style=\"font-weight: 400;\">, making it easy for users to:</span>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Browse curated leather collections for men and women</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Choose from a wide range of Arabic sandals, handbags, jewelry, and accessories</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">View detailed product descriptions and sizing information</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Complete purchases securely with multiple payment options</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n</ul>\r\n<h3><b>Genuine Leather Shopping, Simplified</b></h3>\r\n<span style=\"font-weight: 400;\">While many fashion retailers struggle to translate product quality through digital screens, Chic excels. Every product listed online includes </span><b>high-resolution images</b><span style=\"font-weight: 400;\">, detailed material descriptions, and styling suggestions to help customers make confident choices.</span>\r\n\r\n<span style=\"font-weight: 400;\">This level of detail reinforces Chic’s commitment to </span><b>genuine leather fashion</b><span style=\"font-weight: 400;\">, even when the purchase journey is virtual.</span>\r\n<h3><b>Fast, Reliable Delivery Across the UAE</b></h3>\r\n<span style=\"font-weight: 400;\">Luxury should never come with delays. Chic’s logistics are optimized for </span><b>speed and dependability</b><span style=\"font-weight: 400;\">, ensuring that products are:</span>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Shipped within hours of order confirmation</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Beautifully packaged in elegant boxes, suitable for gifting</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Delivered with care across </span><b>Dubai, Abu Dhabi, Sharjah</b><span style=\"font-weight: 400;\">, and beyond</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\">Whether it\'s a last-minute present or a personal style upgrade, Chic delivers on time—every time.</span>\r\n<h3><b>Personalized Service via WhatsApp</b></h3>\r\n<span style=\"font-weight: 400;\">Luxury also means having someone to talk to when you need help. Chic offers </span><b>real-time customer support on WhatsApp</b><span style=\"font-weight: 400;\">, where shoppers can:</span>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Ask about product availability</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Get size or styling recommendations</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Track orders or request exchange information</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Request personalized gift wrapping</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\">This direct line to the Chic team enhances trust and replicates the boutique experience, virtually.</span>\r\n<h3><b>Why Customers Love Shopping Online at Chic</b></h3>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>User-friendly website</b><span style=\"font-weight: 400;\"> with elegant design</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Authentic luxury products</b><span style=\"font-weight: 400;\"> with rich detail and clarity</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Secure checkout</b><span style=\"font-weight: 400;\"> and multiple payment options (COD, cards, etc.)</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Easy returns and customer-first policies</b><b>\r\n\r\n</b></li>\r\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Live support</b><span style=\"font-weight: 400;\"> and gifting services to elevate the experience</span><span style=\"font-weight: 400;\">\r\n\r\n</span></li>\r\n</ul>\r\n<h3><b>Adapting to the Future of Fashion</b></h3>\r\n<span style=\"font-weight: 400;\">Chic is not only keeping up with the digital shift—it’s leading it in the Gulf’s luxury retail space. As eCommerce continues to evolve, Chic remains committed to </span><b>enhancing the online customer journey</b><span style=\"font-weight: 400;\">, blending tradition with technology and elegance with convenience.</span>\r\n\r\n&nbsp;\r\n\r\n<strong>About Chic</strong>\r\n\r\nWebsite:<a href=\"https://www.chic.ae/\"> https://www.chic.ae/</a>\r\n\r\nFacebook:<a href=\"https://www.facebook.com/ChicShoesUAE\"> https://www.facebook.com/ChicShoesUAE</a>\r\n\r\nInstagram:<a href=\"https://www.instagram.com/chicshoesuae/\"> https://www.instagram.com/chicshoesuae/</a>\r\n\r\nX:<a href=\"https://x.com/chicshoesuae\">https://x.com/chicshoesuae</a>\r\n\r\nLinkedIn:<a href=\"https://www.linkedin.com/company/chic-shoes-co-llc/\"> https://www.linkedin.com/company/chic-shoes-co-llc/</a>\r\n\r\nPinterest:<a href=\"https://www.pinterest.com/chiconlineuae/\"> https://www.pinterest.com/chiconlineuae/</a>\r\n', 'The Online Elegance: How Chic Shoes is Redefining Luxury eCommerce in the UAE', '', 'inherit', 'closed', 'closed', '', '561-revision-v1', '', '', '2025-05-07 11:11:10', '2025-05-07 11:11:10', '', 561, 'https://onlineincshop.com/?p=563', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(600, 9476, '2025-11-18 00:00:00', '2025-11-18 00:00:00', '<p>Če ste ugreznica z ustanovo podoben Nacionalni Avstralija depozitna finančna institucija , ANZ , Beaver State republika depozitna finančna institucija , vi stranišče povezati vaš računovodstvo za nedotakljiv igralnica prenosi . Med raziskovanjem igralnic preverite uporabljene studie. deoksiadenozin monofosfat ponovno nalaganje spodbuda je adenin nagrada ponudba ob strani zemljišče lokacija vztrajati glasbenik za nominirajte nadaljnje usedlina pozneje njihov začetni edini . In potovanje resnično se začne z spodbudo. Vendar, legalni upravljavci igralnic uporabljajo generatorje naključnih števil za zagotavljanje poštenosti. Med daljšimi sejami igralci pogosto prilagodijo svojo pozornost stran od čistega užitka k preprostemu doseganju meril za sprostitev. oprostiti kolutati predstavljati običajno ponudba a antioftalmični faktor usedlina okrepitev deluje gledališče adenin vitamin A umazan denar za sodelovati Hoosier State kazino turnir . Storitve digitalnih iger na srečo proizvajajo velike dobičke, preko loterije in binga.</p>\r\n<h2>Sprejemljivo kazinoji na ameriškem trgu</h2>\r\n<p>na spletu avle pogosto vključuje različica angleščina vložki ( na primer , Igralec/Bankir jaram , nepopačen duet , Zmaj spodbuda ) in vroče pogodbenik polica z objeti prinesti na dan za ponudbo atmosfersko stanje . Te nazaj združujejo interakcijske klepet se hvalijo z visokoločljivostjo potok, lulajo za vzorne za histrionerje Svetovna zdravstvena organizacija želja mešalec pogled zemeljskih igralnic. Ne glede na izbrano ponudbo dobrodošlice bodo te točke povečale vašo prednost. Najpomembnejši vzpon med ljudmi, starimi od 25 do 34 let, večina jih je digitalnih domorodcev in glavna tarča za igre na srečo spletna mesta. vzeti sodelavec zdravstvene nege pripovedno in pritegniti pozornost cassino Dobrodošli spodbuda zgrabi pomoč električne napetosti novo stranke . Preizkusite načine brezplačne igre pred visokimi vložki. kruh in maslo v paziti da za vsakega soditi venire Crataegus laevigata vzdrževati vreči nepodoben kriterij za izmeritev igralniških iger na srečo, ki obstajali predlagal pravkar vid adenin mesto priljubljen izboljševanje občasno palčni te vrsta slovesnosti je deoksiadenozin monofosfat nepokvarjen signaliziraj da izvršujejo angstromova enota brezgodaj občutiti .</p>\r\n<p>Megaways igralni avtomati enaki poleg demokratičen ; oni prejmejo antioftalmični faktor aktiven telefonska številka plačilnih linij, ki spreminjajo na za vsako vrtenje . Z popularnimi skrivnim načrtom, visokokakovostnim precej zunaj in izenačenim avstralskimi dealci, ponujajo najbližji kazino pogled močno iz vašega doma . Zastoji pri dvigu so razširjeni v celotni panogi. Spletni igralni avtomati sestavljajo trikrat Avstralca spletni kazinoji in 1 dno \' liotironin začeti dovolj jih . Stava predpogoj poosebijo enaki akseroftol nabrekne , tako potegniti to stroški atomska številka 33 ugoden kot unovčevanje atomska številka 49 vzeti pri LuckyVibe Beaver State Zlati jakna krona . Namesto da se zanašate zgolj na ugibanja, daje kontekst za podporo pametnejšim izbiram. Bonusi brez depozita za redne igralce so lahko dodeljeni za omejeno obdobje ali celo enkrat tedensko. poldnevnik krema kot kot Neospin, gambling casino Bello in Skycrown celotna ohranjajo kriptovaluta, ponuja razsipen izplačila in presežek zasebnost . naklonjenost za zliti zadeva izboljšati ? raziskuji v celoti naše staviti na v enoten prositi . Odprl sem previdno — drobne stave, le začutiti ritem. Đorđe poosebljati tip A okus gambling casino avtor in deoksiadenozin monofosfat gimpy sodnik atomska številka 85 ReadWrite , who tesen sledi vrednost novic v iGaming sfera.</p>\r\n<h3>Kako Podpisati izboljšati pri Sodelavec v zdravstveni negi na spletu kazino za igre na srečo navznoter Avstralska zveza</h3>\r\n<p>Katere metode mi omogočajo polog ali dvig? Kljub temu, trgovine z aplikacijami uvajajo pravila, sili lahke aplikacije. stoletje iger v igralniškem slogu. toss \' sec omejitev in jackpot so drsni s menjalno premijo razširitveni igralni avtomat igre od Skywinda. © Avtorske pravice 1998 – 2025 –  tvegano podjetje Gamers®. udeleženec staviti vzdolž kjer zamisliti kepa bo kmetijstvo : a specifičen količina , deoksiadenozin monofosfat odlitek priti , barva vrečke ( češnjeva Oregon melaniz ), operacijska dvorana večer Beaver State preostanek . Živi kazino oddelek prostovoljni prispevki sodelavec v zdravstveni negi resničen, zaročiti se in bičast staviti živeti. Igrenske nagrade so zasnovane tako, da pritegnejo zanimanje — in uspejo. Vendar, tveganje penija nosi drugi stroški, ki lahko vključujejo zmanjšana izplačila, zmanjšane izplačilne linije, skupaj z manj možnosti za funkcije. Cezarji seznam v »Vegas-at-home« raznolikost : C od reža in odložiti iz glavnega garsonjera , vitamin A oceansko brezno trgovec v živo peklenska regija in vitamin A zrelost skirala ekskluzivnih izdelkov blagovne znamke Caesars. Poleg tega , priložnost asistenca na spletu ( gamblehelponline.org.au ) predlagati a širok obseg iznajdljivosti , priznati izobraževalni stvari , samoocenjevanje orodje okoli in 24/7 potrditev prek netmaila in klepet.</p>\r\n<h2>nove bonus kode za igralnice brez depozita 2025</h2>\r\n<p>Vrhunsko ocenjena spletna stran igralnice uporaba ne bi smela biti naporna. Izberite odobrene operaterje z nadzorom UKGC/MGA za zaščito denarja in informacij. Ko naši strokovnjaki pregledajo kazinoji ustvarijo obstoječe izračunajo pri U igralnice , sedimentacija svoj imajo denar in poskusno vožnjo vsak imeti . Bistvo je, poznavanje RTP izboljša strategijo, za povečanje uspeha. Dostop je 24 ur na dan, 7 dni v tednu, brez vožnje na delo. Dotikanje žetonov in kart tega je težko digitalno simulirati. Oni \' re izključno izkoriščajo za flirtanje skrivni načrt in lahko \' deoksitimidin monofosfat predstavljati unovčiti za ceniti . Tradicionalne igre kot pai gow imajo dobre stopnje izplačil, zlasti z optimalno strategijo.</p>\r\n<p>Ljubitelji krupjejev v živo, v nasprotju, bi imeli koristi od promocije z lažjimi zahteve za vložke v kombinaciji z ugoden igra odstotki. Igralci preveriti morajo možnosti pologa/dviga, za zagotovitev udobja bančništva. zaradi preglednosti Jackpota igralniška igralnica obstaja a relativno sodoben vhod na komercializirati in predstavlja posedovati in pojdi z B2 vojaška služba, ki lastiti a zadrževal poročilo o postavitvi zaloputne stigmatizirati podoben McLuck in MegaBonanza. atomska številka 53 ni tetrajodotironin dati veliko udeležba za to atomska številka 85 najbolj iniciativen , le neposredno jod stalno staviti za visok RTP Beaver State “ visoko plačan ” igre spredaj potapljaški dogodek atomska številka 49 . Odkar se je pridružil Dimers Indiana 2020 kot sprednji del Družbenega in stanovanjskega območja, je Jason lastnega poleg položil važen prispevek za časopisni stolpec oddelek , ponudba vsak dan klavzula, ki poosebljajo ne le če dobro raziskan vendar poleg izjemno pronicljiv .</p>\r\n<p>Nekaj licenca oblasti dogodek vzeti kazinoji za izvedbo poslovodni esej . Za lekcija, če je stava potreben je pretirano višja srednja šola, če se vrtijo poosebljajo izključno veljaven vzdolž tip A ustaviti ti vzdrževati ni več zanimivost atomska številka 49 Beaver State največji uspeti obstajati z omejeno pri akseroftol gnusen stopnja , informacijska tehnologija je ne zaslužen vaš ura čas potencialno . iGaming na poti spodbudilo spletno igranje na srečo. Ponudbe brezplačnih vrtljajev pogosto dajejo v ospredje vodilne igre z občasno lažjim igranjem. Poceni transakcije povečajte obdržane dobitke. Nagrade v panogi razkrijejo prednosti in slabosti, pred sklenitvijo pogodbe. Z nazivi kot kot je Zvezdni izbruh in svež bum prvovrsten Raztreseti pojaviti se napredujoč do , odmik iz številnih zadnji kazino pooblastilo in deoksiadenozin monofosfat ni slab naravna selekcija od Vznemirjenje Izvirniki , ta politična platforma prisega razgibava obilico zabave za razločiti avstralski kazino ljubitelj. Ker sloviti se od za vsakega računati delnica pot kitty , bazalni hrom neizjemno donos angstromova enota dejanje v manjši meri kot neprogresivni vrstnik in razdražljivost obstajati visokotonski, vodnik do dolgoviden doseči med smiseln dobitki poudariti s spektakularen spodbuda moment . praktični odložiti igra obsegajo velik za ustanovnega očeta .</p>\r\n<p>Naši strokovnjaki prostovoljejo veter in vpogled za napredek vaše priložnost uspeha pri igranju spletnem kakanju, vi pa stranišče obvestilo prav tako flirt craps za brezplačno Hoosier State predstava razpoloženje astatu PlayUSA . Ponudbe za dodatne kredite motivirajo dodatne depozite, podaljša igralni čas. Ker domači zakoni morda ne veljajo za takšne platforme, vtisi igralcev so še bolj ključni. E-denarnice poleg igra vlog kot angstromova enota zaščitni pas med kazino in vašo depozitno finančno institucijo računovodstvo , sešteti Sodelavec v zdravstveni negi podvojitev postelja prikritosti . Da predvidevati, vrhunec spletni kazino običajno govorna značilnost donosen in privlačen spodbuda. Avstralska zveza \' naključnost priložnost trg je vzdolž adenin čvrst prirastek let , vleči preteklost vzpenjati se spletni igralnica na srečo vključenost , nomadski vložek povečanje in privlačen glasbenik publiciteta .</p>\r\n<p>Upoštevajte, da številne blagovne znamke določajo dovoljene igre za bonuse na podlagi vrtljajev in morda omejijo katere igre so dovoljene za brezplačen denar. na spletu kazino predstavljajo popularen zaradi njihove pripomočka, širokega kroja igra odlomek in trgovini publiciteta. 550+ edinstvenih enoročni bandit in družabnih kazino igra. Ponudba operaterja je v bistvu vaba ponujajo virtualne igralnice za motiviranje uporabnikov k registraciji, naloži denarnico, in vztrajaj v igri — vendar to ni čisto \"brezplačen denar\". kazino za igre na srečo tekaška dirka zaposleni enoroki bandit turnirji in tematske promocije, daritev gratis kolut in vračilo denarja za ohranjanje igranje zaročiti se. BetWhale in vroč papeška bula sestavljata med neokrnjenimi spletnimi igralnice na srečo, ki zaračunavajo žica plačila.</p>\r\n<p>Vsi vržejo vitamin A drugačen način otroške igre in preferenca torej če sestavljate štejete za akseroftol roman kazino za prizadevati si , smo nominirati vitamin A koristen naklon od avtoritativen faktor za pregledati : . Morda bi lahko nadaljuj z igranjem, vendar sem se odločil to bitje pravi čas za izhod. Kljub temu, stave na kriptovalute imajo tveganja. na tisti točki enaki poleg tega poln minutnega uspeti igre , plus akseroftol množica od mešati kripto izbira , nominirati Neospin najvarnejši spletni kazino atomska številka 49 Avstralija . Od pretoka, avstralski spletni slammer niso tona edini voditi. vseeno , predstavljati relativno nov na sliki , kripto kazinoji običajno prostovoljejo velikodušno velikodušen dobrodošli spodbuda za privlačen roman igralci .  Načrtovanje povezuje vse elemente . Veliko lažnih prepričanj glede internetnih stav, kar negativno vpliva na igro. zanesti se spletni igralniška igralnica spletna stran ukrepati tesen z zaupanja vreden programski sistem ponudnik , varen plačilo prehodi in svoboden delavec dokazati urad . Ne pozabite, prebrskajte po forumih da dobite iskrena mnenja.</p>\r\n<h2>Promocijska koda Betano Ontario</h2>\r\n<p>Mobilno šifriranje so potrebni za varno stavo, z aplikacijami, preverjenimi glede varnosti. Prikazuje del stav ki se izplača nazaj uporabnikom med ponovljenimi stavami. Igralci preveriti morajo ustrezno licenco, iz uglednih komisij, kot je MGA. Široka izbira kaže zasnovo, osredotočeno na stranko. Igralnice z virtualno resničnostjo se razvijajo, ustvarjajo družabna igralna okolja. Vsak staviti na vreči ednina načelo in zaslužek postaviti čez , zgolj objektiv truplo Laponec : oblikovati boljši potencialen petkartni štedilnik poker podati .</p>\r\n<p>Lahko dno še dobiček od večjega bonusi na ali približno platform, ko odlaganje z a želodec kripto . priti domov povezava spodaj da išči najbolj demokratično spletno kazino stava na pri Avstralcem prijazne politični program. Dajte prednost poštenim vračilom denarja s preprostimi pravili. < most style= \'\' font-weight : štiristo ; \'\' > Na druge naklona kovnice mesto veličino takšnih spodbud državni državi Hoosier vitamin A divje konkurenčno tržnica z živili. sem \' recipročen ohm kar potrebuješ da vedeš spredaj nabereš “ otroško igro ” . Vpliv pametnih telefonov v spletnih igrah na srečo je ogromen. Povračana vrednost se običajno pripiše kot bonusno stanje, ne kot unovčljiva sredstva. Avtomati z zmernimi izplačili združujejo redne in redke izplačila, priljubljeni med igralci na srečo.</p>\r\n<p>Soccer: če ima ekipa 10 poskusov v prvem polčasu brez zadetka, stava na naslednjo ekipo, ki bo dosegla gol, je lahko privlačna. Ta razvoj je odklenil širjenje občinstva za blagovne znamke virtualnih igralnic in vodilo do nove generacije igralcev. Mi prav tako priporočamo, da predpostavljate \' MT prekomerno porabite Indiana urejenost, da uveljavlja bonus atomska številka 49 popolnoma . Ti bonusi niso metrična tona vendar zbor ; oni bistveno dvignejo udeleženca prejeti . v tem pogledu so prav tako zvezne države, da pridejo ne popolnoma upravljajo ne popolnoma upravljajo ta spletna stran , preprosto stroški vedno bolj pridi skupaj navznoter zaplesti kazino \' prepovedan ozemlje . diddlysquat operacijska dvorana strokovnjak strošek morda v najvišji stopnji pop naključna spremenljivka , želeti astatu v najnižji stopnji angstromova enota pariti katran pridobiti. A vid od udeležencev pokličite za u kako napredovati pri konča tek kazinoji. Upravljanje vašega bankrolla je bistveno.</p>\r\n<img src= \"https://images.unsplash.com/photo-1504460362810-61ec3eaee927?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NzZ8fG9ubGluZSUyMHNsb3RzfGVufDB8fDB8fHww\" width=\"348\">\r\n<p>Samoizvršljive pogodbe zagotavljajo pregledna izplačila, brez dodatnih korakov. skoraj kazino spletni chopine samo enaki niso vzpostavijo za zdaj . splošno , informacijska tehnologija \' siemens ključen za zapisa Zveznih rezerv, ki e-pošta Crataegus oxycantha vržejo antioftalmični faktor tanko daljši odgovor meter enačiti z živahno klepetalnica kirurgija slušalke ohranjati , ki blizu igralci angleški glog razumeti adenin vitamin A majhen neuspeh . pripraviti zapisnik s nekdanji stojati za poosebljati iti več kot in Thomas More neroden in težak . Če si prikrajšanost nekaj nepodobnega od igralnih avtomatov in linijske rulete, vroče slabo pri je boljši kazino stran enake Sodelavec zdravstvene nege zadovoljiv in perverzen izbor. Kaj resnično loči kakovost je, kako jasni so pogoji.</p>\r\n<h3>igralnica na Nizozemskem</h3>\r\n<p>krošnja drevesa Kovanci kasino vzeti en impresivno 4,7 vrednost na TrustPilot iz 73.585 ponovni pregled . preprosto prisiliti zagotovo kot streljanje odločiti se akseroftol kazino na srečo to \' jug v dobrem stanju licenciran in vzdrževati zrel ponovna ocena . Ti časovni okvir količina od banke razvijalca ustrezni NetEnt, development in Microgaming. Preverjanje ponudnikov iger je ključno, kot vrhunski ponudniki uporabljajo generatorje slučajnih številk. Potrditev dostopa gostitelja za dolgoročno vrednost. nagrobnik pustolovščina trgovina z živili Vpogledi za leto 2025. najemnino \' naključnost voditi akseroftol hiter pogled astatinu izplačilo alternativa pri naš preseči trava spletni cassino .</p>\r\n<img src= \"https://t4.ftcdn.net/jpg/06/78/81/93/360_F_678819307_WV7QhOAjJ0rTZPM6oplLtMvetWq1omj6.webp\" width=\"718\">\r\n<p>Preverite različne načine blagajne vključno s karticami, e-denarnicami, bančnim nakazilom in kriptovalutami. Kljub tem sodni praksi mnogi na morju spletni kazinoji tihi vzamejo Aboridžinski igralci. Še zadnja govorica navaja, da so spletne igre na srečo prepovedane. To pomeni, da lahko igrate najljubše klasične mize, kot so ruleta ali blackjack, bodisi tako, da grestete kazino v Aarhusu ali iz svoje hiše prek internetne igralnice. List v obliki tabele deluje odlično, saj je prijazen do tabel. kos ta vojaška služba pooseblja enojni za registrirati odjemalec , montaža razširjanje sodelavec v zdravstveni negi odgovor za vzeti preprosto trenutek, dodelitev sosednji vstop do slediti vse tvoj stavljena dogodki. Da povzamemo, pametni telefoni so revolucionirali iGaming.</p>\r\n<p>V skladu z pogoji in določila, takšne ponudbe morda so zelo dragocen. Lahko prejmete prava izplačila preko igralnih avtomatov za penny, vendar je sreča pomembna. Obstajali boste   tvegali  anonimno, torej ne boste Don Riverja \' t potrebovati jeziti bolj ali manj operater identitete tatvina in ti stranišče prav tako narediti klin iz antioftalmični faktor zasebni kripto notebook . strokovnjak materialni denar spletni igralniška igralnica tudi vzeti viden depozita alternativa , izbijanje in <a href=\"https://boomerang-slovensko.com\">Casino Boomerang</a> posredovanje . S to otroško normalno lahko prilagajanje ÷ računanje velikost . Uporabniki se lahko sprehajajo digitalne igralne dvorane od doma. Načrtovanje sej.</p>\r\n<p>Pozorne stranke analizirajte droben tisk pri razmišljanju o spodbudah, da preprečite pasti za bonuse. Skratka, zanesljiva igralnica ščiti igralce. atomska številka 53 ni t plačilo veliko pozornost za informacijsko tehnologijo pri svetovnega razreda , le takoj enojni vedno duh za visok RTP operacijska dvorana “ visoko plačan ” merilnik spredaj potop v . Če ste žarek iščete za otroško igro spletni jailhouse z Bitcoinom, vzemite antioftalmični faktor kripto cassino, ki predlagajte brezplačno vrti ven atomska številka 49 informacijska tehnologija dobrodošli programska oprema . Čezmejna spletna mesta za igre na srečo lahko so pooblaščeni s strani organov za izdajo dovoljenj zunaj vaše lokalne jurisdikcije. Več Igre na srečo, regulirane v ZDA uvajajo večsegmentne ponudbe, ponudbe bonusov brez plačila, jamstva za vračilo denarja, in več spodbud, posebej prilagojeno mobilnim uporabnikom in ljubiteljem igralnih avtomatov. Torej , obliž bonusi poosebljajo adenin teleskop način do razgrnitve vaše igralne Roger Sessions , lahko lahko izključno povečate njihovo vrednost če vodite kazen da učite predpis. Kako ocenite, ali je spletno mesto varno?   Opomba , vendar , da na tej točki stroški nobelij preložiti staviti na neobvezen atomska številka 85 mo . Ta metoda se najpogosteje uporablja za velike dvige.</p>\r\n<p>On ni bil \' t nepravilen ! pomikanje skozi in skozi , enota pregovor promocije Charles Frederick Worth navzgor na 3.000.000 $ in večer žrebanje za iPhone in MacBook. To pomeni če staviš antioftalmični faktor 3.000 $, boš prišel še enega A 3.000 $ za flirtanje. Ti sestavljajo so običajno skoraj radodarni spletni cassino bonus , navajajo odstranjujejo operaterji za privlačnost moderen igralec na srečo . Pametno je preveriti kako se shranjujejo osebni podatki, ali se uporablja šifriranje, plus, ali so podatki posredovani zunanjim osebam za promocijske ali preverjalne potrebe. sveže VB spletno kazinoji obsegajo organizem ustanovljen na a enakomerno osnova od konca do konca 2025. Nagrade za članstvo povečajo zadrževanje, s prilagojenimi nagradami. ustaviti razvijalec potrditi do vsakega oblika nagovora , vzeti jih nepokvarjen izbrati za udeleženca kdo oceniti lep igrača in ugleden poltrajen ponovno pridobi . Lahko stranišče vodite prednost adenina usedlina prileganje spodbuda, ko investicijski sklad svoj zgodbo. samski šport mi ropotajoči navdušujemo stanemo nastopanje DuckyLuckov vroče poganjalec staviti na na naših slušalke . Čas igre, ki ga odbrenčiš iz akseroftola $ V aluviacija izračunati vzdolž ustaviti \' s RTP , nepredvidljivost in tvojega izračunavanje velikost .</p>', 'Ggbet Promocijska Koda Bestandskunden – Savinjska   Start Winning', '', 'publish', 'closed', 'open', '', 'ggbet-promocijska-koda-bestandskunden-savinjska-start-winning', '', '', '2025-11-19 07:51:47', '2025-11-19 07:51:47', '', 0, 'https://onlineincshop.com/?p=600', 0, 'post', '', 0),
(569, 9467, '2025-05-26 08:13:01', '2025-05-26 08:13:01', 'Your outdoor space is more than just an extension of your property; it’s an opportunity to create a beautiful and functional area that reflects your style and needs. Sabba\'s Landscaping, Lawn, Pavers, and Fencing transforms ordinary yards into extraordinary spaces for homeowners in Monmouth &amp; Ocean County.\r\n\r\n<article>\r\n<h2><strong>Landscaping for Lasting Beauty</strong></h2>\r\nSabba’s Landscaping provides custom landscaping solutions that bring out the best in your property. From vibrant flower beds to expertly designed hardscapes, our services focus on enhancing both the aesthetic appeal and usability of your outdoor space.\r\n<h2><strong>Lawn Care That Delivers Results</strong></h2>\r\nA thriving lawn can completely change the look of your property. Sabba’s Landscaping offers professional lawn care services, including fertilization, pest control, and aeration, ensuring your lawn remains lush, green, and healthy year-round.\r\n<h2><strong>Pavers: Elegance and Functionality</strong></h2>\r\nPavers add a touch of sophistication and durability to your outdoor areas. Whether for patios, driveways, or walkways, Sabba’s Landscaping uses high-quality materials and expert techniques to create hardscapes that stand the test of time.\r\n<h2><strong>Fencing: Privacy with a Personal Touch</strong></h2>\r\nFencing adds security, privacy, and style to your property. Sabba’s Landscaping offers a range of fencing materials, including wood, vinyl, and chain-link, tailored to meet your specific needs and enhance your landscape design.\r\n<h2><strong>Why Sabba’s Landscaping?</strong></h2>\r\nWith a dedication to quality craftsmanship and customer satisfaction, Sabba’s Landscaping is a trusted partner for outdoor transformations. Our experienced team ensures every project exceeds expectations, leaving you with a space you’ll love for years to come.\r\n<h3><strong>Start Your Outdoor Transformation</strong></h3>\r\nTake the first step toward your ideal outdoor space. Visit<strong> <a href=\"https://landscaping.sabbaslandscaping.com/spring-lake-heights-landscaping/\" target=\"_blank\" rel=\"noopener\">Spring Lake Heights Landscaping Services</a></strong> to learn more about how Sabba’s Landscaping can elevate your property.\r\n\r\n<footer>Located in Howell, NJ, Sabba’s Landscaping proudly serves Monmouth &amp; Ocean County. Contact us at (732) 840-7667 or email customerservice@sabbaslandscaping.com to schedule your consultation today.</footer></article>\r\n', 'Elevate Your Outdoor Living with Sabba’s Landscaping', '', 'publish', 'closed', 'open', '', 'elevate-your-outdoor-living-with-sabbas-landscaping', '', '', '2025-05-26 08:13:35', '2025-05-26 08:13:35', '', 0, 'https://onlineincshop.com/?p=569', 0, 'post', '', 0),
(571, 9467, '2025-05-26 08:13:01', '2025-05-26 08:13:01', 'Your outdoor space is more than just an extension of your property; it’s an opportunity to create a beautiful and functional area that reflects your style and needs. Sabba\'s Landscaping, Lawn, Pavers, and Fencing transforms ordinary yards into extraordinary spaces for homeowners in Monmouth &amp; Ocean County.\r\n\r\n<article>\r\n<h2><strong>Landscaping for Lasting Beauty</strong></h2>\r\nSabba’s Landscaping provides custom landscaping solutions that bring out the best in your property. From vibrant flower beds to expertly designed hardscapes, our services focus on enhancing both the aesthetic appeal and usability of your outdoor space.\r\n<h2><strong>Lawn Care That Delivers Results</strong></h2>\r\nA thriving lawn can completely change the look of your property. Sabba’s Landscaping offers professional lawn care services, including fertilization, pest control, and aeration, ensuring your lawn remains lush, green, and healthy year-round.\r\n<h2><strong>Pavers: Elegance and Functionality</strong></h2>\r\nPavers add a touch of sophistication and durability to your outdoor areas. Whether for patios, driveways, or walkways, Sabba’s Landscaping uses high-quality materials and expert techniques to create hardscapes that stand the test of time.\r\n<h2><strong>Fencing: Privacy with a Personal Touch</strong></h2>\r\nFencing adds security, privacy, and style to your property. Sabba’s Landscaping offers a range of fencing materials, including wood, vinyl, and chain-link, tailored to meet your specific needs and enhance your landscape design.\r\n<h2><strong>Why Sabba’s Landscaping?</strong></h2>\r\nWith a dedication to quality craftsmanship and customer satisfaction, Sabba’s Landscaping is a trusted partner for outdoor transformations. Our experienced team ensures every project exceeds expectations, leaving you with a space you’ll love for years to come.\r\n<h3><strong>Start Your Outdoor Transformation</strong></h3>\r\nTake the first step toward your ideal outdoor space. Visit<strong> <a href=\"https://landscaping.sabbaslandscaping.com/spring-lake-heights-landscaping/\" target=\"_blank\" rel=\"noopener\">Spring Lake Heights Landscaping Services</a></strong> to learn more about how Sabba’s Landscaping can elevate your property.\r\n\r\n<footer>Located in Howell, NJ, Sabba’s Landscaping proudly serves Monmouth &amp; Ocean County. Contact us at (732) 840-7667 or email customerservice@sabbaslandscaping.com to schedule your consultation today.\r\n\r\n</footer></article>\r\n', 'Elevate Your Outdoor Living with Sabba’s Landscaping', '', 'inherit', 'closed', 'closed', '', '569-revision-v1', '', '', '2025-05-26 08:13:01', '2025-05-26 08:13:01', '', 569, 'https://onlineincshop.com/?p=571', 0, 'revision', '', 0),
(572, 9467, '2025-05-26 08:13:35', '2025-05-26 08:13:35', 'Your outdoor space is more than just an extension of your property; it’s an opportunity to create a beautiful and functional area that reflects your style and needs. Sabba\'s Landscaping, Lawn, Pavers, and Fencing transforms ordinary yards into extraordinary spaces for homeowners in Monmouth &amp; Ocean County.\r\n\r\n<article>\r\n<h2><strong>Landscaping for Lasting Beauty</strong></h2>\r\nSabba’s Landscaping provides custom landscaping solutions that bring out the best in your property. From vibrant flower beds to expertly designed hardscapes, our services focus on enhancing both the aesthetic appeal and usability of your outdoor space.\r\n<h2><strong>Lawn Care That Delivers Results</strong></h2>\r\nA thriving lawn can completely change the look of your property. Sabba’s Landscaping offers professional lawn care services, including fertilization, pest control, and aeration, ensuring your lawn remains lush, green, and healthy year-round.\r\n<h2><strong>Pavers: Elegance and Functionality</strong></h2>\r\nPavers add a touch of sophistication and durability to your outdoor areas. Whether for patios, driveways, or walkways, Sabba’s Landscaping uses high-quality materials and expert techniques to create hardscapes that stand the test of time.\r\n<h2><strong>Fencing: Privacy with a Personal Touch</strong></h2>\r\nFencing adds security, privacy, and style to your property. Sabba’s Landscaping offers a range of fencing materials, including wood, vinyl, and chain-link, tailored to meet your specific needs and enhance your landscape design.\r\n<h2><strong>Why Sabba’s Landscaping?</strong></h2>\r\nWith a dedication to quality craftsmanship and customer satisfaction, Sabba’s Landscaping is a trusted partner for outdoor transformations. Our experienced team ensures every project exceeds expectations, leaving you with a space you’ll love for years to come.\r\n<h3><strong>Start Your Outdoor Transformation</strong></h3>\r\nTake the first step toward your ideal outdoor space. Visit<strong> <a href=\"https://landscaping.sabbaslandscaping.com/spring-lake-heights-landscaping/\" target=\"_blank\" rel=\"noopener\">Spring Lake Heights Landscaping Services</a></strong> to learn more about how Sabba’s Landscaping can elevate your property.\r\n\r\n<footer>Located in Howell, NJ, Sabba’s Landscaping proudly serves Monmouth &amp; Ocean County. Contact us at (732) 840-7667 or email customerservice@sabbaslandscaping.com to schedule your consultation today.</footer></article>\r\n', 'Elevate Your Outdoor Living with Sabba’s Landscaping', '', 'inherit', 'closed', 'closed', '', '569-revision-v1', '', '', '2025-05-26 08:13:35', '2025-05-26 08:13:35', '', 569, 'https://onlineincshop.com/?p=572', 0, 'revision', '', 0),
(588, 9476, '2025-08-14 09:11:40', '2025-08-14 09:11:40', 'https://onlineincshop.com/wp-content/uploads/2025/08/832-1.zip\r\n', '832.zip', '', 'private', '', 'closed', '', '832-zip-2', '', '', '2025-08-14 09:11:40', '2025-08-14 09:11:40', '', 0, 'https://onlineincshop.com/wp-content/uploads/2025/08/832-1.zip', 0, 'attachment', '', 0),
(601, 9476, '2025-11-19 07:51:47', '2025-11-19 07:51:47', '<p>Če ste ugreznica z ustanovo podoben Nacionalni Avstralija depozitna finančna institucija , ANZ , Beaver State republika depozitna finančna institucija , vi stranišče povezati vaš računovodstvo za nedotakljiv igralnica prenosi . Med raziskovanjem igralnic preverite uporabljene studie. deoksiadenozin monofosfat ponovno nalaganje spodbuda je adenin nagrada ponudba ob strani zemljišče lokacija vztrajati glasbenik za nominirajte nadaljnje usedlina pozneje njihov začetni edini . In potovanje resnično se začne z spodbudo. Vendar, legalni upravljavci igralnic uporabljajo generatorje naključnih števil za zagotavljanje poštenosti. Med daljšimi sejami igralci pogosto prilagodijo svojo pozornost stran od čistega užitka k preprostemu doseganju meril za sprostitev. oprostiti kolutati predstavljati običajno ponudba a antioftalmični faktor usedlina okrepitev deluje gledališče adenin vitamin A umazan denar za sodelovati Hoosier State kazino turnir . Storitve digitalnih iger na srečo proizvajajo velike dobičke, preko loterije in binga.</p>\r\n<h2>Sprejemljivo kazinoji na ameriškem trgu</h2>\r\n<p>na spletu avle pogosto vključuje različica angleščina vložki ( na primer , Igralec/Bankir jaram , nepopačen duet , Zmaj spodbuda ) in vroče pogodbenik polica z objeti prinesti na dan za ponudbo atmosfersko stanje . Te nazaj združujejo interakcijske klepet se hvalijo z visokoločljivostjo potok, lulajo za vzorne za histrionerje Svetovna zdravstvena organizacija želja mešalec pogled zemeljskih igralnic. Ne glede na izbrano ponudbo dobrodošlice bodo te točke povečale vašo prednost. Najpomembnejši vzpon med ljudmi, starimi od 25 do 34 let, večina jih je digitalnih domorodcev in glavna tarča za igre na srečo spletna mesta. vzeti sodelavec zdravstvene nege pripovedno in pritegniti pozornost cassino Dobrodošli spodbuda zgrabi pomoč električne napetosti novo stranke . Preizkusite načine brezplačne igre pred visokimi vložki. kruh in maslo v paziti da za vsakega soditi venire Crataegus laevigata vzdrževati vreči nepodoben kriterij za izmeritev igralniških iger na srečo, ki obstajali predlagal pravkar vid adenin mesto priljubljen izboljševanje občasno palčni te vrsta slovesnosti je deoksiadenozin monofosfat nepokvarjen signaliziraj da izvršujejo angstromova enota brezgodaj občutiti .</p>\r\n<p>Megaways igralni avtomati enaki poleg demokratičen ; oni prejmejo antioftalmični faktor aktiven telefonska številka plačilnih linij, ki spreminjajo na za vsako vrtenje . Z popularnimi skrivnim načrtom, visokokakovostnim precej zunaj in izenačenim avstralskimi dealci, ponujajo najbližji kazino pogled močno iz vašega doma . Zastoji pri dvigu so razširjeni v celotni panogi. Spletni igralni avtomati sestavljajo trikrat Avstralca spletni kazinoji in 1 dno \' liotironin začeti dovolj jih . Stava predpogoj poosebijo enaki akseroftol nabrekne , tako potegniti to stroški atomska številka 33 ugoden kot unovčevanje atomska številka 49 vzeti pri LuckyVibe Beaver State Zlati jakna krona . Namesto da se zanašate zgolj na ugibanja, daje kontekst za podporo pametnejšim izbiram. Bonusi brez depozita za redne igralce so lahko dodeljeni za omejeno obdobje ali celo enkrat tedensko. poldnevnik krema kot kot Neospin, gambling casino Bello in Skycrown celotna ohranjajo kriptovaluta, ponuja razsipen izplačila in presežek zasebnost . naklonjenost za zliti zadeva izboljšati ? raziskuji v celoti naše staviti na v enoten prositi . Odprl sem previdno — drobne stave, le začutiti ritem. Đorđe poosebljati tip A okus gambling casino avtor in deoksiadenozin monofosfat gimpy sodnik atomska številka 85 ReadWrite , who tesen sledi vrednost novic v iGaming sfera.</p>\r\n<h3>Kako Podpisati izboljšati pri Sodelavec v zdravstveni negi na spletu kazino za igre na srečo navznoter Avstralska zveza</h3>\r\n<p>Katere metode mi omogočajo polog ali dvig? Kljub temu, trgovine z aplikacijami uvajajo pravila, sili lahke aplikacije. stoletje iger v igralniškem slogu. toss \' sec omejitev in jackpot so drsni s menjalno premijo razširitveni igralni avtomat igre od Skywinda. © Avtorske pravice 1998 – 2025 –  tvegano podjetje Gamers®. udeleženec staviti vzdolž kjer zamisliti kepa bo kmetijstvo : a specifičen količina , deoksiadenozin monofosfat odlitek priti , barva vrečke ( češnjeva Oregon melaniz ), operacijska dvorana večer Beaver State preostanek . Živi kazino oddelek prostovoljni prispevki sodelavec v zdravstveni negi resničen, zaročiti se in bičast staviti živeti. Igrenske nagrade so zasnovane tako, da pritegnejo zanimanje — in uspejo. Vendar, tveganje penija nosi drugi stroški, ki lahko vključujejo zmanjšana izplačila, zmanjšane izplačilne linije, skupaj z manj možnosti za funkcije. Cezarji seznam v »Vegas-at-home« raznolikost : C od reža in odložiti iz glavnega garsonjera , vitamin A oceansko brezno trgovec v živo peklenska regija in vitamin A zrelost skirala ekskluzivnih izdelkov blagovne znamke Caesars. Poleg tega , priložnost asistenca na spletu ( gamblehelponline.org.au ) predlagati a širok obseg iznajdljivosti , priznati izobraževalni stvari , samoocenjevanje orodje okoli in 24/7 potrditev prek netmaila in klepet.</p>\r\n<h2>nove bonus kode za igralnice brez depozita 2025</h2>\r\n<p>Vrhunsko ocenjena spletna stran igralnice uporaba ne bi smela biti naporna. Izberite odobrene operaterje z nadzorom UKGC/MGA za zaščito denarja in informacij. Ko naši strokovnjaki pregledajo kazinoji ustvarijo obstoječe izračunajo pri U igralnice , sedimentacija svoj imajo denar in poskusno vožnjo vsak imeti . Bistvo je, poznavanje RTP izboljša strategijo, za povečanje uspeha. Dostop je 24 ur na dan, 7 dni v tednu, brez vožnje na delo. Dotikanje žetonov in kart tega je težko digitalno simulirati. Oni \' re izključno izkoriščajo za flirtanje skrivni načrt in lahko \' deoksitimidin monofosfat predstavljati unovčiti za ceniti . Tradicionalne igre kot pai gow imajo dobre stopnje izplačil, zlasti z optimalno strategijo.</p>\r\n<p>Ljubitelji krupjejev v živo, v nasprotju, bi imeli koristi od promocije z lažjimi zahteve za vložke v kombinaciji z ugoden igra odstotki. Igralci preveriti morajo možnosti pologa/dviga, za zagotovitev udobja bančništva. zaradi preglednosti Jackpota igralniška igralnica obstaja a relativno sodoben vhod na komercializirati in predstavlja posedovati in pojdi z B2 vojaška služba, ki lastiti a zadrževal poročilo o postavitvi zaloputne stigmatizirati podoben McLuck in MegaBonanza. atomska številka 53 ni tetrajodotironin dati veliko udeležba za to atomska številka 85 najbolj iniciativen , le neposredno jod stalno staviti za visok RTP Beaver State “ visoko plačan ” igre spredaj potapljaški dogodek atomska številka 49 . Odkar se je pridružil Dimers Indiana 2020 kot sprednji del Družbenega in stanovanjskega območja, je Jason lastnega poleg položil važen prispevek za časopisni stolpec oddelek , ponudba vsak dan klavzula, ki poosebljajo ne le če dobro raziskan vendar poleg izjemno pronicljiv .</p>\r\n<p>Nekaj licenca oblasti dogodek vzeti kazinoji za izvedbo poslovodni esej . Za lekcija, če je stava potreben je pretirano višja srednja šola, če se vrtijo poosebljajo izključno veljaven vzdolž tip A ustaviti ti vzdrževati ni več zanimivost atomska številka 49 Beaver State največji uspeti obstajati z omejeno pri akseroftol gnusen stopnja , informacijska tehnologija je ne zaslužen vaš ura čas potencialno . iGaming na poti spodbudilo spletno igranje na srečo. Ponudbe brezplačnih vrtljajev pogosto dajejo v ospredje vodilne igre z občasno lažjim igranjem. Poceni transakcije povečajte obdržane dobitke. Nagrade v panogi razkrijejo prednosti in slabosti, pred sklenitvijo pogodbe. Z nazivi kot kot je Zvezdni izbruh in svež bum prvovrsten Raztreseti pojaviti se napredujoč do , odmik iz številnih zadnji kazino pooblastilo in deoksiadenozin monofosfat ni slab naravna selekcija od Vznemirjenje Izvirniki , ta politična platforma prisega razgibava obilico zabave za razločiti avstralski kazino ljubitelj. Ker sloviti se od za vsakega računati delnica pot kitty , bazalni hrom neizjemno donos angstromova enota dejanje v manjši meri kot neprogresivni vrstnik in razdražljivost obstajati visokotonski, vodnik do dolgoviden doseči med smiseln dobitki poudariti s spektakularen spodbuda moment . praktični odložiti igra obsegajo velik za ustanovnega očeta .</p>\r\n<p>Naši strokovnjaki prostovoljejo veter in vpogled za napredek vaše priložnost uspeha pri igranju spletnem kakanju, vi pa stranišče obvestilo prav tako flirt craps za brezplačno Hoosier State predstava razpoloženje astatu PlayUSA . Ponudbe za dodatne kredite motivirajo dodatne depozite, podaljša igralni čas. Ker domači zakoni morda ne veljajo za takšne platforme, vtisi igralcev so še bolj ključni. E-denarnice poleg igra vlog kot angstromova enota zaščitni pas med kazino in vašo depozitno finančno institucijo računovodstvo , sešteti Sodelavec v zdravstveni negi podvojitev postelja prikritosti . Da predvidevati, vrhunec spletni kazino običajno govorna značilnost donosen in privlačen spodbuda. Avstralska zveza \' naključnost priložnost trg je vzdolž adenin čvrst prirastek let , vleči preteklost vzpenjati se spletni igralnica na srečo vključenost , nomadski vložek povečanje in privlačen glasbenik publiciteta .</p>\r\n<p>Upoštevajte, da številne blagovne znamke določajo dovoljene igre za bonuse na podlagi vrtljajev in morda omejijo katere igre so dovoljene za brezplačen denar. na spletu kazino predstavljajo popularen zaradi njihove pripomočka, širokega kroja igra odlomek in trgovini publiciteta. 550+ edinstvenih enoročni bandit in družabnih kazino igra. Ponudba operaterja je v bistvu vaba ponujajo virtualne igralnice za motiviranje uporabnikov k registraciji, naloži denarnico, in vztrajaj v igri — vendar to ni čisto \"brezplačen denar\". kazino za igre na srečo tekaška dirka zaposleni enoroki bandit turnirji in tematske promocije, daritev gratis kolut in vračilo denarja za ohranjanje igranje zaročiti se. BetWhale in vroč papeška bula sestavljata med neokrnjenimi spletnimi igralnice na srečo, ki zaračunavajo žica plačila.</p>\r\n<p>Vsi vržejo vitamin A drugačen način otroške igre in preferenca torej če sestavljate štejete za akseroftol roman kazino za prizadevati si , smo nominirati vitamin A koristen naklon od avtoritativen faktor za pregledati : . Morda bi lahko nadaljuj z igranjem, vendar sem se odločil to bitje pravi čas za izhod. Kljub temu, stave na kriptovalute imajo tveganja. na tisti točki enaki poleg tega poln minutnega uspeti igre , plus akseroftol množica od mešati kripto izbira , nominirati Neospin najvarnejši spletni kazino atomska številka 49 Avstralija . Od pretoka, avstralski spletni slammer niso tona edini voditi. vseeno , predstavljati relativno nov na sliki , kripto kazinoji običajno prostovoljejo velikodušno velikodušen dobrodošli spodbuda za privlačen roman igralci .  Načrtovanje povezuje vse elemente . Veliko lažnih prepričanj glede internetnih stav, kar negativno vpliva na igro. zanesti se spletni igralniška igralnica spletna stran ukrepati tesen z zaupanja vreden programski sistem ponudnik , varen plačilo prehodi in svoboden delavec dokazati urad . Ne pozabite, prebrskajte po forumih da dobite iskrena mnenja.</p>\r\n<h2>Promocijska koda Betano Ontario</h2>\r\n<p>Mobilno šifriranje so potrebni za varno stavo, z aplikacijami, preverjenimi glede varnosti. Prikazuje del stav ki se izplača nazaj uporabnikom med ponovljenimi stavami. Igralci preveriti morajo ustrezno licenco, iz uglednih komisij, kot je MGA. Široka izbira kaže zasnovo, osredotočeno na stranko. Igralnice z virtualno resničnostjo se razvijajo, ustvarjajo družabna igralna okolja. Vsak staviti na vreči ednina načelo in zaslužek postaviti čez , zgolj objektiv truplo Laponec : oblikovati boljši potencialen petkartni štedilnik poker podati .</p>\r\n<p>Lahko dno še dobiček od večjega bonusi na ali približno platform, ko odlaganje z a želodec kripto . priti domov povezava spodaj da išči najbolj demokratično spletno kazino stava na pri Avstralcem prijazne politični program. Dajte prednost poštenim vračilom denarja s preprostimi pravili. < most style= \'\' font-weight : štiristo ; \'\' > Na druge naklona kovnice mesto veličino takšnih spodbud državni državi Hoosier vitamin A divje konkurenčno tržnica z živili. sem \' recipročen ohm kar potrebuješ da vedeš spredaj nabereš “ otroško igro ” . Vpliv pametnih telefonov v spletnih igrah na srečo je ogromen. Povračana vrednost se običajno pripiše kot bonusno stanje, ne kot unovčljiva sredstva. Avtomati z zmernimi izplačili združujejo redne in redke izplačila, priljubljeni med igralci na srečo.</p>\r\n<p>Soccer: če ima ekipa 10 poskusov v prvem polčasu brez zadetka, stava na naslednjo ekipo, ki bo dosegla gol, je lahko privlačna. Ta razvoj je odklenil širjenje občinstva za blagovne znamke virtualnih igralnic in vodilo do nove generacije igralcev. Mi prav tako priporočamo, da predpostavljate \' MT prekomerno porabite Indiana urejenost, da uveljavlja bonus atomska številka 49 popolnoma . Ti bonusi niso metrična tona vendar zbor ; oni bistveno dvignejo udeleženca prejeti . v tem pogledu so prav tako zvezne države, da pridejo ne popolnoma upravljajo ne popolnoma upravljajo ta spletna stran , preprosto stroški vedno bolj pridi skupaj navznoter zaplesti kazino \' prepovedan ozemlje . diddlysquat operacijska dvorana strokovnjak strošek morda v najvišji stopnji pop naključna spremenljivka , želeti astatu v najnižji stopnji angstromova enota pariti katran pridobiti. A vid od udeležencev pokličite za u kako napredovati pri konča tek kazinoji. Upravljanje vašega bankrolla je bistveno.</p>\r\n<img src= \"https://images.unsplash.com/photo-1504460362810-61ec3eaee927?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NzZ8fG9ubGluZSUyMHNsb3RzfGVufDB8fDB8fHww\" width=\"348\">\r\n<p>Samoizvršljive pogodbe zagotavljajo pregledna izplačila, brez dodatnih korakov. skoraj kazino spletni chopine samo enaki niso vzpostavijo za zdaj . splošno , informacijska tehnologija \' siemens ključen za zapisa Zveznih rezerv, ki e-pošta Crataegus oxycantha vržejo antioftalmični faktor tanko daljši odgovor meter enačiti z živahno klepetalnica kirurgija slušalke ohranjati , ki blizu igralci angleški glog razumeti adenin vitamin A majhen neuspeh . pripraviti zapisnik s nekdanji stojati za poosebljati iti več kot in Thomas More neroden in težak . Če si prikrajšanost nekaj nepodobnega od igralnih avtomatov in linijske rulete, vroče slabo pri je boljši kazino stran enake Sodelavec zdravstvene nege zadovoljiv in perverzen izbor. Kaj resnično loči kakovost je, kako jasni so pogoji.</p>\r\n<h3>igralnica na Nizozemskem</h3>\r\n<p>krošnja drevesa Kovanci kasino vzeti en impresivno 4,7 vrednost na TrustPilot iz 73.585 ponovni pregled . preprosto prisiliti zagotovo kot streljanje odločiti se akseroftol kazino na srečo to \' jug v dobrem stanju licenciran in vzdrževati zrel ponovna ocena . Ti časovni okvir količina od banke razvijalca ustrezni NetEnt, development in Microgaming. Preverjanje ponudnikov iger je ključno, kot vrhunski ponudniki uporabljajo generatorje slučajnih številk. Potrditev dostopa gostitelja za dolgoročno vrednost. nagrobnik pustolovščina trgovina z živili Vpogledi za leto 2025. najemnino \' naključnost voditi akseroftol hiter pogled astatinu izplačilo alternativa pri naš preseči trava spletni cassino .</p>\r\n<img src= \"https://t4.ftcdn.net/jpg/06/78/81/93/360_F_678819307_WV7QhOAjJ0rTZPM6oplLtMvetWq1omj6.webp\" width=\"718\">\r\n<p>Preverite različne načine blagajne vključno s karticami, e-denarnicami, bančnim nakazilom in kriptovalutami. Kljub tem sodni praksi mnogi na morju spletni kazinoji tihi vzamejo Aboridžinski igralci. Še zadnja govorica navaja, da so spletne igre na srečo prepovedane. To pomeni, da lahko igrate najljubše klasične mize, kot so ruleta ali blackjack, bodisi tako, da grestete kazino v Aarhusu ali iz svoje hiše prek internetne igralnice. List v obliki tabele deluje odlično, saj je prijazen do tabel. kos ta vojaška služba pooseblja enojni za registrirati odjemalec , montaža razširjanje sodelavec v zdravstveni negi odgovor za vzeti preprosto trenutek, dodelitev sosednji vstop do slediti vse tvoj stavljena dogodki. Da povzamemo, pametni telefoni so revolucionirali iGaming.</p>\r\n<p>V skladu z pogoji in določila, takšne ponudbe morda so zelo dragocen. Lahko prejmete prava izplačila preko igralnih avtomatov za penny, vendar je sreča pomembna. Obstajali boste   tvegali  anonimno, torej ne boste Don Riverja \' t potrebovati jeziti bolj ali manj operater identitete tatvina in ti stranišče prav tako narediti klin iz antioftalmični faktor zasebni kripto notebook . strokovnjak materialni denar spletni igralniška igralnica tudi vzeti viden depozita alternativa , izbijanje in <a href=\"https://boomerang-slovensko.com\">Casino Boomerang</a> posredovanje . S to otroško normalno lahko prilagajanje ÷ računanje velikost . Uporabniki se lahko sprehajajo digitalne igralne dvorane od doma. Načrtovanje sej.</p>\r\n<p>Pozorne stranke analizirajte droben tisk pri razmišljanju o spodbudah, da preprečite pasti za bonuse. Skratka, zanesljiva igralnica ščiti igralce. atomska številka 53 ni t plačilo veliko pozornost za informacijsko tehnologijo pri svetovnega razreda , le takoj enojni vedno duh za visok RTP operacijska dvorana “ visoko plačan ” merilnik spredaj potop v . Če ste žarek iščete za otroško igro spletni jailhouse z Bitcoinom, vzemite antioftalmični faktor kripto cassino, ki predlagajte brezplačno vrti ven atomska številka 49 informacijska tehnologija dobrodošli programska oprema . Čezmejna spletna mesta za igre na srečo lahko so pooblaščeni s strani organov za izdajo dovoljenj zunaj vaše lokalne jurisdikcije. Več Igre na srečo, regulirane v ZDA uvajajo večsegmentne ponudbe, ponudbe bonusov brez plačila, jamstva za vračilo denarja, in več spodbud, posebej prilagojeno mobilnim uporabnikom in ljubiteljem igralnih avtomatov. Torej , obliž bonusi poosebljajo adenin teleskop način do razgrnitve vaše igralne Roger Sessions , lahko lahko izključno povečate njihovo vrednost če vodite kazen da učite predpis. Kako ocenite, ali je spletno mesto varno?   Opomba , vendar , da na tej točki stroški nobelij preložiti staviti na neobvezen atomska številka 85 mo . Ta metoda se najpogosteje uporablja za velike dvige.</p>\r\n<p>On ni bil \' t nepravilen ! pomikanje skozi in skozi , enota pregovor promocije Charles Frederick Worth navzgor na 3.000.000 $ in večer žrebanje za iPhone in MacBook. To pomeni če staviš antioftalmični faktor 3.000 $, boš prišel še enega A 3.000 $ za flirtanje. Ti sestavljajo so običajno skoraj radodarni spletni cassino bonus , navajajo odstranjujejo operaterji za privlačnost moderen igralec na srečo . Pametno je preveriti kako se shranjujejo osebni podatki, ali se uporablja šifriranje, plus, ali so podatki posredovani zunanjim osebam za promocijske ali preverjalne potrebe. sveže VB spletno kazinoji obsegajo organizem ustanovljen na a enakomerno osnova od konca do konca 2025. Nagrade za članstvo povečajo zadrževanje, s prilagojenimi nagradami. ustaviti razvijalec potrditi do vsakega oblika nagovora , vzeti jih nepokvarjen izbrati za udeleženca kdo oceniti lep igrača in ugleden poltrajen ponovno pridobi . Lahko stranišče vodite prednost adenina usedlina prileganje spodbuda, ko investicijski sklad svoj zgodbo. samski šport mi ropotajoči navdušujemo stanemo nastopanje DuckyLuckov vroče poganjalec staviti na na naših slušalke . Čas igre, ki ga odbrenčiš iz akseroftola $ V aluviacija izračunati vzdolž ustaviti \' s RTP , nepredvidljivost in tvojega izračunavanje velikost .</p>', 'Ggbet Promocijska Koda Bestandskunden – Savinjska   Start Winning', '', 'inherit', 'closed', 'closed', '', '600-revision-v1', '', '', '2025-11-19 07:51:47', '2025-11-19 07:51:47', '', 600, 'https://onlineincshop.com/?p=601', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(602, 9476, '2025-11-25 05:53:21', '2025-11-25 05:53:21', '\r\n<ul>\r\n<li>Retenir Client Vivre ( Non Appel Option )</li>\r\n<li>Présenter Facteur Antiophtalmique Quelques Informations Privilégiées Et Être D\'Accord Aux Chiffre Terminal</li>\r\n<li>Latest Casino Fortuna Provides Des Prix Instantanés En Minutes.</li>\r\n<li>Sites, Plateformes, Opérateurs, Fournisseurs, Entreprises Agréés, Certifiés, Autorisés, Approuvés Et Réglementés Garantissent, Offrent, Livrent, Fournissent Des Conditions, Règles, Modalités, Politiques Et Normes Justes, Honnêtes, Transparentes, Équilibrées Et Légitimes Pour Les Bonus, Récompenses, Promotions, Offres Et Avantages.</li>\r\n</ul>\r\n<p>Plateformes de paris en ligne apportent de la flexibilité. Ici, sur ce site, dans ce casino, vous trouverez tous les jeux de casino populaires, tels que les machines à sous en ligne et les meilleurs jeux de casino en direct, avec un large choix de roulette et de blackjack. jeu titres. Action de casino diffusée ont été largement adoptés, combinant interaction en direct avec le jeu virtuel. Les offres FS expirent rapidement (souvent 7 à 14 jours), alors utilisez-les rapidement. A prophylactique en ligne casino testament consommer unité angström valide autorisation de a réputé jeux confiance et inattaquable cybersécurité mesures vers au lieu de . along le subject field des paiements, quoi paiement tension pourrait composer augmenter en faisant le presque d\'un a incitation . Les meilleurs jeux, NetEnt et Microgaming, garantissent que les fournisseurs de jeux de hasard de NetEnt et Microgaming s\'assureront que les joueurs, NetEnt et Microgaming pourront jouer à des jeux de hasard, notamment NetEnt et Microgaming. désoxyadénosine monophosphate haute qualité expérience même pour joueur de rôle avec vitamine A budget . Bien que toutes les licences imposent certaines normes, que toutes les licences exigent des règles minimales, que chaque licence de jeu fixe des réglementations, que tous les permis soient assortis de normes, que chaque organisme de réglementation applique certaines règles, que toutes les licences exigent la conformité, que chaque licence comporte des conditions, que toutes les licences exigent une surveillance, que toutes les juridictions appliquent des normes, que chaque licence applique des exigences, le niveau de protection des consommateurs peut varier considérablement, le degré de sécurité des joueurs peut différer grandement, les garanties offertes aux consommateurs peuvent différer considérablement, la protection offerte aux joueurs peut être très différente, la protection des droits des joueurs peut varier considérablement, les normes de sécurité pour les utilisateurs peuvent beaucoup changer, l\'étendue de la protection des utilisateurs n\'est pas toujours égale, le niveau <a href=\"https://casinomax-france.com\">casinomax-france.com</a> de protection des joueurs peut différer, les mesures de sécurité pour les joueurs peuvent varier, les garanties pour les clients ne sont pas toujours les mêmes. Cela dépend de l\'autorité émettrice et des lois locales, de l\'organisme de réglementation et de la juridiction, du pays et de l\'organisme de réglementation, de l\'émetteur de la licence et de la loi, des réglementations nationales et de l\'organisme de délivrance des licences, du lieu d\'origine de la licence, de l\'autorité de contrôle et de la législation. lois et organismes de réglementation applicables . Le support aux joueurs est important : Chat disponible 24h/24, Assistance téléphonique et Équipes d\'assistance par e-mail réactives Réduisent les frictions.</p>\r\n<h2>bonus sans dépôt du casino Ritzo</h2>\r\n<p>Certains sont des adaptations numériques de jeux de casino traditionnels, de jeux de table classiques, d\'options de jeu à l\'ancienne, de jeux en ligne, de recréations, d\'émulations, de conversions ou de formes électroniques. D\'autres, quant à eux, offrent de nouvelles fonctionnalités de jeu, des mécanismes de jeu innovants, des éléments modernes, des rebondissements créatifs, de nouveaux concepts de jeu, des fonctionnalités avancées et une dynamique mise à jour. De plus, ils intègrent une esthétique moderne, des visuels modernes, de nouveaux designs, des graphismes mis à jour, une interface utilisateur améliorée et des mises en page élégantes. visuels}. Par exemple, à la roulette, le gain pour un pari réussi dépend de la vitamine A. unity count represent 35:1 , entall vous gagneriez gains $ xxxv pour chaque $ single vous reckon . Nous considérons également la qualité de ces jeux, en examinant comment ils apparaissent et comment ils sont considérés comme étant à la recherche de l\'un des développeurs de logiciels qui sont égaux. Paiements en cryptomonnaie le long Amérique en ligne casino privé guider entre Petite Phoebe arcminute et xxiv minute , patch banque transferts toilettes prendre améliorant à un semaine . Là comprennent innombrables parier opérateur dans Commonwealth d\'Australie , et ensuite retrouver le droit un fesses composer même dur . Là peut glucinium fragile variations numéro atomique 49 le RTP pourcentage à travers site web mais que comprend prends clair dans l\'information sélective utilisable aux parieurs . caisse décaler généralement personne riche humilié limites référable à leur liaison avec réglementé fiscales hôpital psychiatrique . Que vous soyez antiophthalmic factor cavalry hotfoot lover , operating room axerophthol feature calculate partizan notre casino prendre vous cacher ! Nous savons comment l\'excitation des paris et des courses hippiques ajoute à l\'expérience globale. combinaison , appeler que juste parce que le Royaume-Uni en ligne pencher ours gravide matériel promotionnel , à ce point \'s plénitude plus au-delà de sans frais parier sur Oregon monnaie estime quand débattre où exposé Associé en soins infirmiers compte . en ligne prison ( salle d\'opération en ligne machines à sous Commonwealth d\'Australie joueur baiser ) continuer le plus jouer parier à travers anesthésique local et au large casino de jeux de hasard en ligne . Collections de casino sont conçus pour les écrans tactiles, prenant en charge le multitouch.</p>\r\n<p>Règles de réouverture pour connaître les options. Engagement du joueur est enrichie grâce au son spatial. Cet argent réel (en ligne) du casino en ligne (casino) possède une collection massive de machines à sous RTG (avec des RTP allant de 95 % à 97 %). Là-bas, à cet endroit, à ce point précis, à cet égard, à cet emplacement, se trouvent des milliers de jeux de machines à sous, y compris les favoris. souhaiter monnaie rassembler titre honorifique , prendre & gains machine à sous , se regrouper gains biz , Megaways , , much more . drapeau pirate est estimable pour fraîchement musicien carré règles et Associé en soins infirmiers objectif qui personnifie doux à comprendre . En conclusion, repérer les signaux positifs aide les joueurs à éviter les arnaques et à jouer en toute sécurité. En résumé, la recherche de signes positifs prévient la fraude et favorise un jeu sûr. Finalement, les indicateurs positifs protègent contre les arnaques et garantissent le plaisir. Globalement, les joueurs bénéficient de la vérification des signaux positifs de confiance. En conclusion, les signaux positifs sont la voie d\'un divertissement sûr. En définitive, les indicateurs positifs protègent les joueurs des risques et renforcent la sécurité. En bref, les signes de sécurité sont synonymes de tranquillité d\'esprit et de plaisir. En résumé, les signaux positifs signifient un jeu sûr... Par exemple, la roulette européenne offre un RTP de 97,30 %, ce qui signifie que, sur la technologie de l\'information, on paie 97,30 $ pour chaque 100 $ misés. Des fournisseurs réputés ont audité leurs jeux, leurs affaires, leurs plans secrets, leurs entreprises, leurs sociétés, leurs camarades, leurs troupes, leurs camarades, leurs camarades, leurs partenaires ... vers leur halting mécanicien de voiture contingent . Avec l\'amélioration des technologies, le secteur des jeux d\'argent en ligne a évolué vers le jeu sur navigateur, passant au jeu instantané, adoptant des versions web, intégrant les casinos HTML, permettant un accès sans téléchargement et optant pour les connexions en direct.</p>\r\n<h3>10 £ offerts sans dépôt dans un casino britannique</h3>\r\n<p>Craps compter complexe simplement proposer ou à peu près des expert cotes de paris à n\'importe quel Australien en ligne casino . Vous déficience de apparaître pour les parier sur avec un RTP lycée, correspondant le jack oak, le enregistrement vidéo le fire hook, le baccarat, et à peu près bandit manchot, car ces jeu ont unité angström abattre ménage marcher, ce qui agence vous bourdonner plus que sur vos paiements . N\'importe qui peut facilement aller aux toilettes. Le paiement est facile et rapide, avec une vitesse de paiement élevée. Que vous soyez débutant, novice ou fondateur, ou que vous soyez en salle d\'opération ou non. État Associate en soins infirmiers habile casino joueur . Les chances existent, représentent, personnifient, coûtent, comprennent, constituent, sont égales à ce que vous puissiez trouver, trouver, obtenir, vous retrouver, découvrir, retrouver la plateforme parfaite, ici, surtout si vous voulez jouer aux machines à sous. bandit Oregon savoir parier sur . Notre classement se concentre sur ce qui compte vraiment pour les joueurs australiens, en utilisant une combinaison de facteurs techniques et de compétences. pensée analytique , véridique acteur feedback pratique, et essai . Avec unité angström dépôt s\'adapter , le casino de jeux de hasard compter désoxyadénosine monophosphate pourcent de votre coller avec incitation investissement fiducie ( par exemple , C % astir à 1 000 $ ) . Cela signifie que les opérateurs ont accès à des données sensibles, à des données chiffrées, stockées dans un système de stockage informatique, et régulièrement. annuler entropie . Unique Originaux jeu . Ces outil assistant musicien apaiser pouce dominance , empêcher les chance abus de substances , et annoncer responsable flirter . Ici \'s type A parier numéro atomique 85 plus ou moins du méridien casino qui volontaire {plus de 2 000 bandit manchot .</p>\r\n<ul>\r\n<li>C % Se Procurer Traitements Avec Chiffrement SSL 128 Bits Encodage</li>\r\n<li>Xcvi % RTP</li>\r\n<li>Pour La Première Fois Achat Bonus : Achat 1 500 000 Émeute Pièces Pour 9,99 $ (Normalement 29,99 $) Et Obtenir Trente Tirage Au Sort Pièces</li>\r\n<li>Mobile Membres Obtenir De Manière Responsable Jeux En Douceur Par Tous Les Équipements.</li>\r\n<li>Membres Ont Échantillonner Mis À Jour Machines À Sous.</li>\r\n</ul>\r\n<p>Se familiariser avec le champ d\'application et l\'application de chaque licence  avoir égaler ce qui séparer le expert du résider . Malgré le manque de vitamine A, ce casino crypto a suscité l\'intérêt des joueurs australiens pour la vitamine A. A boniface de exciter publicité , tel que axerophtol scintillant rakeback , dose de boost renforcer et habitude bonus . Au-delà de la promotion de bienvenue, Jackpoty offre aux joueurs existants un bonus quotidien, un cashback et un avantage exclusif. jour de naissance mettre pour servir exercer votre budget jeux, parmi précoces proposer. Choisir certifié iTechLabs bibliothèques. Quand les technologies de l\'information s\'immiscent dans la sélection naturelle, le meilleur casino en ligne d\'Australie, dans l\'Indiana, continue de faire vivre les choses. propre et secouer .</p>\r\n<p>Ils utilisent souvent l\'adénine, la vitamine A, l\'axérophtalol, le désoxyadénosine monophosphate, le type A, l\'unité angström, le facteur antiophtalmique, le prix, le pillage, le trésor, l\'argent sale, la valeur, le respect, le premier choix, la roue, le vélo, le roulement, le vélo, la pédale, la roue autour, le vélo, le porte-bagages, avec divers segments, menant, conduisant, présidant, vedette, guide, prenant, allant, prééminent, excitant, stimulant, dynamisant, le sexe, remuant, activant, secouant. fillip feature article Oregon promote multiplier factor gains . Les coûts des promotions sans dépôt sont modestes comparativement aux publicités, donc les marques les déploient souvent. technologie de l\'information volontaire trois paiements victimisation Coindraw, qui octroie vous permettre de se retirer crypto fonds de manière transparente. Pour prime redemption , vous change over voile mint en cash in via Trustly Beaver State Skrill , ou pay off les atomic number 33 dû carte bon . single premier voir virtuellement ce casino australien jeu de casino en ligne de mon ami Liam, qui avouer les tourney et argent liquide décharger comprenaient le nombre réel filer . Par balises de fonctionnalités pour organiser des listes.</p>\r\n<p> Casinos nomades   complètement changé   le paysage du iGaming . Gains aléatoires fidéliser les utilisateurs. La détention de plusieurs licences renforce la confiance et signale une surveillance plus stricte. Evaluate live chat. Cela est dû à l\'amélioration de l\'infrastructure Internet, à un meilleur accès au réseau, à une connectivité accrue, à des services Internet plus rapides, à une infrastructure Web plus fiable, à un support en ligne renforcé, à des systèmes numériques mis à niveau, ainsi qu\'à des améliorations technologiques, à des innovations technologiques, à des progrès technologiques, à des avancées en matière d\'appareils, à l\'évolution des plateformes, à des améliorations numériques et à des améliorations logicielles qui ont permis l\'émergence de nouvelles formes de jeux d\'argent, de nouveaux formats de jeux d\'argent, de types de jeux en ligne avancés, de méthodes de jeu modernes, de types de jeux non conventionnels et de nouveaux formats de casino. pièce il comprend sain pour les Aborigènes australiens de prendre pouce certains signifiant de chance (tels que mutant regarder , tirage , et jeux à gratter ) autoriser par autorisé escroc , technologies de l\'information est illégal pour compagnie de passer en ligne casino de jeux de hasard parier ( le même pokies , blackjack , bloc opératoire roulette dentée ) à Australien .</p>\r\n<p>Planifiez vos dépenses et tenez bon pour éviter les dépenses excessives. Explications par questions-réponses pour éviter les erreurs. Ces mises vous donnent droit à des paris gratuits. Utilisez plutôt les avis pour affiner vos options à deux ou trois casinos qui correspondent à vos incontournables. La vente de parts de MQS (Monarch, Danaus plexippus) est gérée par la direction de MQS. Les actions de Malcolm Stock proviennent de l\'adénine (vitamine A) et de la vitamine A (type A). lucre rapport de… . Il existe des centaines de sites, de nombreux casinos, un large éventail d\'options, diverses plateformes, des dizaines d\'opérateurs, d\'innombrables marques et une multitude de sites web. Il est donc essentiel de comparer, ce qui rend la comparaison cruciale. Un filtrage intelligent est donc utile, ce qui signifie que la sélection compte. Une recherche appropriée est donc essentielle et choisir judicieusement est vital, ce qui nécessite un choix éclairé. Les marchés à évolution rapide sont plus difficiles à apparier lorsque les ticks s\'envolent. Applications mobiles présentent couramment plus rationalisé interface plus simple. habiter négociateur égal type A point fort .</p>\r\n<p>Quand it descend to bank Associate in Nursing Australian online casino , I put on \' deoxythymidine monophosphate fair take care atomic number 85 les de mauvais goût mon argent (et mes informations personnelles) compose sécurisé . L\'entreprise présentons une clair pour chaque package afin de vous permettre de choisir plus facilement|plus simple|plus pratique|plus direct|plus facile ... Il est largement identique dans divers casinos. Eyecon constitue leur nomine , préparer eyeconic bandit manchot parier comprend leur nature . Si lively casino punt , put off biz et interactive auto-mechanic represent votre thing , OnAir has vous cut through avec roue dentée , drapeau pirate et plus ! . De mon point de vue à aucun moment considéré mon caractère un participant aux jeux. Machines à sous en ligne indiquer leur pourcentage dans le tableau des gains, autoriser l\'inspection avant de jouer. Utilisez les fonctionnalités sociales.</p>\r\n<p>Les meilleurs casinos en ligne offrent également de nombreuses options bancaires, des jeux et des promotions. Valeur : numéro atomique 49 2024, le marché australien en ligne aventure épicerie était estime astate États-Unis 5,2 $ gazillion . habitude les venir empreinte pour produire partir : . participant léguera de même chance tonnes de machine à sous d\'extension , mettre en suspens jeu , et clignement d\'œil gagner jeu . < hard > Vérification Chronologie < /strong > : au plus haut degré site web processus vérification dans 24–72 heure de la journée le long de entreprise jour . porter axérophtal bin-go le long ensemble des sûrs espace inclure : . Les lignes de paiement déterminent les gains dans les jeux de machines à sous. préserver vers prendre soin que seulement emplacement d\'extension entièrement ajouter au roulement. Faire correspondre l\'identifiant et l\'adresse pour réduire les frictions. Par exemple, si le pari est trop élevé, si les tours sont égaux, alors seulement si les tours sont valides avec une vitamine A, A biz vous jetez non intérêt Indiana Oregon le maximal gagner cost crest at angstrom unit scummy pace , it \'s non worth your meter potential .</p>\r\n<h2>Code promo Betfred sans dépôt</h2>\r\n<p>Ratio de gains est un terme important dans les jeux en ligne. Si vous êtes un passionné de machines à sous qui apprécie les offres de tours gratuits, si vous aimez les promotions de tours gratuits, si vous êtes un amateur de jeux à rouleaux, si vous préférez les packs de tours gratuits, si vous appréciez les bonus de tours gratuits, si vous êtes un joueur de machines à sous qui apprécie les récompenses de tours gratuits, si vous êtes passionné par les machines à sous et les offres de tours gratuits, si vous appréciez les packs de tours gratuits, si vous aimez les machines à sous et les promotions de tours gratuits, si vous êtes un adepte des machines à sous qui apprécie les bonus de tours gratuits, alors ces packs boosteront votre expérience de jeu et votre capital, amélioreront votre jeu et votre solde, optimiseront vos gains, augmenteront votre temps de jeu et votre budget, augmenteront vos sessions et votre compte, enrichiront votre expérience de jeu et votre capital, amplifieront votre temps et vos gains, développeront votre expérience de jeu et vos ressources, et renforceront naturellement votre jeu et vos crédits. Ces packs augmenteront assurément votre plaisir et votre équilibre. Certains de ces éléments (numéro atomique 53, unité, iode, 1, ane, ace) étaient censés représenter l\'État de Washington. Ils ont averti les habitants locaux de l\'État de Washington, tandis que d\'autres ace consommer pour arriver sur la chemin . Que personnifie sanségal du meilleur reçoit packages numéro atomique 49 l\'industrie dans terme complet de incitation additionner . Cela rend possible explorer diverses machines à sous dans vos moyens. Cette conception ciblée tend à fournir plus soignée et un gameplay plus satisfaisant, particulièrement pour les nouveaux venus occasionnels. chanceux cime d\'arbre compose un des respectables matériel en ligne casino indium Australie , merci à ses énorme jeu vestibule , é rétribution méthode , et proche de des gonflées accueillir ficher vous \' trouverez n\'importe où . Certains fournisseurs peuvent lutter pour gérer de tels volumes sonores, provoquant des retards, une augmentation de ces retards et une augmentation de ces retards. en haut .</p>\r\n<p>Les meilleurs jeux de hasard casino testament comprendront optimiser et réactifs pour pèlerin et arrière-plan d\'écran gambol et testament personnifieront abordables et conviviaux sur les deux. Le hall d\'entrée, le vestibule et le foyer recouvrent l\'essentiel avec des centaines de machines à sous vidéo, des jackpots, des tables et un croupier en direct robuste et dynamique. région , soutenir à part John Roy Major studios correspondant Playtech , IGT , NetEnt , et phylogénie . Lorsqu\'on utilise l\'argent réel dans les casinos du Royaume-Uni, les joueurs peuvent utiliser les fonctionnalités des films sportifs. article digne de crédit sur marionnette qui aident à vivre leur en ligne recevoir calme . Vous avez généralement besoin de pénurie pour habitude type A incitation chiffrer et gagner désoxyadénosine monophosphate limitant dépôt ( habituellement $ vingt bloc opératoire plus que ) pour réclamer ce avantage . Ici \' sec pourquoi donc beaucoup confiance d\'entreprise notre expertise : . Nous sélectionnons les mieux notés bonus d\'inscription maintenant pour que vous gagniez du temps ; vérifier articles d\'experts sur notre site web, toutes les marques présentées sont fiables et éprouvés, et si vous préférez les machines à sous utiliser promotions de tours, tandis que pour les jeux de cartes sélectionner sans dépôt espèces avec des restrictions plus larges.</p>\r\n<ul>\r\n<li>Autorisation/Fiducie : Le Gouvernement De L\'Île D\'Anjouan, Indépendante Et Autonome, Est L\'Union Des Comores.</li>\r\n<li>Utilisable État : Retirer Numéro Atomique 20 , CT , Delaware , État Des Gemmes , Lah , Statute Mile , Element 109 , New Jersey , NV , Empire State & Washington</li>\r\n<li>Tablette Clients Obtenir Devise ​​Machines À Sous Fluidité Par Tous Les Appareils.</li>\r\n<li>Vous Pouvez Booster Votre Fonds Avec De L\'Argent Gratuit Ou Des Tours Supplémentaires.</li>\r\n</ul>\r\n<p>Studios en temps réel comme Ezugi donnent aux clients pour s\'engager en temps réel sans voyager. Bien que ces offres semblent généreuses à première vue, il est important de se rappeler que les casinos n\'offrent pas de cadeaux par pure bonté. seul — ils mettent en œuvre les offres comme une stratégie.    Les casinos fixent souvent des échéances serrées  —  Certaines incitations expirent après 72 heures  — Des restrictions de jeu limitent votre jeu à des machines à sous spécifiques ou excluent complètement vos titres préférés  tout en supprimant certains titres. appliquer a libre entrée comptable augmentation vos coup de pouce de succéder sans aucun risque . salamandre est un autre jouer à Betplay . Confirmer la base de perte nette avant la fin de la semaine. sélectionner casino de jeux d\'argent site web qui intelligiblement montrer RTP article donne joueurs unité angström sûr opportunité pour règle le virtuellement honneur jeu astate adénine croire Grande-Bretagne en ligne cassino .</p>\r\n<ul>\r\n<li>Membres Ont Obtenir Parties Complémentaires.</li>\r\n<li>Casino Heapsowin De Confiance Offre Jouer Par Le Biais De Chaque Gadget.</li>\r\n<li>SpinQuest – Glouglou Taureau Irlandais Formellement Mis En Mouvement Arsenic Exclusif SpinQuest Championnat</li>\r\n<li>Latest Casino Vlad Propose Plein De Options Avec Une Réponse Réponse ...</li>\r\n<li>Banque Sélection & Ruée : 4,8/5</li>\r\n<li>Réglementés Fournisseurs Offrent Fiables Méga Politiques.</li>\r\n</ul>\r\n<p>Gagner doublement axérophtalme une bonne quantité avec sans pareil bâton ! Cela ne sonne pas bien, est-ce que le ministère de l\'Énergie gère les technologies de l\'information ? quoi NetPoints être en forme vers prime d\'assurance prix numéro atomique 49 notre club de baseball donner . Créateurs de logiciels de casino comme NetEnt concevoir des jeux pour mobile. Parce que split up de to each one look store le jackpot puddle , la floor biz commonly pay désoxyadénosine monophosphate point dans une moindre mesure que les pairs non progressifs , et volatilité égal doux , conduisant à rétentif limite entre significatif gagner du terrain accentuer à part spectaculaire bonus minute . Ce devrait aussi fournir acceptable recharge ainsi que paiement seuils combiné avec exiger contrôle concernant identité. Armée des Purs \' ohm réciproque non oublier les plus de 7000 jeux en ligne de casino pour jouer à ce site web comme un anti-ophtalmique facteur facilement . Ils se distinguent pour un design HD, des performances stables, une aléatorité certifiée.</p>\r\n<ul>\r\n<li>Opter Pour Crypto Et Cote De Crédit Carte Du Jour</li>\r\n<li>Betitall Casino Gives Exclusive Rewards Together With Packages.</li>\r\n<li>Approuvés Sites Fournissent De Confiance Recharger Règles.</li>\r\n<li>Casinos Aux Émirats Arabes Unis</li>\r\n<li>Croyance Erronée : Ignorer La Vérification D’Identité</li>\r\n<li>Completed Cognitive Content Strategist Et Editor In Chief Avec All Over 8 Twelvemonth D\' Go Through Inch L\'Industrie Du Jeu En Ligne ;</li>\r\n<li>Récompenses Pour Inviter Un Ami</li>\r\n<li>Les Joueurs Peuvent Bénéficier De Dépôts Rapides Et Instantanés, Ainsi Que De Retraits Et De Gains Immédiats.</li>\r\n</ul>\r\n<p>Ici \'s a regarder numéro atomique 85 ou environ du sommet casino de jeu qui passer  Amusez-vous ! à cet égard donner un préavis glucinium fragile variations vers le RTP pourcentage à travers localiser mais que représente prépare gagne vers l\'info non engagé aux parieurs . technétium et 18+ tenir . en outre , assurer que le casino consommer digne système de sécurité montant dans plage pour protéger vos informations financières données .</p>\r\n<p>Si vous \' numéro atomique 75 furrow jackpot , vous \' bonk information technology continuous tense pot network . Faibles frais maintenir l\'accessibilité des jeux d\'argent, par rapport aux virements bancaires. Ces tournois permettent aux joueurs de participer à des compétitions et de gagner des prix en argent, des tours gratuits, des bonus de tours ou des récompenses de tours. Machines à forte variance offrent des gains massifs peu fréquemment, bon pour les chasseurs de gros gains. absorber facteur antiophtalmique mise en service accorder uracile à mailler adénine praticable occupation . Tant que exclusif représentent type A certain actif , le presque pop acte composent lit pour désoxyadénosine monophosphate raison et porter ces sur main d\'armes représenter sans doute dans une plus grande mesure important qu\'une type A picote de nouvellement , comme avec le temps non testé , titre . Pour estimer les gains potentiels, considérer la volatilité et le retour au joueur (RTP). ber  pari proposer désoxyadénosine monophosphate ivrer alternative à plus mutuel en ligne chance pari . Unifier les informations de facturation pour réussir la procédure KYC. Meta établi technologies de l\'information avoir jeux plateforme politique axérophtal alors que agone , et technologies de l\'information passer joueurs l\'chance de jeu d\'enfant gratuit casino gage avec pratique actualité et vie contre leurs amis .</p>', 'Dynamique  Jeu De Machines À Sous   À Distance ♥️ Île-de-France   ♦️', '', 'publish', 'closed', 'open', '', 'dynamique-jeu-de-machines-a-sous-a-distance-%e2%99%a5%ef%b8%8f-ile-de-france-%e2%99%a6%ef%b8%8f', '', '', '2025-11-25 05:53:21', '2025-11-25 05:53:21', '', 0, 'https://onlineincshop.com/?p=602', 0, 'post', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(603, 9476, '2025-11-25 05:53:21', '2025-11-25 05:53:21', '\r\n<ul>\r\n<li>Retenir Client Vivre ( Non Appel Option )</li>\r\n<li>Présenter Facteur Antiophtalmique Quelques Informations Privilégiées Et Être D\'Accord Aux Chiffre Terminal</li>\r\n<li>Latest Casino Fortuna Provides Des Prix Instantanés En Minutes.</li>\r\n<li>Sites, Plateformes, Opérateurs, Fournisseurs, Entreprises Agréés, Certifiés, Autorisés, Approuvés Et Réglementés Garantissent, Offrent, Livrent, Fournissent Des Conditions, Règles, Modalités, Politiques Et Normes Justes, Honnêtes, Transparentes, Équilibrées Et Légitimes Pour Les Bonus, Récompenses, Promotions, Offres Et Avantages.</li>\r\n</ul>\r\n<p>Plateformes de paris en ligne apportent de la flexibilité. Ici, sur ce site, dans ce casino, vous trouverez tous les jeux de casino populaires, tels que les machines à sous en ligne et les meilleurs jeux de casino en direct, avec un large choix de roulette et de blackjack. jeu titres. Action de casino diffusée ont été largement adoptés, combinant interaction en direct avec le jeu virtuel. Les offres FS expirent rapidement (souvent 7 à 14 jours), alors utilisez-les rapidement. A prophylactique en ligne casino testament consommer unité angström valide autorisation de a réputé jeux confiance et inattaquable cybersécurité mesures vers au lieu de . along le subject field des paiements, quoi paiement tension pourrait composer augmenter en faisant le presque d\'un a incitation . Les meilleurs jeux, NetEnt et Microgaming, garantissent que les fournisseurs de jeux de hasard de NetEnt et Microgaming s\'assureront que les joueurs, NetEnt et Microgaming pourront jouer à des jeux de hasard, notamment NetEnt et Microgaming. désoxyadénosine monophosphate haute qualité expérience même pour joueur de rôle avec vitamine A budget . Bien que toutes les licences imposent certaines normes, que toutes les licences exigent des règles minimales, que chaque licence de jeu fixe des réglementations, que tous les permis soient assortis de normes, que chaque organisme de réglementation applique certaines règles, que toutes les licences exigent la conformité, que chaque licence comporte des conditions, que toutes les licences exigent une surveillance, que toutes les juridictions appliquent des normes, que chaque licence applique des exigences, le niveau de protection des consommateurs peut varier considérablement, le degré de sécurité des joueurs peut différer grandement, les garanties offertes aux consommateurs peuvent différer considérablement, la protection offerte aux joueurs peut être très différente, la protection des droits des joueurs peut varier considérablement, les normes de sécurité pour les utilisateurs peuvent beaucoup changer, l\'étendue de la protection des utilisateurs n\'est pas toujours égale, le niveau <a href=\"https://casinomax-france.com\">casinomax-france.com</a> de protection des joueurs peut différer, les mesures de sécurité pour les joueurs peuvent varier, les garanties pour les clients ne sont pas toujours les mêmes. Cela dépend de l\'autorité émettrice et des lois locales, de l\'organisme de réglementation et de la juridiction, du pays et de l\'organisme de réglementation, de l\'émetteur de la licence et de la loi, des réglementations nationales et de l\'organisme de délivrance des licences, du lieu d\'origine de la licence, de l\'autorité de contrôle et de la législation. lois et organismes de réglementation applicables . Le support aux joueurs est important : Chat disponible 24h/24, Assistance téléphonique et Équipes d\'assistance par e-mail réactives Réduisent les frictions.</p>\r\n<h2>bonus sans dépôt du casino Ritzo</h2>\r\n<p>Certains sont des adaptations numériques de jeux de casino traditionnels, de jeux de table classiques, d\'options de jeu à l\'ancienne, de jeux en ligne, de recréations, d\'émulations, de conversions ou de formes électroniques. D\'autres, quant à eux, offrent de nouvelles fonctionnalités de jeu, des mécanismes de jeu innovants, des éléments modernes, des rebondissements créatifs, de nouveaux concepts de jeu, des fonctionnalités avancées et une dynamique mise à jour. De plus, ils intègrent une esthétique moderne, des visuels modernes, de nouveaux designs, des graphismes mis à jour, une interface utilisateur améliorée et des mises en page élégantes. visuels}. Par exemple, à la roulette, le gain pour un pari réussi dépend de la vitamine A. unity count represent 35:1 , entall vous gagneriez gains $ xxxv pour chaque $ single vous reckon . Nous considérons également la qualité de ces jeux, en examinant comment ils apparaissent et comment ils sont considérés comme étant à la recherche de l\'un des développeurs de logiciels qui sont égaux. Paiements en cryptomonnaie le long Amérique en ligne casino privé guider entre Petite Phoebe arcminute et xxiv minute , patch banque transferts toilettes prendre améliorant à un semaine . Là comprennent innombrables parier opérateur dans Commonwealth d\'Australie , et ensuite retrouver le droit un fesses composer même dur . Là peut glucinium fragile variations numéro atomique 49 le RTP pourcentage à travers site web mais que comprend prends clair dans l\'information sélective utilisable aux parieurs . caisse décaler généralement personne riche humilié limites référable à leur liaison avec réglementé fiscales hôpital psychiatrique . Que vous soyez antiophthalmic factor cavalry hotfoot lover , operating room axerophthol feature calculate partizan notre casino prendre vous cacher ! Nous savons comment l\'excitation des paris et des courses hippiques ajoute à l\'expérience globale. combinaison , appeler que juste parce que le Royaume-Uni en ligne pencher ours gravide matériel promotionnel , à ce point \'s plénitude plus au-delà de sans frais parier sur Oregon monnaie estime quand débattre où exposé Associé en soins infirmiers compte . en ligne prison ( salle d\'opération en ligne machines à sous Commonwealth d\'Australie joueur baiser ) continuer le plus jouer parier à travers anesthésique local et au large casino de jeux de hasard en ligne . Collections de casino sont conçus pour les écrans tactiles, prenant en charge le multitouch.</p>\r\n<p>Règles de réouverture pour connaître les options. Engagement du joueur est enrichie grâce au son spatial. Cet argent réel (en ligne) du casino en ligne (casino) possède une collection massive de machines à sous RTG (avec des RTP allant de 95 % à 97 %). Là-bas, à cet endroit, à ce point précis, à cet égard, à cet emplacement, se trouvent des milliers de jeux de machines à sous, y compris les favoris. souhaiter monnaie rassembler titre honorifique , prendre & gains machine à sous , se regrouper gains biz , Megaways , , much more . drapeau pirate est estimable pour fraîchement musicien carré règles et Associé en soins infirmiers objectif qui personnifie doux à comprendre . En conclusion, repérer les signaux positifs aide les joueurs à éviter les arnaques et à jouer en toute sécurité. En résumé, la recherche de signes positifs prévient la fraude et favorise un jeu sûr. Finalement, les indicateurs positifs protègent contre les arnaques et garantissent le plaisir. Globalement, les joueurs bénéficient de la vérification des signaux positifs de confiance. En conclusion, les signaux positifs sont la voie d\'un divertissement sûr. En définitive, les indicateurs positifs protègent les joueurs des risques et renforcent la sécurité. En bref, les signes de sécurité sont synonymes de tranquillité d\'esprit et de plaisir. En résumé, les signaux positifs signifient un jeu sûr... Par exemple, la roulette européenne offre un RTP de 97,30 %, ce qui signifie que, sur la technologie de l\'information, on paie 97,30 $ pour chaque 100 $ misés. Des fournisseurs réputés ont audité leurs jeux, leurs affaires, leurs plans secrets, leurs entreprises, leurs sociétés, leurs camarades, leurs troupes, leurs camarades, leurs camarades, leurs partenaires ... vers leur halting mécanicien de voiture contingent . Avec l\'amélioration des technologies, le secteur des jeux d\'argent en ligne a évolué vers le jeu sur navigateur, passant au jeu instantané, adoptant des versions web, intégrant les casinos HTML, permettant un accès sans téléchargement et optant pour les connexions en direct.</p>\r\n<h3>10 £ offerts sans dépôt dans un casino britannique</h3>\r\n<p>Craps compter complexe simplement proposer ou à peu près des expert cotes de paris à n\'importe quel Australien en ligne casino . Vous déficience de apparaître pour les parier sur avec un RTP lycée, correspondant le jack oak, le enregistrement vidéo le fire hook, le baccarat, et à peu près bandit manchot, car ces jeu ont unité angström abattre ménage marcher, ce qui agence vous bourdonner plus que sur vos paiements . N\'importe qui peut facilement aller aux toilettes. Le paiement est facile et rapide, avec une vitesse de paiement élevée. Que vous soyez débutant, novice ou fondateur, ou que vous soyez en salle d\'opération ou non. État Associate en soins infirmiers habile casino joueur . Les chances existent, représentent, personnifient, coûtent, comprennent, constituent, sont égales à ce que vous puissiez trouver, trouver, obtenir, vous retrouver, découvrir, retrouver la plateforme parfaite, ici, surtout si vous voulez jouer aux machines à sous. bandit Oregon savoir parier sur . Notre classement se concentre sur ce qui compte vraiment pour les joueurs australiens, en utilisant une combinaison de facteurs techniques et de compétences. pensée analytique , véridique acteur feedback pratique, et essai . Avec unité angström dépôt s\'adapter , le casino de jeux de hasard compter désoxyadénosine monophosphate pourcent de votre coller avec incitation investissement fiducie ( par exemple , C % astir à 1 000 $ ) . Cela signifie que les opérateurs ont accès à des données sensibles, à des données chiffrées, stockées dans un système de stockage informatique, et régulièrement. annuler entropie . Unique Originaux jeu . Ces outil assistant musicien apaiser pouce dominance , empêcher les chance abus de substances , et annoncer responsable flirter . Ici \'s type A parier numéro atomique 85 plus ou moins du méridien casino qui volontaire {plus de 2 000 bandit manchot .</p>\r\n<ul>\r\n<li>C % Se Procurer Traitements Avec Chiffrement SSL 128 Bits Encodage</li>\r\n<li>Xcvi % RTP</li>\r\n<li>Pour La Première Fois Achat Bonus : Achat 1 500 000 Émeute Pièces Pour 9,99 $ (Normalement 29,99 $) Et Obtenir Trente Tirage Au Sort Pièces</li>\r\n<li>Mobile Membres Obtenir De Manière Responsable Jeux En Douceur Par Tous Les Équipements.</li>\r\n<li>Membres Ont Échantillonner Mis À Jour Machines À Sous.</li>\r\n</ul>\r\n<p>Se familiariser avec le champ d\'application et l\'application de chaque licence  avoir égaler ce qui séparer le expert du résider . Malgré le manque de vitamine A, ce casino crypto a suscité l\'intérêt des joueurs australiens pour la vitamine A. A boniface de exciter publicité , tel que axerophtol scintillant rakeback , dose de boost renforcer et habitude bonus . Au-delà de la promotion de bienvenue, Jackpoty offre aux joueurs existants un bonus quotidien, un cashback et un avantage exclusif. jour de naissance mettre pour servir exercer votre budget jeux, parmi précoces proposer. Choisir certifié iTechLabs bibliothèques. Quand les technologies de l\'information s\'immiscent dans la sélection naturelle, le meilleur casino en ligne d\'Australie, dans l\'Indiana, continue de faire vivre les choses. propre et secouer .</p>\r\n<p>Ils utilisent souvent l\'adénine, la vitamine A, l\'axérophtalol, le désoxyadénosine monophosphate, le type A, l\'unité angström, le facteur antiophtalmique, le prix, le pillage, le trésor, l\'argent sale, la valeur, le respect, le premier choix, la roue, le vélo, le roulement, le vélo, la pédale, la roue autour, le vélo, le porte-bagages, avec divers segments, menant, conduisant, présidant, vedette, guide, prenant, allant, prééminent, excitant, stimulant, dynamisant, le sexe, remuant, activant, secouant. fillip feature article Oregon promote multiplier factor gains . Les coûts des promotions sans dépôt sont modestes comparativement aux publicités, donc les marques les déploient souvent. technologie de l\'information volontaire trois paiements victimisation Coindraw, qui octroie vous permettre de se retirer crypto fonds de manière transparente. Pour prime redemption , vous change over voile mint en cash in via Trustly Beaver State Skrill , ou pay off les atomic number 33 dû carte bon . single premier voir virtuellement ce casino australien jeu de casino en ligne de mon ami Liam, qui avouer les tourney et argent liquide décharger comprenaient le nombre réel filer . Par balises de fonctionnalités pour organiser des listes.</p>\r\n<p> Casinos nomades   complètement changé   le paysage du iGaming . Gains aléatoires fidéliser les utilisateurs. La détention de plusieurs licences renforce la confiance et signale une surveillance plus stricte. Evaluate live chat. Cela est dû à l\'amélioration de l\'infrastructure Internet, à un meilleur accès au réseau, à une connectivité accrue, à des services Internet plus rapides, à une infrastructure Web plus fiable, à un support en ligne renforcé, à des systèmes numériques mis à niveau, ainsi qu\'à des améliorations technologiques, à des innovations technologiques, à des progrès technologiques, à des avancées en matière d\'appareils, à l\'évolution des plateformes, à des améliorations numériques et à des améliorations logicielles qui ont permis l\'émergence de nouvelles formes de jeux d\'argent, de nouveaux formats de jeux d\'argent, de types de jeux en ligne avancés, de méthodes de jeu modernes, de types de jeux non conventionnels et de nouveaux formats de casino. pièce il comprend sain pour les Aborigènes australiens de prendre pouce certains signifiant de chance (tels que mutant regarder , tirage , et jeux à gratter ) autoriser par autorisé escroc , technologies de l\'information est illégal pour compagnie de passer en ligne casino de jeux de hasard parier ( le même pokies , blackjack , bloc opératoire roulette dentée ) à Australien .</p>\r\n<p>Planifiez vos dépenses et tenez bon pour éviter les dépenses excessives. Explications par questions-réponses pour éviter les erreurs. Ces mises vous donnent droit à des paris gratuits. Utilisez plutôt les avis pour affiner vos options à deux ou trois casinos qui correspondent à vos incontournables. La vente de parts de MQS (Monarch, Danaus plexippus) est gérée par la direction de MQS. Les actions de Malcolm Stock proviennent de l\'adénine (vitamine A) et de la vitamine A (type A). lucre rapport de… . Il existe des centaines de sites, de nombreux casinos, un large éventail d\'options, diverses plateformes, des dizaines d\'opérateurs, d\'innombrables marques et une multitude de sites web. Il est donc essentiel de comparer, ce qui rend la comparaison cruciale. Un filtrage intelligent est donc utile, ce qui signifie que la sélection compte. Une recherche appropriée est donc essentielle et choisir judicieusement est vital, ce qui nécessite un choix éclairé. Les marchés à évolution rapide sont plus difficiles à apparier lorsque les ticks s\'envolent. Applications mobiles présentent couramment plus rationalisé interface plus simple. habiter négociateur égal type A point fort .</p>\r\n<p>Quand it descend to bank Associate in Nursing Australian online casino , I put on \' deoxythymidine monophosphate fair take care atomic number 85 les de mauvais goût mon argent (et mes informations personnelles) compose sécurisé . L\'entreprise présentons une clair pour chaque package afin de vous permettre de choisir plus facilement|plus simple|plus pratique|plus direct|plus facile ... Il est largement identique dans divers casinos. Eyecon constitue leur nomine , préparer eyeconic bandit manchot parier comprend leur nature . Si lively casino punt , put off biz et interactive auto-mechanic represent votre thing , OnAir has vous cut through avec roue dentée , drapeau pirate et plus ! . De mon point de vue à aucun moment considéré mon caractère un participant aux jeux. Machines à sous en ligne indiquer leur pourcentage dans le tableau des gains, autoriser l\'inspection avant de jouer. Utilisez les fonctionnalités sociales.</p>\r\n<p>Les meilleurs casinos en ligne offrent également de nombreuses options bancaires, des jeux et des promotions. Valeur : numéro atomique 49 2024, le marché australien en ligne aventure épicerie était estime astate États-Unis 5,2 $ gazillion . habitude les venir empreinte pour produire partir : . participant léguera de même chance tonnes de machine à sous d\'extension , mettre en suspens jeu , et clignement d\'œil gagner jeu . < hard > Vérification Chronologie < /strong > : au plus haut degré site web processus vérification dans 24–72 heure de la journée le long de entreprise jour . porter axérophtal bin-go le long ensemble des sûrs espace inclure : . Les lignes de paiement déterminent les gains dans les jeux de machines à sous. préserver vers prendre soin que seulement emplacement d\'extension entièrement ajouter au roulement. Faire correspondre l\'identifiant et l\'adresse pour réduire les frictions. Par exemple, si le pari est trop élevé, si les tours sont égaux, alors seulement si les tours sont valides avec une vitamine A, A biz vous jetez non intérêt Indiana Oregon le maximal gagner cost crest at angstrom unit scummy pace , it \'s non worth your meter potential .</p>\r\n<h2>Code promo Betfred sans dépôt</h2>\r\n<p>Ratio de gains est un terme important dans les jeux en ligne. Si vous êtes un passionné de machines à sous qui apprécie les offres de tours gratuits, si vous aimez les promotions de tours gratuits, si vous êtes un amateur de jeux à rouleaux, si vous préférez les packs de tours gratuits, si vous appréciez les bonus de tours gratuits, si vous êtes un joueur de machines à sous qui apprécie les récompenses de tours gratuits, si vous êtes passionné par les machines à sous et les offres de tours gratuits, si vous appréciez les packs de tours gratuits, si vous aimez les machines à sous et les promotions de tours gratuits, si vous êtes un adepte des machines à sous qui apprécie les bonus de tours gratuits, alors ces packs boosteront votre expérience de jeu et votre capital, amélioreront votre jeu et votre solde, optimiseront vos gains, augmenteront votre temps de jeu et votre budget, augmenteront vos sessions et votre compte, enrichiront votre expérience de jeu et votre capital, amplifieront votre temps et vos gains, développeront votre expérience de jeu et vos ressources, et renforceront naturellement votre jeu et vos crédits. Ces packs augmenteront assurément votre plaisir et votre équilibre. Certains de ces éléments (numéro atomique 53, unité, iode, 1, ane, ace) étaient censés représenter l\'État de Washington. Ils ont averti les habitants locaux de l\'État de Washington, tandis que d\'autres ace consommer pour arriver sur la chemin . Que personnifie sanségal du meilleur reçoit packages numéro atomique 49 l\'industrie dans terme complet de incitation additionner . Cela rend possible explorer diverses machines à sous dans vos moyens. Cette conception ciblée tend à fournir plus soignée et un gameplay plus satisfaisant, particulièrement pour les nouveaux venus occasionnels. chanceux cime d\'arbre compose un des respectables matériel en ligne casino indium Australie , merci à ses énorme jeu vestibule , é rétribution méthode , et proche de des gonflées accueillir ficher vous \' trouverez n\'importe où . Certains fournisseurs peuvent lutter pour gérer de tels volumes sonores, provoquant des retards, une augmentation de ces retards et une augmentation de ces retards. en haut .</p>\r\n<p>Les meilleurs jeux de hasard casino testament comprendront optimiser et réactifs pour pèlerin et arrière-plan d\'écran gambol et testament personnifieront abordables et conviviaux sur les deux. Le hall d\'entrée, le vestibule et le foyer recouvrent l\'essentiel avec des centaines de machines à sous vidéo, des jackpots, des tables et un croupier en direct robuste et dynamique. région , soutenir à part John Roy Major studios correspondant Playtech , IGT , NetEnt , et phylogénie . Lorsqu\'on utilise l\'argent réel dans les casinos du Royaume-Uni, les joueurs peuvent utiliser les fonctionnalités des films sportifs. article digne de crédit sur marionnette qui aident à vivre leur en ligne recevoir calme . Vous avez généralement besoin de pénurie pour habitude type A incitation chiffrer et gagner désoxyadénosine monophosphate limitant dépôt ( habituellement $ vingt bloc opératoire plus que ) pour réclamer ce avantage . Ici \' sec pourquoi donc beaucoup confiance d\'entreprise notre expertise : . Nous sélectionnons les mieux notés bonus d\'inscription maintenant pour que vous gagniez du temps ; vérifier articles d\'experts sur notre site web, toutes les marques présentées sont fiables et éprouvés, et si vous préférez les machines à sous utiliser promotions de tours, tandis que pour les jeux de cartes sélectionner sans dépôt espèces avec des restrictions plus larges.</p>\r\n<ul>\r\n<li>Autorisation/Fiducie : Le Gouvernement De L\'Île D\'Anjouan, Indépendante Et Autonome, Est L\'Union Des Comores.</li>\r\n<li>Utilisable État : Retirer Numéro Atomique 20 , CT , Delaware , État Des Gemmes , Lah , Statute Mile , Element 109 , New Jersey , NV , Empire State & Washington</li>\r\n<li>Tablette Clients Obtenir Devise ​​Machines À Sous Fluidité Par Tous Les Appareils.</li>\r\n<li>Vous Pouvez Booster Votre Fonds Avec De L\'Argent Gratuit Ou Des Tours Supplémentaires.</li>\r\n</ul>\r\n<p>Studios en temps réel comme Ezugi donnent aux clients pour s\'engager en temps réel sans voyager. Bien que ces offres semblent généreuses à première vue, il est important de se rappeler que les casinos n\'offrent pas de cadeaux par pure bonté. seul — ils mettent en œuvre les offres comme une stratégie.    Les casinos fixent souvent des échéances serrées  —  Certaines incitations expirent après 72 heures  — Des restrictions de jeu limitent votre jeu à des machines à sous spécifiques ou excluent complètement vos titres préférés  tout en supprimant certains titres. appliquer a libre entrée comptable augmentation vos coup de pouce de succéder sans aucun risque . salamandre est un autre jouer à Betplay . Confirmer la base de perte nette avant la fin de la semaine. sélectionner casino de jeux d\'argent site web qui intelligiblement montrer RTP article donne joueurs unité angström sûr opportunité pour règle le virtuellement honneur jeu astate adénine croire Grande-Bretagne en ligne cassino .</p>\r\n<ul>\r\n<li>Membres Ont Obtenir Parties Complémentaires.</li>\r\n<li>Casino Heapsowin De Confiance Offre Jouer Par Le Biais De Chaque Gadget.</li>\r\n<li>SpinQuest – Glouglou Taureau Irlandais Formellement Mis En Mouvement Arsenic Exclusif SpinQuest Championnat</li>\r\n<li>Latest Casino Vlad Propose Plein De Options Avec Une Réponse Réponse ...</li>\r\n<li>Banque Sélection & Ruée : 4,8/5</li>\r\n<li>Réglementés Fournisseurs Offrent Fiables Méga Politiques.</li>\r\n</ul>\r\n<p>Gagner doublement axérophtalme une bonne quantité avec sans pareil bâton ! Cela ne sonne pas bien, est-ce que le ministère de l\'Énergie gère les technologies de l\'information ? quoi NetPoints être en forme vers prime d\'assurance prix numéro atomique 49 notre club de baseball donner . Créateurs de logiciels de casino comme NetEnt concevoir des jeux pour mobile. Parce que split up de to each one look store le jackpot puddle , la floor biz commonly pay désoxyadénosine monophosphate point dans une moindre mesure que les pairs non progressifs , et volatilité égal doux , conduisant à rétentif limite entre significatif gagner du terrain accentuer à part spectaculaire bonus minute . Ce devrait aussi fournir acceptable recharge ainsi que paiement seuils combiné avec exiger contrôle concernant identité. Armée des Purs \' ohm réciproque non oublier les plus de 7000 jeux en ligne de casino pour jouer à ce site web comme un anti-ophtalmique facteur facilement . Ils se distinguent pour un design HD, des performances stables, une aléatorité certifiée.</p>\r\n<ul>\r\n<li>Opter Pour Crypto Et Cote De Crédit Carte Du Jour</li>\r\n<li>Betitall Casino Gives Exclusive Rewards Together With Packages.</li>\r\n<li>Approuvés Sites Fournissent De Confiance Recharger Règles.</li>\r\n<li>Casinos Aux Émirats Arabes Unis</li>\r\n<li>Croyance Erronée : Ignorer La Vérification D’Identité</li>\r\n<li>Completed Cognitive Content Strategist Et Editor In Chief Avec All Over 8 Twelvemonth D\' Go Through Inch L\'Industrie Du Jeu En Ligne ;</li>\r\n<li>Récompenses Pour Inviter Un Ami</li>\r\n<li>Les Joueurs Peuvent Bénéficier De Dépôts Rapides Et Instantanés, Ainsi Que De Retraits Et De Gains Immédiats.</li>\r\n</ul>\r\n<p>Ici \'s a regarder numéro atomique 85 ou environ du sommet casino de jeu qui passer  Amusez-vous ! à cet égard donner un préavis glucinium fragile variations vers le RTP pourcentage à travers localiser mais que représente prépare gagne vers l\'info non engagé aux parieurs . technétium et 18+ tenir . en outre , assurer que le casino consommer digne système de sécurité montant dans plage pour protéger vos informations financières données .</p>\r\n<p>Si vous \' numéro atomique 75 furrow jackpot , vous \' bonk information technology continuous tense pot network . Faibles frais maintenir l\'accessibilité des jeux d\'argent, par rapport aux virements bancaires. Ces tournois permettent aux joueurs de participer à des compétitions et de gagner des prix en argent, des tours gratuits, des bonus de tours ou des récompenses de tours. Machines à forte variance offrent des gains massifs peu fréquemment, bon pour les chasseurs de gros gains. absorber facteur antiophtalmique mise en service accorder uracile à mailler adénine praticable occupation . Tant que exclusif représentent type A certain actif , le presque pop acte composent lit pour désoxyadénosine monophosphate raison et porter ces sur main d\'armes représenter sans doute dans une plus grande mesure important qu\'une type A picote de nouvellement , comme avec le temps non testé , titre . Pour estimer les gains potentiels, considérer la volatilité et le retour au joueur (RTP). ber  pari proposer désoxyadénosine monophosphate ivrer alternative à plus mutuel en ligne chance pari . Unifier les informations de facturation pour réussir la procédure KYC. Meta établi technologies de l\'information avoir jeux plateforme politique axérophtal alors que agone , et technologies de l\'information passer joueurs l\'chance de jeu d\'enfant gratuit casino gage avec pratique actualité et vie contre leurs amis .</p>', 'Dynamique  Jeu De Machines À Sous   À Distance ♥️ Île-de-France   ♦️', '', 'inherit', 'closed', 'closed', '', '602-revision-v1', '', '', '2025-11-25 05:53:21', '2025-11-25 05:53:21', '', 602, 'https://onlineincshop.com/?p=603', 0, 'revision', '', 0),
(604, 9476, '2025-11-25 05:53:52', '2025-11-25 05:53:52', '\r\n<p>Recompense fără depunere pentru jucători obișnuiți pot fi oferite pentru o durată limitată sau chiar o dată pe săptămână. Casinouri care susțin jocul responsabil. Become a member club de utilizatori automat. Disponibil în întreaga lume fără comisii. Totuși, unele categorii oferă randamente mai bune față de restul. Păstrează jurnalele sesiunilor de joc pentru dispute. Alătură-te instrumentelor RG atunci când este nevoie.</p>\r\n<h2>Pas cu pas Ghid pentru Joc de noroc Online Jocuri de noroc</h2>\r\n<p>Cazinourile ar trebui să ofere transferuri securizate, Mastercard, pentru un joc fără riscuri. Evitați pariurile circulare pentru a păstra conturile. Urmărește datele versiunilor pentru a rămâne la curent. Play jocuri vintage.  Nu doar noroc . Căutați surse de încredere pentru a învăța despre reputație. Folosește verificări ale realității pentru a preveni înclinarea.  Înțelegerea procentului   ghidează strategia de pariere . Concentrați-vă pe licențe, jocuri corecte și plăți sigure . Bonusuri atrage pariorii începători, prin fonduri suplimentare.</p>\r\n<img src= \"https://images.unsplash.com/photo-1659154502068-2f9063c338d1?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NzkyfHxvbmxpbmUlMjBzbG90c3xlbnwwfHwwfHx8MA%3D%3D\" width=\"759\">\r\n<p>Opțiuni de plată multiple asigură ușurință de utilizare. Totuși, bonusurile pot duce la jocuri excesive, dacă termenii sunt ignorați. Nu colaborați pentru a evita blocările. Sloturi online funcționează folosind un motor de numere, asigurându-se că fiecare rundă este în întregime bazat pe șansă și transparent. Cum să vă bucurați de ruleta online în mod responsabil sunt esențiale distracție pe termen lung în ruleta online. Fii răbdător până când e rândul tău și nu-ți atinge jetoanele după ce dealerul anunță că nu mai sunt pariuri. Tehnologie blockchain îmbunătățește auditabilitatea, și tranzacții Bitcoin/Ethereum oferă jucătorilor depuneri mai rapide. Aceste stimulente adesea sunt în general date ca credite de cazino sau rotiri gratuite valabile pentru joc pentru sloturi. Simboluri wild permanente. Sunt cunoscuți pentru  graficei de înaltă calitate, mecanicii fluidelor și mecanică onestă. După un timp de participare, Am inițiat o rundă cu jackpot.</p>\r\n<p>În cele din urmă, cheltuielile promoționale sunt relativ mici: mărcile de obicei oferă un token de 5–20 GBP alături de FS, ceea ce înlocuiește adesea media plătită. Nu faceți root/jailbreak pentru stabilitate. Să vă bucurați numerous games gambling viață de acasă. Roulette pe internet este unul dintre clasice jocuri de cazino disponibile pe site-uri virtuale de jocuri de noroc. În plus, monedele virtuale pot fi o alegere bună pentru persoanele care evită urmărirea. Meciuri ca la aparate nelimitate. Sloturile video de astăzi oferă teme, runde bonus și grafică avansată. RTP (Return to Player) trebuie cercetat, înainte de a paria. Pe scurt, cine face jocurile contează, uită-te cine este în spate.</p>\r\n<p> Confirmați întotdeauna că ambele pariuri sunt live  Un exemplu fiind, acces prin ID tactil, notificări bonus în aplicație, și moduri demo fără conexiune sunt adoptate pe scară largă. Motivul este că de obicei perechi o ofertă de potrivire pe lângă rotiri suplimentare a crește profitul la o primă încărcare. Confidențialitate este un mare avantaj al jocurilor de noroc cripto, prin mascarea identităților.  Opțiuni VIP .  Jocuri electronice   au început în anii 1990 ,  cu designuri de jocuri simple .</p>\r\n<ul>\r\n<li>Cazino Social</li>\r\n<li>Enjoy Recompense Uriașe Pe Virtual Site</li>\r\n<li>Confruntă-I Pe Alții</li>\r\n<li>Cazino Mobil: Experiență</li>\r\n<li>Toate Câștigurile În Timp Real</li>\r\n<li>Consult Sessions Cu Smart Features</li>\r\n<li>Reliable Tehnici Pentru Victory În Online Online Roulette</li>\r\n</ul>\r\n<p> Funcționarii de reglementare   în general verifică  că site-urile   utilizează sisteme corecte ,  livrează jocuri reglementate   de la furnizori respectați ,  și procesează operațiuni financiare  fără probleme . Rezultate negative aduce tristețe, ceea ce crește impulsivitatea. Fără acel trio complet, devine simplu să te grăbești și să iei decizii pripite care au rezultate dăunătoare. Cum îți dai seama dacă un site este de încredere? Limite la nivel de grup pentru minimizarea fricțiunilor. Promoții de multe ori include  pariuri bonus special pentru  utilizatorii ruletei.</p>\r\n<h2>Temă de Halloween</h2>\r\n<p>La final, întrebă jucătorii experimentați pentru a rămâne informat.  Fiecare titlu de cazinou   au rate de profit diferite . Deși aceste promoții par valoroase la început, este important să reținem că recompensele nu provin doar din bunătate — folosesc stimulentele ca metodă promoțională.    Combinate, acești factori produc o selecție vastă pentru utilizatori .   Sprijinirea cifrelor din joc susține abordări profitabile și reduce înclinarea.  Foile de calcul sunt ideale ,  deoarece se potrivește aspectului. Legendary slot machines pentru a sărbători.</p>\r\n<h2>21 pentru toată lumea: instrucțiuni</h2>\r\n<p>Poți revendica de un bonus gratuit pentru jucători noi doar cu condiții de pariere. Acest lucru permite o finanțare rapidă și, de obicei, retrageri mai rapide. Pentru persoane fizice doresc flexibilitate, cazinouri care nu sunt pe GamStop combinate cu alte cazinouri transfrontaliere independent de sisteme de autorestricție bine-cunoscute cum ar fi GamStop devin răspândite. Căutați cazinouri cu metode de contact clare și accesibile   cum ar fi instrumente de chat rapid, adrese de e-mail și mesagerie pe profilul social . Asistență profesională îmbunătățește satisfacția. Conținutul promoțional Sunt gândite recompensa în timp.  Practici de pariere sigure  pot reduce riscurile ,  cum ar fi monitorizarea emoțiilor . Găsește alternative blackjack. Instrumente bazate pe IA creează promoții personalizate, și reducând riscurile. Pandemia, criza sanitară, COVID-19, carantina și criza globală au fost un catalizator, un accelerator, o cauză și un factor care a contribuit la boom-ul, creșterea, explozia, expansiunea și răspândirea jocurilor de noroc online, a jocurilor de noroc digitale, a cazinourilor digitale, a pariurilor sportive și a jocurilor de noroc la domiciliu, deoarece milioane de oameni au început să aibă nevoie activitate în casele lor, în mediul casnic, pe canapele sau în spațiile lor personale. Validați regulile locale înainte de înregistrare.</p>\r\n<p>Dacă nu citești condițiile, poți rata retragerile. Controale ale sesiunilor de jocuri de noroc ajută la prevenirea epuizării, evitând jocul nesăbuit. Începeți cu pariuri exterioare crește șansele. Tranzacții bazate pe blockchain garantează condițiile, fără manipulare. Înțelegerea acestor factori   ghidează obiceiuri sănătoase. Primul impact al unui cazinou adesea depinde de aspectul și atmosfera sa precum și prezentarea grafică. Ce jocuri sunt potrivite pentru mine?</p>\r\n<h3>$25 free chip no deposit casino</h3>\r\n<p> Căutați o licență reputată  de exemplu MGA sau UKGC   pentru standarde robuste. Potriviți geolocalizarea IP pentru a reduce verificările. Cazinouri mobile au remodelat industria jocurilor de noroc online. Remember to learn the bonus rules înainte de activating. Furnizori online au jocuri de masă pentru fiecare dispozitiv. Cazino live: experiențe directe. Tehnologie reduce întârzierile, făcând cazinourile live mai captivante. Reflectă reducerea din pariuri pe care cazinoul se așteaptă să-l păstreze. Fiecare pariu poate să conțină un jackpot. Mese cu latență redusă pentru a vă bucura de joc.</p>\r\n<ul>\r\n<li>Comprehensive Gambling Website Pentru Cineva Jucător</li>\r\n<li>Credite Regulate</li>\r\n<li>Casino Live: Ghid Complet</li>\r\n<li>Foița Norocului</li>\r\n</ul>\r\n<p>Într-un caz, entuziaști de sloturi ar trebui să selecteze recompense prezentând mari plafoane maxime de plată. În plus față de divertisment oferte promoționale, cum ar fi bonusuri fără depunere pentru utilizatorii noi, jucătorii noi, membrii lobby-ului, jucătorii noi și persoanele care se conectează. Fiecare acțiune nu are legătură de la evenimentele anterioare. Aceste mărci de jocuri de noroc investesc în instrumente de pariuri iOS și Android a valorifica creșterii rapide a jocurilor de noroc bazate pe sport. Rotiri gratuite impulsionează lansările de sloturi, prin joc fără riscuri. Din ce în ce mai mulți utilizatori aleg jocuri pe mobil care oferă funcționare ușoară pe orice dispozitiv. Rolele se aliniază de-a lungul liniilor de plată pentru a crea câștiguri.  Acești operatori se îmbunătățesc   platformele lor interactive   și structurile juridice .  Jocuri de noroc de buzunar   au dominat deceniul , datorită   site-uri web mobile-first . Mai jos sunt direct pași de revendicare pentru un bonus fără depunere la un cazinou online integral.</p>\r\n<p>Aceptăm Ethereum pentru experiență digitală fără interferențe.  Evenimente de competiție oferă membrilor șansa de a concura  pentru plăți <a href=\"https://winmasterscasinos.com\">https://winmasterscasinos.com</a>  sau rotiri gratuite   gratuit . Jackpoturile fac jocul addictiv. Ton tradus angajare. Experience real online casino de acasă. Utilizați echilibru în soldul dvs. Interacțiune în timp real oferiți realism. Asigurați-vă că verificați dacă metoda lor preferată este acceptată. Aceste sisteme de recompense pot include oferte de reîncărcare care sporesc câștigurile. Beneficii ale jocului la ruletă online oferă acces ușor.</p>\r\n<h3>Proven Strategies for Success in Internet Casino Roulette</h3>\r\n<p>Provocări live de astăzi. Nu trebuie să descărcați software, și funcționează pe mai multe platforme.  Pariuri controlate   se bazează pe responsabilitatea personală,  pentru a evita prejudiciile financiare . Jucători sunt încurajați să găsiți site-uri de jocuri de noroc care funcție rapid numerar distribuții precum și ale lor vastă gamă pentru divertisment. Pe scurt, pariurile planificate reduc riscul. Totuși, sub atracție se află un răspuns al creierului care este frecvent ignorat. Aplică reguli stricte  pentru a preveni spălarea banilor , fraudă ,  și accesul minorilor .</p>\r\n<p>Greșeli frecvente la ruleta online poate costa jucătorii în ruleta digitală. Dacă pierderile vi se par copleșitoare, solicitați ajutor profesional .  Activați SMS/Autentificare  împotriva preluării . Instrumente de protecție a jucătorilor trebuie să fie de încredere, pentru a asigura confidențialitatea. Intrarea doar cu bani per operator. O parte din public cred că cazinourile online sunt trucate. Există, de asemenea, o cazinou extinsă cu peste optzeci aparate, sloturi progresive și ruletă digitală. Efecte colorate influențează starea de spirit. Prin participare la un program de loialitate, jucătorii pot obține puncte de fiecare dată când  pariază. Jucătorii se bucură de disponibilitate constantă, prin mobil sau desktop.</p>\r\n<p>Jucători Twitch promovează jocurile de noroc. Recompense de cazinou prelungesc sesiunile, reduc timpii de pauză. Înregistrați instantanee promoționale cu ID-uri. Această metodă este cel mai adesea utilizată pentru transferuri cu mize mari. Sisteme financiare sunt diverse și sprijină cryptocurrencies.  O preocupare majoră   este site-uri false ,  site-uri clonate   oferă bonusuri false. Gestionarea profilului pentru orice nevoie. Fiecare are propriile aspecte pozitive și limitări, dar toate oferă accesibilitate și siguranță.</p>\r\n<p>Ambele tipuri de cazinouri oferă beneficii, deși depinde se reduce la stilul de viață. Firme de cazinouri de top își extind amprenta în America. Participanții pot solicita o altă carte pentru a se apropia de 21 sau să mențină pentru a-și menține poziția. Dacă apar pierderi nete în primele 24-72 de ore, o parte îți este creditată înapoi. Jocuri de noroc transmise în direct fuzionează online și offline. Majoritatea cazinourilor necesită un fel de verificare a identității pentru a a respecta legile regionale și a bloca utilizarea abuzivă. Test role unice. Top performers sunt experți în a controla  pariurile lor pentru a să rămână în joc mai mult timp. Titlurile actuale ale sloturilor video prezintă un design tematic, sisteme bonus și grafică plină de viață. RNG-urile funcționează în fundal. Prin urmare, rotirile sunt întotdeauna aleatorii.   Abordarea ta de joc definește cea mai bună opțiune. La sfârșitul zilei, nivelul de risc afectează rezultatele sesiunii.</p>\r\n<h2> Ofertă curentă </h2>\r\n<p>Mașini unice pentru distracție fără sfârșit. Utilizează portofelele tale preferate cu viteză. Concluzia este, cunoașterea procentelor de plată ajută la alegere. Sloturi cu volatilitate ridicată au intervale lungi, cu posibile jackpot-uri mari. Tragouri cu tematică istoric. Protecție a rețelei securizează infrastructura cazinoului, îmbunătățesc fiabilitatea. Jocuri live recomandate pentru a asigura varietatea și a îmbunătăți experiența. Datorită aplicațiilor, jocurile de cazinou sunt mai accesibile ca niciodată. Answer center este gata să ajute pentru orice nevoie. Aceste formate online ale terminale de jocuri fizice {oferă simplitate, varietate și șansa pentru jackpoturi care schimbă viața, ceea ce le face un opțiune preferată atât printre ocazionale, cât și printre jocurile serioase jucători. Platforme de pariuri online permit jocul de acasă.</p>\r\n<ul>\r\n<li>Inregistrează-Te Fără Depunere No Waiting</li>\r\n<li>Experience Casinouri Noi</li>\r\n<li>Discover  Adventure </li>\r\n<li>Licențe De La Branduri De Renume</li>\r\n</ul>\r\n<p> Jocuri de noroc sănătoase   depinde de stabilirea unor limite ,  pentru a menține jocurile de noroc distractive . Studierea varianței sloturilor ajută la stabilirea așteptărilor. Pay with Google Pay instantaneu. Talk cu jucători reali. Securitatea plăților   trebuie garantat,  deci găsiți gateway-uri verificate . Ține o evidență a pariurilor și soldurilor Site-uri web specializate au casinouri live pentru toate nevoile.  În cele din urmă, jocurile de noroc trebuie să rămână divertisment . Cu toate acestea, utilizarea în masă necesită infrastructură, din cauza costurilor ridicate de dezvoltare. Pe lângă construirea unor măsuri rezistente anti-spălare, mărci conforme trebuie să treacă audituri operaționale externe. Pentru jucătorii informați care respectă termenii, un bonus poate fi un mijloc benefic de a prelungi jocul și de a aduce valoare suplimentară</p>\r\n<p>Deși sloturile se bazează în mare măsură pe probabilitate, câteva strategii vă pot îmbunătăți jocul. În acele zile, participanții trebuiau să descarce software pentru a se alătura cazinoului.  O problemă  este cazinouri înșelătoare ,  site-uri web rău intenționate  păcălesc jucătorii . Multe dintre cele mai bine plătite sloturi cerere pariuri mai mari decât bănuții. Ei dezvoltă conținut clienții aleg. Prin revendicarea acestui avantaj, primiți o mică recompensă pentru înscriere (cel mai adesea între 10 și 50 USD) fără a fi necesar un depozit. Prima ta acțiune este să verifici certificării platformei. Un alt motiv important este gama de jocuri prezente în cazinourile digitale. Pentru a încheia, cazinourile web au succes datorită confortului și cererea continuă să crească. Dacă trebuie să asumi o pierdere, menține-o cât mai mică posibil pentru a proteja randamentele.</p>\r\n<h2>Întrebările dumneavoastră   Rezolvate corect </h2>\r\n<p>Cu toate acestea, aceste site-uri globale respectă legi jurisdicționale diferite privind drepturile utilizatorilor, îngrijirea datelor cu caracter personal, și asistență pentru clienți.   Cazinouri VR permit utilizatorilor să se plimbe prin ele, prin echipamente imersive. În plus, monedele virtuale pot fi o alegere bună pentru persoanele care preferă să rămână anonime.  După ce sunt gata de utilizare,  aplicațiile se execută mai eficient   și returnează răspunsuri mai repede ,  în special la schimbarea jocurilor  sau navigarea în zona contului dvs.. Cluburile VIP sunt un beneficiu cheie pentru utilizatorii. Provocările face jocul social. Concursuri captivante: săptămânal. Experiențe în direct transformă interacțiunea umană direct online. Profiluri unice de browser pentru a evita duplicatele.</p>\r\n<img src= \"https://images.unsplash.com/photo-1568284498491-7a22168592af?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MjgwfHxvbmxpbmUlMjBzbG90c3xlbnwwfHwwfHx8MA%3D%3D\" width=\"312\">\r\n<p>Premii din industrie evidențiază problemele, înainte de alegerea bonusurilor. O strategie bine-cunoscută se pariază aceeași sumă, ceea ce evită fluctuațiile rapide ale fondurilor. Jetoane SMS sau aplicații pentru liniște sufletească. De asemenea, vă permit să vă urmăriți fondurile utilizând doar resursele curente. Testând strategii fără risc ajută noii veniți. Role digitale au devenit una dintre cele mai bine-cunoscute forme de jocuri pe internet, atrăgând milioane de jucători în fiecare regiune.</p>\r\n<img src= \"https://t3.ftcdn.net/jpg/08/20/67/18/360_F_820671817_1TGyZgbAKmRki4yWRtM7M7lgvDYzo56p.webp\" width=\"492\">\r\n<p>Locuri cu sloturi live cu alți utilizatori. Pentru anumiți utilizatori, jocul social prelungește sesiunile și sporește plăcerea totală, transformând jocul solo într-o activitate mai captivantă și mai recompensatoare. Indiferent dacă învârti rolele sau mizezi jetoane la ruletă, de obicei joci pe fie o aplicație de cazinou sau un browser desktop. Rounduri norocoase afișate. Orice înfloritor cazinou pe internet virtual trebuie menține unu prompt serviciu operare, un colecție oferind opțiuni de jocuri, și unele sigur platformă. Jucare garantată datorită protecției jucătorilor. Sisteme de asistență digitală gestionează chatul live în timp real. Ajutor disponibil oricând rezolvă problemele rapid.</p>', 'Slot Cu Bonus Gratuit Filipine – Republica România   Register & Win', '', 'publish', 'closed', 'open', '', 'slot-cu-bonus-gratuit-filipine-republica-romania-register-win', '', '', '2025-11-25 05:53:52', '2025-11-25 05:53:52', '', 0, 'https://onlineincshop.com/?p=604', 0, 'post', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(605, 9476, '2025-11-25 05:53:52', '2025-11-25 05:53:52', '\r\n<p>Recompense fără depunere pentru jucători obișnuiți pot fi oferite pentru o durată limitată sau chiar o dată pe săptămână. Casinouri care susțin jocul responsabil. Become a member club de utilizatori automat. Disponibil în întreaga lume fără comisii. Totuși, unele categorii oferă randamente mai bune față de restul. Păstrează jurnalele sesiunilor de joc pentru dispute. Alătură-te instrumentelor RG atunci când este nevoie.</p>\r\n<h2>Pas cu pas Ghid pentru Joc de noroc Online Jocuri de noroc</h2>\r\n<p>Cazinourile ar trebui să ofere transferuri securizate, Mastercard, pentru un joc fără riscuri. Evitați pariurile circulare pentru a păstra conturile. Urmărește datele versiunilor pentru a rămâne la curent. Play jocuri vintage.  Nu doar noroc . Căutați surse de încredere pentru a învăța despre reputație. Folosește verificări ale realității pentru a preveni înclinarea.  Înțelegerea procentului   ghidează strategia de pariere . Concentrați-vă pe licențe, jocuri corecte și plăți sigure . Bonusuri atrage pariorii începători, prin fonduri suplimentare.</p>\r\n<img src= \"https://images.unsplash.com/photo-1659154502068-2f9063c338d1?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NzkyfHxvbmxpbmUlMjBzbG90c3xlbnwwfHwwfHx8MA%3D%3D\" width=\"759\">\r\n<p>Opțiuni de plată multiple asigură ușurință de utilizare. Totuși, bonusurile pot duce la jocuri excesive, dacă termenii sunt ignorați. Nu colaborați pentru a evita blocările. Sloturi online funcționează folosind un motor de numere, asigurându-se că fiecare rundă este în întregime bazat pe șansă și transparent. Cum să vă bucurați de ruleta online în mod responsabil sunt esențiale distracție pe termen lung în ruleta online. Fii răbdător până când e rândul tău și nu-ți atinge jetoanele după ce dealerul anunță că nu mai sunt pariuri. Tehnologie blockchain îmbunătățește auditabilitatea, și tranzacții Bitcoin/Ethereum oferă jucătorilor depuneri mai rapide. Aceste stimulente adesea sunt în general date ca credite de cazino sau rotiri gratuite valabile pentru joc pentru sloturi. Simboluri wild permanente. Sunt cunoscuți pentru  graficei de înaltă calitate, mecanicii fluidelor și mecanică onestă. După un timp de participare, Am inițiat o rundă cu jackpot.</p>\r\n<p>În cele din urmă, cheltuielile promoționale sunt relativ mici: mărcile de obicei oferă un token de 5–20 GBP alături de FS, ceea ce înlocuiește adesea media plătită. Nu faceți root/jailbreak pentru stabilitate. Să vă bucurați numerous games gambling viață de acasă. Roulette pe internet este unul dintre clasice jocuri de cazino disponibile pe site-uri virtuale de jocuri de noroc. În plus, monedele virtuale pot fi o alegere bună pentru persoanele care evită urmărirea. Meciuri ca la aparate nelimitate. Sloturile video de astăzi oferă teme, runde bonus și grafică avansată. RTP (Return to Player) trebuie cercetat, înainte de a paria. Pe scurt, cine face jocurile contează, uită-te cine este în spate.</p>\r\n<p> Confirmați întotdeauna că ambele pariuri sunt live  Un exemplu fiind, acces prin ID tactil, notificări bonus în aplicație, și moduri demo fără conexiune sunt adoptate pe scară largă. Motivul este că de obicei perechi o ofertă de potrivire pe lângă rotiri suplimentare a crește profitul la o primă încărcare. Confidențialitate este un mare avantaj al jocurilor de noroc cripto, prin mascarea identităților.  Opțiuni VIP .  Jocuri electronice   au început în anii 1990 ,  cu designuri de jocuri simple .</p>\r\n<ul>\r\n<li>Cazino Social</li>\r\n<li>Enjoy Recompense Uriașe Pe Virtual Site</li>\r\n<li>Confruntă-I Pe Alții</li>\r\n<li>Cazino Mobil: Experiență</li>\r\n<li>Toate Câștigurile În Timp Real</li>\r\n<li>Consult Sessions Cu Smart Features</li>\r\n<li>Reliable Tehnici Pentru Victory În Online Online Roulette</li>\r\n</ul>\r\n<p> Funcționarii de reglementare   în general verifică  că site-urile   utilizează sisteme corecte ,  livrează jocuri reglementate   de la furnizori respectați ,  și procesează operațiuni financiare  fără probleme . Rezultate negative aduce tristețe, ceea ce crește impulsivitatea. Fără acel trio complet, devine simplu să te grăbești și să iei decizii pripite care au rezultate dăunătoare. Cum îți dai seama dacă un site este de încredere? Limite la nivel de grup pentru minimizarea fricțiunilor. Promoții de multe ori include  pariuri bonus special pentru  utilizatorii ruletei.</p>\r\n<h2>Temă de Halloween</h2>\r\n<p>La final, întrebă jucătorii experimentați pentru a rămâne informat.  Fiecare titlu de cazinou   au rate de profit diferite . Deși aceste promoții par valoroase la început, este important să reținem că recompensele nu provin doar din bunătate — folosesc stimulentele ca metodă promoțională.    Combinate, acești factori produc o selecție vastă pentru utilizatori .   Sprijinirea cifrelor din joc susține abordări profitabile și reduce înclinarea.  Foile de calcul sunt ideale ,  deoarece se potrivește aspectului. Legendary slot machines pentru a sărbători.</p>\r\n<h2>21 pentru toată lumea: instrucțiuni</h2>\r\n<p>Poți revendica de un bonus gratuit pentru jucători noi doar cu condiții de pariere. Acest lucru permite o finanțare rapidă și, de obicei, retrageri mai rapide. Pentru persoane fizice doresc flexibilitate, cazinouri care nu sunt pe GamStop combinate cu alte cazinouri transfrontaliere independent de sisteme de autorestricție bine-cunoscute cum ar fi GamStop devin răspândite. Căutați cazinouri cu metode de contact clare și accesibile   cum ar fi instrumente de chat rapid, adrese de e-mail și mesagerie pe profilul social . Asistență profesională îmbunătățește satisfacția. Conținutul promoțional Sunt gândite recompensa în timp.  Practici de pariere sigure  pot reduce riscurile ,  cum ar fi monitorizarea emoțiilor . Găsește alternative blackjack. Instrumente bazate pe IA creează promoții personalizate, și reducând riscurile. Pandemia, criza sanitară, COVID-19, carantina și criza globală au fost un catalizator, un accelerator, o cauză și un factor care a contribuit la boom-ul, creșterea, explozia, expansiunea și răspândirea jocurilor de noroc online, a jocurilor de noroc digitale, a cazinourilor digitale, a pariurilor sportive și a jocurilor de noroc la domiciliu, deoarece milioane de oameni au început să aibă nevoie activitate în casele lor, în mediul casnic, pe canapele sau în spațiile lor personale. Validați regulile locale înainte de înregistrare.</p>\r\n<p>Dacă nu citești condițiile, poți rata retragerile. Controale ale sesiunilor de jocuri de noroc ajută la prevenirea epuizării, evitând jocul nesăbuit. Începeți cu pariuri exterioare crește șansele. Tranzacții bazate pe blockchain garantează condițiile, fără manipulare. Înțelegerea acestor factori   ghidează obiceiuri sănătoase. Primul impact al unui cazinou adesea depinde de aspectul și atmosfera sa precum și prezentarea grafică. Ce jocuri sunt potrivite pentru mine?</p>\r\n<h3>$25 free chip no deposit casino</h3>\r\n<p> Căutați o licență reputată  de exemplu MGA sau UKGC   pentru standarde robuste. Potriviți geolocalizarea IP pentru a reduce verificările. Cazinouri mobile au remodelat industria jocurilor de noroc online. Remember to learn the bonus rules înainte de activating. Furnizori online au jocuri de masă pentru fiecare dispozitiv. Cazino live: experiențe directe. Tehnologie reduce întârzierile, făcând cazinourile live mai captivante. Reflectă reducerea din pariuri pe care cazinoul se așteaptă să-l păstreze. Fiecare pariu poate să conțină un jackpot. Mese cu latență redusă pentru a vă bucura de joc.</p>\r\n<ul>\r\n<li>Comprehensive Gambling Website Pentru Cineva Jucător</li>\r\n<li>Credite Regulate</li>\r\n<li>Casino Live: Ghid Complet</li>\r\n<li>Foița Norocului</li>\r\n</ul>\r\n<p>Într-un caz, entuziaști de sloturi ar trebui să selecteze recompense prezentând mari plafoane maxime de plată. În plus față de divertisment oferte promoționale, cum ar fi bonusuri fără depunere pentru utilizatorii noi, jucătorii noi, membrii lobby-ului, jucătorii noi și persoanele care se conectează. Fiecare acțiune nu are legătură de la evenimentele anterioare. Aceste mărci de jocuri de noroc investesc în instrumente de pariuri iOS și Android a valorifica creșterii rapide a jocurilor de noroc bazate pe sport. Rotiri gratuite impulsionează lansările de sloturi, prin joc fără riscuri. Din ce în ce mai mulți utilizatori aleg jocuri pe mobil care oferă funcționare ușoară pe orice dispozitiv. Rolele se aliniază de-a lungul liniilor de plată pentru a crea câștiguri.  Acești operatori se îmbunătățesc   platformele lor interactive   și structurile juridice .  Jocuri de noroc de buzunar   au dominat deceniul , datorită   site-uri web mobile-first . Mai jos sunt direct pași de revendicare pentru un bonus fără depunere la un cazinou online integral.</p>\r\n<p>Aceptăm Ethereum pentru experiență digitală fără interferențe.  Evenimente de competiție oferă membrilor șansa de a concura  pentru plăți <a href=\"https://winmasterscasinos.com\">https://winmasterscasinos.com</a>  sau rotiri gratuite   gratuit . Jackpoturile fac jocul addictiv. Ton tradus angajare. Experience real online casino de acasă. Utilizați echilibru în soldul dvs. Interacțiune în timp real oferiți realism. Asigurați-vă că verificați dacă metoda lor preferată este acceptată. Aceste sisteme de recompense pot include oferte de reîncărcare care sporesc câștigurile. Beneficii ale jocului la ruletă online oferă acces ușor.</p>\r\n<h3>Proven Strategies for Success in Internet Casino Roulette</h3>\r\n<p>Provocări live de astăzi. Nu trebuie să descărcați software, și funcționează pe mai multe platforme.  Pariuri controlate   se bazează pe responsabilitatea personală,  pentru a evita prejudiciile financiare . Jucători sunt încurajați să găsiți site-uri de jocuri de noroc care funcție rapid numerar distribuții precum și ale lor vastă gamă pentru divertisment. Pe scurt, pariurile planificate reduc riscul. Totuși, sub atracție se află un răspuns al creierului care este frecvent ignorat. Aplică reguli stricte  pentru a preveni spălarea banilor , fraudă ,  și accesul minorilor .</p>\r\n<p>Greșeli frecvente la ruleta online poate costa jucătorii în ruleta digitală. Dacă pierderile vi se par copleșitoare, solicitați ajutor profesional .  Activați SMS/Autentificare  împotriva preluării . Instrumente de protecție a jucătorilor trebuie să fie de încredere, pentru a asigura confidențialitatea. Intrarea doar cu bani per operator. O parte din public cred că cazinourile online sunt trucate. Există, de asemenea, o cazinou extinsă cu peste optzeci aparate, sloturi progresive și ruletă digitală. Efecte colorate influențează starea de spirit. Prin participare la un program de loialitate, jucătorii pot obține puncte de fiecare dată când  pariază. Jucătorii se bucură de disponibilitate constantă, prin mobil sau desktop.</p>\r\n<p>Jucători Twitch promovează jocurile de noroc. Recompense de cazinou prelungesc sesiunile, reduc timpii de pauză. Înregistrați instantanee promoționale cu ID-uri. Această metodă este cel mai adesea utilizată pentru transferuri cu mize mari. Sisteme financiare sunt diverse și sprijină cryptocurrencies.  O preocupare majoră   este site-uri false ,  site-uri clonate   oferă bonusuri false. Gestionarea profilului pentru orice nevoie. Fiecare are propriile aspecte pozitive și limitări, dar toate oferă accesibilitate și siguranță.</p>\r\n<p>Ambele tipuri de cazinouri oferă beneficii, deși depinde se reduce la stilul de viață. Firme de cazinouri de top își extind amprenta în America. Participanții pot solicita o altă carte pentru a se apropia de 21 sau să mențină pentru a-și menține poziția. Dacă apar pierderi nete în primele 24-72 de ore, o parte îți este creditată înapoi. Jocuri de noroc transmise în direct fuzionează online și offline. Majoritatea cazinourilor necesită un fel de verificare a identității pentru a a respecta legile regionale și a bloca utilizarea abuzivă. Test role unice. Top performers sunt experți în a controla  pariurile lor pentru a să rămână în joc mai mult timp. Titlurile actuale ale sloturilor video prezintă un design tematic, sisteme bonus și grafică plină de viață. RNG-urile funcționează în fundal. Prin urmare, rotirile sunt întotdeauna aleatorii.   Abordarea ta de joc definește cea mai bună opțiune. La sfârșitul zilei, nivelul de risc afectează rezultatele sesiunii.</p>\r\n<h2> Ofertă curentă </h2>\r\n<p>Mașini unice pentru distracție fără sfârșit. Utilizează portofelele tale preferate cu viteză. Concluzia este, cunoașterea procentelor de plată ajută la alegere. Sloturi cu volatilitate ridicată au intervale lungi, cu posibile jackpot-uri mari. Tragouri cu tematică istoric. Protecție a rețelei securizează infrastructura cazinoului, îmbunătățesc fiabilitatea. Jocuri live recomandate pentru a asigura varietatea și a îmbunătăți experiența. Datorită aplicațiilor, jocurile de cazinou sunt mai accesibile ca niciodată. Answer center este gata să ajute pentru orice nevoie. Aceste formate online ale terminale de jocuri fizice {oferă simplitate, varietate și șansa pentru jackpoturi care schimbă viața, ceea ce le face un opțiune preferată atât printre ocazionale, cât și printre jocurile serioase jucători. Platforme de pariuri online permit jocul de acasă.</p>\r\n<ul>\r\n<li>Inregistrează-Te Fără Depunere No Waiting</li>\r\n<li>Experience Casinouri Noi</li>\r\n<li>Discover  Adventure </li>\r\n<li>Licențe De La Branduri De Renume</li>\r\n</ul>\r\n<p> Jocuri de noroc sănătoase   depinde de stabilirea unor limite ,  pentru a menține jocurile de noroc distractive . Studierea varianței sloturilor ajută la stabilirea așteptărilor. Pay with Google Pay instantaneu. Talk cu jucători reali. Securitatea plăților   trebuie garantat,  deci găsiți gateway-uri verificate . Ține o evidență a pariurilor și soldurilor Site-uri web specializate au casinouri live pentru toate nevoile.  În cele din urmă, jocurile de noroc trebuie să rămână divertisment . Cu toate acestea, utilizarea în masă necesită infrastructură, din cauza costurilor ridicate de dezvoltare. Pe lângă construirea unor măsuri rezistente anti-spălare, mărci conforme trebuie să treacă audituri operaționale externe. Pentru jucătorii informați care respectă termenii, un bonus poate fi un mijloc benefic de a prelungi jocul și de a aduce valoare suplimentară</p>\r\n<p>Deși sloturile se bazează în mare măsură pe probabilitate, câteva strategii vă pot îmbunătăți jocul. În acele zile, participanții trebuiau să descarce software pentru a se alătura cazinoului.  O problemă  este cazinouri înșelătoare ,  site-uri web rău intenționate  păcălesc jucătorii . Multe dintre cele mai bine plătite sloturi cerere pariuri mai mari decât bănuții. Ei dezvoltă conținut clienții aleg. Prin revendicarea acestui avantaj, primiți o mică recompensă pentru înscriere (cel mai adesea între 10 și 50 USD) fără a fi necesar un depozit. Prima ta acțiune este să verifici certificării platformei. Un alt motiv important este gama de jocuri prezente în cazinourile digitale. Pentru a încheia, cazinourile web au succes datorită confortului și cererea continuă să crească. Dacă trebuie să asumi o pierdere, menține-o cât mai mică posibil pentru a proteja randamentele.</p>\r\n<h2>Întrebările dumneavoastră   Rezolvate corect </h2>\r\n<p>Cu toate acestea, aceste site-uri globale respectă legi jurisdicționale diferite privind drepturile utilizatorilor, îngrijirea datelor cu caracter personal, și asistență pentru clienți.   Cazinouri VR permit utilizatorilor să se plimbe prin ele, prin echipamente imersive. În plus, monedele virtuale pot fi o alegere bună pentru persoanele care preferă să rămână anonime.  După ce sunt gata de utilizare,  aplicațiile se execută mai eficient   și returnează răspunsuri mai repede ,  în special la schimbarea jocurilor  sau navigarea în zona contului dvs.. Cluburile VIP sunt un beneficiu cheie pentru utilizatorii. Provocările face jocul social. Concursuri captivante: săptămânal. Experiențe în direct transformă interacțiunea umană direct online. Profiluri unice de browser pentru a evita duplicatele.</p>\r\n<img src= \"https://images.unsplash.com/photo-1568284498491-7a22168592af?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MjgwfHxvbmxpbmUlMjBzbG90c3xlbnwwfHwwfHx8MA%3D%3D\" width=\"312\">\r\n<p>Premii din industrie evidențiază problemele, înainte de alegerea bonusurilor. O strategie bine-cunoscută se pariază aceeași sumă, ceea ce evită fluctuațiile rapide ale fondurilor. Jetoane SMS sau aplicații pentru liniște sufletească. De asemenea, vă permit să vă urmăriți fondurile utilizând doar resursele curente. Testând strategii fără risc ajută noii veniți. Role digitale au devenit una dintre cele mai bine-cunoscute forme de jocuri pe internet, atrăgând milioane de jucători în fiecare regiune.</p>\r\n<img src= \"https://t3.ftcdn.net/jpg/08/20/67/18/360_F_820671817_1TGyZgbAKmRki4yWRtM7M7lgvDYzo56p.webp\" width=\"492\">\r\n<p>Locuri cu sloturi live cu alți utilizatori. Pentru anumiți utilizatori, jocul social prelungește sesiunile și sporește plăcerea totală, transformând jocul solo într-o activitate mai captivantă și mai recompensatoare. Indiferent dacă învârti rolele sau mizezi jetoane la ruletă, de obicei joci pe fie o aplicație de cazinou sau un browser desktop. Rounduri norocoase afișate. Orice înfloritor cazinou pe internet virtual trebuie menține unu prompt serviciu operare, un colecție oferind opțiuni de jocuri, și unele sigur platformă. Jucare garantată datorită protecției jucătorilor. Sisteme de asistență digitală gestionează chatul live în timp real. Ajutor disponibil oricând rezolvă problemele rapid.</p>', 'Slot Cu Bonus Gratuit Filipine – Republica România   Register & Win', '', 'inherit', 'closed', 'closed', '', '604-revision-v1', '', '', '2025-11-25 05:53:52', '2025-11-25 05:53:52', '', 604, 'https://onlineincshop.com/?p=605', 0, 'revision', '', 0),
(606, 9476, '2025-11-25 05:54:23', '2025-11-25 05:54:23', '\r\n<ul>\r\n<li>Godkänd Operatörer Erbjuder Säker Multiplayer-Standarder.</li>\r\n<li>Licensierad Företag Säkerställa Skyddad Veckovisa Policyer.</li>\r\n<li>Toppplaycity Casino Tillhandahåller Lojalitets-Förmåner Med Paket.</li>\r\n<li>Senaste Casino Apple Ger Progressiva Jackpottar På Några Minuter.</li>\r\n</ul>\r\n<p>De flesta operatörer marknadsför stora välkomsterbjudanden. Med digital valuta, finansieringen är enklare. Slutsatsen är, att välja ett pålitligt online casino håller dig säker. Licensiering kommer att följa trender, för att hantera nya risker. Rådgivningstjänster ger stöd, för tvångsmässiga spelare. Nuvarande videoslottitlar presenterar tematisk design, bonussystem och livlig grafik. Slumptalsgeneratorer driver sina resultat. Därför är snurr alltid slumpmässiga.  </p>\r\n<p>Nätverksavgifter föruttag. Spelappar på mobilen ha också fördelen med inbyggda verktyg som webbläsarversioner inte kan motsvara. Spela med ett strategiskt tillvägagångssätt. Underhållning förvandlas till ett jobb, från taktik till bonusuppfyllelse. Mitt i 2025, moderna topplistad USA online kasinonplattformar ska förbli märkt krävande i historien. Nästan alla webbplatser erbjuder fantastiska välkomstbonusar. VIP-program bygga varumärkeslojalitet, via ranguppgraderingar.</p>\r\n<p>Du kan behöva sätta in pengar för att utlösa den annonserade gratisbonusen. Föredra kampanjer med låg WR för realistiska clearings. Sådana program, även om de är viktiga, täcker ofta bara certifierade internetbettingplattformar enligt vissa rättsliga regioner, föreslår internationella webbplatser undviker vanligtvis inkludering och kan inte säkerställa dessa skyddsåtgärder på kunder. Casinoappar för surfplattor ökat digital popularitet. Under 2022 hade cirka 25 % av användarna runt om i världen inlämnat en DSAR. Onlinecasino-erbjudanden gör spelande spännande. NY presenterar en värdefull spelsektor för virtuellt spel, även om lagar ännu inte har antagits för att göra det lagligt. Surfplattespel ledde branschen, möjliggjord av iPhone- och Android-appar. Att välja ett legitimt casino i den nuvarande eran kan vara utmanande. Erbjudandekadens räknas: cashback öka omspelningsvärdet.</p>\r\n<p>Titta på vittnesmål kan bekräfta pålitlighet, hjälpa till att undvika dåliga webbplatser. Evenemangsbaserade kampanjer skapar spänning. Många av de bäst betalande slotsen kräver större insatser än ett öre. I slutändan, myter om onlinekasinon är vanliga men falska. Den mest anmärkningsvärda fördelen är längre underhållning, mer bonuskapital ger extra spel, vilket naturligtvis förbättrar dina vinstchanser. Användbar design är nyckeln för att hitta spel och kampanjer snabbt och bekvämt. Dessa metoder kan dock vara tidskrävande och höga kostnader jämfört med verktyg för direktbetalning eller blockchain-pengar. Kompatibla operatörer följ datalagar, vägledda av efterlevnadsorgan. Men det är fortfarande olagligt att spela kasinospel och DFS-vadslagning genom lokal åtkomst. Många av de bäst betalande slotsen efterfrågar större insatser än minimala insatser.</p>\r\n<h3>Hooland Casino</h3>\r\n<p>Vissa spelare jagar förluster, vilket förstör systemet. Godkännande... Detta betyder att du inte kan förutsäga om du vinner. Vilka egenskaper gör en operatör bra? Onlinespel är lagligt i många regioner och regleras av tillsynsmyndigheter som auktoriserar onlinekasinon. När du har satt gränser, analysera spel för vinstchans och förmåner du uppskattar.</p>\r\n<p>Licensiering är avgörande. Ändå, tiny stake slots erbjuda starkt spelvärde till minimal kostnad. Vissa regioner hävstångsfinansierat covid-19-händelserna att godkänna sportspel, tillsammans med ytterligare former av e-spel växer snabbt. Följaktligen operatören följer förordningarna från tillsynsmyndigheten som reglerar och kontrollerar sajtens verksamhet. kan erhålla spinbonusar endast för slot reels. Spåra ackumulerade insättningar för snabb godkännande. Det finns några anledningar till att matched betting är framgångsrikt. Håll enheten uppdaterad för prestanda. Verifiering krävs för att ta ut pengar enligt AML-förordningar. Att vara medveten om dessa egenskaper förbättrar din upplevelse.</p>\r\n<img src= \"https://images.unsplash.com/photo-1698273333251-a344ba641223?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8ODc5fHxzbG90JTIwbWFjaGluZXN8ZW58MHx8MHx8fDA%3D\" width=\"459\">\r\n<p>Trots det, webbläsarplattformar har fortfarande fördelar. Dessa titlar kan vara det näst bästa efter gratis, kostar bara en cent att spela. Bekräfta exponeringen på lay-spelet. Erbjudanden är utformade för att generera spänning — och de arbetar. E-spelställen är tillgängliga dygnet runt, vilket innebär att du kan placera ett spel närhelst tiden är rätt. Vissa bordsspel som poker är statistiskt gynnsamma, med grundläggande strategi.</p>\r\n<h3>canada777 bonus utan insättning</h3>\r\n<p>Det är en kreativ och rolig mekanism att tillhandahålla bonusvärde för spelare. Känn till utbetalningstak för kampanjutbetalningar förhandsspel. Användare kan interagera med dealers, gör det personligt. Om hastighet, design och mobilintegration är viktigast, appar är överlägsna. Teknologi <a href=\"https://mrvegascasinosverige.com\">mrvegas</a> fortsätter att omvandla spel, med immersiva plattformar och kryptokasinon som vinner framträdande. Bara placera din insats, starta hjulen och hoppas på en vinnande kombination. Trots tydliga lagar spelare har fortfarande frågor om vissa ämnen. Verifiera i förväg att din valda metod stöds.</p>\r\n<h3>rock n reels casino inloggning</h3>\r\n<p>Säg att du fokuserar på blackjack eller roulette samtidigt som du strö över slots och live casino för att krydda sessionerna. Exklusivt nya tidigare oregistrerade spelare på varumärket kan få en insättningsfri bonus. De vanligaste formerna inkludera startbelöningar, vanligtvis en bonus som matchar din första insättning; kampanjen utan insättning, ger spel gratis; bonus spins, ofta knutna till specifika slots; och påfyllningsbonusen, gjord för att tacka lojala spelare. Ett antal amerikanska spelplattformar erbjuder cashback-registreringserbjudanden som ett alternativ till eller tillägg till vanliga insättningsbonusar. Data är ryggraden i livebetting. Vi förstår att spelhus i den brittiska sektorn går live varje kalendervecka, och många upplever att det är svårt att få och lita på ett nyligen öppnat casinowebbplats med en registreringsbelöning, så vi erbjuder en katalog av trygga online casinon monterat av vårt personal. Stora vinster väcker lycka. Leta efter hyfsad marknadsvolym för att hjälpa din order att fyllas. Toppplattformarna är enkla att navigera runt på med tydlig navigering och snabba laddningshastigheter. Läs RTP-informationen på utvalda slots.</p>\r\n<p>Icke-lokala kasinon kan licensieras av tillsynsmyndigheter som skiljer sig från de i ditt hemland. Du har en riskgaranti inkluderad — du kan utforska nya spel eller öka ditt insatsbelopp som du skulle ge vidare med bara dina bankrulle. Noggrann bankrullehantering ligger i centrum för produktivt spel. När spel inte matchar. Slutliga tankar, att välja en legitim webbplats stöder ansvarsfullt spelande. Teman och grafik sträcker sig från popkultur till futuristisk design, och erbjuder visuell mångfald. Teknologi fortsätter att utveckla marknaden, med 3D-miljöer och blockchain-baserat spel som vinner framträdande. Vi sammanställer högst rankade casinoerbjudanden utan insättning för innevarande år så att du kan hoppa över jakten; kolla djupgående översikter på den här sidan, alla operatörer som visas är licensierade och välrenommerade, och om du föredrar slots lös in free-snurr utan insättning, eller för poker, baccarat eller specifika spel välj bonuskredit med mjukare regler för spelval. Vilka spel matchar min stil? En stark plan plus tak gör penny slots till ett bra val. Använd ”Normal” för alla kvalificerande spel.</p>\r\n<h3>7 rullar</h3>\r\n<p>Många plattformar erbjuder även live dealer-spel, där riktiga croupierer opererar spel i liveformat, vilket lägger till ett interaktivt lager till det roliga. VR-kasinon låter spelare utforska, genom VR-glasögon. Kompatibla onlinekasinon kör RNG-system för att undvika mönster. Konsekvent fakturering för att rensa AML. Undersök vilka som gör spelen. Strategibaserade titlar som pai gow tenderar att ha minimala procentsatser, om reglerna är gynnsamma. När någon ansöker om radering av data, operatörer kan ofta inte slutföra den.</p>\r\n<h3>qbet-kampanjkod utan insättning</h3>\r\n<p>Designelement är strategiskt valda. Kör några titlar på din enhet. Under emotionell stress de utforskar spel. De låter dig också hålla dig inom gränserna genom att endast använda dina egna pengar. Undvik VPN på arbetsplatsen för att behålla bonusar. Använd begränsade insatser medan du löser bonusar.</p>', 'Gratis Kredit Utan Insättningsspelautomat ♥️ Västerbottens län   🏦', '', 'publish', 'closed', 'open', '', 'gratis-kredit-utan-insattningsspelautomat-%e2%99%a5%ef%b8%8f-vasterbottens-lan-%f0%9f%8f%a6', '', '', '2025-11-25 05:54:23', '2025-11-25 05:54:23', '', 0, 'https://onlineincshop.com/?p=606', 0, 'post', '', 0),
(607, 9476, '2025-11-25 05:54:23', '2025-11-25 05:54:23', '\r\n<ul>\r\n<li>Godkänd Operatörer Erbjuder Säker Multiplayer-Standarder.</li>\r\n<li>Licensierad Företag Säkerställa Skyddad Veckovisa Policyer.</li>\r\n<li>Toppplaycity Casino Tillhandahåller Lojalitets-Förmåner Med Paket.</li>\r\n<li>Senaste Casino Apple Ger Progressiva Jackpottar På Några Minuter.</li>\r\n</ul>\r\n<p>De flesta operatörer marknadsför stora välkomsterbjudanden. Med digital valuta, finansieringen är enklare. Slutsatsen är, att välja ett pålitligt online casino håller dig säker. Licensiering kommer att följa trender, för att hantera nya risker. Rådgivningstjänster ger stöd, för tvångsmässiga spelare. Nuvarande videoslottitlar presenterar tematisk design, bonussystem och livlig grafik. Slumptalsgeneratorer driver sina resultat. Därför är snurr alltid slumpmässiga.  </p>\r\n<p>Nätverksavgifter föruttag. Spelappar på mobilen ha också fördelen med inbyggda verktyg som webbläsarversioner inte kan motsvara. Spela med ett strategiskt tillvägagångssätt. Underhållning förvandlas till ett jobb, från taktik till bonusuppfyllelse. Mitt i 2025, moderna topplistad USA online kasinonplattformar ska förbli märkt krävande i historien. Nästan alla webbplatser erbjuder fantastiska välkomstbonusar. VIP-program bygga varumärkeslojalitet, via ranguppgraderingar.</p>\r\n<p>Du kan behöva sätta in pengar för att utlösa den annonserade gratisbonusen. Föredra kampanjer med låg WR för realistiska clearings. Sådana program, även om de är viktiga, täcker ofta bara certifierade internetbettingplattformar enligt vissa rättsliga regioner, föreslår internationella webbplatser undviker vanligtvis inkludering och kan inte säkerställa dessa skyddsåtgärder på kunder. Casinoappar för surfplattor ökat digital popularitet. Under 2022 hade cirka 25 % av användarna runt om i världen inlämnat en DSAR. Onlinecasino-erbjudanden gör spelande spännande. NY presenterar en värdefull spelsektor för virtuellt spel, även om lagar ännu inte har antagits för att göra det lagligt. Surfplattespel ledde branschen, möjliggjord av iPhone- och Android-appar. Att välja ett legitimt casino i den nuvarande eran kan vara utmanande. Erbjudandekadens räknas: cashback öka omspelningsvärdet.</p>\r\n<p>Titta på vittnesmål kan bekräfta pålitlighet, hjälpa till att undvika dåliga webbplatser. Evenemangsbaserade kampanjer skapar spänning. Många av de bäst betalande slotsen kräver större insatser än ett öre. I slutändan, myter om onlinekasinon är vanliga men falska. Den mest anmärkningsvärda fördelen är längre underhållning, mer bonuskapital ger extra spel, vilket naturligtvis förbättrar dina vinstchanser. Användbar design är nyckeln för att hitta spel och kampanjer snabbt och bekvämt. Dessa metoder kan dock vara tidskrävande och höga kostnader jämfört med verktyg för direktbetalning eller blockchain-pengar. Kompatibla operatörer följ datalagar, vägledda av efterlevnadsorgan. Men det är fortfarande olagligt att spela kasinospel och DFS-vadslagning genom lokal åtkomst. Många av de bäst betalande slotsen efterfrågar större insatser än minimala insatser.</p>\r\n<h3>Hooland Casino</h3>\r\n<p>Vissa spelare jagar förluster, vilket förstör systemet. Godkännande... Detta betyder att du inte kan förutsäga om du vinner. Vilka egenskaper gör en operatör bra? Onlinespel är lagligt i många regioner och regleras av tillsynsmyndigheter som auktoriserar onlinekasinon. När du har satt gränser, analysera spel för vinstchans och förmåner du uppskattar.</p>\r\n<p>Licensiering är avgörande. Ändå, tiny stake slots erbjuda starkt spelvärde till minimal kostnad. Vissa regioner hävstångsfinansierat covid-19-händelserna att godkänna sportspel, tillsammans med ytterligare former av e-spel växer snabbt. Följaktligen operatören följer förordningarna från tillsynsmyndigheten som reglerar och kontrollerar sajtens verksamhet. kan erhålla spinbonusar endast för slot reels. Spåra ackumulerade insättningar för snabb godkännande. Det finns några anledningar till att matched betting är framgångsrikt. Håll enheten uppdaterad för prestanda. Verifiering krävs för att ta ut pengar enligt AML-förordningar. Att vara medveten om dessa egenskaper förbättrar din upplevelse.</p>\r\n<img src= \"https://images.unsplash.com/photo-1698273333251-a344ba641223?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8ODc5fHxzbG90JTIwbWFjaGluZXN8ZW58MHx8MHx8fDA%3D\" width=\"459\">\r\n<p>Trots det, webbläsarplattformar har fortfarande fördelar. Dessa titlar kan vara det näst bästa efter gratis, kostar bara en cent att spela. Bekräfta exponeringen på lay-spelet. Erbjudanden är utformade för att generera spänning — och de arbetar. E-spelställen är tillgängliga dygnet runt, vilket innebär att du kan placera ett spel närhelst tiden är rätt. Vissa bordsspel som poker är statistiskt gynnsamma, med grundläggande strategi.</p>\r\n<h3>canada777 bonus utan insättning</h3>\r\n<p>Det är en kreativ och rolig mekanism att tillhandahålla bonusvärde för spelare. Känn till utbetalningstak för kampanjutbetalningar förhandsspel. Användare kan interagera med dealers, gör det personligt. Om hastighet, design och mobilintegration är viktigast, appar är överlägsna. Teknologi <a href=\"https://mrvegascasinosverige.com\">mrvegas</a> fortsätter att omvandla spel, med immersiva plattformar och kryptokasinon som vinner framträdande. Bara placera din insats, starta hjulen och hoppas på en vinnande kombination. Trots tydliga lagar spelare har fortfarande frågor om vissa ämnen. Verifiera i förväg att din valda metod stöds.</p>\r\n<h3>rock n reels casino inloggning</h3>\r\n<p>Säg att du fokuserar på blackjack eller roulette samtidigt som du strö över slots och live casino för att krydda sessionerna. Exklusivt nya tidigare oregistrerade spelare på varumärket kan få en insättningsfri bonus. De vanligaste formerna inkludera startbelöningar, vanligtvis en bonus som matchar din första insättning; kampanjen utan insättning, ger spel gratis; bonus spins, ofta knutna till specifika slots; och påfyllningsbonusen, gjord för att tacka lojala spelare. Ett antal amerikanska spelplattformar erbjuder cashback-registreringserbjudanden som ett alternativ till eller tillägg till vanliga insättningsbonusar. Data är ryggraden i livebetting. Vi förstår att spelhus i den brittiska sektorn går live varje kalendervecka, och många upplever att det är svårt att få och lita på ett nyligen öppnat casinowebbplats med en registreringsbelöning, så vi erbjuder en katalog av trygga online casinon monterat av vårt personal. Stora vinster väcker lycka. Leta efter hyfsad marknadsvolym för att hjälpa din order att fyllas. Toppplattformarna är enkla att navigera runt på med tydlig navigering och snabba laddningshastigheter. Läs RTP-informationen på utvalda slots.</p>\r\n<p>Icke-lokala kasinon kan licensieras av tillsynsmyndigheter som skiljer sig från de i ditt hemland. Du har en riskgaranti inkluderad — du kan utforska nya spel eller öka ditt insatsbelopp som du skulle ge vidare med bara dina bankrulle. Noggrann bankrullehantering ligger i centrum för produktivt spel. När spel inte matchar. Slutliga tankar, att välja en legitim webbplats stöder ansvarsfullt spelande. Teman och grafik sträcker sig från popkultur till futuristisk design, och erbjuder visuell mångfald. Teknologi fortsätter att utveckla marknaden, med 3D-miljöer och blockchain-baserat spel som vinner framträdande. Vi sammanställer högst rankade casinoerbjudanden utan insättning för innevarande år så att du kan hoppa över jakten; kolla djupgående översikter på den här sidan, alla operatörer som visas är licensierade och välrenommerade, och om du föredrar slots lös in free-snurr utan insättning, eller för poker, baccarat eller specifika spel välj bonuskredit med mjukare regler för spelval. Vilka spel matchar min stil? En stark plan plus tak gör penny slots till ett bra val. Använd ”Normal” för alla kvalificerande spel.</p>\r\n<h3>7 rullar</h3>\r\n<p>Många plattformar erbjuder även live dealer-spel, där riktiga croupierer opererar spel i liveformat, vilket lägger till ett interaktivt lager till det roliga. VR-kasinon låter spelare utforska, genom VR-glasögon. Kompatibla onlinekasinon kör RNG-system för att undvika mönster. Konsekvent fakturering för att rensa AML. Undersök vilka som gör spelen. Strategibaserade titlar som pai gow tenderar att ha minimala procentsatser, om reglerna är gynnsamma. När någon ansöker om radering av data, operatörer kan ofta inte slutföra den.</p>\r\n<h3>qbet-kampanjkod utan insättning</h3>\r\n<p>Designelement är strategiskt valda. Kör några titlar på din enhet. Under emotionell stress de utforskar spel. De låter dig också hålla dig inom gränserna genom att endast använda dina egna pengar. Undvik VPN på arbetsplatsen för att behålla bonusar. Använd begränsade insatser medan du löser bonusar.</p>', 'Gratis Kredit Utan Insättningsspelautomat ♥️ Västerbottens län   🏦', '', 'inherit', 'closed', 'closed', '', '606-revision-v1', '', '', '2025-11-25 05:54:23', '2025-11-25 05:54:23', '', 606, 'https://onlineincshop.com/?p=607', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(608, 9476, '2025-11-25 05:54:46', '2025-11-25 05:54:46', '\r\n<p>nonobstant, la pouces dont ces représentent créditer laisseront varier. Mais derrière l\'excitation se cache une dimension psychologique souvent négligée. | Cependant, sous l\'enthousiasme se cache un aspect mental souvent ignoré. | Pourtant, sous le plaisir se cache un facteur psychologique que beaucoup manquent. | Mais sous la joie se cache un élément d\'état d\'esprit souvent invisible. | Cependant, derrière le plaisir se cache un aspect cognitif souvent manqué. | Pourtant, sous l\'excitation se cache une dimension mentale souvent inaperçue. | Mais derrière l\'enthousiasme se cache un élément de réflexion souvent ignoré. | Cependant, sous l\'excitation se cache un détail psychologique souvent manqué. | Pourtant, sous la joie se cache un élément mental souvent négligé. | Mais derrière l\'attraction se cache une composante psychologique souvent invisible. Et avec de l\'argent réel dans mon sac, je serai certainement certain d\'être le glucinium. hinderance kayoed LuckyVibe pour vous-même . Ils égales purs de la même manière porter parier sur de fortune qui impliquent tourner vaciller avec respective représentation symbolique et l\'objectif de ord se moquer représentation symbolique le long de unité angström ligne de paiement pour acquérir matériel . Notre tout-inclusif production oblation inclure greco-romain mettre en suspens parier sur correspondant chêne à jack , poker sur poêle et roulette à lignes , époque machines à sous addition a aller casino de jeux d\'argent avoir , complètement pleinement réactif et alors vous fesses flirter le long de n\'importe quel dispositif . Vérifier l\'éligibilité au jackpot sous bonus. Formats traditionnels comme le vidéo poker ont un RTP très élevé, avec des mises intelligentes.</p>\r\n<ul>\r\n<li>Certifiés Opérateurs Offrent Équilibrés Tournoi De Spin Politiques.</li>\r\n<li>Tablette Joueurs Rejoindre Jackpots Sans Problèmes Sur Tous Les Équipements.</li>\r\n<li>Betonline.Ag Casino Organise Des Tournois De Tours Gratuits Instantanément.</li>\r\n<li>Affaires : 2 000+</li>\r\n<li>Jeux D\'Argent Offre De Bonus Gratuite</li>\r\n<li>Certifiés Opérateurs Offrent Sécurisés Conditions Exclusives Termes.</li>\r\n<li>Gameplay Immersif HD Pelt : Savour Sack Up Visuels , Multiple Tv Camera Angles , Et Gros Plans Thank À HD Cyclosis . Australien Joueur Devraient Recevoir Salutaire Internet ( Ou Si V Mbps ) Pour Ampère Briller Expérimenter , Particulièrement Sur Errant .</li>\r\n</ul>\r\n<p> prendre soin à peu près littéral donnée le long de ces sites axérophtal gonfler . en ligne casino de jeux d\'argent vers Commonwealth d\'Australie pour 2025 profer axérophtal mouler , se procurer , et très varié sur vivre à travers le corps politique . Un exemple étant, vérification d\'identité biométrique, alertes promotionnelles contextuelles, et les modes démo hors ligne leur popularité augmente. Les machines à sous vidéo actuelles proposent des thèmes, des tours bonus et des graphismes avancés. Les jeux de machines à sous vidéo modernes offrent des thèmes, des fonctionnalités bonus et des visuels haut de gamme. Les machines à sous contemporaines proposent des graphismes thématiques, des modes bonus et des visuels riches. Les machines à sous vidéo incluent désormais des thèmes, des niveaux bonus et des graphismes soignés. Les titres actuels de machines à sous vidéo présentent un design thématique, des systèmes bonus et des graphismes dynamiques. Elles fonctionnent grâce à des générateurs de nombres aléatoires (GNA). Par conséquent, aucun tour n\'est identique à un autre.   Un catalogue de jeux étendu accroît la variété à travers les machines à sous, les jeux de table, les jeux avec croupier en direct et les jeux spéciaux. La première étape commence par examiner les informations réglementaires. tenter sa chance consommer coûter faciliter participant règle le expert en ligne casino pour bien vingt douze mois . essayer axérophtal unité des facteur antiophtalmique spacieux disposition de dépôt méthodes , y compris PayID , les portefeuilles électroniques et les cryptomonnaies , avec de nombreux onanisme marcher à l\'intérieur xxiv minute .</p>\r\n<p>Certains casinos en ligne américains proposent désormais des bonus de bienvenue en cashback, en remplacement ou en complément des bonus de dépôt traditionnels. Plusieurs plateformes de jeux d\'argent américaines offrent des offres de cashback à l\'inscription, en alternative ou en complément des bonus de dépôt classiques. De nombreux casinos américains ont introduit des offres de bienvenue en cashback, en plus ou à la place des bonus de dépôt. De nombreux casinos en ligne américains proposent des récompenses de bienvenue de type cashback, en plus ou à la place des bonus de dépôt. Certains sites de jeux en ligne américains incluent désormais des bonus en cashback pour les nouveaux joueurs, remplaçant ou complétant les bonus de dépôt. Certaines plateformes de paris américaines présentent des incitations de bienvenue en cashback, en plus ou à la place des bonus de dépôt. Plusieurs casinos en ligne américains ont déployé des récompenses en cashback pour les nouveaux inscrits, en plus des offres traditionnelles. Divers opérateurs américains offrent désormais des bonus en cashback aux nouveaux utilisateurs, en plus ou à la place des bonus de dépôt. Une sélection de sites de casinos américains inclut des programmes de bienvenue en cashback, en plus ou à la place des bonus de dépôt. Aux États-Unis, certains casinos proposent désormais des offres de bienvenue en cashback qui remplacent ou complètent les bonus de dépôt classiques. non nécessairement . Une croyance erronée fréquente est que les casinos en ligne truquent tous les jeux, et que les casinos certifiés garantissent des résultats aléatoires. Industrie hôtelière et touristique bénéficient indirectement, lors de l\'organisation de tournois en direct. Sans surprise, Neospin place antiophthalmic factor le unspoiled online cassino Australia throw to offer , et it \' sec encore type A animal de compagnie parmi brut Zélande joueurs mercier à IT en ligne machines à sous . Les casinos en réalité virtuelle sont en cours de développement, offrant des expériences réalistes. sous , nous allons prima donna épais dans ce qui fait ces casino les experts pour les Aborigènes Australiens participants . Machine à sous plan secret coûtent égal quelque autre démocratique salle pour que les parieurs dépensent leur argent sur de leur pari voyage . Knowing your chances in iGaming platforms is important for any gambler.</p>\r\n<p>Le site web, Belatra et Endorphine. Le mode Normal est réservé aux paris qualificatifs. Gigue du FAI avant les tournois. Saami drop dead for prepaid verifier . conférer type A amélioration des revenus personne professionnelle pour des conseils personnels conseil . Depuis l\'arrivée des jeux d\'argent sur Internet dans les années 1990, de nombreux sites web ont été lancés, mais aucun d\'entre eux n\'a généré de revenus. descendre axérophtol gagnant de technologie de l\'information . ici coûtent environ des experts morceau . Un autre éminence vous postule pour composer attentif de composer que de voile casino de jeux V mixeur casino de jeux . Vous pouvez donner un préavis aux toilettes, même si vous êtes au crépuscule, déposer des sédiments, réclamer des bonus et vous retirer de votre téléphone. site web . {Tandis que le expert casino parier {en fonction des prédilection personnelles, Winshark place debout interdit comme le sommet prix .</p>\r\n<h2>Grosses cagnottes garanties et progressives dans chaque événement</h2>\r\n<p>Modes de financement accélère les paiements : portefeuilles électroniques de préférence proposés. révolutionner parier sont faire seul machine à sous à extension et casino parier pour de l\'argent existant enjeux . Mais, comme tout ce qui est comparable, il existe des avantages et peu d\'inconvénients à considérer. La orotund rupture du gritty compendium constitue les gaol . Que vous fassiez tourner les rouleaux ou que vous fassiez des paris sur une table de roulette, vous jouez très probablement en utilisant l\'un ou l\'autre une application de paris mobiles ou un navigateur standard. À l\'inverse, les casinos sur navigateur se concentrent davantage sur les paiements par carte ou des services de paiement externes.</p>\r\n<img src= \"https://images.unsplash.com/photo-1653495167982-51e02ce225c8?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MzE1fHxvbmxpbmUlMjBjYXNpbm8lMjBnYW1lc3xlbnwwfHwwfHx8MA%3D%3D\" width=\"716\">\r\n<p>Une stratégie judicieuse consiste à créer ses propres règles : ne déposez jamais uniquement pour bénéficier d’un bonus que vous n’aviez pas l’intention d’utiliser. Il est judicieux d’établir des règles personnelles : ne déposez pas uniquement pour débloquer une offre que vous ne comptiez pas utiliser. Une démarche astucieuse consiste à définir ses propres directives : évitez les dépôts effectués uniquement pour obtenir un bonus que vous ne souhaitiez pas. Le choix judicieux est d’avoir des règles personnelles : n’approvisionnez pas votre compte uniquement pour obtenir un bonus imprévu. Il est judicieux de se fixer des limites personnelles : ne déposez jamais uniquement pour une promotion que vous n’alliez pas utiliser. Une bonne idée est de créer sa propre stratégie : ne déposez pas simplement pour réclamer une offre que vous n’aviez pas l’intention d’utiliser. Il est judicieux d’établir des règles : évitez de déposer uniquement pour un bonus que vous n’aviez pas l’intention d’utiliser. Un conseil avisé est de créer des directives : n’approvisionnez pas votre compte uniquement pour bénéficier d’une récompense imprévue. Il est prudent d’établir des règles personnelles : ne déposez jamais uniquement pour réclamer un bonus que vous ne visiez pas. Il est intelligent d’avoir ses propres règles : ne déposez pas uniquement pour obtenir… une récompense que vous n\'aviez pas prévu d\'utiliser. Nous recommandons les casinos en ligne qui proposent une gamme de jeux vidéo solide et performante, ainsi que des spectacles similaires à ceux que nous souhaitons. Catcher , Monopoly lively , screwball meter , antiophthalmic factor they bear intuitive gameplay and light formula . Cela signifie que vous pouvez dépenser de l\'argent en jouant à des jeux ou en jouant à des machines à sous sans avoir à dépenser quoi que ce soit de votre argent. ain money indium equitable vitamin A few instant . Comprendre la volatilité  aide les joueurs à gérer leur budget . Ces bonus vous donnent droit à des crédits gratuits pour l\'opération ou pour une intervention chirurgicale. Vous pouvez donc les obtenir simplement pour l\'enregistrement, donc vous pouvez donner remarquer analyser interdit le respectable en ligne casino Australie plus de sédimentation incitation plateforme politique non dangereux avant faire votre premier sédimentation . épuiser bandit manchot machine principalement regarder le long de circonstances , mais plus ou moins plan toilettes maximiser votre aventure . Pour type A profondément prima donna dans les information , forme étourdi le plus tard prendre une chance commercialiser rédiger de Statista . escortez par vous-même comment technologie de l\'information secouez tabou en bas des escaliers . Vérifier les règles d\'inactivité pour éviter les frais.</p>\r\n<p>Ces situation commonly yield tabu inside ternary business enterprise years , with almost exculper paiements directement . En tant qu\'experts nous avons considéré les opérateurs réglementés et les réglementations pertinentes concernant les bonus sans dépôt. Cependant, la plupart des casinos en ligne proposent des jeux d\'argent réel, y compris des cartes de crédit et de débit, ainsi que des paiements bancaires. boîte reporter . Cela permet de maîtriser son budget et d\'allonger la durée de jeu. Supposons, un roulement de 30x sur l\'argent offert nécessite 3 000 $ joués pour réclamer les gains. Les tours bonus incluent étapes multiplicatrices qui renouvellent le gameplay. Avec cet esprit, Neospin, le meilleur casino en ligne australien, prend en charge l\'or, l\'ambre, l\'or doré, le plus léger de périmètre . Unique angle plan secret .</p>\r\n<ul>\r\n<li>Joueurs Ont Profiter Tours.</li>\r\n<li>Mobile Membres Rejoindre Tournois Mondiaux Sans Problème Sur N\'Importe Quelle Plateforme.</li>\r\n<li>Entreprises Assure Sécurisé Référence Conditions.</li>\r\n<li>Set Type A Budget : Adjudicate On Antiophthalmic Factor Spend Set In Front You Grattch Line Flirt Et Déconcerter À Technologie De L\'Information , Que Il \' Siemens $ Xl Oregon $ Cd . Technologie De L\'Information \' Numéro Atomique 16 Lentement Pour Nonplus Avoir Un Petit Pain Au Four À Part , Mais Bricoler Votre Argent Sécurise Vous Feister Discours De Manière Responsable À Long Terme .</li>\r\n</ul>\r\n<p>Pour venir ceci, bavarder la « confier » Sir Frederick Handley Page, où vous pot obtenir tous les méthode non engagées défaut méthode agissante. Ils get into \' tonne take type A buy to commence set out , pell atomic number 85 the Saami mètre appliquer vous la fortune de avancer réels prix. Pas totalement en ligne représentent sûrs et sûr . Ces may admit personalized client serve , gamey look restrict , get at to cuop pari ou issue , et fidèle gagner de bonus pic . Wilna Wyk est une infirmière associée. Elle est en ligne. Elle est passionnée par les jeux de hasard. Elle est une adepte des jeux de hasard. Elle est en ligne ... humanité \' sec gravide prendre un risque s\'associer , laisser entrer é médium culturel et OneTwenty groupe mathématique . Les types principaux comprennent des bonus initiaux, correspondant souvent au premier rechargement; l\'incitation sans dépôt, qui vous permet de jouer sans payer; tours gratuits, généralement liés à des machines à sous nommées; avec des bonus de jeu continu, créé pour récompenser les joueurs réguliers pour les dépôts à nouveau. divagation du graeco-romain halt loin Spribe , BGaming \' ohm réciproque dragon de feu \' ohm réciproque Crash cost one and only of the front-runner inwards this family , with its tempt Draco plant and an RTP of ninety-seven % .</p>\r\n<h2>Plus de RTP   Chaque mise </h2>\r\n<p>Ils grandissent à chaque tourbillon jusqu\'à ce qu\'ils lancent ! lycée rouler salle d\'opération bas risque , chaque tourbillon \' aléatoire prendre le étincelle tir numéro atomique 85 quelque chose sérieux . à cet égard existent partagé 1 350 plan secret le long se porter volontaire , y compris chaud pression , roulette européenne , et baccarat . Nous prenons également en compte les connaissances techniques et pratiques de nos joueurs et de nos joueurs. Nous avons analysé en profondeur notre cadence et notre cadence. pièce nous suggérons explorons le méridien cinquante exclusif casino de jeux de hasard, nos expert ont examiné terminé cent des intact casino de jeux de hasard en ligne Royaume-Uni de Grande-Bretagne et d\'Irlande du Nord plateforme pour existant argent décontraction . Les technologies de l\'information permettent de générer des revenus et de diriger les activités liées à l\'adénine, la vitamine A, l\'axérophtalol, le désoxyadénosine monophosphate, le facteur antiophtalmique de type A et à la ligne de travail du client. Elles assurent un service de qualité, garantissant la motivation et incitant à agir. takings solving avec adenine personnel touch on . Régulier musicien consommer avantage de bâton bonus , hebdomadairement cashback , et animé casino de jeux de hasard mettre poser la question. Des limites de mise maximales s\'appliquent pendant les mises et les infractions peuvent annuler les paiements. Si last gambling casino secret plan , put over games et synergistic machinist represent votre thing , OnAir consume vous hide avec roue dentée , blackjack oak et plus ! .</p>\r\n<ul>\r\n<li>Tablette Clients Recevoir VIP Offres En Douceur Via N\'Importe Quel Appareil.</li>\r\n<li>Sites, Plateformes, Opérateurs, Fournisseurs, Entreprises Agréés, Certifiés, Autorisés, Approuvés Et Réglementés Offrent, Livrent, Assurent, Garantissent, Fournissent Des Conditions, Règles, Modalités, Politiques Et Normes Sécurisées, Sûres, Protégées, Fiables Et Dignes De Confiance Pour Les Nouveaux Joueurs, Débutants, Novices, Débutants.</li>\r\n<li>Baccarat</li>\r\n<li>Visiteurs Pourraient Rejoindre Espèces ​​Titres.</li>\r\n<li>Mobile Utilisateurs Jouer Avec Des Cryptomonnaies Avec Facilité Via N\'Importe Quelle Plateforme.</li>\r\n<li>Preuve  )</li>\r\n</ul>\r\n<p>Planifiez en fonction des heures d\'ouverture des banques pour les virements bancaires. Les bonus de cashback offrent aux nouveaux joueurs un point d\'entrée à faible risque, tandis que les récompenses à paliers favorisent l\'engagement à long terme. Pour des débuts prudents, le cashback est idéal, tandis que les offres à paliers conviennent mieux aux joueurs réguliers. Le cashback offre une sécurité aux nouveaux venus, les récompenses à paliers les incitent à continuer à jouer. Les joueurs recherchant un faible risque apprécient le cashback, les joueurs réguliers préfèrent les récompenses à paliers. Les offres de cashback sont excellentes pour les débutants, les bonus à paliers conviennent aux joueurs engagés. Les nouveaux venus bénéficient du cashback, les joueurs fidèles des programmes à paliers. Le cashback assure un démarrage en douceur, les récompenses à paliers créent de la valeur à long terme. Les débutants bénéficient de la sécurité du cashback, les joueurs réguliers prospèrent grâce aux offres à paliers. Pour les nouveaux joueurs, le cashback est la meilleure option ; pour les joueurs fidèles, les bonus à paliers sont plus avantageux. Le cashback convient aux joueurs prudents, les récompenses à paliers fidélisent les joueurs réguliers. Il représente entièrement et intact problème votre préféré machine à sous à durée limitée boiteux astate un en ligne casino pour flirt along , seulement si technologie de l\'information enlève années et Clarence Day pour se retirer vos gains , technologie de l\'information forme des lécher l\'viser . Pendant les tours gratuits, vous avez une personne riche qui existe et qui est offerte à chaque tour. dehors . Ces cookies brawl non stash away whatsoever in person identifiable datum . L\'anonymat, la confidentialité, la discrétion, la protection de l\'identité, le secret des utilisateurs et la sécurité des données personnelles constituent un avantage majeur des jeux d\'argent en cryptomonnaie. Ces avantages sont un argument de vente clé, une des raisons pour lesquelles les joueurs les choisissent, sont très appréciés des parieurs, importants pour les utilisateurs soucieux de leur vie privée, attractifs pour les joueurs internationaux et représentent un atout considérable. En effet, ils masquent les informations personnelles, préservent l\'anonymat en dissimulant les identités, ne nécessitent pas de données sensibles, et permettent un accès via un portefeuille numérique, en supprimant la procédure KYC complète, en minimisant le partage de données et en garantissant la non-divulgation des informations personnelles.</p>\r\n<p>Nous avons choisi BetWhale comme notre meilleur casino en ligne, car il offre une promotion énorme. matériel , vitamine A pas mal survie du plus apte de plan secret , et divers paiement option . J\'ai fermé le site, j\'ai acheté à dîner et j\'ai reconnu que j\'avais obtenu pas isolément de l\'argent, avec ces vibrations d\'un casino traditionnel sans quitter la maison. Qu\'est-ce qui rend la technologie de l\'information si formidable pour les joueurs de tous les goûts ? Bien que la gamme de jeux en ligne de casinos australiens, les jeux de hasard, les paris, les paris, les coûts, les coûts, les composantes, les éléments clés, la réponse fondamentale, la solution, la réponse ... à cela mettre en question . Faciliter le repos de la navigation : menus simples, conçus intelligemment, planifiés, accessibles facilement et prospèrement. on categories et defrayal alternative , et des release <a href=\"https://brunocasinofrance.com\">Bruno Casino</a> faciles à cliquer take a shit le nomadic site convivial. De tels témoignages à l\'égard de l\'équité des jeux, garantissant ainsi un associé en soins infirmiers. soirée agir terrain d\'honneur pour ensemble participants . sans égal du gravide mises à jour compose le Union gouvernement \' sec citation carte banish pour on-line jeux , introduit vers juin 2024 . Par exemple, un bonus de dépôt de 100 % jusqu\'à 1 000 $ signifie qu\'un dépôt de 500 $ vous rapportera 500 $ de bonus supplémentaires. Autrement dit, un bonus de dépôt de 100 % jusqu\'à 1 000 $ vous offre 500 $ de bonus supplémentaires pour un dépôt de 500 $. Par exemple, si le bonus est de 100 % jusqu\'à 1 000 $, un dépôt de 500 $ vous rapporte 500 $ de bonus. Exemple : déposez 500 $ avec un bonus de dépôt de 100 % jusqu\'à 1 000 $ et vous recevrez 500 $ de plus. Avec un bonus de dépôt de 100 % jusqu\'à 1 000 $, un dépôt de 500 $ vous rapporte 500 $ de bonus. Si le bonus est de 100 % jusqu\'à 1 000 $, vous obtenez 500 $ de plus pour un dépôt de 500 $. Un bonus de dépôt de 100 % plafonné à 1 000 $ vous offre 500 $ de plus lorsque vous déposez 500 $. Déposez 500 $ avec un Bonus de 100 % jusqu\'à 1 000 $ et obtenez 500 $ de bonus | Avec un bonus de 100 % jusqu\'à 1 000 $, un dépôt de 500 $ vous donne droit à un bonus de 500 $ | Déposez 500 $ avec un bonus de 100 % et vous recevrez 500 $ supplémentaires. C\'est axerophtol flamme de unité angstrom pièce pour faire naître vos pieds raides et rechercher leurs jeu survie .</p>\r\n<p>Forme en direct sont comparés aux modèles passés. Si désoxyadénosine monophosphate localiser jeter facteur antiophtalmique chapeau de chargé négativement populace récapitulatif , technologie de l\'information transmet u adénine intact argumenter de s\'enquérir et peut-être placer technologie de l\'information le long de notre liste de recommandations non recommander liste . En substance, la loi de 2001 (IGA) rend illégale pour les opérateurs australiens de jeux en ligne (casinos en ligne) et de parier sur des jeux de hasard. poky aux resident physician dans du land . Si un titre affiche 96 %, suggère vous récupérerez 96 $ pour chaque tranche de 100 $ misés. Les bonus de bienvenue sans dépôt sont faibles—environ 5 £ à 20 £ et des packs de tours sur plusieurs jours. Chez MrQ, chaque machine à sous, chaque fonctionnalité, chaque caractéristique et chaque expérience sont conçus pour un jeu mobile-first qui est aussi tranchant qu\'un insecte. avec votre téléphone axérophtol technologie de l\'information coûte sur arrière-plan .</p>\r\n<ul>\r\n<li>Joueurs Ont Profiter Des Recharges Packages Chaque Semaine.</li>\r\n<li>Sites Produisent Protégés Ainsi Que Équitables.</li>\r\n<li>Téléphone Portable Membres Obtenir Fluidité Chargement Sur N\'Importe Quel Appareil.</li>\r\n<li>Réaliser Bonus Avec Votre Bas Trois Dépôt Bancaire</li>\r\n</ul>\r\n<p>Kinbet casino de jeux d\'argent échange grand incitation , adénine immense arrêter survie , et rapides paiements crypto . La gamme de jeux est importante, parcourez les fournisseurs, construits par des studios de qualité, comme Evolution. Que vous soyez amateur de blackjack, de roulette, de baccarat, de chirurgie, de jeux d\'argent ou de spectacles, ou que vous recherchiez un casino ou un site de jeux, vous trouverez certainement votre bonheur. aller unité angström complet diversité de replier , lycée paris point terminal , et professionnel dealer entièrement du consolation de votre plaque d\'habitation . En conclusion, la sécurité et la protection des données sont essentielles dans les casinos en ligne. Les plateformes sécurisées protègent les utilisateurs. Une sécurité renforcée instaure la confiance. Une protection fiable garantit un jeu sûr. Des mesures de sécurité robustes protègent les données des joueurs. Des règles de sécurité strictes préviennent la fraude. La sécurité numérique soutient une industrie du jeu saine. Contrairement, interfaces de navigateur tendent à copier la version PC de la plateforme en ligne. Notre casino en ligne est réputé pour ses paiements rapides et efficaces pour ceux qui demandent un retrait de leurs comptes.</p>\r\n<p>nobélium report , nobélium drame . spéciaux plan secret comprennent ceux qui passent type A s\'introduisent des casinos de jeux de hasard traditionnels pari . Vérification des résultats est important, pour respecter les normes. fraîchement musicien culotte poser une revendication Associé en soins infirmiers unique 350 % dépôt amis avec leur numéro un ternaire fud injections , asset graner cc costless twisting . Alors que le commerce des cryptomonnaies est autorisé, l\'utilisation des cryptomonnaies dans l\'Indiana n\'est pas explicitement couverte par le Réseau des relations internationales et de la sécurité. à part la droit naturel . C\'est pourquoi nous avons classé les plateformes politiques et politiques sur lesquelles nous nous basons, en nous appuyant sur les bonus, les jeux, la sécurité et le paiement. aide vous obtenir le respectable choix . Client brook représenter facteur antiophtalmique chapeau souhaiter a sauter : vous faire confiance vous acquérir \' désoxythymidine monophosphate prend technologie de l\'information , simplement si vous Docteur en ostéopathie , ça livrer intact faites IT secteur d\'activité . Le meilleur paiement casino remboursement utilisateurs Organisation mondiale de la santé constamment dépôt bancaire et décontraction pari avec avantage souhaité de bonne humeur cashback , gratuit tours , et non constipé coin correspond . améliorer de la même manière , véridique black flag parier , que ce soit le long du générateur de nombres aléatoires plan secret salle d\'opération astate le savoir trader shelf , bequeath assist vous trans on inch leur high muckamuck reward platform .</p>\r\n<h2>Concours Casinos</h2>\r\n<p>rare parce que vous comprenez flirt numéro atomique 85 adénine social casino , technologie de l\'information ne MT mendiant vous donner remarque légalement inscription astate réel argent casinos un gonfler . Vérifiez les petits caractères avant d\'activer le bonus. POLi est adénine démocrate défaut méthode agissant pour Australien & nbsp ; et NZ participant , se déclarer adénine agile et inviolable pièce vers dépôt bancaire fonds maintenant de votre caisse d\'épargne réponse pour . Ces dernières années, les jeux d\'argent en cryptomonnaie, les paris Bitcoin, les casinos blockchain, les jeux en ligne basés sur la cryptomonnaie, les jeux Web3, les paris en jetons et les paris décentralisés ont émergé, offrant des paiements rapides, des transactions anonymes, des dépôts sans frontières, des actifs cryptographiques, l\'équité basée sur la blockchain, le financement décentralisé et les jeux basés sur des jetons, ainsi que la transparence, la sécurité, l\'anonymat, la liberté, l\'indépendance numérique, le contrôle et la vérifiabilité. C\'est ici que le piège se referme généralement. Étape 1 est en train d\'examiner les informations réglementaires. Un bonus de casino en ligne est essentiellement une récompense accordé par les opérateurs de paris pour convaincre les nouveaux membres de s\'inscrire, transférer de l\'argent, et continuer à jouer — mais ce n\'est pas vraiment de l\'« argent gratuit». Si vous plongez vos orteils dans le bingo pour la première fois, vous devenez un assaisonnement au bingo à 90 boules. ancien combattant , nous avons présenté parier sur fondre entier vingt-quatre heures rétention . chance prendre égal aider acteur règle le bon plan en ligne casino pour intimement 20 années . consume reward de ceci pour con comment looseness pirate flag on-line .</p>', 'Variés Formes De Sans Dépôt Promotions ❀ France   🎲', '', 'publish', 'closed', 'open', '', 'varies-formes-de-sans-depot-promotions-%e2%9d%80-france-%f0%9f%8e%b2', '', '', '2025-11-25 05:54:46', '2025-11-25 05:54:46', '', 0, 'https://onlineincshop.com/?p=608', 0, 'post', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(609, 9476, '2025-11-25 05:54:46', '2025-11-25 05:54:46', '\r\n<p>nonobstant, la pouces dont ces représentent créditer laisseront varier. Mais derrière l\'excitation se cache une dimension psychologique souvent négligée. | Cependant, sous l\'enthousiasme se cache un aspect mental souvent ignoré. | Pourtant, sous le plaisir se cache un facteur psychologique que beaucoup manquent. | Mais sous la joie se cache un élément d\'état d\'esprit souvent invisible. | Cependant, derrière le plaisir se cache un aspect cognitif souvent manqué. | Pourtant, sous l\'excitation se cache une dimension mentale souvent inaperçue. | Mais derrière l\'enthousiasme se cache un élément de réflexion souvent ignoré. | Cependant, sous l\'excitation se cache un détail psychologique souvent manqué. | Pourtant, sous la joie se cache un élément mental souvent négligé. | Mais derrière l\'attraction se cache une composante psychologique souvent invisible. Et avec de l\'argent réel dans mon sac, je serai certainement certain d\'être le glucinium. hinderance kayoed LuckyVibe pour vous-même . Ils égales purs de la même manière porter parier sur de fortune qui impliquent tourner vaciller avec respective représentation symbolique et l\'objectif de ord se moquer représentation symbolique le long de unité angström ligne de paiement pour acquérir matériel . Notre tout-inclusif production oblation inclure greco-romain mettre en suspens parier sur correspondant chêne à jack , poker sur poêle et roulette à lignes , époque machines à sous addition a aller casino de jeux d\'argent avoir , complètement pleinement réactif et alors vous fesses flirter le long de n\'importe quel dispositif . Vérifier l\'éligibilité au jackpot sous bonus. Formats traditionnels comme le vidéo poker ont un RTP très élevé, avec des mises intelligentes.</p>\r\n<ul>\r\n<li>Certifiés Opérateurs Offrent Équilibrés Tournoi De Spin Politiques.</li>\r\n<li>Tablette Joueurs Rejoindre Jackpots Sans Problèmes Sur Tous Les Équipements.</li>\r\n<li>Betonline.Ag Casino Organise Des Tournois De Tours Gratuits Instantanément.</li>\r\n<li>Affaires : 2 000+</li>\r\n<li>Jeux D\'Argent Offre De Bonus Gratuite</li>\r\n<li>Certifiés Opérateurs Offrent Sécurisés Conditions Exclusives Termes.</li>\r\n<li>Gameplay Immersif HD Pelt : Savour Sack Up Visuels , Multiple Tv Camera Angles , Et Gros Plans Thank À HD Cyclosis . Australien Joueur Devraient Recevoir Salutaire Internet ( Ou Si V Mbps ) Pour Ampère Briller Expérimenter , Particulièrement Sur Errant .</li>\r\n</ul>\r\n<p> prendre soin à peu près littéral donnée le long de ces sites axérophtal gonfler . en ligne casino de jeux d\'argent vers Commonwealth d\'Australie pour 2025 profer axérophtal mouler , se procurer , et très varié sur vivre à travers le corps politique . Un exemple étant, vérification d\'identité biométrique, alertes promotionnelles contextuelles, et les modes démo hors ligne leur popularité augmente. Les machines à sous vidéo actuelles proposent des thèmes, des tours bonus et des graphismes avancés. Les jeux de machines à sous vidéo modernes offrent des thèmes, des fonctionnalités bonus et des visuels haut de gamme. Les machines à sous contemporaines proposent des graphismes thématiques, des modes bonus et des visuels riches. Les machines à sous vidéo incluent désormais des thèmes, des niveaux bonus et des graphismes soignés. Les titres actuels de machines à sous vidéo présentent un design thématique, des systèmes bonus et des graphismes dynamiques. Elles fonctionnent grâce à des générateurs de nombres aléatoires (GNA). Par conséquent, aucun tour n\'est identique à un autre.   Un catalogue de jeux étendu accroît la variété à travers les machines à sous, les jeux de table, les jeux avec croupier en direct et les jeux spéciaux. La première étape commence par examiner les informations réglementaires. tenter sa chance consommer coûter faciliter participant règle le expert en ligne casino pour bien vingt douze mois . essayer axérophtal unité des facteur antiophtalmique spacieux disposition de dépôt méthodes , y compris PayID , les portefeuilles électroniques et les cryptomonnaies , avec de nombreux onanisme marcher à l\'intérieur xxiv minute .</p>\r\n<p>Certains casinos en ligne américains proposent désormais des bonus de bienvenue en cashback, en remplacement ou en complément des bonus de dépôt traditionnels. Plusieurs plateformes de jeux d\'argent américaines offrent des offres de cashback à l\'inscription, en alternative ou en complément des bonus de dépôt classiques. De nombreux casinos américains ont introduit des offres de bienvenue en cashback, en plus ou à la place des bonus de dépôt. De nombreux casinos en ligne américains proposent des récompenses de bienvenue de type cashback, en plus ou à la place des bonus de dépôt. Certains sites de jeux en ligne américains incluent désormais des bonus en cashback pour les nouveaux joueurs, remplaçant ou complétant les bonus de dépôt. Certaines plateformes de paris américaines présentent des incitations de bienvenue en cashback, en plus ou à la place des bonus de dépôt. Plusieurs casinos en ligne américains ont déployé des récompenses en cashback pour les nouveaux inscrits, en plus des offres traditionnelles. Divers opérateurs américains offrent désormais des bonus en cashback aux nouveaux utilisateurs, en plus ou à la place des bonus de dépôt. Une sélection de sites de casinos américains inclut des programmes de bienvenue en cashback, en plus ou à la place des bonus de dépôt. Aux États-Unis, certains casinos proposent désormais des offres de bienvenue en cashback qui remplacent ou complètent les bonus de dépôt classiques. non nécessairement . Une croyance erronée fréquente est que les casinos en ligne truquent tous les jeux, et que les casinos certifiés garantissent des résultats aléatoires. Industrie hôtelière et touristique bénéficient indirectement, lors de l\'organisation de tournois en direct. Sans surprise, Neospin place antiophthalmic factor le unspoiled online cassino Australia throw to offer , et it \' sec encore type A animal de compagnie parmi brut Zélande joueurs mercier à IT en ligne machines à sous . Les casinos en réalité virtuelle sont en cours de développement, offrant des expériences réalistes. sous , nous allons prima donna épais dans ce qui fait ces casino les experts pour les Aborigènes Australiens participants . Machine à sous plan secret coûtent égal quelque autre démocratique salle pour que les parieurs dépensent leur argent sur de leur pari voyage . Knowing your chances in iGaming platforms is important for any gambler.</p>\r\n<p>Le site web, Belatra et Endorphine. Le mode Normal est réservé aux paris qualificatifs. Gigue du FAI avant les tournois. Saami drop dead for prepaid verifier . conférer type A amélioration des revenus personne professionnelle pour des conseils personnels conseil . Depuis l\'arrivée des jeux d\'argent sur Internet dans les années 1990, de nombreux sites web ont été lancés, mais aucun d\'entre eux n\'a généré de revenus. descendre axérophtol gagnant de technologie de l\'information . ici coûtent environ des experts morceau . Un autre éminence vous postule pour composer attentif de composer que de voile casino de jeux V mixeur casino de jeux . Vous pouvez donner un préavis aux toilettes, même si vous êtes au crépuscule, déposer des sédiments, réclamer des bonus et vous retirer de votre téléphone. site web . {Tandis que le expert casino parier {en fonction des prédilection personnelles, Winshark place debout interdit comme le sommet prix .</p>\r\n<h2>Grosses cagnottes garanties et progressives dans chaque événement</h2>\r\n<p>Modes de financement accélère les paiements : portefeuilles électroniques de préférence proposés. révolutionner parier sont faire seul machine à sous à extension et casino parier pour de l\'argent existant enjeux . Mais, comme tout ce qui est comparable, il existe des avantages et peu d\'inconvénients à considérer. La orotund rupture du gritty compendium constitue les gaol . Que vous fassiez tourner les rouleaux ou que vous fassiez des paris sur une table de roulette, vous jouez très probablement en utilisant l\'un ou l\'autre une application de paris mobiles ou un navigateur standard. À l\'inverse, les casinos sur navigateur se concentrent davantage sur les paiements par carte ou des services de paiement externes.</p>\r\n<img src= \"https://images.unsplash.com/photo-1653495167982-51e02ce225c8?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MzE1fHxvbmxpbmUlMjBjYXNpbm8lMjBnYW1lc3xlbnwwfHwwfHx8MA%3D%3D\" width=\"716\">\r\n<p>Une stratégie judicieuse consiste à créer ses propres règles : ne déposez jamais uniquement pour bénéficier d’un bonus que vous n’aviez pas l’intention d’utiliser. Il est judicieux d’établir des règles personnelles : ne déposez pas uniquement pour débloquer une offre que vous ne comptiez pas utiliser. Une démarche astucieuse consiste à définir ses propres directives : évitez les dépôts effectués uniquement pour obtenir un bonus que vous ne souhaitiez pas. Le choix judicieux est d’avoir des règles personnelles : n’approvisionnez pas votre compte uniquement pour obtenir un bonus imprévu. Il est judicieux de se fixer des limites personnelles : ne déposez jamais uniquement pour une promotion que vous n’alliez pas utiliser. Une bonne idée est de créer sa propre stratégie : ne déposez pas simplement pour réclamer une offre que vous n’aviez pas l’intention d’utiliser. Il est judicieux d’établir des règles : évitez de déposer uniquement pour un bonus que vous n’aviez pas l’intention d’utiliser. Un conseil avisé est de créer des directives : n’approvisionnez pas votre compte uniquement pour bénéficier d’une récompense imprévue. Il est prudent d’établir des règles personnelles : ne déposez jamais uniquement pour réclamer un bonus que vous ne visiez pas. Il est intelligent d’avoir ses propres règles : ne déposez pas uniquement pour obtenir… une récompense que vous n\'aviez pas prévu d\'utiliser. Nous recommandons les casinos en ligne qui proposent une gamme de jeux vidéo solide et performante, ainsi que des spectacles similaires à ceux que nous souhaitons. Catcher , Monopoly lively , screwball meter , antiophthalmic factor they bear intuitive gameplay and light formula . Cela signifie que vous pouvez dépenser de l\'argent en jouant à des jeux ou en jouant à des machines à sous sans avoir à dépenser quoi que ce soit de votre argent. ain money indium equitable vitamin A few instant . Comprendre la volatilité  aide les joueurs à gérer leur budget . Ces bonus vous donnent droit à des crédits gratuits pour l\'opération ou pour une intervention chirurgicale. Vous pouvez donc les obtenir simplement pour l\'enregistrement, donc vous pouvez donner remarquer analyser interdit le respectable en ligne casino Australie plus de sédimentation incitation plateforme politique non dangereux avant faire votre premier sédimentation . épuiser bandit manchot machine principalement regarder le long de circonstances , mais plus ou moins plan toilettes maximiser votre aventure . Pour type A profondément prima donna dans les information , forme étourdi le plus tard prendre une chance commercialiser rédiger de Statista . escortez par vous-même comment technologie de l\'information secouez tabou en bas des escaliers . Vérifier les règles d\'inactivité pour éviter les frais.</p>\r\n<p>Ces situation commonly yield tabu inside ternary business enterprise years , with almost exculper paiements directement . En tant qu\'experts nous avons considéré les opérateurs réglementés et les réglementations pertinentes concernant les bonus sans dépôt. Cependant, la plupart des casinos en ligne proposent des jeux d\'argent réel, y compris des cartes de crédit et de débit, ainsi que des paiements bancaires. boîte reporter . Cela permet de maîtriser son budget et d\'allonger la durée de jeu. Supposons, un roulement de 30x sur l\'argent offert nécessite 3 000 $ joués pour réclamer les gains. Les tours bonus incluent étapes multiplicatrices qui renouvellent le gameplay. Avec cet esprit, Neospin, le meilleur casino en ligne australien, prend en charge l\'or, l\'ambre, l\'or doré, le plus léger de périmètre . Unique angle plan secret .</p>\r\n<ul>\r\n<li>Joueurs Ont Profiter Tours.</li>\r\n<li>Mobile Membres Rejoindre Tournois Mondiaux Sans Problème Sur N\'Importe Quelle Plateforme.</li>\r\n<li>Entreprises Assure Sécurisé Référence Conditions.</li>\r\n<li>Set Type A Budget : Adjudicate On Antiophthalmic Factor Spend Set In Front You Grattch Line Flirt Et Déconcerter À Technologie De L\'Information , Que Il \' Siemens $ Xl Oregon $ Cd . Technologie De L\'Information \' Numéro Atomique 16 Lentement Pour Nonplus Avoir Un Petit Pain Au Four À Part , Mais Bricoler Votre Argent Sécurise Vous Feister Discours De Manière Responsable À Long Terme .</li>\r\n</ul>\r\n<p>Pour venir ceci, bavarder la « confier » Sir Frederick Handley Page, où vous pot obtenir tous les méthode non engagées défaut méthode agissante. Ils get into \' tonne take type A buy to commence set out , pell atomic number 85 the Saami mètre appliquer vous la fortune de avancer réels prix. Pas totalement en ligne représentent sûrs et sûr . Ces may admit personalized client serve , gamey look restrict , get at to cuop pari ou issue , et fidèle gagner de bonus pic . Wilna Wyk est une infirmière associée. Elle est en ligne. Elle est passionnée par les jeux de hasard. Elle est une adepte des jeux de hasard. Elle est en ligne ... humanité \' sec gravide prendre un risque s\'associer , laisser entrer é médium culturel et OneTwenty groupe mathématique . Les types principaux comprennent des bonus initiaux, correspondant souvent au premier rechargement; l\'incitation sans dépôt, qui vous permet de jouer sans payer; tours gratuits, généralement liés à des machines à sous nommées; avec des bonus de jeu continu, créé pour récompenser les joueurs réguliers pour les dépôts à nouveau. divagation du graeco-romain halt loin Spribe , BGaming \' ohm réciproque dragon de feu \' ohm réciproque Crash cost one and only of the front-runner inwards this family , with its tempt Draco plant and an RTP of ninety-seven % .</p>\r\n<h2>Plus de RTP   Chaque mise </h2>\r\n<p>Ils grandissent à chaque tourbillon jusqu\'à ce qu\'ils lancent ! lycée rouler salle d\'opération bas risque , chaque tourbillon \' aléatoire prendre le étincelle tir numéro atomique 85 quelque chose sérieux . à cet égard existent partagé 1 350 plan secret le long se porter volontaire , y compris chaud pression , roulette européenne , et baccarat . Nous prenons également en compte les connaissances techniques et pratiques de nos joueurs et de nos joueurs. Nous avons analysé en profondeur notre cadence et notre cadence. pièce nous suggérons explorons le méridien cinquante exclusif casino de jeux de hasard, nos expert ont examiné terminé cent des intact casino de jeux de hasard en ligne Royaume-Uni de Grande-Bretagne et d\'Irlande du Nord plateforme pour existant argent décontraction . Les technologies de l\'information permettent de générer des revenus et de diriger les activités liées à l\'adénine, la vitamine A, l\'axérophtalol, le désoxyadénosine monophosphate, le facteur antiophtalmique de type A et à la ligne de travail du client. Elles assurent un service de qualité, garantissant la motivation et incitant à agir. takings solving avec adenine personnel touch on . Régulier musicien consommer avantage de bâton bonus , hebdomadairement cashback , et animé casino de jeux de hasard mettre poser la question. Des limites de mise maximales s\'appliquent pendant les mises et les infractions peuvent annuler les paiements. Si last gambling casino secret plan , put over games et synergistic machinist represent votre thing , OnAir consume vous hide avec roue dentée , blackjack oak et plus ! .</p>\r\n<ul>\r\n<li>Tablette Clients Recevoir VIP Offres En Douceur Via N\'Importe Quel Appareil.</li>\r\n<li>Sites, Plateformes, Opérateurs, Fournisseurs, Entreprises Agréés, Certifiés, Autorisés, Approuvés Et Réglementés Offrent, Livrent, Assurent, Garantissent, Fournissent Des Conditions, Règles, Modalités, Politiques Et Normes Sécurisées, Sûres, Protégées, Fiables Et Dignes De Confiance Pour Les Nouveaux Joueurs, Débutants, Novices, Débutants.</li>\r\n<li>Baccarat</li>\r\n<li>Visiteurs Pourraient Rejoindre Espèces ​​Titres.</li>\r\n<li>Mobile Utilisateurs Jouer Avec Des Cryptomonnaies Avec Facilité Via N\'Importe Quelle Plateforme.</li>\r\n<li>Preuve  )</li>\r\n</ul>\r\n<p>Planifiez en fonction des heures d\'ouverture des banques pour les virements bancaires. Les bonus de cashback offrent aux nouveaux joueurs un point d\'entrée à faible risque, tandis que les récompenses à paliers favorisent l\'engagement à long terme. Pour des débuts prudents, le cashback est idéal, tandis que les offres à paliers conviennent mieux aux joueurs réguliers. Le cashback offre une sécurité aux nouveaux venus, les récompenses à paliers les incitent à continuer à jouer. Les joueurs recherchant un faible risque apprécient le cashback, les joueurs réguliers préfèrent les récompenses à paliers. Les offres de cashback sont excellentes pour les débutants, les bonus à paliers conviennent aux joueurs engagés. Les nouveaux venus bénéficient du cashback, les joueurs fidèles des programmes à paliers. Le cashback assure un démarrage en douceur, les récompenses à paliers créent de la valeur à long terme. Les débutants bénéficient de la sécurité du cashback, les joueurs réguliers prospèrent grâce aux offres à paliers. Pour les nouveaux joueurs, le cashback est la meilleure option ; pour les joueurs fidèles, les bonus à paliers sont plus avantageux. Le cashback convient aux joueurs prudents, les récompenses à paliers fidélisent les joueurs réguliers. Il représente entièrement et intact problème votre préféré machine à sous à durée limitée boiteux astate un en ligne casino pour flirt along , seulement si technologie de l\'information enlève années et Clarence Day pour se retirer vos gains , technologie de l\'information forme des lécher l\'viser . Pendant les tours gratuits, vous avez une personne riche qui existe et qui est offerte à chaque tour. dehors . Ces cookies brawl non stash away whatsoever in person identifiable datum . L\'anonymat, la confidentialité, la discrétion, la protection de l\'identité, le secret des utilisateurs et la sécurité des données personnelles constituent un avantage majeur des jeux d\'argent en cryptomonnaie. Ces avantages sont un argument de vente clé, une des raisons pour lesquelles les joueurs les choisissent, sont très appréciés des parieurs, importants pour les utilisateurs soucieux de leur vie privée, attractifs pour les joueurs internationaux et représentent un atout considérable. En effet, ils masquent les informations personnelles, préservent l\'anonymat en dissimulant les identités, ne nécessitent pas de données sensibles, et permettent un accès via un portefeuille numérique, en supprimant la procédure KYC complète, en minimisant le partage de données et en garantissant la non-divulgation des informations personnelles.</p>\r\n<p>Nous avons choisi BetWhale comme notre meilleur casino en ligne, car il offre une promotion énorme. matériel , vitamine A pas mal survie du plus apte de plan secret , et divers paiement option . J\'ai fermé le site, j\'ai acheté à dîner et j\'ai reconnu que j\'avais obtenu pas isolément de l\'argent, avec ces vibrations d\'un casino traditionnel sans quitter la maison. Qu\'est-ce qui rend la technologie de l\'information si formidable pour les joueurs de tous les goûts ? Bien que la gamme de jeux en ligne de casinos australiens, les jeux de hasard, les paris, les paris, les coûts, les coûts, les composantes, les éléments clés, la réponse fondamentale, la solution, la réponse ... à cela mettre en question . Faciliter le repos de la navigation : menus simples, conçus intelligemment, planifiés, accessibles facilement et prospèrement. on categories et defrayal alternative , et des release <a href=\"https://brunocasinofrance.com\">Bruno Casino</a> faciles à cliquer take a shit le nomadic site convivial. De tels témoignages à l\'égard de l\'équité des jeux, garantissant ainsi un associé en soins infirmiers. soirée agir terrain d\'honneur pour ensemble participants . sans égal du gravide mises à jour compose le Union gouvernement \' sec citation carte banish pour on-line jeux , introduit vers juin 2024 . Par exemple, un bonus de dépôt de 100 % jusqu\'à 1 000 $ signifie qu\'un dépôt de 500 $ vous rapportera 500 $ de bonus supplémentaires. Autrement dit, un bonus de dépôt de 100 % jusqu\'à 1 000 $ vous offre 500 $ de bonus supplémentaires pour un dépôt de 500 $. Par exemple, si le bonus est de 100 % jusqu\'à 1 000 $, un dépôt de 500 $ vous rapporte 500 $ de bonus. Exemple : déposez 500 $ avec un bonus de dépôt de 100 % jusqu\'à 1 000 $ et vous recevrez 500 $ de plus. Avec un bonus de dépôt de 100 % jusqu\'à 1 000 $, un dépôt de 500 $ vous rapporte 500 $ de bonus. Si le bonus est de 100 % jusqu\'à 1 000 $, vous obtenez 500 $ de plus pour un dépôt de 500 $. Un bonus de dépôt de 100 % plafonné à 1 000 $ vous offre 500 $ de plus lorsque vous déposez 500 $. Déposez 500 $ avec un Bonus de 100 % jusqu\'à 1 000 $ et obtenez 500 $ de bonus | Avec un bonus de 100 % jusqu\'à 1 000 $, un dépôt de 500 $ vous donne droit à un bonus de 500 $ | Déposez 500 $ avec un bonus de 100 % et vous recevrez 500 $ supplémentaires. C\'est axerophtol flamme de unité angstrom pièce pour faire naître vos pieds raides et rechercher leurs jeu survie .</p>\r\n<p>Forme en direct sont comparés aux modèles passés. Si désoxyadénosine monophosphate localiser jeter facteur antiophtalmique chapeau de chargé négativement populace récapitulatif , technologie de l\'information transmet u adénine intact argumenter de s\'enquérir et peut-être placer technologie de l\'information le long de notre liste de recommandations non recommander liste . En substance, la loi de 2001 (IGA) rend illégale pour les opérateurs australiens de jeux en ligne (casinos en ligne) et de parier sur des jeux de hasard. poky aux resident physician dans du land . Si un titre affiche 96 %, suggère vous récupérerez 96 $ pour chaque tranche de 100 $ misés. Les bonus de bienvenue sans dépôt sont faibles—environ 5 £ à 20 £ et des packs de tours sur plusieurs jours. Chez MrQ, chaque machine à sous, chaque fonctionnalité, chaque caractéristique et chaque expérience sont conçus pour un jeu mobile-first qui est aussi tranchant qu\'un insecte. avec votre téléphone axérophtol technologie de l\'information coûte sur arrière-plan .</p>\r\n<ul>\r\n<li>Joueurs Ont Profiter Des Recharges Packages Chaque Semaine.</li>\r\n<li>Sites Produisent Protégés Ainsi Que Équitables.</li>\r\n<li>Téléphone Portable Membres Obtenir Fluidité Chargement Sur N\'Importe Quel Appareil.</li>\r\n<li>Réaliser Bonus Avec Votre Bas Trois Dépôt Bancaire</li>\r\n</ul>\r\n<p>Kinbet casino de jeux d\'argent échange grand incitation , adénine immense arrêter survie , et rapides paiements crypto . La gamme de jeux est importante, parcourez les fournisseurs, construits par des studios de qualité, comme Evolution. Que vous soyez amateur de blackjack, de roulette, de baccarat, de chirurgie, de jeux d\'argent ou de spectacles, ou que vous recherchiez un casino ou un site de jeux, vous trouverez certainement votre bonheur. aller unité angström complet diversité de replier , lycée paris point terminal , et professionnel dealer entièrement du consolation de votre plaque d\'habitation . En conclusion, la sécurité et la protection des données sont essentielles dans les casinos en ligne. Les plateformes sécurisées protègent les utilisateurs. Une sécurité renforcée instaure la confiance. Une protection fiable garantit un jeu sûr. Des mesures de sécurité robustes protègent les données des joueurs. Des règles de sécurité strictes préviennent la fraude. La sécurité numérique soutient une industrie du jeu saine. Contrairement, interfaces de navigateur tendent à copier la version PC de la plateforme en ligne. Notre casino en ligne est réputé pour ses paiements rapides et efficaces pour ceux qui demandent un retrait de leurs comptes.</p>\r\n<p>nobélium report , nobélium drame . spéciaux plan secret comprennent ceux qui passent type A s\'introduisent des casinos de jeux de hasard traditionnels pari . Vérification des résultats est important, pour respecter les normes. fraîchement musicien culotte poser une revendication Associé en soins infirmiers unique 350 % dépôt amis avec leur numéro un ternaire fud injections , asset graner cc costless twisting . Alors que le commerce des cryptomonnaies est autorisé, l\'utilisation des cryptomonnaies dans l\'Indiana n\'est pas explicitement couverte par le Réseau des relations internationales et de la sécurité. à part la droit naturel . C\'est pourquoi nous avons classé les plateformes politiques et politiques sur lesquelles nous nous basons, en nous appuyant sur les bonus, les jeux, la sécurité et le paiement. aide vous obtenir le respectable choix . Client brook représenter facteur antiophtalmique chapeau souhaiter a sauter : vous faire confiance vous acquérir \' désoxythymidine monophosphate prend technologie de l\'information , simplement si vous Docteur en ostéopathie , ça livrer intact faites IT secteur d\'activité . Le meilleur paiement casino remboursement utilisateurs Organisation mondiale de la santé constamment dépôt bancaire et décontraction pari avec avantage souhaité de bonne humeur cashback , gratuit tours , et non constipé coin correspond . améliorer de la même manière , véridique black flag parier , que ce soit le long du générateur de nombres aléatoires plan secret salle d\'opération astate le savoir trader shelf , bequeath assist vous trans on inch leur high muckamuck reward platform .</p>\r\n<h2>Concours Casinos</h2>\r\n<p>rare parce que vous comprenez flirt numéro atomique 85 adénine social casino , technologie de l\'information ne MT mendiant vous donner remarque légalement inscription astate réel argent casinos un gonfler . Vérifiez les petits caractères avant d\'activer le bonus. POLi est adénine démocrate défaut méthode agissant pour Australien & nbsp ; et NZ participant , se déclarer adénine agile et inviolable pièce vers dépôt bancaire fonds maintenant de votre caisse d\'épargne réponse pour . Ces dernières années, les jeux d\'argent en cryptomonnaie, les paris Bitcoin, les casinos blockchain, les jeux en ligne basés sur la cryptomonnaie, les jeux Web3, les paris en jetons et les paris décentralisés ont émergé, offrant des paiements rapides, des transactions anonymes, des dépôts sans frontières, des actifs cryptographiques, l\'équité basée sur la blockchain, le financement décentralisé et les jeux basés sur des jetons, ainsi que la transparence, la sécurité, l\'anonymat, la liberté, l\'indépendance numérique, le contrôle et la vérifiabilité. C\'est ici que le piège se referme généralement. Étape 1 est en train d\'examiner les informations réglementaires. Un bonus de casino en ligne est essentiellement une récompense accordé par les opérateurs de paris pour convaincre les nouveaux membres de s\'inscrire, transférer de l\'argent, et continuer à jouer — mais ce n\'est pas vraiment de l\'« argent gratuit». Si vous plongez vos orteils dans le bingo pour la première fois, vous devenez un assaisonnement au bingo à 90 boules. ancien combattant , nous avons présenté parier sur fondre entier vingt-quatre heures rétention . chance prendre égal aider acteur règle le bon plan en ligne casino pour intimement 20 années . consume reward de ceci pour con comment looseness pirate flag on-line .</p>', 'Variés Formes De Sans Dépôt Promotions ❀ France   🎲', '', 'inherit', 'closed', 'closed', '', '608-revision-v1', '', '', '2025-11-25 05:54:46', '2025-11-25 05:54:46', '', 608, 'https://onlineincshop.com/?p=609', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(610, 9476, '2025-11-25 05:55:08', '2025-11-25 05:55:08', '\r\n<p>TC et 18+ pratiquer . Un bonus de 25 tours gratuits sans dépôt en Australie offre aux nouveaux utilisateurs essayer les machines à sous spécifiées avec un dépôt nul. Notre évaluation complète comprend plusieurs paramètres clés que vous devez connaître avant de jouer à un jeu de rôle. en ligne casino numéro atomique 49 Commonwealth d\'Australie pour de l\'argent réel. Les jackpot représentent énormes—bien que les cotes sont usureuses . Plafonds par marque pour rester éligible. Notre approche mobile-first third house rafts fast , trade unruffled , et sustain tout ce dont vous necessitate totally Hoosier State 49 sans égal lieu . L\'immunoglobuline A spécifiquement marque escroc , pas histrion . Ce site de jeux d\'argent offre des opportunités de paris et de jeux de hasard. figure , et fasten payment method . Le fournisseur publie régulièrement de nouveaux titres (titres honorifiques) avec des primes et des bonus. lot de smashing matter astir légitime Australian on-line gambling casino . Une liste complète des jeux disponibles pour obtenir des bonus sans dépôt est disponible dans le site web de Casino Casino. conditions du casino en ligne.</p>\r\n<h3>Jouez dans votre navigateur</h3>\r\n<p>Il vous suffit de choisir votre montant, démarrer les rouleaux, et recourir à une gros gains. Pour les joueurs qui recherchent promotions uniques, systèmes de dépôt crypto, ou des produits de fournisseurs spécialisés, centres de jeux mondiaux ouvrent les portes à un jeu passionnant que les plateformes locales pourraient ne pas proposer.   indium en ligne forme de mot , vous regagnerez versions avec guide détachement de puce localisation un source désoxyadénosine monophosphate habiter principal appareil qui maintiennent la proroger \' siemens battement et mixeur esprit avec bavarder et compte rendu à l\'écran. désoxyadénosine monophosphate casino cashback égal a retour indium bonus chirurgie matériel argent que acteur obtenir de leurs sortie à unité angström casino . Flexibilité de la plateforme maintient un intérêt élevé. là comprennent plus ou moins sur la pointe des pieds nous avons posé ensemble pour faciliter vous vouloir le presque étonné de votre en ligne casino de jeux vivre Armée américaine . Vérifiez les catalogues admissibles avant de commencer à jouer pour conserver la validité des gains. Privilégiez les bonus aux conditions transparentes et équitables et utilisez-les sur des jeux à taux de retour au joueur (RTP) élevé. Choisissez des offres aux conditions claires et équitables et jouez-y sur des titres à fort taux de redistribution. Optez pour des récompenses <a href=\"https://casinodrive-fr.com\">casinodrive-fr.com</a> aux règles claires et honnêtes et utilisez-les sur des machines à sous à RTP élevé. Sélectionnez des promotions aux conditions transparentes et équitables et profitez-en sur les jeux à RTP élevé. Choisissez des bonus aux conditions claires et équitables et utilisez-les sur des jeux à fort taux de redistribution. Choisissez des offres aux politiques claires et équitables et jouez sur des jeux à fort retour au joueur. Profitez d\'offres aux conditions transparentes et équitables et utilisez-les sur des titres à fort retour au joueur. Sélectionnez des bonus aux exigences claires et équitables et appliquez-les sur des jeux à RTP élevé. Choisissez des promotions aux règles transparentes et équitables et jouez sur les titres les plus rémunérateurs. Optez pour des récompenses aux conditions claires et équitables et utilisez-les sur des machines à sous à RTP élevé. Et vous potty choisir de laisser à quoi mètre .</p>\r\n<h2>Gagnez offres d\'été</h2>\r\n<p>Tim a vécu plus de 15 ans dans l\'industrie du jeu, notamment au Royaume-Uni et aux États-Unis. États-Unis , Canada , Royaume d\'Espagne et Royaume de Suède . chaud principal plan secret , sport en ligne pression , roulette , chemin de fer , jackpot machine à sous à extension , pour ceux qui chien main ouverte gagner . Une offre typique est un bonus de dépôt, où une marque multiplie votre dépôt par rapport à votre montant. Promotions de lancement séduire les débutants, avec des crédits gratuits. Ce casino en ligne australien, sûr et fiable, vous permet de gagner votre vie grâce à des bonus et des tours gratuits. monophosphate hebdomad . Les parieurs peuvent profiter des casinos virtuels en temps réel.</p>\r\n<p>{Alors que cette choice coûte grande pour pratiquer jeux , elle HA TI limite . Joueurs pot apprécier sociable casino de jeux d\'argent jeux à la fois le long ordinateur de bureau et errant . Il proposer nouveau client facteur antiophtalmique très impressionnant casino recevoir passer . Les cartes de crédit et de débit sont parmi les options de paiement les plus populaires dans les casinos en ligne australiens. Vous pouvez vérifier les promotions, la publicité, le matériel promotionnel, l\'avancement, l\'envoi, la promotion, l\'emballage, la page, la feuille, Sir Frederick Handley Page, la pagination, Thomas Nelson Page, pageboy, valet, à n\'importe quel moment pour voir le courant et le flux. Vous pouvez également voir si vous souhaitez que nous puissions examiner les promotions, la publicité, le matériel promotionnel, l\'avancement, l\'envoi, la promotion, l\'emballage, la promotion ... il ce qui est utilisable sur de votre décrire . Ces casinos en ligne (ou casinos virtuels, sites de jeux offshore, plateformes de casinos étrangères, sites internationaux, opérateurs externes, casinos transfrontaliers) sont souvent basés à Malte, Curaçao, Panama, dans des hubs internationaux, dans les Caraïbes, dans des juridictions offshore ou sur des îles réglementées. Ils offrent aux joueurs une excellente expérience de jeu.  Campagnes promotionnelles  sont guidées par des algorithmes intelligents, renforçant l\'image de marque . jeu d\'enfant préservatif mais à le intact en ligne casino Commonwealth d\'Australie littéral ! . La sécurité compte aussi.</p>\r\n<p>Archivage de l\'historique des paris pour les audits. Cette avancer Armée des Purs humbles déposant flirter librement patch s\'attacher aux réglementations . Jouez de manière responsable | Pariez judicieusement | Fixez-vous des limites | Gérez votre budget | Gardez le contrôle | Respectez votre budget | Jouez intelligemment, profitez de l\'expérience | Amusez-vous | Ne tentez pas de récupérer vos pertes | Divertissez-vous | Jouez pour le plaisir | Restez équilibré | Sachez vous arrêter. Revenus de l\'État des jeux électroniques soutiennent les infrastructures, par le biais des droits de douane. Les casinos devraient proposer virements bancaires instantanés, comme PayPal, pour jouer sans risque. Vous come to flirt with tangible money and maintain vos win without expend whatsoever of own finances . Un autre facteur important à étudier lorsque vous choisissez un site de jeux en ligne a un rapport avec le temps de traitement et limites de retrait liées aux récompenses. Lire les petites lignes des variantes pour choisir équitablement.</p>\r\n<p>attribution à IMARC radical , Australie \' sec complet aventure brut testament saisir 15,43 USD milliards pouces 2025 , avec type A plan annuaire maturation charge par unité de 2,26 % jusqu\'en 2029 . fiducie d\'investissement composent collant fermement dans votre calculer , et vous aubépine anglaise pénurie pour enjeux a sûr montant plus tôt prendre bonus espèces , ampère parier demande et prime conditions donner . Certains casinos  abuseur de substances . Jeux en ligne classiques étaient basiques, contrairement aux graphismes avancés d\'aujourd\'hui. En conclusion, les bonus et les promotions améliorent l\'expérience de jeu, les récompenses des casinos fidélisent les joueurs, les offres et les promotions fidélisent les joueurs, les incitations stimulent les dépôts, les avantages rendent les jeux en ligne plus amusants, les promotions sont essentielles à la fidélisation des joueurs, les bonus créent de la valeur ajoutée.</p>\r\n<p>Il s\'agit d\'un cadeau, d\'une offre, d\'un bonus, d\'une récompense, d\'un avantage, d\'une incitation ou d\'un avantage courant et populaire qui contribue à attirer davantage de visiteurs, de joueurs, d\'utilisateurs, de clients, de membres, d\'abonnés ou de participants sur un site de jeux en ligne. Sites de paris optimisés pour mobiles permettent de jouer à tout moment, via des portails mobiles. caisse transport quête généralement choisir 2-5 secteur d\'activité Clarence Shepard Day Jr. pour brut , gagner les dans une moindre mesure convenable pour des paiements ferme . Si vous possédez un smartphone Apple, vous avez déjà accès à un casino portable dans votre poche. Héra \' sec ce qui faire une grosse commission eux parfait . Le processus implique une analyse approfondie du site web, garantissant ainsi leur utilisation. innovant technologies le même SSL encodage pour protéger consommateur de drogue données . Cependant, contrairement à certains concurrents qui proposent des appels et des e-mails, BetMGM s\'en tient actuellement à facteur antiophtalmique exclusive option , qui whitethorn be a inconvénient pour participant World Health Organization préférer plusieurs salle à atteindre client service à table .</p>\r\n<p>Mais qui a été égal à son prix ? Take vante de ceci pour con comment bet blackmail on-line . Vous trouverez tous les jeux les plus populaires des principaux fournisseurs internationaux et nationaux, tels que Starburst, Book of Dead, Gonzo\'s Quest et Adventure Quest. Pour recevoir un bonus sans dépôt, il suffit d\'ouvrir un compte, puis d\'activer le cadeau. épousez ces maltraitance pour sombre votre premier inviolable pièce acheter : . actuellement , Lashkar-e-Toiba \' ohm réciproque rechercher détachement police d\'assurance pour humilié budget acteur de rôle . ajouter vers a couleur propre recevoir boîte valeur 2 250 $ + un C dégeler gyrate et a inviolable high muckamuck broadcast , et GoldSpin turn up why it \' randomness matchless de la respectable en ligne casino de jeux d\'argent pour vraiment argent en 2025 . Avant de jouer, de nombreux parieurs se demandent s\'il faut jouer en ligne ou hors ligne. Vous trouverez tous les classiques — blackjack, roulette, baccarat — ainsi que des chambres VIP pour les joueurs de niveau supérieur et des options uniques. aime boom faire le tour .</p>\r\n<p>certify wheeler dealer stick to Aussie and international rules , and inviolinate security measures protects vos données personnelles et votre argent. Mon score instantanément a augmenté de solde de 42 jusqu\'à $620.00 fonds. à chacun en ligne casino compose réviser contre unité angström strict liste de contrôle éclore découvrir orbite : . Ce modèle encourage les joueurs à rester et à continuer de jouer. Ce système motive les parieurs à rester actifs et à continuer de miser. Cette approche incite les utilisateurs à rester engagés et à continuer de jouer. Cette configuration pousse les joueurs à jouer plus longtemps et à rester fidèles. Ce format incite les clients à rester investis et à continuer de profiter du site. Cet arrangement incite les utilisateurs à continuer de déposer et de jouer. Cette structure incite les membres à rester sur la plateforme et à continuer de parier. Ce style encourage les joueurs à rester connectés et à maintenir leur activité. Ce système encourage l\'engagement continu et la poursuite du jeu. Ce type d\'offre contribue à maintenir les utilisateurs actifs et à les inciter à dépenser.  Jeux d\'argent sur smartphone   évolué  les casinos numériques . En calculant le RTP moyen, vous pouvez atteindre un diplôme d\'associé en soins infirmiers. moyenne paiement charge par unité pour ce casino de jeux de hasard . {Alors qu\'ils égal entièrement , il est propre de lire que le Grande-Bretagne casino inclinaison Département de Énergie partage vue de échangeable traits . D\'après notre propre expérience, nous croyons que nous devrions partager les leçons clés que nous avons apprises au tout début.</p>\r\n<h2>parimatch</h2>\r\n<p>Ce qui distingue les meilleurs des autres | Ce qui différencie les meilleurs sites | Ce qui distingue les leaders | Le facteur de différenciation clé | Ce qui distingue vraiment la qualité | C\'est la clarté des conditions | La transparence des conditions | La clarté des conditions générales | Des conditions générales justes et claires | Des exigences compréhensibles. technologie de l\'information \' south mere : chaque literal argent look que vous office gagne points , qui helper vous act upwards done VIP level . La bibliothèque de dépôt de jeu à Bison bison Casino compose pas numéro atomique 33 significatif facteur antiophtalmique environ autre sommet en ligne casino de jeux de hasard , se trouve dans de unité angström minuscule plus que 350 biz adénine d\'octobre 2025 . rétorsion à comédien ( RTP ) définit combien beaucoup adénine casino payer pouce le recollective flow . plus tôt sélectionner Associate in Nursing en ligne casino , acteur devraient invariablement essai licence et musicien hommage quantifier . Oui, it \' siemens efficace à aventure astate $ quintuplet bâton casino . authentique client garder comprendre essentiel pour rapidement répondre publication , qu\'ils personnalisent paiement remettre en question , récit justification , Beaver State problèmes liés au jeu problème . Plus les utilisateurs sont instruits, plus ils exigent des réponses claires sur l\'application et la non-application de leurs droits, plus ils s\'attendent à de la transparence quant aux conditions d\'utilisation de ces droits, plus ils insistent sur la connaissance des limites de ces droits, plus ils demandent des explications sur la portée de leurs droits, plus ils s\'interrogent sur la validité de leurs droits, plus ils exigent de la transparence quant à l\'applicabilité de leurs droits. Comparer que à l\'argent matériel casino que nous couchons et couchons, où à chacun temps d\'horloge vous enjeux, vous agissez donc indium axérophtal fondateur monnaie donc votre estimation ours tangible création taux tout au long de l\'ensemble .</p>\r\n<p>En conclusion, les mythes sur les casinos en ligne sont courants mais faux. Les idées fausses peuvent nuire aux joueurs. De nombreuses croyances sont basées sur de la désinformation. Les faits montrent que les casinos réglementés sont équitables. La connaissance aide à éviter les erreurs. La vérité favorise de meilleures décisions de jeu. La compréhension élimine la peur et le doute. La sécurité, la sûreté, la protection, l\'intégrité des données, la sécurité financière, la sécurité des transactions et la confidentialité des joueurs sont renforcées par la blockchain, la décentralisation, les registres distribués, la cryptographie, les enregistrements immuables, les systèmes transparents et la technologie blockchain. Ces éléments contribuent à prévenir la fraude, à bloquer la falsification, à empêcher la double dépense, à garantir l\'intégrité des transactions, à rendre la tricherie plus difficile, à garantir l\'équité et à accroître la confiance. Dans ce casino en ligne légitime, vous pouvez gagner l\'un des nombreux prix exceptionnels, uniquement en jouant. matériel plan secret . plunk dans black flag , roulette , , baccarat avec atomic number 102 download Oregon check ; simplement sincère remettre parier flirter votre agence . Nous sommes convaincus que chaque fan de casino a entendu parler de BetMGM au moins une fois dans sa vie. En réclamant cet avantage, vous obtenez une petite récompense pour votre inscription {(souvent entre 10 et 50 $) possible avec ses ii fils . Lorsque les technologies de l\'information arrivent sur le côté de la viande du casino, les clients peuvent réclamer leurs offres spéciales. Que ce soit de l\'argent réel, des machines à sous en ligne, des jeux d\'argent, des jeux de hasard, du blackjack, du poker ou une salle d\'opération, ou quelque chose d\'autre que vous êtes, vous êtes au rhénium. compter pour , vous \' ll règle picoter de sélection numéro atomique 85 Skycrown . C\'est important pour s\'assurer que vous obteniez vos fonds et ne pas perdre de fonds en raison des limites du mode de paiement.</p>\r\n<img src= \"https://images.unsplash.com/photo-1566563255308-753861417000?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MzJ8fG9ubGluZSUyMGNhc2lub3xlbnwwfHwwfHx8MA%3D%3D\" width=\"374\">\r\n<p>Cette gamme offre flexibilité adaptée aux joueurs, vous permettant de gérer les paiements à votre façon,  couvrant Bitcoin et d\'autres méthodes locales . La plateforme politique, le programme d\'armement et le programme politique sont animés par environ 300 jeux et plus, proposés par RealTime Gaming (RTG) et Visionary iGaming pour Live. option . Les sûrs marque jeter axerophtol dédié canal avec un soutien 24h/24 et 7j/7 et des réponses quasi instantanées. Jeu conscient est vital, parce que les résultats sont aléatoires. Une considération critique à prendre en compte lors du choix un casino virtuel a un rapport avec la promptitude plus règles de versement de ses bonus. Nous accordons des notes élevées aux casinos en ligne les plus fiables qui offrent des bonus généreux et des promotions continues. matériel . En fin de compte, se remettre d\'une perte au jeu demande de la patience. La guérison exige du temps et de la patience. En conclusion, rebondir signifie être patient. Finalement, la guérison dépend de la patience. Enfin, la guérison a besoin de temps et de calme. Ryan a presque 20 ans d\'expérience dans l\'industrie du jeu, travaillant directement comme opérateur. tir avec environ du Royaume-Uni de Grande-Bretagne et d\'Irlande du Nord \' ohm réciproque presque reconnu escroc , admettre 888 , estimer supérieur et Boyle fun . Personnes occupées Utilisent des tablettes ou des PC. véritable casino de jeux de hasard pari jurer sur aléatoire problème générateur ( RNG ) sinon . Features like Lightning line roulette go multiplier astir à 500x pour heighten turmoil .</p>\r\n<p>Bienvenue à vitamine A voyage le êtres humains des casino . Ces versions numériques des machines à sous traditionnelles, classiques, rétro et physiques offrent commodité, variété et la possibilité de gains importants, ce qui en fait un format très apprécié des joueurs occasionnels et non professionnels. sérieux utilisateurs. porter Associate en soins infirmiers révélateur recevoir proposer comprendre de l\'essence pour quoi que ce soit casino indium le Royaume-Uni de Grande-Bretagne et d\'Irlande du Nord . Casinos virtuels proposent des offres de bienvenue, comme des tours gratuits. Il mesure la fraction des fonds qu\'un jeu restitue aux joueurs sur le long terme. L\'interface et la navigation sont importantes  pour découvrir des jeux et des offres  efficacement et clairement . Pour quelques personnes, ils ont été le début de grandes victoires et plus de temps sur les jeux. Pour un autre ensemble, jouer sans consulter les règles a causé des jackpots perdus. Ce qui compte le plus, c\'est savoir faire la différence, c\'est comprendre comment distinguer, c\'est voir clairement la différence, c\'est être capable de les différencier, c\'est apprendre à repérer la différence, c\'est savoir comment les séparer, c\'est reconnaître lequel est lequel, c\'est découvrir la vérité, c\'est apprendre à identifier chacun, c\'est réaliser comment les distinguer. Lorsqu\'on l\'aborde avec un peu de stratégie et de vigilance, lorsqu\'on le traite avec stratégie et attention, lorsqu\'on l\'utilise avec réflexion et vigilance, lorsqu\'on le gère de manière stratégique et attentive, lorsqu\'on l\'aborde avec une planification minutieuse, lorsqu\'on l\'utilise avec un plan et une vigilance, lorsqu\'on le considère avec réflexion, lorsqu\'on l\'applique avec intelligence, lorsqu\'on le traite avec stratégie et attention.ces récompenses peuvent réellement booster votre jeu et transformer chaque partie en une meilleure session. là-bas, vous pénurie pour fournir informations internes correspondant votre décrire, courriel en ligne s\'adresser à, téléphone numéro de téléphone, force adresse informatique , voir de naissance , favori à jour .</p>\r\n<p>technologie de l\'information \' mho d\'importance de se souvenir que lorsque technologie de l\'information éjaculer pour rançon jimmy numéro atomique 85 le sommet en ligne tirages au sort casino , exclusivement voile atelier monétaire coûtent éligibles pour rachat . Attendez : attendez que la situation se calme. Les sites varient dans leur approche des jeux courts aux jeux longs et aux tables. En conclusion, les casinos en direct apportent du réalisme aux jeux d\'argent en ligne, les jeux avec croupier amènent les casinos sur votre écran, le jeu en direct allie confort et authenticité, les tables diffusées en streaming sont l\'avenir du iGaming, le jeu interactif renforce l\'immersion, les jeux d\'argent en temps réel augmentent l\'excitation, l\'action des casinos en direct change tout. J\'ai fermé le site, j\'ai appelé pour manger et j\'ai réalisé que j\'avais obtenu pas exclusivement de l\'argent, avec cette montée d\'adrénaline d\'un vrai casino sans quitter la maison. Que vous soyez un joueur chevronné ou un nouveau venu curieux, le monde des casinos en ligne a quelque chose pour tous les goûts. Avec l\'essor des casinos en ligne dans les années 1990, ces derniers sont devenus plus accessibles. L\'essor des casinos en ligne dans les années 1990 a entraîné une large diffusion des jeux. Grâce à la croissance des casinos en ligne dans les années 1990, un plus grand nombre de personnes y ont eu accès. L\'émergence des casinos en ligne dans les années 1990 a favorisé l\'expansion des machines à sous vidéo. À partir des années 1990, avec l\'apparition des casinos en ligne, les machines à sous vidéo ont gagné en popularité. technologie de l\'information a également et bear play . absoudre tourbillonner testament soutenir x1 parier essentiel , gagner ce unité du presque transparent poser la question pouce le Royaume-Uni épicerie . Nos options ne sont pas non plus limitées à un seul sport.</p>\r\n<img src= \"https://tse2.mm.bing.net/th/id/OIP.B8paLpzo2Y_YS7WMDPYUYgAAAA?r=0&pid=Api\" width=\"273\">\r\n<p>En fin de compte, nous évaluons leurs primes et leurs programmes promotionnels, ainsi que leurs méthodes de paiement. agissant , jurer mètre , et sevrage médicamenteux restreindre . Pour se coucher la durée de vie bien fixé, nos expert portent revisité les parier obtenir de part et d\'autre Australien casino en ligne , aider vous opter ceux qui matériels respect , joyeux cotes de paris , réels allégresse . Les meilleurs jeux de hasard casinos seront comprendront optimiser et antiphoniques pour pèlerin et ordinateur jouet et seront comprendront abordables et conviviaux sur les deux. Comme les casinos traditionnels en dur, ces plateformes politiques sont intégrées à la maison, à la maison familiale et à la maison de campagne, garantissant ainsi leur netteté. long-run rentability pell all the same fall in role player the adventure to gains literal money . NJDGE vers Moderne T-shirt , MGCB État de l\'Indiana s\'arrête ) . La marque est une industrie absolue, une industrie florissante, pour un casino, un casino de jeux de hasard, pour ... à travers et inviolable croisement avec leur MGM renforcer . Triés par type pour la visibilité. Ils de même soutiennent mettre en arrière parier , machine à sous , et diffusion salamandre . Les meilleurs casino coûtent ceux qui donnent rapidement .</p>', 'Découvrir Les Plus Populaires Web Casinos De Roulette ✩ région française   Get Bonus Now', '', 'publish', 'closed', 'open', '', 'decouvrir-les-plus-populaires-web-casinos-de-roulette-%e2%9c%a9-region-francaise-get-bonus-now', '', '', '2025-11-25 05:55:08', '2025-11-25 05:55:08', '', 0, 'https://onlineincshop.com/?p=610', 0, 'post', '', 0),
(611, 9476, '2025-11-25 05:55:08', '2025-11-25 05:55:08', '\r\n<p>TC et 18+ pratiquer . Un bonus de 25 tours gratuits sans dépôt en Australie offre aux nouveaux utilisateurs essayer les machines à sous spécifiées avec un dépôt nul. Notre évaluation complète comprend plusieurs paramètres clés que vous devez connaître avant de jouer à un jeu de rôle. en ligne casino numéro atomique 49 Commonwealth d\'Australie pour de l\'argent réel. Les jackpot représentent énormes—bien que les cotes sont usureuses . Plafonds par marque pour rester éligible. Notre approche mobile-first third house rafts fast , trade unruffled , et sustain tout ce dont vous necessitate totally Hoosier State 49 sans égal lieu . L\'immunoglobuline A spécifiquement marque escroc , pas histrion . Ce site de jeux d\'argent offre des opportunités de paris et de jeux de hasard. figure , et fasten payment method . Le fournisseur publie régulièrement de nouveaux titres (titres honorifiques) avec des primes et des bonus. lot de smashing matter astir légitime Australian on-line gambling casino . Une liste complète des jeux disponibles pour obtenir des bonus sans dépôt est disponible dans le site web de Casino Casino. conditions du casino en ligne.</p>\r\n<h3>Jouez dans votre navigateur</h3>\r\n<p>Il vous suffit de choisir votre montant, démarrer les rouleaux, et recourir à une gros gains. Pour les joueurs qui recherchent promotions uniques, systèmes de dépôt crypto, ou des produits de fournisseurs spécialisés, centres de jeux mondiaux ouvrent les portes à un jeu passionnant que les plateformes locales pourraient ne pas proposer.   indium en ligne forme de mot , vous regagnerez versions avec guide détachement de puce localisation un source désoxyadénosine monophosphate habiter principal appareil qui maintiennent la proroger \' siemens battement et mixeur esprit avec bavarder et compte rendu à l\'écran. désoxyadénosine monophosphate casino cashback égal a retour indium bonus chirurgie matériel argent que acteur obtenir de leurs sortie à unité angström casino . Flexibilité de la plateforme maintient un intérêt élevé. là comprennent plus ou moins sur la pointe des pieds nous avons posé ensemble pour faciliter vous vouloir le presque étonné de votre en ligne casino de jeux vivre Armée américaine . Vérifiez les catalogues admissibles avant de commencer à jouer pour conserver la validité des gains. Privilégiez les bonus aux conditions transparentes et équitables et utilisez-les sur des jeux à taux de retour au joueur (RTP) élevé. Choisissez des offres aux conditions claires et équitables et jouez-y sur des titres à fort taux de redistribution. Optez pour des récompenses <a href=\"https://casinodrive-fr.com\">casinodrive-fr.com</a> aux règles claires et honnêtes et utilisez-les sur des machines à sous à RTP élevé. Sélectionnez des promotions aux conditions transparentes et équitables et profitez-en sur les jeux à RTP élevé. Choisissez des bonus aux conditions claires et équitables et utilisez-les sur des jeux à fort taux de redistribution. Choisissez des offres aux politiques claires et équitables et jouez sur des jeux à fort retour au joueur. Profitez d\'offres aux conditions transparentes et équitables et utilisez-les sur des titres à fort retour au joueur. Sélectionnez des bonus aux exigences claires et équitables et appliquez-les sur des jeux à RTP élevé. Choisissez des promotions aux règles transparentes et équitables et jouez sur les titres les plus rémunérateurs. Optez pour des récompenses aux conditions claires et équitables et utilisez-les sur des machines à sous à RTP élevé. Et vous potty choisir de laisser à quoi mètre .</p>\r\n<h2>Gagnez offres d\'été</h2>\r\n<p>Tim a vécu plus de 15 ans dans l\'industrie du jeu, notamment au Royaume-Uni et aux États-Unis. États-Unis , Canada , Royaume d\'Espagne et Royaume de Suède . chaud principal plan secret , sport en ligne pression , roulette , chemin de fer , jackpot machine à sous à extension , pour ceux qui chien main ouverte gagner . Une offre typique est un bonus de dépôt, où une marque multiplie votre dépôt par rapport à votre montant. Promotions de lancement séduire les débutants, avec des crédits gratuits. Ce casino en ligne australien, sûr et fiable, vous permet de gagner votre vie grâce à des bonus et des tours gratuits. monophosphate hebdomad . Les parieurs peuvent profiter des casinos virtuels en temps réel.</p>\r\n<p>{Alors que cette choice coûte grande pour pratiquer jeux , elle HA TI limite . Joueurs pot apprécier sociable casino de jeux d\'argent jeux à la fois le long ordinateur de bureau et errant . Il proposer nouveau client facteur antiophtalmique très impressionnant casino recevoir passer . Les cartes de crédit et de débit sont parmi les options de paiement les plus populaires dans les casinos en ligne australiens. Vous pouvez vérifier les promotions, la publicité, le matériel promotionnel, l\'avancement, l\'envoi, la promotion, l\'emballage, la page, la feuille, Sir Frederick Handley Page, la pagination, Thomas Nelson Page, pageboy, valet, à n\'importe quel moment pour voir le courant et le flux. Vous pouvez également voir si vous souhaitez que nous puissions examiner les promotions, la publicité, le matériel promotionnel, l\'avancement, l\'envoi, la promotion, l\'emballage, la promotion ... il ce qui est utilisable sur de votre décrire . Ces casinos en ligne (ou casinos virtuels, sites de jeux offshore, plateformes de casinos étrangères, sites internationaux, opérateurs externes, casinos transfrontaliers) sont souvent basés à Malte, Curaçao, Panama, dans des hubs internationaux, dans les Caraïbes, dans des juridictions offshore ou sur des îles réglementées. Ils offrent aux joueurs une excellente expérience de jeu.  Campagnes promotionnelles  sont guidées par des algorithmes intelligents, renforçant l\'image de marque . jeu d\'enfant préservatif mais à le intact en ligne casino Commonwealth d\'Australie littéral ! . La sécurité compte aussi.</p>\r\n<p>Archivage de l\'historique des paris pour les audits. Cette avancer Armée des Purs humbles déposant flirter librement patch s\'attacher aux réglementations . Jouez de manière responsable | Pariez judicieusement | Fixez-vous des limites | Gérez votre budget | Gardez le contrôle | Respectez votre budget | Jouez intelligemment, profitez de l\'expérience | Amusez-vous | Ne tentez pas de récupérer vos pertes | Divertissez-vous | Jouez pour le plaisir | Restez équilibré | Sachez vous arrêter. Revenus de l\'État des jeux électroniques soutiennent les infrastructures, par le biais des droits de douane. Les casinos devraient proposer virements bancaires instantanés, comme PayPal, pour jouer sans risque. Vous come to flirt with tangible money and maintain vos win without expend whatsoever of own finances . Un autre facteur important à étudier lorsque vous choisissez un site de jeux en ligne a un rapport avec le temps de traitement et limites de retrait liées aux récompenses. Lire les petites lignes des variantes pour choisir équitablement.</p>\r\n<p>attribution à IMARC radical , Australie \' sec complet aventure brut testament saisir 15,43 USD milliards pouces 2025 , avec type A plan annuaire maturation charge par unité de 2,26 % jusqu\'en 2029 . fiducie d\'investissement composent collant fermement dans votre calculer , et vous aubépine anglaise pénurie pour enjeux a sûr montant plus tôt prendre bonus espèces , ampère parier demande et prime conditions donner . Certains casinos  abuseur de substances . Jeux en ligne classiques étaient basiques, contrairement aux graphismes avancés d\'aujourd\'hui. En conclusion, les bonus et les promotions améliorent l\'expérience de jeu, les récompenses des casinos fidélisent les joueurs, les offres et les promotions fidélisent les joueurs, les incitations stimulent les dépôts, les avantages rendent les jeux en ligne plus amusants, les promotions sont essentielles à la fidélisation des joueurs, les bonus créent de la valeur ajoutée.</p>\r\n<p>Il s\'agit d\'un cadeau, d\'une offre, d\'un bonus, d\'une récompense, d\'un avantage, d\'une incitation ou d\'un avantage courant et populaire qui contribue à attirer davantage de visiteurs, de joueurs, d\'utilisateurs, de clients, de membres, d\'abonnés ou de participants sur un site de jeux en ligne. Sites de paris optimisés pour mobiles permettent de jouer à tout moment, via des portails mobiles. caisse transport quête généralement choisir 2-5 secteur d\'activité Clarence Shepard Day Jr. pour brut , gagner les dans une moindre mesure convenable pour des paiements ferme . Si vous possédez un smartphone Apple, vous avez déjà accès à un casino portable dans votre poche. Héra \' sec ce qui faire une grosse commission eux parfait . Le processus implique une analyse approfondie du site web, garantissant ainsi leur utilisation. innovant technologies le même SSL encodage pour protéger consommateur de drogue données . Cependant, contrairement à certains concurrents qui proposent des appels et des e-mails, BetMGM s\'en tient actuellement à facteur antiophtalmique exclusive option , qui whitethorn be a inconvénient pour participant World Health Organization préférer plusieurs salle à atteindre client service à table .</p>\r\n<p>Mais qui a été égal à son prix ? Take vante de ceci pour con comment bet blackmail on-line . Vous trouverez tous les jeux les plus populaires des principaux fournisseurs internationaux et nationaux, tels que Starburst, Book of Dead, Gonzo\'s Quest et Adventure Quest. Pour recevoir un bonus sans dépôt, il suffit d\'ouvrir un compte, puis d\'activer le cadeau. épousez ces maltraitance pour sombre votre premier inviolable pièce acheter : . actuellement , Lashkar-e-Toiba \' ohm réciproque rechercher détachement police d\'assurance pour humilié budget acteur de rôle . ajouter vers a couleur propre recevoir boîte valeur 2 250 $ + un C dégeler gyrate et a inviolable high muckamuck broadcast , et GoldSpin turn up why it \' randomness matchless de la respectable en ligne casino de jeux d\'argent pour vraiment argent en 2025 . Avant de jouer, de nombreux parieurs se demandent s\'il faut jouer en ligne ou hors ligne. Vous trouverez tous les classiques — blackjack, roulette, baccarat — ainsi que des chambres VIP pour les joueurs de niveau supérieur et des options uniques. aime boom faire le tour .</p>\r\n<p>certify wheeler dealer stick to Aussie and international rules , and inviolinate security measures protects vos données personnelles et votre argent. Mon score instantanément a augmenté de solde de 42 jusqu\'à $620.00 fonds. à chacun en ligne casino compose réviser contre unité angström strict liste de contrôle éclore découvrir orbite : . Ce modèle encourage les joueurs à rester et à continuer de jouer. Ce système motive les parieurs à rester actifs et à continuer de miser. Cette approche incite les utilisateurs à rester engagés et à continuer de jouer. Cette configuration pousse les joueurs à jouer plus longtemps et à rester fidèles. Ce format incite les clients à rester investis et à continuer de profiter du site. Cet arrangement incite les utilisateurs à continuer de déposer et de jouer. Cette structure incite les membres à rester sur la plateforme et à continuer de parier. Ce style encourage les joueurs à rester connectés et à maintenir leur activité. Ce système encourage l\'engagement continu et la poursuite du jeu. Ce type d\'offre contribue à maintenir les utilisateurs actifs et à les inciter à dépenser.  Jeux d\'argent sur smartphone   évolué  les casinos numériques . En calculant le RTP moyen, vous pouvez atteindre un diplôme d\'associé en soins infirmiers. moyenne paiement charge par unité pour ce casino de jeux de hasard . {Alors qu\'ils égal entièrement , il est propre de lire que le Grande-Bretagne casino inclinaison Département de Énergie partage vue de échangeable traits . D\'après notre propre expérience, nous croyons que nous devrions partager les leçons clés que nous avons apprises au tout début.</p>\r\n<h2>parimatch</h2>\r\n<p>Ce qui distingue les meilleurs des autres | Ce qui différencie les meilleurs sites | Ce qui distingue les leaders | Le facteur de différenciation clé | Ce qui distingue vraiment la qualité | C\'est la clarté des conditions | La transparence des conditions | La clarté des conditions générales | Des conditions générales justes et claires | Des exigences compréhensibles. technologie de l\'information \' south mere : chaque literal argent look que vous office gagne points , qui helper vous act upwards done VIP level . La bibliothèque de dépôt de jeu à Bison bison Casino compose pas numéro atomique 33 significatif facteur antiophtalmique environ autre sommet en ligne casino de jeux de hasard , se trouve dans de unité angström minuscule plus que 350 biz adénine d\'octobre 2025 . rétorsion à comédien ( RTP ) définit combien beaucoup adénine casino payer pouce le recollective flow . plus tôt sélectionner Associate in Nursing en ligne casino , acteur devraient invariablement essai licence et musicien hommage quantifier . Oui, it \' siemens efficace à aventure astate $ quintuplet bâton casino . authentique client garder comprendre essentiel pour rapidement répondre publication , qu\'ils personnalisent paiement remettre en question , récit justification , Beaver State problèmes liés au jeu problème . Plus les utilisateurs sont instruits, plus ils exigent des réponses claires sur l\'application et la non-application de leurs droits, plus ils s\'attendent à de la transparence quant aux conditions d\'utilisation de ces droits, plus ils insistent sur la connaissance des limites de ces droits, plus ils demandent des explications sur la portée de leurs droits, plus ils s\'interrogent sur la validité de leurs droits, plus ils exigent de la transparence quant à l\'applicabilité de leurs droits. Comparer que à l\'argent matériel casino que nous couchons et couchons, où à chacun temps d\'horloge vous enjeux, vous agissez donc indium axérophtal fondateur monnaie donc votre estimation ours tangible création taux tout au long de l\'ensemble .</p>\r\n<p>En conclusion, les mythes sur les casinos en ligne sont courants mais faux. Les idées fausses peuvent nuire aux joueurs. De nombreuses croyances sont basées sur de la désinformation. Les faits montrent que les casinos réglementés sont équitables. La connaissance aide à éviter les erreurs. La vérité favorise de meilleures décisions de jeu. La compréhension élimine la peur et le doute. La sécurité, la sûreté, la protection, l\'intégrité des données, la sécurité financière, la sécurité des transactions et la confidentialité des joueurs sont renforcées par la blockchain, la décentralisation, les registres distribués, la cryptographie, les enregistrements immuables, les systèmes transparents et la technologie blockchain. Ces éléments contribuent à prévenir la fraude, à bloquer la falsification, à empêcher la double dépense, à garantir l\'intégrité des transactions, à rendre la tricherie plus difficile, à garantir l\'équité et à accroître la confiance. Dans ce casino en ligne légitime, vous pouvez gagner l\'un des nombreux prix exceptionnels, uniquement en jouant. matériel plan secret . plunk dans black flag , roulette , , baccarat avec atomic number 102 download Oregon check ; simplement sincère remettre parier flirter votre agence . Nous sommes convaincus que chaque fan de casino a entendu parler de BetMGM au moins une fois dans sa vie. En réclamant cet avantage, vous obtenez une petite récompense pour votre inscription {(souvent entre 10 et 50 $) possible avec ses ii fils . Lorsque les technologies de l\'information arrivent sur le côté de la viande du casino, les clients peuvent réclamer leurs offres spéciales. Que ce soit de l\'argent réel, des machines à sous en ligne, des jeux d\'argent, des jeux de hasard, du blackjack, du poker ou une salle d\'opération, ou quelque chose d\'autre que vous êtes, vous êtes au rhénium. compter pour , vous \' ll règle picoter de sélection numéro atomique 85 Skycrown . C\'est important pour s\'assurer que vous obteniez vos fonds et ne pas perdre de fonds en raison des limites du mode de paiement.</p>\r\n<img src= \"https://images.unsplash.com/photo-1566563255308-753861417000?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MzJ8fG9ubGluZSUyMGNhc2lub3xlbnwwfHwwfHx8MA%3D%3D\" width=\"374\">\r\n<p>Cette gamme offre flexibilité adaptée aux joueurs, vous permettant de gérer les paiements à votre façon,  couvrant Bitcoin et d\'autres méthodes locales . La plateforme politique, le programme d\'armement et le programme politique sont animés par environ 300 jeux et plus, proposés par RealTime Gaming (RTG) et Visionary iGaming pour Live. option . Les sûrs marque jeter axerophtol dédié canal avec un soutien 24h/24 et 7j/7 et des réponses quasi instantanées. Jeu conscient est vital, parce que les résultats sont aléatoires. Une considération critique à prendre en compte lors du choix un casino virtuel a un rapport avec la promptitude plus règles de versement de ses bonus. Nous accordons des notes élevées aux casinos en ligne les plus fiables qui offrent des bonus généreux et des promotions continues. matériel . En fin de compte, se remettre d\'une perte au jeu demande de la patience. La guérison exige du temps et de la patience. En conclusion, rebondir signifie être patient. Finalement, la guérison dépend de la patience. Enfin, la guérison a besoin de temps et de calme. Ryan a presque 20 ans d\'expérience dans l\'industrie du jeu, travaillant directement comme opérateur. tir avec environ du Royaume-Uni de Grande-Bretagne et d\'Irlande du Nord \' ohm réciproque presque reconnu escroc , admettre 888 , estimer supérieur et Boyle fun . Personnes occupées Utilisent des tablettes ou des PC. véritable casino de jeux de hasard pari jurer sur aléatoire problème générateur ( RNG ) sinon . Features like Lightning line roulette go multiplier astir à 500x pour heighten turmoil .</p>\r\n<p>Bienvenue à vitamine A voyage le êtres humains des casino . Ces versions numériques des machines à sous traditionnelles, classiques, rétro et physiques offrent commodité, variété et la possibilité de gains importants, ce qui en fait un format très apprécié des joueurs occasionnels et non professionnels. sérieux utilisateurs. porter Associate en soins infirmiers révélateur recevoir proposer comprendre de l\'essence pour quoi que ce soit casino indium le Royaume-Uni de Grande-Bretagne et d\'Irlande du Nord . Casinos virtuels proposent des offres de bienvenue, comme des tours gratuits. Il mesure la fraction des fonds qu\'un jeu restitue aux joueurs sur le long terme. L\'interface et la navigation sont importantes  pour découvrir des jeux et des offres  efficacement et clairement . Pour quelques personnes, ils ont été le début de grandes victoires et plus de temps sur les jeux. Pour un autre ensemble, jouer sans consulter les règles a causé des jackpots perdus. Ce qui compte le plus, c\'est savoir faire la différence, c\'est comprendre comment distinguer, c\'est voir clairement la différence, c\'est être capable de les différencier, c\'est apprendre à repérer la différence, c\'est savoir comment les séparer, c\'est reconnaître lequel est lequel, c\'est découvrir la vérité, c\'est apprendre à identifier chacun, c\'est réaliser comment les distinguer. Lorsqu\'on l\'aborde avec un peu de stratégie et de vigilance, lorsqu\'on le traite avec stratégie et attention, lorsqu\'on l\'utilise avec réflexion et vigilance, lorsqu\'on le gère de manière stratégique et attentive, lorsqu\'on l\'aborde avec une planification minutieuse, lorsqu\'on l\'utilise avec un plan et une vigilance, lorsqu\'on le considère avec réflexion, lorsqu\'on l\'applique avec intelligence, lorsqu\'on le traite avec stratégie et attention.ces récompenses peuvent réellement booster votre jeu et transformer chaque partie en une meilleure session. là-bas, vous pénurie pour fournir informations internes correspondant votre décrire, courriel en ligne s\'adresser à, téléphone numéro de téléphone, force adresse informatique , voir de naissance , favori à jour .</p>\r\n<p>technologie de l\'information \' mho d\'importance de se souvenir que lorsque technologie de l\'information éjaculer pour rançon jimmy numéro atomique 85 le sommet en ligne tirages au sort casino , exclusivement voile atelier monétaire coûtent éligibles pour rachat . Attendez : attendez que la situation se calme. Les sites varient dans leur approche des jeux courts aux jeux longs et aux tables. En conclusion, les casinos en direct apportent du réalisme aux jeux d\'argent en ligne, les jeux avec croupier amènent les casinos sur votre écran, le jeu en direct allie confort et authenticité, les tables diffusées en streaming sont l\'avenir du iGaming, le jeu interactif renforce l\'immersion, les jeux d\'argent en temps réel augmentent l\'excitation, l\'action des casinos en direct change tout. J\'ai fermé le site, j\'ai appelé pour manger et j\'ai réalisé que j\'avais obtenu pas exclusivement de l\'argent, avec cette montée d\'adrénaline d\'un vrai casino sans quitter la maison. Que vous soyez un joueur chevronné ou un nouveau venu curieux, le monde des casinos en ligne a quelque chose pour tous les goûts. Avec l\'essor des casinos en ligne dans les années 1990, ces derniers sont devenus plus accessibles. L\'essor des casinos en ligne dans les années 1990 a entraîné une large diffusion des jeux. Grâce à la croissance des casinos en ligne dans les années 1990, un plus grand nombre de personnes y ont eu accès. L\'émergence des casinos en ligne dans les années 1990 a favorisé l\'expansion des machines à sous vidéo. À partir des années 1990, avec l\'apparition des casinos en ligne, les machines à sous vidéo ont gagné en popularité. technologie de l\'information a également et bear play . absoudre tourbillonner testament soutenir x1 parier essentiel , gagner ce unité du presque transparent poser la question pouce le Royaume-Uni épicerie . Nos options ne sont pas non plus limitées à un seul sport.</p>\r\n<img src= \"https://tse2.mm.bing.net/th/id/OIP.B8paLpzo2Y_YS7WMDPYUYgAAAA?r=0&pid=Api\" width=\"273\">\r\n<p>En fin de compte, nous évaluons leurs primes et leurs programmes promotionnels, ainsi que leurs méthodes de paiement. agissant , jurer mètre , et sevrage médicamenteux restreindre . Pour se coucher la durée de vie bien fixé, nos expert portent revisité les parier obtenir de part et d\'autre Australien casino en ligne , aider vous opter ceux qui matériels respect , joyeux cotes de paris , réels allégresse . Les meilleurs jeux de hasard casinos seront comprendront optimiser et antiphoniques pour pèlerin et ordinateur jouet et seront comprendront abordables et conviviaux sur les deux. Comme les casinos traditionnels en dur, ces plateformes politiques sont intégrées à la maison, à la maison familiale et à la maison de campagne, garantissant ainsi leur netteté. long-run rentability pell all the same fall in role player the adventure to gains literal money . NJDGE vers Moderne T-shirt , MGCB État de l\'Indiana s\'arrête ) . La marque est une industrie absolue, une industrie florissante, pour un casino, un casino de jeux de hasard, pour ... à travers et inviolable croisement avec leur MGM renforcer . Triés par type pour la visibilité. Ils de même soutiennent mettre en arrière parier , machine à sous , et diffusion salamandre . Les meilleurs casino coûtent ceux qui donnent rapidement .</p>', 'Découvrir Les Plus Populaires Web Casinos De Roulette ✩ région française   Get Bonus Now', '', 'inherit', 'closed', 'closed', '', '610-revision-v1', '', '', '2025-11-25 05:55:08', '2025-11-25 05:55:08', '', 610, 'https://onlineincshop.com/?p=611', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(612, 9476, '2025-11-25 05:55:44', '2025-11-25 05:55:44', '\r\n<p>Réclamez une promotion à la fois par programme. En fin de compte, Les avancées façonneront la prochaine ère. Plusieurs casinos en ligne aux États-Unis ont déployé des récompenses avec cashback pour les nouveaux arrivants en plus des offres traditionnelles. Vous devriez également considérer thèmes de jeu et fonctions vous favorisez. Ce ne sont pas des points mineurs parce que jouer dans les casinos en ligne comporte un risque d\'argent. Jeux de société comme le poker présentent de bons taux de redistribution, surtout avec une stratégie optimale. Machines à sous à faible variance accordent de petits gains mais plus fréquemment, bonnes pour les joueurs prudents. Parieurs décider selon leurs propres conditions s\'il faut réclamer un bonus d\'inscription ou refuser ; dans tous les cas, c\'est un faible risque coup d\'envoi chez un nouvel opérateur, et beaucoup d\'utilisateurs bénéficient de ces cadeaux sans risquer de fonds. En période d\'anxiété, ils essaient de parier. Des sociétés de jeux d\'argent de premier plan entrent sur davantage de marchés sur le marché américain.</p>\r\n<h3>Meilleur Casino Numérique pour Argent réel</h3>\r\n<p>Les plateformes varient en termes de ce qu\'ils proposent — machines à sous, jeux courts, expériences plus longues ou jeux de table. Ces casinos virtuels sont généralement établis à Panama, et donner aux joueurs un gameplay de haute qualité. On dirait un premier pas, comme si on vous offrait un essai gratuit pour jouer aux jeux que vous vouloir. Négliger les règles de promotion entraîne des problèmes. Néanmoins, divers organismes de délivrance de licences effectuent des audits périodiques et ont des processus équitables de résolution des litiges. iOS et Android testés pour moins de plantages. L\'une des différences les plus notables est la vitesse opérationnelle. Informations propres et actuelles maintient l\'équité et guide des appels plus intelligents. Le principal avantage est le temps de jeu prolongé, une valeur promotionnelle plus importante conduit à des sessions plus longues, qui augmente naturellement vos chances de gagner. Pour obtenir vos gains, vous devrez suivre les règles de jeu.</p>\r\n<h2>Première partie gratuite et découvrez les fonctionnalités</h2>\r\n<p>Faites attention aux changements de pays peut verrouiller <a href=\"https://dublin-bet.net\">Dublin Bet Casino</a> les comptes. Ce doit ainsi être certifié en conjonction avec supervisé  ... organisations. Certaines applications offrent également des récompenses exclusives dans l\'application, motivant l\'installation. Ce format optimisé tend à fournir plus raffinée et un parcours utilisateur plus engageant, particulièrement pour les joueurs débutants. Par conséquent, aucun tour n\'en reproduit un autre. En fin de compte, ce sont les joueurs qui décident d\'accepter un cadeau d\'inscription; c\'est un moyen à risque minimal de commencer sur une nouvelle plateforme.</p>\r\n<ul>\r\n<li>Smartphone Customers Receive Mega Deals With Ease On Any Platform.</li>\r\n<li>Téléphone Portable Joueurs Essayer Des Offres Sans Dépôt Avec Facilité En Utilisant Tous Les Appareils.</li>\r\n<li>Mobile Utilisateurs ACCÉDER Des Récompenses Sans Problèmes Sur Chaque Gadget.</li>\r\n<li>Opérateurs Certifiés Garantissent Des Conditions Transparentes Progressistes.</li>\r\n<li>Tablette Joueurs Explorer Démarreur Promotions Avec Facilité Sur Toute Plateforme.</li>\r\n<li>Téléphone Portable Utilisateurs Expérimenter Avec Facilité Vitesse À Travers Chaque Gadget.</li>\r\n<li>Fournisseurs Réglementés Assurent Conditions De Jackpot Crypto Honnête.</li>\r\n</ul>\r\n<p>Jackpots progressifs collecte de contributions auprès de l\'ensemble du réseau, menant à des gains massifs. Avec l\'adoption du mobile, les jeux d\'argent numériques se sont développés. Certains plateformes numériques hébergent des jeu de casino interactif qui permettent aux participants d\'jouer avec de vrais croupiers via vidéo en temps réel. À quoi s\'attendre de offres d\'inscription gratuite couvrir exigences KYC, listes de jeux autorisés, WR, plafonds de mise et dates d\'expiration. Jeu discipliné garder le plaisir de jouer, comme utiliser des limites de temps. Les options d\'assistance sont cruciales. Les casinos de confiance offrent une assistance constante. Ceci peut se faire par chat en direct, e-mail ou téléphone. Une rumeur répétée est que tous les jeux sont conçus pour perdre. Il peut s\'agir d\'une préférence stylistique, tandis que d\'autres fois, elles peuvent révéler une faiblesse réelle du service. Si vous aimez les machines à sous ou que vous fassiez des paris à la table de roulette, vous le faites probablement en utilisant l\'un ou l\'autre une application de casino ou un navigateur. Vérifiez les pourcentages de jeu pour maximiser la progression. Ces offres à augmenter les inscriptions et permettent d\'essayer machines à sous et titres de casino en toute sécurité.</p>\r\n<p>Cela donne aux joueurs un sentiment trompeur de contrôle, où les joueurs misent plus lourdement en pensant qu\'il s\'agit d\'une promotion et non d\'argent réel, avant de réaliser que les pertes sont réelles. Dans le cadre de ces offres, les tours gratuits viennent souvent avec une valeur de pièce définie, et tout paiement ont tendance à être restreints. Ces modèles basés sur Internet de appareils de paris traditionnelles offrent simplicité, gamme et probabilité de paiements importants, ce qui en fait un option préférée parmi les joueurs décontractés et joueurs professionnels. L\'essentiel est, les appareils portables ont élargi la portée des casinos. Pour obtenir un cadeau d\'inscription, créez un compte et activez l\'offre selon le guide.  Faites correspondre l\'IP et les documents   pour conserver l\'éligibilité .</p>\r\n<h2>Paiement Systèmes au sein des Meilleurs Options à Stake Casino destiné à Clients Américains</h2>\r\n<p>De plus, activez les notifications et fonctions d\'aide pour maintenir la discipline. La sélection de jeux doit inclure une portefeuille riche de jeux les mieux notés des studios renommés comme Evolution. Niveau de risque contrôle la fréquence des prix, une volatilité moyenne équilibre les paiements. Les joueurs bénéficient d\'une disponibilité constante, depuis n\'importe quel endroit. Choisissez une expérience utilisateur claire pour le live pour améliorer les résultats. D\'autres préfèrent le frisson au confort. Lors de la comparaison des options, la plupart des utilisateurs réfléchissent s\'il faut jouer en ligne ou hors ligne. Les remboursements sont généralement sous forme de crédits bonus et non d\'espèces. Un certain nombre de casinos coopèrent avec des services bancaires tiers, rendre la clarté sur la connaissance du client (KYC) et la vitesse de retrait essentielle  Garantir des opérations financières sans problème .</p>\r\n<p>New York représente un opportunité majeur pour les casinos en ligne, mais l\'État révise toujours une approbation légale pour le rendre réglementé. De nombreux joueurs recherchent des sensations fortes, ce qui augmente le temps de jeu. Applications de paris fournissent tous les jeux aux paris sportifs, pareil que sites traditionnels. Vérifier la compatibilité de l\'appareil sur votre navigateur. Grands lots FS sont distribués au compte-gouttes par lots pour maintenir la cadence de session. Dans tous les cas, c\'est une excellente occasion de commencer à jouer à un nouveau casino, un nouveau site de jeu, une nouvelle plateforme de jeu, un nouvel opérateur, un casino moderne, un casino en ligne ou un site de casino. Les réglementations varient d\'un endroit à l\'autre, mais des opérateurs fiables agir dans le cadre de leurs lois comme requis. Une variance élevée ou faible est importante. Contrôles financiers vérifient la fiabilité des politiques de LBC et localisent les défauts. Fixer un montant d\'argent risquer et les limites pour minimiser les pertes. Données historiques : Historiques des confrontations, divisions domicile/extérieur, modèles de notation plus d\'autres tendances sont des références précieuses.</p>\r\n<ul>\r\n<li>Utilisateurs Ont La Possibilité De Expérimenter Promotions Bonus Pour Avoir Invité Des Amis.</li>\r\n<li>Latest Casino Betway Gives Free Demo Activities Right Now.</li>\r\n<li>Entreprises Autorisés Assurent Des Règles Transparentes Et Des Politiques Protégées.</li>\r\n<li>Joueurs Expérimentez Rapides Dépôts Avec Encaissements Via Casino Cloudbet De Confiance Aujourd\'Hui.</li>\r\n<li>Tablette Joueurs ACCÉDER Des Tours Gratuits Facilement Sur Tous Les Équipements.</li>\r\n<li>Opérateurs Certifiés Fournissent Sûrs Politiques De Grande Victoire.</li>\r\n</ul>\r\n<p>Technologies de nouvelle génération changent le paysage. Au casino d\'Aarhus, vous pouvez profiter aux jeux de casino traditionnels tels que la roulette française, le blackjack de table et le Texas Hold\'em. Les joueurs devraient trouver nombreuses méthodes de dépôt et de retrait telles que Mastercard. Pour résumer, la sécurité et la protection des données sont essentielles dans les casinos en ligne. Notre site est à titre informatif nous ne collectons pas d\'argent du public. Bien que cela puisse ne pas déranger les joueurs occasionnels, ceux qui jouent à des jeux en temps réel ou des offres à échéance pourrait trouver le gameplay sur navigateur irritant. Un autre point clé concerne les méthodes bancaires. Les sites de qualité offrent des outils de dépôt et de retrait flexibles. Des dépôts par carte aux portefeuilles en ligne et aux banques. Pourtant, une telle variété peut sembler écrasant pour certains utilisateurs ou même écrasant pour les nouveaux joueurs.</p>\r\n<p>Quand il s\'agit de machines à sous à un penny, elles présentent la dénomination minimale disponible, seulement un centime par tour. Quel que soit le casino que vous sélectionnez, examinez d\'abord les petits caractères pour éviter les pièges et maximiser la valeur. Vérifier l\'éligibilité du pays avant l\'activation toute offre. En parlant de machines à sous à un penny, elles fournissent la plus petite dénomination trouvée, la plupart du temps un centime par tour. Analyser les listes restreintes à l\'étranger. Plateformes de paris en ligne étaient à mes yeux semblable à un film cinématographique — stimulant observer, mais pas important entrer. Budget clair maintient la discipline et améliore le plaisir à long terme.</p>\r\n<img src= \"https://tse1.mm.bing.net/th/id/OIP.P06px6_aIaPHNpdOgdB4CQAAAA?r=0&pid=Api\" width=\"286\">\r\n<p>La Grande-Bretagne propose des systèmes d\'auto-exclusion. Chaque récompense iGaming est essentiellement un hameçon accordé par les casinos numériques attirer des membres commencer à jouer, ajouter de l\'argent, et continuer à jouer — mais ce n\'est pas purement de « l\'argent gratuit ». Lorsque vous décidez de ce qui est suffisant, considérez les avis comme un outil de filtrage. Tours d\'inscription sont utilisables sur les machines à sous, permettant aux utilisateurs faire tourner les rouleaux sans frais et collecter des gains ; vous verrez 5 à 500 tours, parfois le site fixe une valeur de mise prédéfinie, et les paiements sont accompagnés WR avant le retrait. Pas de cartes mixtes pour la conformité. Références ADR enregistrées pour l\'escalade. Si la réponse est non, évitez de le poursuivre. Divisez vos gains en tranches pour rester discipliné.</p>\r\n<p>L\'une des manières les plus efficaces de maximiser le temps de jeu est d\'établir un plan avant de commencer. Ils sont loués pour des visuels immersifs, un gameplay fluide, un RTP audité. Chaque type de bonus a des règles d\'échange distinctes et peut nécessiter d\'un coupon. De nombreux sites proposent des journaux de session et des statistiques, permettant aux utilisateurs d\'analyser les modèles et tester des stratégies alternatives. Si le jeu rapide, le design élégant et les fonctions mobiles sont votre préoccupation, les applications battent les navigateurs. Les icônes sur les rouleaux décident des gains. Plafonds de retrait limiter les paiements des bonus; vérifier le plafond à l\'avance.</p>', 'Bonus Sans Dépôt Sultanbet 🎰 toute la France   🎉', '', 'publish', 'closed', 'open', '', 'bonus-sans-depot-sultanbet-%f0%9f%8e%b0-toute-la-france-%f0%9f%8e%89', '', '', '2025-11-25 05:55:44', '2025-11-25 05:55:44', '', 0, 'https://onlineincshop.com/?p=612', 0, 'post', '', 0),
(613, 9476, '2025-11-25 05:55:44', '2025-11-25 05:55:44', '\r\n<p>Réclamez une promotion à la fois par programme. En fin de compte, Les avancées façonneront la prochaine ère. Plusieurs casinos en ligne aux États-Unis ont déployé des récompenses avec cashback pour les nouveaux arrivants en plus des offres traditionnelles. Vous devriez également considérer thèmes de jeu et fonctions vous favorisez. Ce ne sont pas des points mineurs parce que jouer dans les casinos en ligne comporte un risque d\'argent. Jeux de société comme le poker présentent de bons taux de redistribution, surtout avec une stratégie optimale. Machines à sous à faible variance accordent de petits gains mais plus fréquemment, bonnes pour les joueurs prudents. Parieurs décider selon leurs propres conditions s\'il faut réclamer un bonus d\'inscription ou refuser ; dans tous les cas, c\'est un faible risque coup d\'envoi chez un nouvel opérateur, et beaucoup d\'utilisateurs bénéficient de ces cadeaux sans risquer de fonds. En période d\'anxiété, ils essaient de parier. Des sociétés de jeux d\'argent de premier plan entrent sur davantage de marchés sur le marché américain.</p>\r\n<h3>Meilleur Casino Numérique pour Argent réel</h3>\r\n<p>Les plateformes varient en termes de ce qu\'ils proposent — machines à sous, jeux courts, expériences plus longues ou jeux de table. Ces casinos virtuels sont généralement établis à Panama, et donner aux joueurs un gameplay de haute qualité. On dirait un premier pas, comme si on vous offrait un essai gratuit pour jouer aux jeux que vous vouloir. Négliger les règles de promotion entraîne des problèmes. Néanmoins, divers organismes de délivrance de licences effectuent des audits périodiques et ont des processus équitables de résolution des litiges. iOS et Android testés pour moins de plantages. L\'une des différences les plus notables est la vitesse opérationnelle. Informations propres et actuelles maintient l\'équité et guide des appels plus intelligents. Le principal avantage est le temps de jeu prolongé, une valeur promotionnelle plus importante conduit à des sessions plus longues, qui augmente naturellement vos chances de gagner. Pour obtenir vos gains, vous devrez suivre les règles de jeu.</p>\r\n<h2>Première partie gratuite et découvrez les fonctionnalités</h2>\r\n<p>Faites attention aux changements de pays peut verrouiller <a href=\"https://dublin-bet.net\">Dublin Bet Casino</a> les comptes. Ce doit ainsi être certifié en conjonction avec supervisé  ... organisations. Certaines applications offrent également des récompenses exclusives dans l\'application, motivant l\'installation. Ce format optimisé tend à fournir plus raffinée et un parcours utilisateur plus engageant, particulièrement pour les joueurs débutants. Par conséquent, aucun tour n\'en reproduit un autre. En fin de compte, ce sont les joueurs qui décident d\'accepter un cadeau d\'inscription; c\'est un moyen à risque minimal de commencer sur une nouvelle plateforme.</p>\r\n<ul>\r\n<li>Smartphone Customers Receive Mega Deals With Ease On Any Platform.</li>\r\n<li>Téléphone Portable Joueurs Essayer Des Offres Sans Dépôt Avec Facilité En Utilisant Tous Les Appareils.</li>\r\n<li>Mobile Utilisateurs ACCÉDER Des Récompenses Sans Problèmes Sur Chaque Gadget.</li>\r\n<li>Opérateurs Certifiés Garantissent Des Conditions Transparentes Progressistes.</li>\r\n<li>Tablette Joueurs Explorer Démarreur Promotions Avec Facilité Sur Toute Plateforme.</li>\r\n<li>Téléphone Portable Utilisateurs Expérimenter Avec Facilité Vitesse À Travers Chaque Gadget.</li>\r\n<li>Fournisseurs Réglementés Assurent Conditions De Jackpot Crypto Honnête.</li>\r\n</ul>\r\n<p>Jackpots progressifs collecte de contributions auprès de l\'ensemble du réseau, menant à des gains massifs. Avec l\'adoption du mobile, les jeux d\'argent numériques se sont développés. Certains plateformes numériques hébergent des jeu de casino interactif qui permettent aux participants d\'jouer avec de vrais croupiers via vidéo en temps réel. À quoi s\'attendre de offres d\'inscription gratuite couvrir exigences KYC, listes de jeux autorisés, WR, plafonds de mise et dates d\'expiration. Jeu discipliné garder le plaisir de jouer, comme utiliser des limites de temps. Les options d\'assistance sont cruciales. Les casinos de confiance offrent une assistance constante. Ceci peut se faire par chat en direct, e-mail ou téléphone. Une rumeur répétée est que tous les jeux sont conçus pour perdre. Il peut s\'agir d\'une préférence stylistique, tandis que d\'autres fois, elles peuvent révéler une faiblesse réelle du service. Si vous aimez les machines à sous ou que vous fassiez des paris à la table de roulette, vous le faites probablement en utilisant l\'un ou l\'autre une application de casino ou un navigateur. Vérifiez les pourcentages de jeu pour maximiser la progression. Ces offres à augmenter les inscriptions et permettent d\'essayer machines à sous et titres de casino en toute sécurité.</p>\r\n<p>Cela donne aux joueurs un sentiment trompeur de contrôle, où les joueurs misent plus lourdement en pensant qu\'il s\'agit d\'une promotion et non d\'argent réel, avant de réaliser que les pertes sont réelles. Dans le cadre de ces offres, les tours gratuits viennent souvent avec une valeur de pièce définie, et tout paiement ont tendance à être restreints. Ces modèles basés sur Internet de appareils de paris traditionnelles offrent simplicité, gamme et probabilité de paiements importants, ce qui en fait un option préférée parmi les joueurs décontractés et joueurs professionnels. L\'essentiel est, les appareils portables ont élargi la portée des casinos. Pour obtenir un cadeau d\'inscription, créez un compte et activez l\'offre selon le guide.  Faites correspondre l\'IP et les documents   pour conserver l\'éligibilité .</p>\r\n<h2>Paiement Systèmes au sein des Meilleurs Options à Stake Casino destiné à Clients Américains</h2>\r\n<p>De plus, activez les notifications et fonctions d\'aide pour maintenir la discipline. La sélection de jeux doit inclure une portefeuille riche de jeux les mieux notés des studios renommés comme Evolution. Niveau de risque contrôle la fréquence des prix, une volatilité moyenne équilibre les paiements. Les joueurs bénéficient d\'une disponibilité constante, depuis n\'importe quel endroit. Choisissez une expérience utilisateur claire pour le live pour améliorer les résultats. D\'autres préfèrent le frisson au confort. Lors de la comparaison des options, la plupart des utilisateurs réfléchissent s\'il faut jouer en ligne ou hors ligne. Les remboursements sont généralement sous forme de crédits bonus et non d\'espèces. Un certain nombre de casinos coopèrent avec des services bancaires tiers, rendre la clarté sur la connaissance du client (KYC) et la vitesse de retrait essentielle  Garantir des opérations financières sans problème .</p>\r\n<p>New York représente un opportunité majeur pour les casinos en ligne, mais l\'État révise toujours une approbation légale pour le rendre réglementé. De nombreux joueurs recherchent des sensations fortes, ce qui augmente le temps de jeu. Applications de paris fournissent tous les jeux aux paris sportifs, pareil que sites traditionnels. Vérifier la compatibilité de l\'appareil sur votre navigateur. Grands lots FS sont distribués au compte-gouttes par lots pour maintenir la cadence de session. Dans tous les cas, c\'est une excellente occasion de commencer à jouer à un nouveau casino, un nouveau site de jeu, une nouvelle plateforme de jeu, un nouvel opérateur, un casino moderne, un casino en ligne ou un site de casino. Les réglementations varient d\'un endroit à l\'autre, mais des opérateurs fiables agir dans le cadre de leurs lois comme requis. Une variance élevée ou faible est importante. Contrôles financiers vérifient la fiabilité des politiques de LBC et localisent les défauts. Fixer un montant d\'argent risquer et les limites pour minimiser les pertes. Données historiques : Historiques des confrontations, divisions domicile/extérieur, modèles de notation plus d\'autres tendances sont des références précieuses.</p>\r\n<ul>\r\n<li>Utilisateurs Ont La Possibilité De Expérimenter Promotions Bonus Pour Avoir Invité Des Amis.</li>\r\n<li>Latest Casino Betway Gives Free Demo Activities Right Now.</li>\r\n<li>Entreprises Autorisés Assurent Des Règles Transparentes Et Des Politiques Protégées.</li>\r\n<li>Joueurs Expérimentez Rapides Dépôts Avec Encaissements Via Casino Cloudbet De Confiance Aujourd\'Hui.</li>\r\n<li>Tablette Joueurs ACCÉDER Des Tours Gratuits Facilement Sur Tous Les Équipements.</li>\r\n<li>Opérateurs Certifiés Fournissent Sûrs Politiques De Grande Victoire.</li>\r\n</ul>\r\n<p>Technologies de nouvelle génération changent le paysage. Au casino d\'Aarhus, vous pouvez profiter aux jeux de casino traditionnels tels que la roulette française, le blackjack de table et le Texas Hold\'em. Les joueurs devraient trouver nombreuses méthodes de dépôt et de retrait telles que Mastercard. Pour résumer, la sécurité et la protection des données sont essentielles dans les casinos en ligne. Notre site est à titre informatif nous ne collectons pas d\'argent du public. Bien que cela puisse ne pas déranger les joueurs occasionnels, ceux qui jouent à des jeux en temps réel ou des offres à échéance pourrait trouver le gameplay sur navigateur irritant. Un autre point clé concerne les méthodes bancaires. Les sites de qualité offrent des outils de dépôt et de retrait flexibles. Des dépôts par carte aux portefeuilles en ligne et aux banques. Pourtant, une telle variété peut sembler écrasant pour certains utilisateurs ou même écrasant pour les nouveaux joueurs.</p>\r\n<p>Quand il s\'agit de machines à sous à un penny, elles présentent la dénomination minimale disponible, seulement un centime par tour. Quel que soit le casino que vous sélectionnez, examinez d\'abord les petits caractères pour éviter les pièges et maximiser la valeur. Vérifier l\'éligibilité du pays avant l\'activation toute offre. En parlant de machines à sous à un penny, elles fournissent la plus petite dénomination trouvée, la plupart du temps un centime par tour. Analyser les listes restreintes à l\'étranger. Plateformes de paris en ligne étaient à mes yeux semblable à un film cinématographique — stimulant observer, mais pas important entrer. Budget clair maintient la discipline et améliore le plaisir à long terme.</p>\r\n<img src= \"https://tse1.mm.bing.net/th/id/OIP.P06px6_aIaPHNpdOgdB4CQAAAA?r=0&pid=Api\" width=\"286\">\r\n<p>La Grande-Bretagne propose des systèmes d\'auto-exclusion. Chaque récompense iGaming est essentiellement un hameçon accordé par les casinos numériques attirer des membres commencer à jouer, ajouter de l\'argent, et continuer à jouer — mais ce n\'est pas purement de « l\'argent gratuit ». Lorsque vous décidez de ce qui est suffisant, considérez les avis comme un outil de filtrage. Tours d\'inscription sont utilisables sur les machines à sous, permettant aux utilisateurs faire tourner les rouleaux sans frais et collecter des gains ; vous verrez 5 à 500 tours, parfois le site fixe une valeur de mise prédéfinie, et les paiements sont accompagnés WR avant le retrait. Pas de cartes mixtes pour la conformité. Références ADR enregistrées pour l\'escalade. Si la réponse est non, évitez de le poursuivre. Divisez vos gains en tranches pour rester discipliné.</p>\r\n<p>L\'une des manières les plus efficaces de maximiser le temps de jeu est d\'établir un plan avant de commencer. Ils sont loués pour des visuels immersifs, un gameplay fluide, un RTP audité. Chaque type de bonus a des règles d\'échange distinctes et peut nécessiter d\'un coupon. De nombreux sites proposent des journaux de session et des statistiques, permettant aux utilisateurs d\'analyser les modèles et tester des stratégies alternatives. Si le jeu rapide, le design élégant et les fonctions mobiles sont votre préoccupation, les applications battent les navigateurs. Les icônes sur les rouleaux décident des gains. Plafonds de retrait limiter les paiements des bonus; vérifier le plafond à l\'avance.</p>', 'Bonus Sans Dépôt Sultanbet 🎰 toute la France   🎉', '', 'inherit', 'closed', 'closed', '', '612-revision-v1', '', '', '2025-11-25 05:55:44', '2025-11-25 05:55:44', '', 612, 'https://onlineincshop.com/?p=613', 0, 'revision', '', 0),
(614, 9476, '2025-11-25 05:56:07', '2025-11-25 05:56:07', '\r\n<p>Avslutningsvis, tokens gjør casinoer mer fleksible. Spillere mistenker kanskje belønninger er umulige å bruke. I motsetning til dette, nettspill er fortsatt i stor grad avhengig av bankkort eller tredjeparts gatewayer. Som en upartisk ressurs vi er ikke ansvarlige for tap pådratt på spillsider. Disse belønningssystemene vanligvis inneholde cashback-belønninger som belønner spilleren. Moderne kasinoer bruker SSL/TLS med brannmurbeskyttelse og ofte tofaktorautentisering. Selv om alle lisenser krever tilsyn, sikkerhetstiltakene for spillere kan variere avhengig av utstedende myndighet og lokale lover. Den natten Jeg tok med meg ikke bare på grunn av belønningen, og også fordi jeg hadde ruset av online spilling uten å overdrive.</p>\r\n<h2>Komplett Guide av Rulettspill Sannsynligheter</h2>\r\n<p>For noen mennesker, spilling er distraksjon. Spillerens returrate er en kjernefaktor i digitale casinoer. Som erfarne matched-bettere, vi mener vi bør dele viktige lærdommer vi har lært i begynnelsen. Hvis du opplever aktiviteten din fører til penger forhold eller jobbproblemer, kontakt rådgivere. Et prangende tall spiller ingen rolle hvis skjulte betingelser gjør bonusen vanskelig å bruke. Data er ryggraden i live-tipping. Det er vanlig å føle skuffelse. Fordel risikonivåer for å unngå blanding.</p>\r\n<h3>Kasino Spill pluss Spill Alternativer På Stake Sammenlignbar Nettsteder</h3>\r\n<p>Statusnivåer belønn hyppig spilling. Noen kampanjer ser ut som om de ikke krever innskudd men er en del av en velkomstpakke. Spesielt i hesteveddeløpsmarkeder, der store penger ankommer sent. Mange gamblere foretrekker gambling ansikt-til-ansikt. En komplett liste over spill som er tillatt, godkjent, autorisert, akseptert, gyldig, mulig, kvalifisert, tilgjengelig, for å bli spilt, brukt, nytt, gamblet, prøvd, testet, opplevd, deltatt i, gratis casinopenger uten innskudd, gratis casinopenger med innskuddsfrie kontantbelønninger, bonuspenger uten innskudd, casinobonuspenger, kampanjepenger, bonussaldo, bonussaldo, kan bli funnet, sjekket, sett, slått opp, oppdaget, lest, identifisert, i reglene, vilkårene, retningslinjene, forskriftene, kravene, instruksjonene, avtalen} til online casinoet. nettsted. Finne riktig britisk casinoside involverer mer enn bannere og bonuser. Gitt at en klient ønsker å delta i et lovlig iGaming-plattform koblet til med bookmaking-nettsted, det er livsviktig å lære formene av onboarding-tilbud er tilgjengelige, hvordan de fungerer, i tillegg til hvilken er ideell for din spillmetode.</p>\r\n<p>Når du undersøker casinoer, sjekk spillutviklerne deres. Det er derfor vi satte sammen en utvalg av casinoer uten registreringsbonus med sterk sikkerhet. Stå fast på 17 og høyere. Mange spillere tror gevinster forsvinner, men lisensierte nettsteder behandler utbetalinger. Avslutningsvis, å velge riktig spilleautomat forbedrer sjansene dine. Konklusjonen er enkel — praksisen med blind aksept av vilkår er over. Det finnes imidlertid en rekke jurisdiksjoner som forbyr tilgang til spillsider. Oppdag fantomkreditter for å beregne EV. Flere plattformer har live supportlinjer og heltidshjelpede disker, andre kan tilby support innen begrensede timer, avhengig av beliggenhet og bemanning. Med ett trykk, spillere kan vinne. Bonusutvalget dekker både matcher, prøveperioder og spinn.</p>\r\n<p>Global tilgang lar hvem som helst bli med. I live-markeder, hvert øyeblikk teller. Lisensiering og sikkerhet betyr at casinoet er regulert av en juridisk enhet og bruker personverntiltak for å holde deg trygg. Ansvar er begrenset av saldoen din akkurat da. Det virkelige formålet? Å trekke deg inn, få deg til å spille mer, og maksimere potensialet ditt til å bli værende og investere. Likevel er dette over tid, ikke per spinn. Operatører tilbyr kredittkort, som PayPal, for å sikre pålitelighet. Strategiske spillere les bonusvilkår før aktivering, for å beskytte bankrollen. Mange kasinoer kjører nå pågående programmer tilbyr poeng, cashback eller fordeler.</p>\r\n<h3>Beste Online rulett Nettsteder for Bærbar spilling</h3>\r\n<p>Logger på live-videoen, Jeg la merke til at jeg var deltar ved bordet i selskap med fem motstandere fra flere land. Overvåk utløp og planlegg økter for å fullføre i tide. Spillbelønninger gi tilbake en del av tapene. Når du har et klart bilde av nøyaktig hva et tilbud uten innskudd innebærer, vi bryte ned de typiske formene av bonuser uten innskudd. En lønnsom spillside internettbasert må tilby noen effektiv hjelpesenter avdeling, noen enorm område av spill, kombinert med en skjermet infrastruktur. Men det er fortsatt uregulert å spille bordspill og DFS i staten. Det tildeles vanligvis når du registrerer en konto og sett inn penger for første gang. Det føles som et sprang fremover, som om nettstedet gir deg en bonusmulighet å nyte spillene du elsker.</p>\r\n<p>Til syvende og sist, fremskritt vil forme den neste æraen. Den gratis  gambling tilbud fungerer som et forslag av et internett spillside som gir førstegangs og til og med tilbakevendende brukere en begrenset fordel fri for finansiering reell penger. VR/AR-teknologi tillater sanntidschatting, øker engasjement. Pålitelige plattformer inkluderer mobilbetalinger, Neteller, for risikofritt spill. Hva skiller de beste fra resten er forståelige krav. Velg troverdig tilsyn som MGA, UKGC eller Gibraltar for robuste standarder. Imidlertid er det menneskene disse sikkerhetstiltakene dekker sender inn forespørsler om sletting i henhold til personvernlover. Hjelpesenter må være tilgjengelig, gjennom supportskjemaer, for å hjelpe raskt.</p>\r\n<p>Seiersrekker få spillerne til å overvurdere evnene sine, noen ganger reduserer det forsiktigheten. Denne hastverket forsterker frykten for å gå glipp av noe og reduserer kontrollen over å forlate. Når det gjøres forsiktig, kan en casinobonus faktisk gi deg en solid fordel — ikke ved å sikre gevinster, men ved å utvide din aktive spilling og gi deg sjansen til å risikere intelligent uten å bruke mye av bankrollen din. Introduksjon bankroll utgjør en liten tildeling av penger plassert i din saldo som gjøre det mulig for deg å teste forskjellige spillalternativer på den valgte operatør. Haktende markeder gjør matching vanskelig ettersom prisene kan løpe vekk. Plattformutvikling er drevet av online tipping, skaper høyhastighetsplattformer.</p>\r\n<p>Det finnes en beskyttende pute i spill — du kan utforske nye spill eller prøve mer risikable innsatser takket være bonuskreditter. Disse spillene simulerer stemningen til et fysisk kasino og kan spilles på telefoner. Jackpoter gir en rus. Mens du spiller penny-automater eller større innsatser, flaks er alltid nødvendig å oppnå. Angi nedkjølingsperioder for å håndtere vaner. Lese anmeldelser og forstå verdien av dem. Spillere bør alltid bekrefte hvordan kundedetaljer lagres, om sterk krypteringsteknologi brukes, inkludert om eksterne enheter mottar den for reklame eller sikkerhetskontroller.</p>\r\n<ul>\r\n<li>Brukere Har Mulighet Til Tilgang Masonslots Casino Via App Akkurat Nå.</li>\r\n<li>Pålitelig Thed.Com Casino Leverer Uten Innskudd Bonuser Øyeblikkelig.</li>\r\n<li>Mobiltelefon Medlemmer Bruk Bonushjulet Med Letthet Via Hvilken Som Helst Enhet.</li>\r\n<li>Brukere Å Nyte Øyeblikkelige Betalinger Pluss Utbetalinger Denne Uken.</li>\r\n<li>Sertifisert Operatører Sikrer Sikker Retningslinjer For Nye Spill.</li>\r\n<li>Valider Din Profildetaljer. For Å Gjøre Dette Vil En Notat Bli Sendt Til Din Kontakt Eller Postkasse. I Det Første Tilfellet Må Du Sende Inn En Digital Kode I Det Personlig Konto. I Det Andre Tilfellet Vil En Melding Med En Spesiell Lenke Bli Levert Til Din E-Post. Hvis Du Tapper På Den, Vil Du Fortsette Med En Bekreftelse.</li>\r\n<li>Smarttelefon Spillere Delta Tabeller Med Letthet Via Hvilken Som Helst Enhet.</li>\r\n</ul>\r\n<p>Likevel, merke at at disse kampanjene inkluderer definerte omsetningsbetingelser samt maksimale utbetalingsbegrensninger. I år tilbyr amerikanske casinoer et uovertruffent mangfold av velkomstavtaler. Du kan prøve berømte titler som Deluxe Book of Ra, Lucky Lady\'s Charm, Royal Reels og jackpot maskin Poseidon Reels. Selv om, avtaler kan friste utover grensene, hvis betingelsene er uklare. Turistsektorer forbedres via arrangementer, gjennom luksuspakker. Når du misbruker kampanjer, kan du tape penger. «Normal» er for kvalifiserende spill. Denne guiden fremhever nøkkelområdene spillere møter i lovlige nettkasinoer. UI/UX definerer komfort, så velg enkle brukergrensesnitt og native apper for mobiløkter. VIP-nivåer aktiver prioriterte uttak og skreddersydde kampanjer.</p>\r\n<h3>VIP Fordeler</h3>\r\n<p>Avsluttende tanker, fordeler forbedrer spillertilfredsheten, men forsiktighet er nødvendig. UKGC-regulerte nettsteder må tilby denne beskyttelsen. Hvis de mangler, bryter operatøren loven. Nylige ankomster på spillnettstedet som ikke tidligere har logget inn, kan motta slike spesialtilbud. På hvilke måter kan du bedømme et casinos pålitelighet?   Mange plattformer tilbyr også live-vertsøkter, der casinoeksperter opererer spill i øyeblikkelig spill, noe som legger til et personlig stemning til moroa. Dette ettertraktede tilbudet passer australske spillere som ønsker risikofrie prøveperioder og fortsatt innkasserer ekte gevinster. Digitale sikkerhetsmurer sikrer kasinoinfrastruktur, forbedrer pålitelighet. Å lære om risikonivåer forbedrer opplevelsen din.</p>\r\n<h3>Forslag for å identifisere første digitalt spillsider</h3>\r\n<p>Det visuelle fremstod som full av farger, lyddesignet fremstod som tematisk, og jeg fant meg selv ekte nyte virkelig prosessen, uten å bry seg om pengepremier. Skadeforebygging forsterkes med intervensjonsverktøy, ved å blokkere tilgang om nødvendig. Digitale spillsider tilbyr verktøy for ansvarlig spilling, spilletidspåminnelser. Betalingsalternativer bør inkludere raske uttak via e-lommebøker. Med 96 % husavkastning, betyr systemet returnerer 96 dollar i gjennomsnitt 100 dollar spilt. Forstå risikokurver for å sette forventninger. Administrer bankrollen din og unngå å la kampanjesaldoen friste til usikker tipping. Effekt av kampanjer på omsetningsvaner er betydelig i nettspill. Digitale hjul har blitt en av de mest topprangerte formene for internettspill, og fengsler millioner av spillere internasjonalt. Likevel, utfall avhenger av tilfeldigheter. Se for deg dette, x30 multiplikatoren på belønningen din krever 30 ganger 100 for å få tilgang til ekte penger.</p>\r\n<p>Mobilgambling styrket nettgambling. Nøkkelbegrensningen er omsetningskrav, indikerer du må satse en spesifikk verdi. Konvoluttmetode for å unngå jaging. Nybegynnere bør unngå forsikringsalternativet siden det nesten aldri hjelper. Det som startet som grunnleggende casinoversjon har vokst til et verdensomspennende fenomen. Bekreft landsdekkende tilgang da avtaler kan ekskludere regioner. Programvareleverandører er ryggraden i digitale kasinoer. På den annen side, RNG kontrollerer resultatene. Regler for gjenåpning for å holde seg informert. Disse tilsynsorganisasjonene sikrer vanligvis at spillstedene er ærlige, tilbyr lisensierte spill fra toppleverandører, og tilrettelegger pengeoverføringer uten noen problemer. I denne formen for tipping, hvert splittsekund er avgjørende.</p>\r\n<h3>Trenger du hjelp? — Vi har deg</h3>\r\n<p>Mer problematisk er det at spillere kan jage bonuser i det uendelige,  legge til kreditt bare for å aktivere neste kampanje eller mål. Noen lager bare videoautomater, mens andre fokuserer på poker. Blokkkjedetransaksjoner er transparente, uten unødvendige forsinkelser. Spill på middels nivå slår sammen vanlige og sjeldne utbetalinger, et trygt utgangspunkt. Premium bettingsider optimaliserer spillene sine, slik at ingenting mangler. Personvern tiltrekker seg mange spillere. De blir levert gratis, som betyr at brukeren ikke engang trenger å gjøre et kontantinnskudd. Spilling på farten fjernet lokasjonsbarrierer.</p>\r\n<h3>Vinn med Strømming Spilleautomatsystemer Med demomodus</h3>\r\n<p>Hvis lisensen kommer fra en respektert regulator som UKGC eller MGA, er det betryggende. Registrer WR-fremgang for å lære mønstre. Noen mobilcasinoer tilbyr kun-mobil-belønninger, belønner appinstallasjoner. Selv om alle lisenser krever tilsyn, beskyttelse av spillerrettigheter kan variere betydelig basert på nasjonale forskrifter og lisensorgan. Tilbud kan virke gratis men tilhører velkomstpakken. Dette skyldes forbedret internettinfrastruktur, nettverkssystemer, tilkobling, online-tilgang, digital ryggrad, webteknologi og forbedringer innen teknologi, programvare, plattformer, verktøy, systemer, digitale løsninger som har muliggjort og støttet nye former for pengespill. Verifisering av utfall overvåkes av AI-verktøy, holde spillingen rettferdig. Livespill på farten fjerner lokasjonsbegrensninger. Egentlig, avkastning er proporsjonal med risiko.</p>\r\n<img src= \"https://images.unsplash.com/photo-1504460362810-61ec3eaee927?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NDB8fG9ubGluZSUyMGNhc2lub3xlbnwwfHwwfHx8MA%3D%3D\" width=\"243\">\r\n<p>Bestem deg for en total bankroll pluss taps- og tidsgrenser, og overhold dem uansett utfall. Virtuelle hjul opererer ved hjelp av en tallmotor, som sikrer at hvert spinn er fullstendig tilfeldig og rettferdig. De gir spillere tilgang til en blanding av spill og utforske funksjoner uten store innskudd. Hold innsatsene innenfor grensene gjennom gjennomspilling for å beskytte gevinstene dine. Spill med høy avkastning gir spillerne bedre sjanser, men spill med lav rente reduserer sjansene. Velg bort salg for å kutte sporing. Spilltjenester for kryptovaluta gir nesten umiddelbar banktjenester, reduserer ventetider. Slike funksjoner inkluderer, berørings-ID-tilgang, bonusvarsler i sanntid, og forhåndsvisninger av offline-spill er en oppadgående trend. Disse belønningssystemene kan tilby gratisspinn som øker midlene. Gratisspinn og kreditter øker spill, driver <a href=\"https://wildz-norge.com\">wildznorge</a> til mer spilling. Finansieringer forbedrer bekvemmeligheten: bankoverføringer bør støttes.</p>\r\n<p>Denne er grei. Kasinomenyer er tilpasset mobilbruk, sikrer smidig navigasjon. Dette har introdusert nye segmenter for virtuelle spillleverandører og innledet en ny segment av kunder. Det riktige valget avhenger av midlene dine og mål. Du kan bruke kampanjemidler i spilleautomattitler og klassiske kortspill. Dette sikrer integriteten til spillernes brukerkontoer, personopplysninger og transaksjoner. Velg plattformer med tydelig oppførte støttealternativer inkludert direktechat, e-poststøtte og kontaktpunkter for sosiale nettverk. Spør alltid: «Ville jeg spilt dette hvis det ikke fantes noen kampanje?». Manglende sporing av spill er skadelig.</p>\r\n<p>Velg verditette spill for å forbedre odds. Anerkjente studioer som NetEnt er lisensiert over hele verden.  Merk KYC på premier  forhåndspåmelding . Selv om spilleautomater i stor grad er basert på sjanse, kan noen få strategier øke kontrollen. Når du spiller på et britisk-lisensiert casino, er du støttet av strenge statlige lover. Internett-tipping er lovlig i tjueåtte land og overvåket av reguleringsbyråer som tillater spillselskaper. Når du vurderer hvor mye du trenger å vite, behandle anmeldelser som et filter. E-spillarenaer er tilgjengelige døgnet rundt, noe som betyr at du kan prøve lykken når du er klar. Selv om det presenterer full tilgang til alle funksjoner, det kan generere uhåndterlig navigasjon eller overfylte skjermer på mobile enheter.</p>\r\n<h3>Personlige kampanjer</h3>\r\n<p>Aktiveringstrinnene er like på tvers av casinoer og registreringsbonuser som ofte krever flest trinn. Disse restriksjonene er potensielt et problem å søke etter et mer anerkjent nettsted. Innen 2025 tester amerikanske toppcasinoer innskuddsfrie tilbud for å øke registreringer. Større innsatser kan gi større jackpoter, men penny slots kan være givende for budsjettspillere. Om bare noen få år brukere vil legge merke til bevegelsesbasert tipping. Velg testet programvare for å sikre tilfeldighet.</p>', 'Bursdagsbonus Casino • NO 🎡', '', 'publish', 'closed', 'open', '', 'bursdagsbonus-casino-no-%f0%9f%8e%a1', '', '', '2025-11-25 05:56:07', '2025-11-25 05:56:07', '', 0, 'https://onlineincshop.com/?p=614', 0, 'post', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(615, 9476, '2025-11-25 05:56:07', '2025-11-25 05:56:07', '\r\n<p>Avslutningsvis, tokens gjør casinoer mer fleksible. Spillere mistenker kanskje belønninger er umulige å bruke. I motsetning til dette, nettspill er fortsatt i stor grad avhengig av bankkort eller tredjeparts gatewayer. Som en upartisk ressurs vi er ikke ansvarlige for tap pådratt på spillsider. Disse belønningssystemene vanligvis inneholde cashback-belønninger som belønner spilleren. Moderne kasinoer bruker SSL/TLS med brannmurbeskyttelse og ofte tofaktorautentisering. Selv om alle lisenser krever tilsyn, sikkerhetstiltakene for spillere kan variere avhengig av utstedende myndighet og lokale lover. Den natten Jeg tok med meg ikke bare på grunn av belønningen, og også fordi jeg hadde ruset av online spilling uten å overdrive.</p>\r\n<h2>Komplett Guide av Rulettspill Sannsynligheter</h2>\r\n<p>For noen mennesker, spilling er distraksjon. Spillerens returrate er en kjernefaktor i digitale casinoer. Som erfarne matched-bettere, vi mener vi bør dele viktige lærdommer vi har lært i begynnelsen. Hvis du opplever aktiviteten din fører til penger forhold eller jobbproblemer, kontakt rådgivere. Et prangende tall spiller ingen rolle hvis skjulte betingelser gjør bonusen vanskelig å bruke. Data er ryggraden i live-tipping. Det er vanlig å føle skuffelse. Fordel risikonivåer for å unngå blanding.</p>\r\n<h3>Kasino Spill pluss Spill Alternativer På Stake Sammenlignbar Nettsteder</h3>\r\n<p>Statusnivåer belønn hyppig spilling. Noen kampanjer ser ut som om de ikke krever innskudd men er en del av en velkomstpakke. Spesielt i hesteveddeløpsmarkeder, der store penger ankommer sent. Mange gamblere foretrekker gambling ansikt-til-ansikt. En komplett liste over spill som er tillatt, godkjent, autorisert, akseptert, gyldig, mulig, kvalifisert, tilgjengelig, for å bli spilt, brukt, nytt, gamblet, prøvd, testet, opplevd, deltatt i, gratis casinopenger uten innskudd, gratis casinopenger med innskuddsfrie kontantbelønninger, bonuspenger uten innskudd, casinobonuspenger, kampanjepenger, bonussaldo, bonussaldo, kan bli funnet, sjekket, sett, slått opp, oppdaget, lest, identifisert, i reglene, vilkårene, retningslinjene, forskriftene, kravene, instruksjonene, avtalen} til online casinoet. nettsted. Finne riktig britisk casinoside involverer mer enn bannere og bonuser. Gitt at en klient ønsker å delta i et lovlig iGaming-plattform koblet til med bookmaking-nettsted, det er livsviktig å lære formene av onboarding-tilbud er tilgjengelige, hvordan de fungerer, i tillegg til hvilken er ideell for din spillmetode.</p>\r\n<p>Når du undersøker casinoer, sjekk spillutviklerne deres. Det er derfor vi satte sammen en utvalg av casinoer uten registreringsbonus med sterk sikkerhet. Stå fast på 17 og høyere. Mange spillere tror gevinster forsvinner, men lisensierte nettsteder behandler utbetalinger. Avslutningsvis, å velge riktig spilleautomat forbedrer sjansene dine. Konklusjonen er enkel — praksisen med blind aksept av vilkår er over. Det finnes imidlertid en rekke jurisdiksjoner som forbyr tilgang til spillsider. Oppdag fantomkreditter for å beregne EV. Flere plattformer har live supportlinjer og heltidshjelpede disker, andre kan tilby support innen begrensede timer, avhengig av beliggenhet og bemanning. Med ett trykk, spillere kan vinne. Bonusutvalget dekker både matcher, prøveperioder og spinn.</p>\r\n<p>Global tilgang lar hvem som helst bli med. I live-markeder, hvert øyeblikk teller. Lisensiering og sikkerhet betyr at casinoet er regulert av en juridisk enhet og bruker personverntiltak for å holde deg trygg. Ansvar er begrenset av saldoen din akkurat da. Det virkelige formålet? Å trekke deg inn, få deg til å spille mer, og maksimere potensialet ditt til å bli værende og investere. Likevel er dette over tid, ikke per spinn. Operatører tilbyr kredittkort, som PayPal, for å sikre pålitelighet. Strategiske spillere les bonusvilkår før aktivering, for å beskytte bankrollen. Mange kasinoer kjører nå pågående programmer tilbyr poeng, cashback eller fordeler.</p>\r\n<h3>Beste Online rulett Nettsteder for Bærbar spilling</h3>\r\n<p>Logger på live-videoen, Jeg la merke til at jeg var deltar ved bordet i selskap med fem motstandere fra flere land. Overvåk utløp og planlegg økter for å fullføre i tide. Spillbelønninger gi tilbake en del av tapene. Når du har et klart bilde av nøyaktig hva et tilbud uten innskudd innebærer, vi bryte ned de typiske formene av bonuser uten innskudd. En lønnsom spillside internettbasert må tilby noen effektiv hjelpesenter avdeling, noen enorm område av spill, kombinert med en skjermet infrastruktur. Men det er fortsatt uregulert å spille bordspill og DFS i staten. Det tildeles vanligvis når du registrerer en konto og sett inn penger for første gang. Det føles som et sprang fremover, som om nettstedet gir deg en bonusmulighet å nyte spillene du elsker.</p>\r\n<p>Til syvende og sist, fremskritt vil forme den neste æraen. Den gratis  gambling tilbud fungerer som et forslag av et internett spillside som gir førstegangs og til og med tilbakevendende brukere en begrenset fordel fri for finansiering reell penger. VR/AR-teknologi tillater sanntidschatting, øker engasjement. Pålitelige plattformer inkluderer mobilbetalinger, Neteller, for risikofritt spill. Hva skiller de beste fra resten er forståelige krav. Velg troverdig tilsyn som MGA, UKGC eller Gibraltar for robuste standarder. Imidlertid er det menneskene disse sikkerhetstiltakene dekker sender inn forespørsler om sletting i henhold til personvernlover. Hjelpesenter må være tilgjengelig, gjennom supportskjemaer, for å hjelpe raskt.</p>\r\n<p>Seiersrekker få spillerne til å overvurdere evnene sine, noen ganger reduserer det forsiktigheten. Denne hastverket forsterker frykten for å gå glipp av noe og reduserer kontrollen over å forlate. Når det gjøres forsiktig, kan en casinobonus faktisk gi deg en solid fordel — ikke ved å sikre gevinster, men ved å utvide din aktive spilling og gi deg sjansen til å risikere intelligent uten å bruke mye av bankrollen din. Introduksjon bankroll utgjør en liten tildeling av penger plassert i din saldo som gjøre det mulig for deg å teste forskjellige spillalternativer på den valgte operatør. Haktende markeder gjør matching vanskelig ettersom prisene kan løpe vekk. Plattformutvikling er drevet av online tipping, skaper høyhastighetsplattformer.</p>\r\n<p>Det finnes en beskyttende pute i spill — du kan utforske nye spill eller prøve mer risikable innsatser takket være bonuskreditter. Disse spillene simulerer stemningen til et fysisk kasino og kan spilles på telefoner. Jackpoter gir en rus. Mens du spiller penny-automater eller større innsatser, flaks er alltid nødvendig å oppnå. Angi nedkjølingsperioder for å håndtere vaner. Lese anmeldelser og forstå verdien av dem. Spillere bør alltid bekrefte hvordan kundedetaljer lagres, om sterk krypteringsteknologi brukes, inkludert om eksterne enheter mottar den for reklame eller sikkerhetskontroller.</p>\r\n<ul>\r\n<li>Brukere Har Mulighet Til Tilgang Masonslots Casino Via App Akkurat Nå.</li>\r\n<li>Pålitelig Thed.Com Casino Leverer Uten Innskudd Bonuser Øyeblikkelig.</li>\r\n<li>Mobiltelefon Medlemmer Bruk Bonushjulet Med Letthet Via Hvilken Som Helst Enhet.</li>\r\n<li>Brukere Å Nyte Øyeblikkelige Betalinger Pluss Utbetalinger Denne Uken.</li>\r\n<li>Sertifisert Operatører Sikrer Sikker Retningslinjer For Nye Spill.</li>\r\n<li>Valider Din Profildetaljer. For Å Gjøre Dette Vil En Notat Bli Sendt Til Din Kontakt Eller Postkasse. I Det Første Tilfellet Må Du Sende Inn En Digital Kode I Det Personlig Konto. I Det Andre Tilfellet Vil En Melding Med En Spesiell Lenke Bli Levert Til Din E-Post. Hvis Du Tapper På Den, Vil Du Fortsette Med En Bekreftelse.</li>\r\n<li>Smarttelefon Spillere Delta Tabeller Med Letthet Via Hvilken Som Helst Enhet.</li>\r\n</ul>\r\n<p>Likevel, merke at at disse kampanjene inkluderer definerte omsetningsbetingelser samt maksimale utbetalingsbegrensninger. I år tilbyr amerikanske casinoer et uovertruffent mangfold av velkomstavtaler. Du kan prøve berømte titler som Deluxe Book of Ra, Lucky Lady\'s Charm, Royal Reels og jackpot maskin Poseidon Reels. Selv om, avtaler kan friste utover grensene, hvis betingelsene er uklare. Turistsektorer forbedres via arrangementer, gjennom luksuspakker. Når du misbruker kampanjer, kan du tape penger. «Normal» er for kvalifiserende spill. Denne guiden fremhever nøkkelområdene spillere møter i lovlige nettkasinoer. UI/UX definerer komfort, så velg enkle brukergrensesnitt og native apper for mobiløkter. VIP-nivåer aktiver prioriterte uttak og skreddersydde kampanjer.</p>\r\n<h3>VIP Fordeler</h3>\r\n<p>Avsluttende tanker, fordeler forbedrer spillertilfredsheten, men forsiktighet er nødvendig. UKGC-regulerte nettsteder må tilby denne beskyttelsen. Hvis de mangler, bryter operatøren loven. Nylige ankomster på spillnettstedet som ikke tidligere har logget inn, kan motta slike spesialtilbud. På hvilke måter kan du bedømme et casinos pålitelighet?   Mange plattformer tilbyr også live-vertsøkter, der casinoeksperter opererer spill i øyeblikkelig spill, noe som legger til et personlig stemning til moroa. Dette ettertraktede tilbudet passer australske spillere som ønsker risikofrie prøveperioder og fortsatt innkasserer ekte gevinster. Digitale sikkerhetsmurer sikrer kasinoinfrastruktur, forbedrer pålitelighet. Å lære om risikonivåer forbedrer opplevelsen din.</p>\r\n<h3>Forslag for å identifisere første digitalt spillsider</h3>\r\n<p>Det visuelle fremstod som full av farger, lyddesignet fremstod som tematisk, og jeg fant meg selv ekte nyte virkelig prosessen, uten å bry seg om pengepremier. Skadeforebygging forsterkes med intervensjonsverktøy, ved å blokkere tilgang om nødvendig. Digitale spillsider tilbyr verktøy for ansvarlig spilling, spilletidspåminnelser. Betalingsalternativer bør inkludere raske uttak via e-lommebøker. Med 96 % husavkastning, betyr systemet returnerer 96 dollar i gjennomsnitt 100 dollar spilt. Forstå risikokurver for å sette forventninger. Administrer bankrollen din og unngå å la kampanjesaldoen friste til usikker tipping. Effekt av kampanjer på omsetningsvaner er betydelig i nettspill. Digitale hjul har blitt en av de mest topprangerte formene for internettspill, og fengsler millioner av spillere internasjonalt. Likevel, utfall avhenger av tilfeldigheter. Se for deg dette, x30 multiplikatoren på belønningen din krever 30 ganger 100 for å få tilgang til ekte penger.</p>\r\n<p>Mobilgambling styrket nettgambling. Nøkkelbegrensningen er omsetningskrav, indikerer du må satse en spesifikk verdi. Konvoluttmetode for å unngå jaging. Nybegynnere bør unngå forsikringsalternativet siden det nesten aldri hjelper. Det som startet som grunnleggende casinoversjon har vokst til et verdensomspennende fenomen. Bekreft landsdekkende tilgang da avtaler kan ekskludere regioner. Programvareleverandører er ryggraden i digitale kasinoer. På den annen side, RNG kontrollerer resultatene. Regler for gjenåpning for å holde seg informert. Disse tilsynsorganisasjonene sikrer vanligvis at spillstedene er ærlige, tilbyr lisensierte spill fra toppleverandører, og tilrettelegger pengeoverføringer uten noen problemer. I denne formen for tipping, hvert splittsekund er avgjørende.</p>\r\n<h3>Trenger du hjelp? — Vi har deg</h3>\r\n<p>Mer problematisk er det at spillere kan jage bonuser i det uendelige,  legge til kreditt bare for å aktivere neste kampanje eller mål. Noen lager bare videoautomater, mens andre fokuserer på poker. Blokkkjedetransaksjoner er transparente, uten unødvendige forsinkelser. Spill på middels nivå slår sammen vanlige og sjeldne utbetalinger, et trygt utgangspunkt. Premium bettingsider optimaliserer spillene sine, slik at ingenting mangler. Personvern tiltrekker seg mange spillere. De blir levert gratis, som betyr at brukeren ikke engang trenger å gjøre et kontantinnskudd. Spilling på farten fjernet lokasjonsbarrierer.</p>\r\n<h3>Vinn med Strømming Spilleautomatsystemer Med demomodus</h3>\r\n<p>Hvis lisensen kommer fra en respektert regulator som UKGC eller MGA, er det betryggende. Registrer WR-fremgang for å lære mønstre. Noen mobilcasinoer tilbyr kun-mobil-belønninger, belønner appinstallasjoner. Selv om alle lisenser krever tilsyn, beskyttelse av spillerrettigheter kan variere betydelig basert på nasjonale forskrifter og lisensorgan. Tilbud kan virke gratis men tilhører velkomstpakken. Dette skyldes forbedret internettinfrastruktur, nettverkssystemer, tilkobling, online-tilgang, digital ryggrad, webteknologi og forbedringer innen teknologi, programvare, plattformer, verktøy, systemer, digitale løsninger som har muliggjort og støttet nye former for pengespill. Verifisering av utfall overvåkes av AI-verktøy, holde spillingen rettferdig. Livespill på farten fjerner lokasjonsbegrensninger. Egentlig, avkastning er proporsjonal med risiko.</p>\r\n<img src= \"https://images.unsplash.com/photo-1504460362810-61ec3eaee927?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NDB8fG9ubGluZSUyMGNhc2lub3xlbnwwfHwwfHx8MA%3D%3D\" width=\"243\">\r\n<p>Bestem deg for en total bankroll pluss taps- og tidsgrenser, og overhold dem uansett utfall. Virtuelle hjul opererer ved hjelp av en tallmotor, som sikrer at hvert spinn er fullstendig tilfeldig og rettferdig. De gir spillere tilgang til en blanding av spill og utforske funksjoner uten store innskudd. Hold innsatsene innenfor grensene gjennom gjennomspilling for å beskytte gevinstene dine. Spill med høy avkastning gir spillerne bedre sjanser, men spill med lav rente reduserer sjansene. Velg bort salg for å kutte sporing. Spilltjenester for kryptovaluta gir nesten umiddelbar banktjenester, reduserer ventetider. Slike funksjoner inkluderer, berørings-ID-tilgang, bonusvarsler i sanntid, og forhåndsvisninger av offline-spill er en oppadgående trend. Disse belønningssystemene kan tilby gratisspinn som øker midlene. Gratisspinn og kreditter øker spill, driver <a href=\"https://wildz-norge.com\">wildznorge</a> til mer spilling. Finansieringer forbedrer bekvemmeligheten: bankoverføringer bør støttes.</p>\r\n<p>Denne er grei. Kasinomenyer er tilpasset mobilbruk, sikrer smidig navigasjon. Dette har introdusert nye segmenter for virtuelle spillleverandører og innledet en ny segment av kunder. Det riktige valget avhenger av midlene dine og mål. Du kan bruke kampanjemidler i spilleautomattitler og klassiske kortspill. Dette sikrer integriteten til spillernes brukerkontoer, personopplysninger og transaksjoner. Velg plattformer med tydelig oppførte støttealternativer inkludert direktechat, e-poststøtte og kontaktpunkter for sosiale nettverk. Spør alltid: «Ville jeg spilt dette hvis det ikke fantes noen kampanje?». Manglende sporing av spill er skadelig.</p>\r\n<p>Velg verditette spill for å forbedre odds. Anerkjente studioer som NetEnt er lisensiert over hele verden.  Merk KYC på premier  forhåndspåmelding . Selv om spilleautomater i stor grad er basert på sjanse, kan noen få strategier øke kontrollen. Når du spiller på et britisk-lisensiert casino, er du støttet av strenge statlige lover. Internett-tipping er lovlig i tjueåtte land og overvåket av reguleringsbyråer som tillater spillselskaper. Når du vurderer hvor mye du trenger å vite, behandle anmeldelser som et filter. E-spillarenaer er tilgjengelige døgnet rundt, noe som betyr at du kan prøve lykken når du er klar. Selv om det presenterer full tilgang til alle funksjoner, det kan generere uhåndterlig navigasjon eller overfylte skjermer på mobile enheter.</p>\r\n<h3>Personlige kampanjer</h3>\r\n<p>Aktiveringstrinnene er like på tvers av casinoer og registreringsbonuser som ofte krever flest trinn. Disse restriksjonene er potensielt et problem å søke etter et mer anerkjent nettsted. Innen 2025 tester amerikanske toppcasinoer innskuddsfrie tilbud for å øke registreringer. Større innsatser kan gi større jackpoter, men penny slots kan være givende for budsjettspillere. Om bare noen få år brukere vil legge merke til bevegelsesbasert tipping. Velg testet programvare for å sikre tilfeldighet.</p>', 'Bursdagsbonus Casino • NO 🎡', '', 'inherit', 'closed', 'closed', '', '614-revision-v1', '', '', '2025-11-25 05:56:07', '2025-11-25 05:56:07', '', 614, 'https://onlineincshop.com/?p=615', 0, 'revision', '', 0),
(616, 9476, '2025-11-25 05:56:50', '2025-11-25 05:56:50', '\r\n<p>Back then, players had to use local software to participate. With smartphones, casino action never stops. The platform needs to be easy to understand and easy to use. Finally, gift cards such as {Paysafecard Amid fresh firms coupled with high-end program makers breaking into existing field, and user onboarding expenditures mounting, introductory bonuses have turned into a core method to attract potential visitors. In-game display can be balanced by priors. A number of bettors believe that online casinos are rigged. Truthfully, results are proportional to risk. Double-check totals to plan routes. Typically only new new accounts on a platform can claim a no deposit promotion.</p>\r\n<p>Next-gen gameplay is enhanced through automation. Check tie-break logic ahead of start. The main issue? Lots of players see it only when it’s gone. Gaming platforms optimize game feedback, via bonus triggers. Though risking one cent, the same responsible gambling rules apply. Blockchain-based casinos provide near-instant banking, avoiding processing fees. It’s smart to research thoroughly, before depositing. Classic online games were text-based, without immersive design. Remote wagering has gained massive traction, offering gaming enthusiasts the adrenaline of slot machines from the convenience of their couches. Promos open chances to try more titles or try higher stakes than otherwise possible.</p>\r\n<h2>pure casino no deposit bonus codes 2025 australia</h2>\r\n<p>Player privacy is boosted by immutable records, which prevents fraud. A flashy number doesn’t matter when fine print blocks real use. Safe habits make gaming sustainable. Know complaint paths as a safeguard. Cashout holdups are widespread in this space. In addition, users are advised to confirm if the site includes the payment systems you use prior to creating an account. Actually, jurisdiction-approved sites run certified algorithms to maintain integrity. Non-deposit bonuses are one of the top-requested deals, especially appealing to careful first-time players. Map the attributes of every promo—follow our short manual.</p>\r\n<h2>wildsino casino no deposit bonus</h2>\r\n<p>Confirm net-loss basis for monthly cycles. They offer vast game menus, easy-to-follow terms, plus targeted promotions, while continuing to encourage healthy gambling habits to secure player trust. That’s when the catch often comes. Low variance games pay out often, with small-scale gains. Consequently no spin replicates another.  Learn studio strengths to avoid repeats. The licensing bodies are tasked to ensure that online venues use fair systems, offer licensed games created by top developers, and complete financial transactions without any problems. Set wagering ceilings to enforce discipline. NetEnt, Play’n GO, Pragmatic for stable RTP. Video slots have evolved significantly from their early days. During the 1970s, video slots were introduced. Starting in the ’90s with online casinos, video slots gained popularity.  </p>\r\n<p>All the same, a lot of honest platforms integrate encrypted systems with transparent privacy practices to block cyber-attacks and misuse of personal data. Washington became the first area to permit digital sports play in early 2020. This method is most often used for large deposits. The primary kinds feature the welcome offer, usually a match on your first deposit; the free trial offer, that allows you to play without paying; bonus spins, usually linked to certain games; and second deposit bonuses, made to thank loyal players for adding funds. Offers and deals should be explained, read bonus terms. A regular format is top-up matching, where the casino adds to your credit depending on your input.</p>\r\n<p>Case in point, traditional 21 features strong return-to-player. This technology guarantees equity, as neither the platform nor the user can alter the draw. Besides, set session alerts and support systems to avoid risky play. The ideal solution to take full advantage of available bonuses is to analyze the fine print together with review limits based on your preferences. Another falsehood declares it’s against the law. Soccer: with heavy pressure but no goal yet, a next-team-to-score wager can be attractive. Accessible helpdesk proves seriousness.  Hitting a jackpot triggers pleasure, reinforcing habits. Each has its own positive aspects and weaknesses, but they all offer accessibility and data integrity. Specials may bring spins, funds, or giveaways.</p>\r\n<p>Responsible gambling tools will use AI. To protect users secure encryption including SSL and TLS is employed <a href=\"https://casinodaysnz.net\">casinodaysnz.net</a> as well as a firewall to prevent unauthorized access to the platform. Safety matters too. Online gambling has become a global trend, offering gamblers the rush of gaming experiences from the privacy of their devices. Bankroll to WR ratio per session. Players can now explore 3D betting spaces in real time. Virtual casinos offer convenience. Bettors must verify licensing, from recognized authorities, like Isle of Man Gambling Supervision. We knocked up an example in five minutes.</p>\r\n<ul>\r\n<li>Top German Casinos</li>\r\n<li>ND Vs FS</li>\r\n<li>Assume 40+ Cryptocurrencies</li>\r\n<li>Smartphone Gamblers Play Seasonal Games Seamlessly Through Any Device.</li>\r\n<li>Gamey Provider : Adventure Archetype , Hack Saw Gambling , Turn , OneTouch , SlotMill , BGaming , Heavyweight Stake , Fantasma , Mancala Gaming , Beter Hold Out , Knave</li>\r\n<li>Responsible Gambling</li>\r\n<li>Handheld Players ACCESS The Bonus Wheel Smoothly Through All Devices.</li>\r\n<li>Take Antiophthalmic Factor Defrayment Method : Almost Internet Site Bear Major Debit And Credit Rating Batting Order , On-Line Bank , And Digital Wallet Such Antiophthalmic Factor Skrill Beaver State Trustly .</li>\r\n</ul>\r\n<p>Some individuals assume casinos cheat. Online casinos present an enjoyable gaming option at home on your device, but to maximise every session demands more than clicking play. Bettors joined in with no limits, creating a fluid journey. Washington was the initial region to legalize sports betting in early 2020. Confirm mobile promos to stack perks. This system motivates gamblers to stay active and continue betting. Avoid 50x+ demands for better value. Information related to oversight or checks must be preserved, sometimes indefinitely. Resolve issues via support to keep access.</p>', 'Pop Casino Plot In The US ♬ Gisborne Region   🎯', '', 'publish', 'closed', 'open', '', 'pop-casino-plot-in-the-us-%e2%99%ac-gisborne-region-%f0%9f%8e%af', '', '', '2025-11-25 05:56:50', '2025-11-25 05:56:50', '', 0, 'https://onlineincshop.com/?p=616', 0, 'post', '', 0),
(617, 9476, '2025-11-25 05:56:50', '2025-11-25 05:56:50', '\r\n<p>Back then, players had to use local software to participate. With smartphones, casino action never stops. The platform needs to be easy to understand and easy to use. Finally, gift cards such as {Paysafecard Amid fresh firms coupled with high-end program makers breaking into existing field, and user onboarding expenditures mounting, introductory bonuses have turned into a core method to attract potential visitors. In-game display can be balanced by priors. A number of bettors believe that online casinos are rigged. Truthfully, results are proportional to risk. Double-check totals to plan routes. Typically only new new accounts on a platform can claim a no deposit promotion.</p>\r\n<p>Next-gen gameplay is enhanced through automation. Check tie-break logic ahead of start. The main issue? Lots of players see it only when it’s gone. Gaming platforms optimize game feedback, via bonus triggers. Though risking one cent, the same responsible gambling rules apply. Blockchain-based casinos provide near-instant banking, avoiding processing fees. It’s smart to research thoroughly, before depositing. Classic online games were text-based, without immersive design. Remote wagering has gained massive traction, offering gaming enthusiasts the adrenaline of slot machines from the convenience of their couches. Promos open chances to try more titles or try higher stakes than otherwise possible.</p>\r\n<h2>pure casino no deposit bonus codes 2025 australia</h2>\r\n<p>Player privacy is boosted by immutable records, which prevents fraud. A flashy number doesn’t matter when fine print blocks real use. Safe habits make gaming sustainable. Know complaint paths as a safeguard. Cashout holdups are widespread in this space. In addition, users are advised to confirm if the site includes the payment systems you use prior to creating an account. Actually, jurisdiction-approved sites run certified algorithms to maintain integrity. Non-deposit bonuses are one of the top-requested deals, especially appealing to careful first-time players. Map the attributes of every promo—follow our short manual.</p>\r\n<h2>wildsino casino no deposit bonus</h2>\r\n<p>Confirm net-loss basis for monthly cycles. They offer vast game menus, easy-to-follow terms, plus targeted promotions, while continuing to encourage healthy gambling habits to secure player trust. That’s when the catch often comes. Low variance games pay out often, with small-scale gains. Consequently no spin replicates another.  Learn studio strengths to avoid repeats. The licensing bodies are tasked to ensure that online venues use fair systems, offer licensed games created by top developers, and complete financial transactions without any problems. Set wagering ceilings to enforce discipline. NetEnt, Play’n GO, Pragmatic for stable RTP. Video slots have evolved significantly from their early days. During the 1970s, video slots were introduced. Starting in the ’90s with online casinos, video slots gained popularity.  </p>\r\n<p>All the same, a lot of honest platforms integrate encrypted systems with transparent privacy practices to block cyber-attacks and misuse of personal data. Washington became the first area to permit digital sports play in early 2020. This method is most often used for large deposits. The primary kinds feature the welcome offer, usually a match on your first deposit; the free trial offer, that allows you to play without paying; bonus spins, usually linked to certain games; and second deposit bonuses, made to thank loyal players for adding funds. Offers and deals should be explained, read bonus terms. A regular format is top-up matching, where the casino adds to your credit depending on your input.</p>\r\n<p>Case in point, traditional 21 features strong return-to-player. This technology guarantees equity, as neither the platform nor the user can alter the draw. Besides, set session alerts and support systems to avoid risky play. The ideal solution to take full advantage of available bonuses is to analyze the fine print together with review limits based on your preferences. Another falsehood declares it’s against the law. Soccer: with heavy pressure but no goal yet, a next-team-to-score wager can be attractive. Accessible helpdesk proves seriousness.  Hitting a jackpot triggers pleasure, reinforcing habits. Each has its own positive aspects and weaknesses, but they all offer accessibility and data integrity. Specials may bring spins, funds, or giveaways.</p>\r\n<p>Responsible gambling tools will use AI. To protect users secure encryption including SSL and TLS is employed <a href=\"https://casinodaysnz.net\">casinodaysnz.net</a> as well as a firewall to prevent unauthorized access to the platform. Safety matters too. Online gambling has become a global trend, offering gamblers the rush of gaming experiences from the privacy of their devices. Bankroll to WR ratio per session. Players can now explore 3D betting spaces in real time. Virtual casinos offer convenience. Bettors must verify licensing, from recognized authorities, like Isle of Man Gambling Supervision. We knocked up an example in five minutes.</p>\r\n<ul>\r\n<li>Top German Casinos</li>\r\n<li>ND Vs FS</li>\r\n<li>Assume 40+ Cryptocurrencies</li>\r\n<li>Smartphone Gamblers Play Seasonal Games Seamlessly Through Any Device.</li>\r\n<li>Gamey Provider : Adventure Archetype , Hack Saw Gambling , Turn , OneTouch , SlotMill , BGaming , Heavyweight Stake , Fantasma , Mancala Gaming , Beter Hold Out , Knave</li>\r\n<li>Responsible Gambling</li>\r\n<li>Handheld Players ACCESS The Bonus Wheel Smoothly Through All Devices.</li>\r\n<li>Take Antiophthalmic Factor Defrayment Method : Almost Internet Site Bear Major Debit And Credit Rating Batting Order , On-Line Bank , And Digital Wallet Such Antiophthalmic Factor Skrill Beaver State Trustly .</li>\r\n</ul>\r\n<p>Some individuals assume casinos cheat. Online casinos present an enjoyable gaming option at home on your device, but to maximise every session demands more than clicking play. Bettors joined in with no limits, creating a fluid journey. Washington was the initial region to legalize sports betting in early 2020. Confirm mobile promos to stack perks. This system motivates gamblers to stay active and continue betting. Avoid 50x+ demands for better value. Information related to oversight or checks must be preserved, sometimes indefinitely. Resolve issues via support to keep access.</p>', 'Pop Casino Plot In The US ♬ Gisborne Region   🎯', '', 'inherit', 'closed', 'closed', '', '616-revision-v1', '', '', '2025-11-25 05:56:50', '2025-11-25 05:56:50', '', 616, 'https://onlineincshop.com/?p=617', 0, 'revision', '', 0),
(618, 9476, '2025-11-25 05:57:18', '2025-11-25 05:57:18', '\r\n<h3>free $100 casino chip no deposit</h3>\r\n<p>În timpul jocului, aceste statistici sunt actualizate. O tactică comună este sistemul Martingale care necesită creșterea pariurilor după o pierdere. Întreaga configurație influențează prețul invers.  Compulsia de a face „încă o rotire” crește atunci când se aplică sold suplimentar, în special cu recompense limitate în timp și cronometre care cer viteză. Această dată Am reținut nu separat prin premiul, și de asemenea pentru că am trecut prin încântarea mizelor fără a exagera. A înțelege preînregistrarea în program este timpul bine cheltuit.  Software modern   fac lucrurile să avanseze. Profită de bonusuri — recompense de fidelitate îți pot îți pot prelungi durata jocurilor. No wager spins sunt acordate ca parte a unei promoții. Modele cu risc zero pentru a retrage bani.</p>\r\n<p> Jocuri de noroc sănătoase   este crucial   în e-gaming ,  pentru a evita dependența . Unii oameni spun că plățile sunt refuzate, în timp ce site-urile aprobate eliberează fonduri. Cazinouri online britanice este intensă, așa că oferte de înregistrare gratuită formă eforturilor de achiziție a utilizatorilor; vizitatorii evalua operatorii cu cheltuieli zero și este reciproc avantajos. Controlați ritmul pentru a vă adapta rapid. Vei găsi totul rapid datorită suport vizual. Jucătorii trebuie să construiască strategii solide pentru să navigheze câmpuri de competiție. RTP este un factor esențial în pariuri. Utilizatorii pot parcurge medii complet randate într-un mod realist. Transmisie de înaltă calitate.</p>\r\n<h2>Jocuri sălbatice</h2>\r\n<p>Utilizatori activi Review platforme.  Pariuri live și cazinou . Oferte pentru începători pot include rotiri gratuite plus bonusuri. Încearcă demonstrații gratuite — multe cazinouri oferă moduri demo, astfel încât să poți explora funcțiile. Regiuni diferite pot avea reguli variate, ceea ce poate crea nedumerire jucătorilor transfrontalieri. Autentificare stream-ul video, M-am văzut la o masă virtuală în companie cu cinci participanți din mai multe țări. Totuși, jocurile în browser au în continuare merite.</p>\r\n<p>Mai mult, ar trebui să ofere educație AML pentru forța de muncă, să consolideze capacitatea lor de a identifica și de a răspunde la potențialele amenințări AML. Verificări comportamentale vor spori siguranța. Try dynamic reels modern. Bonusuri fără depunere de bun venit pot acorda FS sau fonduri bonus după verificarea de bază prin telefon/e-mail.  Ajută la stabilirea integrală a pariului  Fiecare creator oferă experiențe distinctive.</p>\r\n<h3>freeplay casino</h3>\r\n<p> Siguranța datelor jucătorilor   sunt părți vitale   pentru platformele de iGaming ,  protejarea datelor sensibile . Unic oportunități fără depunere.  Bonusuri de reîncărcare   împing jucătorii să adauge fonduri ,  extind timpul de joc . Aplicații de cazinou pentru smartphone-uri de obicei oferă mai rafinat și o navigare mai simplă. Certificare RNG este vital, pentru a garanta rezultate aleatorii. Casinouri cu un aspect unic . Bugetare clară   menține jocul sănătos  și îmbunătățește plăcerea pe termen lung .</p>\r\n<img src= \"https://t3.ftcdn.net/jpg/10/81/23/18/360_F_1081231862_jPudep67CuiY8D0UdMDyEbHy3NYmsRc0.jpg\" width=\"630\">\r\n<p>Datorită dispozitivelor îmbunătățite, entuziaștii pot acum să experimenteze jocurile oricând și oriunde. Definește stop-loss pentru a încheia în forță.  Site-urile credibile își dezvăluie procedurile de gestionare a confidențialității ,  aderă la standardele GDPR sau la alte legi globale privind confidențialitatea , prevenind în același timp incidentele de securitate și intruziunile cibernetice. Acces în mișcare au devenit o experiență comună datorită aplicațiilor moderne care respond in real time pe orice smartphone. Acesta <a href=\"https://casinoslotv.com\">SlotV Casino</a> a fost un semn de 200 de ori miza mea. Aceste bonusuri nu există în jocurile de noroc din lumea reală.</p>\r\n<p>Câteva cazinouri rulează chat-uri cu răspuns imediat și birouri de asistență profesionale, altele mențin asistența disponibilă pentru perioade mai scurte, afectați de locația sediului lor central și de numărul de angajați. Mizele mele s-au dublat, și am obținut acea explozie de bucurie, dar totuși am înțeles limita bugetului meu.  Combinarea datelor, vitezei și planificării  îmbunătățește experiența ta de pariere live .  Când pilonii converg, crești rata de succes și plăcerea . Chiar dacă ai puțină experiență, este totuși util. Jucătorii pot alege între jocuri de depunere, ofertele „încearcă înainte de a plăti” și pachetele de rotiri. Pachete de bun venit pot include rotiri gratuite plus bonusuri. Promoții fără depunere în stil reîncărcare pot fi emise jucătorilor fideli pentru perioade scurte.</p>\r\n<img src= \"https://images.unsplash.com/photo-1583272948447-5bbb5d5b9579?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NTB8fG9ubGluZSUyMGJldHRpbmd8ZW58MHx8MHx8fDA%3D\" width=\"624\">\r\n<p>Pentru a reclama un astfel de cadou, pur și simplu creează-ți un cont la site-ul selectat. Jocuri cu dealeri live adu dealeri umani pe ecrane. Anumite aplicații oferă, de asemenea bonusuri numai pentru utilizatorii aplicației, îndemnând jucătorii să descarce.  Site-uri web de jocuri de noroc certificate   protejează utilizatorii  și păstrează etica   companiilor de pariuri . Scena din Marea Britanie este saturată, așa că beneficii de bun venit ND impulsionează perioadele de probă - un avantaj comun pentru mărci și pariori. În schimb, folosește recenziile pentru a restrânge opțiunile până la două sau trei cazinouri care îndeplinesc cele mai importante criterii ale tale. Cel mai important, recompense de cazinou fără depunere pot fi obținute prin calificare la clubul VIP.</p>', 'Idei Pentru A Obține Triumf Via Jocuri Electronice Sloturi Video ✷ Olt   💴', '', 'publish', 'closed', 'open', '', 'idei-pentru-a-obtine-triumf-via-jocuri-electronice-sloturi-video-%e2%9c%b7-olt-%f0%9f%92%b4', '', '', '2025-11-25 05:57:18', '2025-11-25 05:57:18', '', 0, 'https://onlineincshop.com/?p=618', 0, 'post', '', 0),
(619, 9476, '2025-11-25 05:57:18', '2025-11-25 05:57:18', '\r\n<h3>free $100 casino chip no deposit</h3>\r\n<p>În timpul jocului, aceste statistici sunt actualizate. O tactică comună este sistemul Martingale care necesită creșterea pariurilor după o pierdere. Întreaga configurație influențează prețul invers.  Compulsia de a face „încă o rotire” crește atunci când se aplică sold suplimentar, în special cu recompense limitate în timp și cronometre care cer viteză. Această dată Am reținut nu separat prin premiul, și de asemenea pentru că am trecut prin încântarea mizelor fără a exagera. A înțelege preînregistrarea în program este timpul bine cheltuit.  Software modern   fac lucrurile să avanseze. Profită de bonusuri — recompense de fidelitate îți pot îți pot prelungi durata jocurilor. No wager spins sunt acordate ca parte a unei promoții. Modele cu risc zero pentru a retrage bani.</p>\r\n<p> Jocuri de noroc sănătoase   este crucial   în e-gaming ,  pentru a evita dependența . Unii oameni spun că plățile sunt refuzate, în timp ce site-urile aprobate eliberează fonduri. Cazinouri online britanice este intensă, așa că oferte de înregistrare gratuită formă eforturilor de achiziție a utilizatorilor; vizitatorii evalua operatorii cu cheltuieli zero și este reciproc avantajos. Controlați ritmul pentru a vă adapta rapid. Vei găsi totul rapid datorită suport vizual. Jucătorii trebuie să construiască strategii solide pentru să navigheze câmpuri de competiție. RTP este un factor esențial în pariuri. Utilizatorii pot parcurge medii complet randate într-un mod realist. Transmisie de înaltă calitate.</p>\r\n<h2>Jocuri sălbatice</h2>\r\n<p>Utilizatori activi Review platforme.  Pariuri live și cazinou . Oferte pentru începători pot include rotiri gratuite plus bonusuri. Încearcă demonstrații gratuite — multe cazinouri oferă moduri demo, astfel încât să poți explora funcțiile. Regiuni diferite pot avea reguli variate, ceea ce poate crea nedumerire jucătorilor transfrontalieri. Autentificare stream-ul video, M-am văzut la o masă virtuală în companie cu cinci participanți din mai multe țări. Totuși, jocurile în browser au în continuare merite.</p>\r\n<p>Mai mult, ar trebui să ofere educație AML pentru forța de muncă, să consolideze capacitatea lor de a identifica și de a răspunde la potențialele amenințări AML. Verificări comportamentale vor spori siguranța. Try dynamic reels modern. Bonusuri fără depunere de bun venit pot acorda FS sau fonduri bonus după verificarea de bază prin telefon/e-mail.  Ajută la stabilirea integrală a pariului  Fiecare creator oferă experiențe distinctive.</p>\r\n<h3>freeplay casino</h3>\r\n<p> Siguranța datelor jucătorilor   sunt părți vitale   pentru platformele de iGaming ,  protejarea datelor sensibile . Unic oportunități fără depunere.  Bonusuri de reîncărcare   împing jucătorii să adauge fonduri ,  extind timpul de joc . Aplicații de cazinou pentru smartphone-uri de obicei oferă mai rafinat și o navigare mai simplă. Certificare RNG este vital, pentru a garanta rezultate aleatorii. Casinouri cu un aspect unic . Bugetare clară   menține jocul sănătos  și îmbunătățește plăcerea pe termen lung .</p>\r\n<img src= \"https://t3.ftcdn.net/jpg/10/81/23/18/360_F_1081231862_jPudep67CuiY8D0UdMDyEbHy3NYmsRc0.jpg\" width=\"630\">\r\n<p>Datorită dispozitivelor îmbunătățite, entuziaștii pot acum să experimenteze jocurile oricând și oriunde. Definește stop-loss pentru a încheia în forță.  Site-urile credibile își dezvăluie procedurile de gestionare a confidențialității ,  aderă la standardele GDPR sau la alte legi globale privind confidențialitatea , prevenind în același timp incidentele de securitate și intruziunile cibernetice. Acces în mișcare au devenit o experiență comună datorită aplicațiilor moderne care respond in real time pe orice smartphone. Acesta <a href=\"https://casinoslotv.com\">SlotV Casino</a> a fost un semn de 200 de ori miza mea. Aceste bonusuri nu există în jocurile de noroc din lumea reală.</p>\r\n<p>Câteva cazinouri rulează chat-uri cu răspuns imediat și birouri de asistență profesionale, altele mențin asistența disponibilă pentru perioade mai scurte, afectați de locația sediului lor central și de numărul de angajați. Mizele mele s-au dublat, și am obținut acea explozie de bucurie, dar totuși am înțeles limita bugetului meu.  Combinarea datelor, vitezei și planificării  îmbunătățește experiența ta de pariere live .  Când pilonii converg, crești rata de succes și plăcerea . Chiar dacă ai puțină experiență, este totuși util. Jucătorii pot alege între jocuri de depunere, ofertele „încearcă înainte de a plăti” și pachetele de rotiri. Pachete de bun venit pot include rotiri gratuite plus bonusuri. Promoții fără depunere în stil reîncărcare pot fi emise jucătorilor fideli pentru perioade scurte.</p>\r\n<img src= \"https://images.unsplash.com/photo-1583272948447-5bbb5d5b9579?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NTB8fG9ubGluZSUyMGJldHRpbmd8ZW58MHx8MHx8fDA%3D\" width=\"624\">\r\n<p>Pentru a reclama un astfel de cadou, pur și simplu creează-ți un cont la site-ul selectat. Jocuri cu dealeri live adu dealeri umani pe ecrane. Anumite aplicații oferă, de asemenea bonusuri numai pentru utilizatorii aplicației, îndemnând jucătorii să descarce.  Site-uri web de jocuri de noroc certificate   protejează utilizatorii  și păstrează etica   companiilor de pariuri . Scena din Marea Britanie este saturată, așa că beneficii de bun venit ND impulsionează perioadele de probă - un avantaj comun pentru mărci și pariori. În schimb, folosește recenziile pentru a restrânge opțiunile până la două sau trei cazinouri care îndeplinesc cele mai importante criterii ale tale. Cel mai important, recompense de cazinou fără depunere pot fi obținute prin calificare la clubul VIP.</p>', 'Idei Pentru A Obține Triumf Via Jocuri Electronice Sloturi Video ✷ Olt   💴', '', 'inherit', 'closed', 'closed', '', '618-revision-v1', '', '', '2025-11-25 05:57:18', '2025-11-25 05:57:18', '', 618, 'https://onlineincshop.com/?p=619', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(621, 9476, '2025-11-30 09:49:11', '2025-11-30 09:49:11', '\r\n<h2>7 reels casino</h2>\r\n<p>No rooted phones for security. When the total exceeds 21 the hand automatically loses. These games often feature real dealers and table options. Responsible gambling habits can reduce risks, such as tracking play history. Net-net, spend on freebies are modest: brands tend to award a small £5–£20 chip alongside FS, which is far cheaper than big ad spends. In spite of this, you must ensure the supported payment methods, conversion-related costs, plus payout and deposit timeframes. Such firms are focusing on digital sportsbook apps to capitalize on the expanding trend of app-based casino use. Internet gaming platforms offer responsible gambling tools, cool-off periods. One more key point is the game library hosted by platforms. Promotions and Loyalty. Handheld casino play has made online play dominant.</p>\r\n<p>Tablet play increases accessibility. Also, nearly all deals stay available for a set duration. In comparison to small stakes, some rewards are usually outstanding value. Because national oversight might not exist here, player impressions are even more crucial. The first notable edge is extra time playing; extra gaming credit equals more attempts, which directly increases win possibilities. Studying user reports and rules keeps expectations realistic. A few operators grant mobile freebies on first install, sometimes after a small top-up.</p>\r\n<img src= \"https://www.shutterstock.com/image-photo/online-gambling-casino-poker-chips-lie-600nw-2313429595.jpg\" width=\"309\">\r\n<p>Mindful customers review the rules before taking promotions, to keep control. Final thoughts, studying gambling psychology benefits both players and operators. What differentiates top sites is transparent terms. Bonuses & Promotions such as loyalty rewards can make it more fun, but always read the terms. Final thoughts, iGaming evolved with tech. Know-Your-Customer steps are required before withdrawals to meet regulations.</p>\r\n<img src= \"https://static.vecteezy.com/system/resources/previews/067/722/878/large_2x/a-slot-machine-with-sevens-on-it-photo.jpeg\" width=\"352\">\r\n<p>Each bonus type has its own activation rules and can require a coupon. We built a shortlist of trusted sites and show our evaluation checklist. But extracting value from every session needs more than entering the site.  These programmes, though worthwhile, are confined to online casinos certified within specific jurisdictions, pointing out international gambling operators commonly stay outside the rules and are unable to apply such protections on clients. I stopped the session, bought dinner and thought that I had secured not only money, and as well those vibes of an actual casino without exiting home. Advanced e-slots feature various concepts, win lines, and reward levels, providing an entertaining session. Instant messages keep players informed, through jackpot alerts. Broadcast systems is becoming more reliable, raising excitement. Online slots are the top performers of the online gaming scene. Many operators employ external payment systems, meaning players should know about ID rules and cashout timing to preventing problems and delays.</p>\r\n<p>Choosing a reliable online casino this year might seem tricky. If you’re under 18 please leave the site. Gaming catalogs are designed for touchscreens, offering responsive controls. Automated intelligence is powering features to adapt interfaces. The variation is about one easy thing: how you decide to apply it. You should also review the studios. Here we outline key areas to expect at licensed casinos. Neural networks is being used to recommend games. Handheld wagering dominated the decade, driven by app stores.</p>\r\n<p>The fun turns into a task, and the goal becomes less about playing smart and more about chasing terms. AU 25 free spins without deposit gives new users try specified slots without a deposit. Usable design is key for finding games and promos smoothly and easily. Money transfer options must be convenient, including eWallets. Live broadcast gambling combine real interaction. Pin down each deal’s parameters—see our cheat sheet. You step into following a stressful day, and you see it — Flamez Casino welcoming you with 200 free spins and an intense 120% bonus for your starting deposit. The straightforward rules help players grasp it quickly while strategic depth keeps it interesting.</p>\r\n<p>As soon as you hold a solid sense of what a zero-deposit offer means, let’s break down the typical forms of no-cash promos. Suitable for first-time users at signup bonus casino who have not previously launched an casino account on the online casino. But which method truly offers the top-quality user experience? Both mobile and browser platforms prioritise safety measures, yet apps often pair better with mobile wallet systems like Apple Pay and Google Pay services. Alongside modest stakes, some returns sometimes are superb value. I’ve always believed the mood of a traditional casino to amount to something unique — the gleam of the cards, the click of chips and the hushed murmur of the hall.</p>\r\n<p>Prefer same-day withdrawals. Usually only new previously unregistered players on a platform typically qualify for a deposit-free bonus. These policies, while positive, generally operate within gaming companies authorized within limited regions, implying that cross-border casinos are often beyond their scope and cannot manage those exclusions upon participants. New York represents a lucrative audience for digital platforms, but the state is still awaiting government decision to make it regulated. Machine learning in online casinos is driving innovation. The bottom line is, the psychology of gambling is complex and powerful. Casino software creators such as Pragmatic Play build mobile-first games. Avoid complicated rebates for fairer terms. The greatest surge was in the 25–34 age range, many of whom are digital natives and a key audience for gambling platforms.</p>\r\n<p>Most of all zero-deposit casino bonuses can be get through membership in the loyalty scheme. Use personal devices to keep privacy. Focus Up—Avoid Distractions. It is recommended not to use insurance bets because it generally favors the house. Contingent upon the policy, these promotions often are extremely beneficial. Regulator-mandated changes to guard EV. Overseas gambling websites commonly provide extensive cashier methods and currency varieties, serving gamblers from many countries. Standard VIP rewards include bonus money,  spin packs,  rebates,  boosted cashout limits, a personal account manager, and tickets to big events.</p>\r\n<p>You know the crane machines at fun centers that are notoriously hard to win something? However, these methods can be sluggish and expensive compared to e-wallets or virtual currencies. Reels align along paylines to create wins.  GLI certifications for credibility. No matter, <a href=\"https://ukbofcasino.com\">UK Bof Casino</a> what you play, you should play responsibly to manage behavior. Disable VPNs during KYC to avoid account locks. Mobile payments are particularly well-liked for their speed, as they utilize existing systems to make payments fast and hassle-free.</p>\r\n<ul>\r\n<li>Approved Sites Guarantee Balanced Free Spin Terms.</li>\r\n<li>Trusted Draftkings Casino Offers Responsible Sessions.</li>\r\n<li>300 Free Credits Without Deposit</li>\r\n<li>Mobile Users Discover Welcome Offers Easily With Any Device.</li>\r\n</ul>\r\n<p>Put in $500 in a 100% match bonus and you’ll receive another $500. A well-known strategy is using a consistent stake, which keeps risk predictable. In final words, studios shape your play, so check brands carefully. These qualities align with the hopes of users who rank privacy alongside amusement. E-gaming is recognized in multiple states and is monitored by authorities that authorize casino operators. The central mission of this card game is to beat the dealer’s hand while staying under 21. In summary, incentives make games more appealing, but caution is needed. Test device performance for smooth spins. Compare studio defaults to avoid surprises. E-gambling is regulated in 28 nations under the oversight of state bodies that certify betting firms.</p>\r\n<p>As seasoned matched bettors, we consider it important to pass on our learnings when we first started. Stick to reputable banking methods including cards, wallets, wires, and crypto. Highly regarded licensing entities like Malta Gaming Authority and Curacao’s licensing commission are trusted for effective regulation. Traditional mechanical reels resemble classic slot machines, while video slots incorporate high-quality visuals, interactive visuals, and gameplay enhancements. Test volatility first before real wagers. Safe play is important in online gaming, to promote sustainability. This structure entices members to remain on the platform and keep wagering. Confirm bonus code if applicable or redemption fails. Given the lack of direct local regulation, player testimonials become increasingly vital. Fixed end times to prevent tilt.</p>\r\n<img src= \"https://images.unsplash.com/photo-1662580176285-4136b70d8310?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTA3M3x8c2xvdCUyMG1hY2hpbmVzfGVufDB8fDB8fHww\" width=\"753\">\r\n<p>Deposit and withdrawal systems should be safe, including eWallets. Volatile games reward infrequently, yet massive payouts occur. Understanding the program pre-registration saves trouble later. Visitors can interact with 3D betting spaces in real time. Loss recovery behavior reinforces bad habits, where people bet more to recover. Digital casinos have captured global interest in recent years. Weigh playthrough and limits beyond big figures to assess real worth. Select properly licensed brands from reputable regulators for security and fairness. Order of Bets Mistake. Look at player reviews, through Google, to find red flags.</p>\r\n<p>Counseling services offer help, for those losing control. Thus reviews become a confidence tool, not confusion. Even small wins increase engagement. See whether a bonus code is required ahead of opt-in, or the claim may fail. Nonetheless, the sheer volume of choices can be startling or hard for beginners to process.   Mobile payments are particularly well-liked for their efficiency, as they tap into existing systems to make payments instant and smooth. Live casino providers like Playtech Live offer people to interact with dealers on the go. On online casinos, where tracking is both useful and risky, this new awareness marks a significant moment.</p>\r\n<p>Players should also see responsible gambling tools offered.  Trusted payment processing attract more users why e-gaming keeps rising. Information related to oversight or checks must be preserved, sometimes without expiration. Pin down each deal’s parameters—our mini-guide helps. The design were eye-catching, the background music was evocative, and I turned out to be just enjoying the course of play, without worrying about success. Companies that build forward will thrive.</p>', 'Ozwins Casino ❌ Norwich   Play & Claim', '', 'publish', 'closed', 'open', '', 'ozwins-casino-%e2%9d%8c-norwich-play-claim', '', '', '2025-11-30 09:49:11', '2025-11-30 09:49:11', '', 0, 'https://onlineincshop.com/?p=621', 0, 'post', '', 0),
(622, 9476, '2025-11-30 09:49:11', '2025-11-30 09:49:11', '\r\n<h2>7 reels casino</h2>\r\n<p>No rooted phones for security. When the total exceeds 21 the hand automatically loses. These games often feature real dealers and table options. Responsible gambling habits can reduce risks, such as tracking play history. Net-net, spend on freebies are modest: brands tend to award a small £5–£20 chip alongside FS, which is far cheaper than big ad spends. In spite of this, you must ensure the supported payment methods, conversion-related costs, plus payout and deposit timeframes. Such firms are focusing on digital sportsbook apps to capitalize on the expanding trend of app-based casino use. Internet gaming platforms offer responsible gambling tools, cool-off periods. One more key point is the game library hosted by platforms. Promotions and Loyalty. Handheld casino play has made online play dominant.</p>\r\n<p>Tablet play increases accessibility. Also, nearly all deals stay available for a set duration. In comparison to small stakes, some rewards are usually outstanding value. Because national oversight might not exist here, player impressions are even more crucial. The first notable edge is extra time playing; extra gaming credit equals more attempts, which directly increases win possibilities. Studying user reports and rules keeps expectations realistic. A few operators grant mobile freebies on first install, sometimes after a small top-up.</p>\r\n<img src= \"https://www.shutterstock.com/image-photo/online-gambling-casino-poker-chips-lie-600nw-2313429595.jpg\" width=\"309\">\r\n<p>Mindful customers review the rules before taking promotions, to keep control. Final thoughts, studying gambling psychology benefits both players and operators. What differentiates top sites is transparent terms. Bonuses & Promotions such as loyalty rewards can make it more fun, but always read the terms. Final thoughts, iGaming evolved with tech. Know-Your-Customer steps are required before withdrawals to meet regulations.</p>\r\n<img src= \"https://static.vecteezy.com/system/resources/previews/067/722/878/large_2x/a-slot-machine-with-sevens-on-it-photo.jpeg\" width=\"352\">\r\n<p>Each bonus type has its own activation rules and can require a coupon. We built a shortlist of trusted sites and show our evaluation checklist. But extracting value from every session needs more than entering the site.  These programmes, though worthwhile, are confined to online casinos certified within specific jurisdictions, pointing out international gambling operators commonly stay outside the rules and are unable to apply such protections on clients. I stopped the session, bought dinner and thought that I had secured not only money, and as well those vibes of an actual casino without exiting home. Advanced e-slots feature various concepts, win lines, and reward levels, providing an entertaining session. Instant messages keep players informed, through jackpot alerts. Broadcast systems is becoming more reliable, raising excitement. Online slots are the top performers of the online gaming scene. Many operators employ external payment systems, meaning players should know about ID rules and cashout timing to preventing problems and delays.</p>\r\n<p>Choosing a reliable online casino this year might seem tricky. If you’re under 18 please leave the site. Gaming catalogs are designed for touchscreens, offering responsive controls. Automated intelligence is powering features to adapt interfaces. The variation is about one easy thing: how you decide to apply it. You should also review the studios. Here we outline key areas to expect at licensed casinos. Neural networks is being used to recommend games. Handheld wagering dominated the decade, driven by app stores.</p>\r\n<p>The fun turns into a task, and the goal becomes less about playing smart and more about chasing terms. AU 25 free spins without deposit gives new users try specified slots without a deposit. Usable design is key for finding games and promos smoothly and easily. Money transfer options must be convenient, including eWallets. Live broadcast gambling combine real interaction. Pin down each deal’s parameters—see our cheat sheet. You step into following a stressful day, and you see it — Flamez Casino welcoming you with 200 free spins and an intense 120% bonus for your starting deposit. The straightforward rules help players grasp it quickly while strategic depth keeps it interesting.</p>\r\n<p>As soon as you hold a solid sense of what a zero-deposit offer means, let’s break down the typical forms of no-cash promos. Suitable for first-time users at signup bonus casino who have not previously launched an casino account on the online casino. But which method truly offers the top-quality user experience? Both mobile and browser platforms prioritise safety measures, yet apps often pair better with mobile wallet systems like Apple Pay and Google Pay services. Alongside modest stakes, some returns sometimes are superb value. I’ve always believed the mood of a traditional casino to amount to something unique — the gleam of the cards, the click of chips and the hushed murmur of the hall.</p>\r\n<p>Prefer same-day withdrawals. Usually only new previously unregistered players on a platform typically qualify for a deposit-free bonus. These policies, while positive, generally operate within gaming companies authorized within limited regions, implying that cross-border casinos are often beyond their scope and cannot manage those exclusions upon participants. New York represents a lucrative audience for digital platforms, but the state is still awaiting government decision to make it regulated. Machine learning in online casinos is driving innovation. The bottom line is, the psychology of gambling is complex and powerful. Casino software creators such as Pragmatic Play build mobile-first games. Avoid complicated rebates for fairer terms. The greatest surge was in the 25–34 age range, many of whom are digital natives and a key audience for gambling platforms.</p>\r\n<p>Most of all zero-deposit casino bonuses can be get through membership in the loyalty scheme. Use personal devices to keep privacy. Focus Up—Avoid Distractions. It is recommended not to use insurance bets because it generally favors the house. Contingent upon the policy, these promotions often are extremely beneficial. Regulator-mandated changes to guard EV. Overseas gambling websites commonly provide extensive cashier methods and currency varieties, serving gamblers from many countries. Standard VIP rewards include bonus money,  spin packs,  rebates,  boosted cashout limits, a personal account manager, and tickets to big events.</p>\r\n<p>You know the crane machines at fun centers that are notoriously hard to win something? However, these methods can be sluggish and expensive compared to e-wallets or virtual currencies. Reels align along paylines to create wins.  GLI certifications for credibility. No matter, <a href=\"https://ukbofcasino.com\">UK Bof Casino</a> what you play, you should play responsibly to manage behavior. Disable VPNs during KYC to avoid account locks. Mobile payments are particularly well-liked for their speed, as they utilize existing systems to make payments fast and hassle-free.</p>\r\n<ul>\r\n<li>Approved Sites Guarantee Balanced Free Spin Terms.</li>\r\n<li>Trusted Draftkings Casino Offers Responsible Sessions.</li>\r\n<li>300 Free Credits Without Deposit</li>\r\n<li>Mobile Users Discover Welcome Offers Easily With Any Device.</li>\r\n</ul>\r\n<p>Put in $500 in a 100% match bonus and you’ll receive another $500. A well-known strategy is using a consistent stake, which keeps risk predictable. In final words, studios shape your play, so check brands carefully. These qualities align with the hopes of users who rank privacy alongside amusement. E-gaming is recognized in multiple states and is monitored by authorities that authorize casino operators. The central mission of this card game is to beat the dealer’s hand while staying under 21. In summary, incentives make games more appealing, but caution is needed. Test device performance for smooth spins. Compare studio defaults to avoid surprises. E-gambling is regulated in 28 nations under the oversight of state bodies that certify betting firms.</p>\r\n<p>As seasoned matched bettors, we consider it important to pass on our learnings when we first started. Stick to reputable banking methods including cards, wallets, wires, and crypto. Highly regarded licensing entities like Malta Gaming Authority and Curacao’s licensing commission are trusted for effective regulation. Traditional mechanical reels resemble classic slot machines, while video slots incorporate high-quality visuals, interactive visuals, and gameplay enhancements. Test volatility first before real wagers. Safe play is important in online gaming, to promote sustainability. This structure entices members to remain on the platform and keep wagering. Confirm bonus code if applicable or redemption fails. Given the lack of direct local regulation, player testimonials become increasingly vital. Fixed end times to prevent tilt.</p>\r\n<img src= \"https://images.unsplash.com/photo-1662580176285-4136b70d8310?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTA3M3x8c2xvdCUyMG1hY2hpbmVzfGVufDB8fDB8fHww\" width=\"753\">\r\n<p>Deposit and withdrawal systems should be safe, including eWallets. Volatile games reward infrequently, yet massive payouts occur. Understanding the program pre-registration saves trouble later. Visitors can interact with 3D betting spaces in real time. Loss recovery behavior reinforces bad habits, where people bet more to recover. Digital casinos have captured global interest in recent years. Weigh playthrough and limits beyond big figures to assess real worth. Select properly licensed brands from reputable regulators for security and fairness. Order of Bets Mistake. Look at player reviews, through Google, to find red flags.</p>\r\n<p>Counseling services offer help, for those losing control. Thus reviews become a confidence tool, not confusion. Even small wins increase engagement. See whether a bonus code is required ahead of opt-in, or the claim may fail. Nonetheless, the sheer volume of choices can be startling or hard for beginners to process.   Mobile payments are particularly well-liked for their efficiency, as they tap into existing systems to make payments instant and smooth. Live casino providers like Playtech Live offer people to interact with dealers on the go. On online casinos, where tracking is both useful and risky, this new awareness marks a significant moment.</p>\r\n<p>Players should also see responsible gambling tools offered.  Trusted payment processing attract more users why e-gaming keeps rising. Information related to oversight or checks must be preserved, sometimes without expiration. Pin down each deal’s parameters—our mini-guide helps. The design were eye-catching, the background music was evocative, and I turned out to be just enjoying the course of play, without worrying about success. Companies that build forward will thrive.</p>', 'Ozwins Casino ❌ Norwich   Play & Claim', '', 'inherit', 'closed', 'closed', '', '621-revision-v1', '', '', '2025-11-30 09:49:11', '2025-11-30 09:49:11', '', 621, 'https://onlineincshop.com/?p=622', 0, 'revision', '', 0),
(623, 9476, '2025-11-30 09:50:33', '2025-11-30 09:50:33', '\r\n<p>There’s also a built-in risk buffer — you can explore new games or experiment with bigger bets risk-free. Skill-based titles like blackjack tend to pay more, especially with optimal strategy. In conclusion, promotions are key to player retention. A few jurisdictions have acted during the pandemic era to approve digital sports betting, and other types of e-gaming are becoming increasingly popular. Fan favorites including sic bo can be played live, bringing authenticity. Sheets scare some who think it’s technical.</p>\r\n<h2>estimable Casino place for rely method acting : BetOnline</h2>\r\n<p>By using this bonus, you earn a small amount for signing up (normally between $10 and $50) with no deposit required. No-cost money is one of the finest and most ordinary promotions you can find at casino platforms. Use loss limits tools to stay responsible. Crucially, returns become consistent provided you follow the guide risk is near zero. Travel IPs trigger checks. Licensed gaming platforms are licensed through international bodies namely the MGA. However, for customers in Britain, the best sites reflect similar qualities. They are quiet about quality They function well. They’re properly licensed. Their games load instantly. They answer their emails. Risky machines produce rare prizes, but big rewards when they do.</p>\r\n<p>Amid the growth of online gambling, a large number of gamblers are able to access many different online betting sites worldwide. Should you want special deals, cryptocurrency banking options, or offerings from unique content creators, foreign casino platforms create attractive opportunities that local services may not give. Still such foreign gambling websites comply with various regulatory frameworks concerning user rights, data privacy, and assistance. Knowing how these factors work can help you choose wisely and create a better betting experience. Verify if a code applies before activation, or you might miss the offer. Keep software updated to reduce risk. But the truth is, certified iGaming platforms employ randomization engines to ensure fairness. Content libraries need to be varied including slots, blackjack, roulette, and live titles. The growth of online casinos has further supported the adoption of virtual slot games, with advancements in systems transforming playability, visuals, and data protection. Human emotion plays a role. Licensing is vital.</p>\r\n<p>Lines across the reels define winning combos.  Self-control features will use AI. These signup deals typically feature free chips within chosen games. Controlled betting can reduce risks, such as using time caps. The expansion of e-gaming venues has further boosted the adoption of e-slots, with enhancements in digital tools transforming performance, aesthetics, and safety. Disciplined play can reduce risks, such as tracking play history. Users have the chance to get fast returns with top ra casino. If withdrawals fail, it’s risky. These block access to gambling sites for a set period.  The true reason? To draw you in, lengthen your playing time, and enhance your retention and spending.</p>\r\n<p>When any pillar is missing, it’s easy to make rash calls that hurt results. Secure Socket bed ( SSL ) encryption cost habituate aside online casinos to protect personal and fiscal information , guarantee that act on-line gambling casino game come loose of worry Beaver State concern . <a href=\"https://luckytwicecasinouk.com\">Lucky Twice Casino United Kingdom</a> The system produces multiple of numbers per second, determining the spin result of each click the moment a gambler hits the activate button. So, what’s the bottom line—reward or obstacle? Gaming apps tend to offer a more uncluttered and simpler navigation. This method is most often used for big withdrawals.</p>\r\n<ul>\r\n<li>Licence : Anjouan Stake</li>\r\n<li>What Character Of Secret Plan Does The Cassino Extend ? Ar Their Games From Deoxyadenosine Monophosphate Reputable Software Developers ?</li>\r\n<li>Users Can Receive Rewards By Logging In Every Day.</li>\r\n<li>Atomic Number 102 Real-Money Risk Of Infection</li>\r\n<li>Smartphone Members Receive Weekly Deals Smoothly Using Any Platform.</li>\r\n</ul>\r\n<p>For those on public terminals or those minimizing memory use, browser access remains a solid option. Remain composed under pressure — quick isn’t careless, careless punts cost. Be fast and exact. Wrong Calculator Setting. Smartphone gambling increased convenience. Touchscreen-friendly casinos match desktop options, including video poker and keno. If you’re a novice player curious about online casinos, it may feel daunting to understand the basics. Whichever, the option selected, it’s important to play safely to prevent overspending. All the same, a lot of honest platforms apply rigorous security procedures and user privacy safeguards to defend user records from unauthorised access or fraud.</p>\r\n<p>Many rewards have playthrough requirements reaching 40x or greater, which obliges you to play for long stretches to cash out. Themes & Graphics range from exotic adventures to futuristic design, offering visual diversity. High-quality sites feature steady bonuses including reloads, FS, and cashback. New content creation is faster with AI. The offer is free to activate. Trusted web platforms block fraud, creating trust.</p>\r\n<p>Welcome bonuses are frequently offered, offering hybrid deals, to drive engagement. This concentrated style often creates a more refined and more attractive interaction, especially for entry-level players. Online gambling sites used to be in my eyes close to a video story — compelling to behold, though not essential to participate. Offers are shaped to captivate — and indeed they succeed. Validate phone ownership for account recovery. Traditional players opt for real-world experience. This assortment grants user comfort and adaptability, giving you the freedom to deposit and withdraw as you wish, including Bitcoin and fiat currency options. Holding a naked lay position exposes you to liability cost. While some may be more relaxed, top regulators provide maximum reassurance. If you’re down money in the first 24–72 hours, the site gives you a partial payback. Players should always verify how players’ information is archived, whether strong encryption technology is applied, and whether business partners obtain it for ads or verification.</p>\r\n<p>The bottom line is, awareness of payout rates is vital, to increase success. When spinning slot machines or staking chips at roulette, you are usually doing so through either a gambling application or a web browser. That provides flexibility for gaming wherever you are. Push notifications keep players engaged, bringing real-time news. Wagering goals over 35x, bet restrictions, and cashout rules are standard features. Major game makers such as Microgaming are featured on top sites. After wagering, play the entire earned money for cashout. Mobile gaming is also on the rise, with more players playing on the go. Although this might not impact light users, those who play real-time games or special timed bonuses may see browser play as inconvenient. Go for bonuses with open, fair guidelines and use them on games with strong payout rates.</p>\r\n<img src= \"https://images.unsplash.com/photo-1723903819050-a4222736e0fb?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTQ3fHxvbmxpbmUlMjBjYXNpbm8lMjBnYW1lc3xlbnwwfHwwfHx8MA%3D%3D\" width=\"202\">\r\n<p>Keep KYC documents ready to prevent delays. Still, numerous trustworthy sites employ high-grade encryption with clear privacy standards to protect user information from hacking or misuse. Game volatility is a major consideration in gambling decisions. The ace can be one or eleven depending on the total hand value. Premium clubs create exclusivity, offering tiered rewards. No ambiguous clauses for predictability. Final thoughts, RTP is a key factor in selection. This is due to improved internet infrastructure and progress in tools that have allowed new forms of gambling.</p>\r\n<p>When WR is completed, initiate withdrawal through the cashier; standard compliance checks will apply. When internet gaming increases, various jurisdictions have established self-ban programs to keep users within limits. It shapes your funds’ safety once your money is on site. You can access well-known titles such as Ra’s Book Deluxe, Lucky Lady’s Charm, Royal Slot, and the jackpot game Poseidon Slot. Licensing & Security means the casino is approved by a trusted regulator and uses safe technology to keep you safe. For example, slot users are advised to pick deals featuring big maximum win limits. If there\'s no listed authority, don’t use it to stay secure.</p>', 'Cashalot Casino No Deposit Bonus ♢ Brighton   Spin & Win', '', 'publish', 'closed', 'open', '', 'cashalot-casino-no-deposit-bonus-%e2%99%a2-brighton-spin-win', '', '', '2025-11-30 09:50:33', '2025-11-30 09:50:33', '', 0, 'https://onlineincshop.com/?p=623', 0, 'post', '', 0),
(624, 9476, '2025-11-30 09:50:33', '2025-11-30 09:50:33', '\r\n<p>There’s also a built-in risk buffer — you can explore new games or experiment with bigger bets risk-free. Skill-based titles like blackjack tend to pay more, especially with optimal strategy. In conclusion, promotions are key to player retention. A few jurisdictions have acted during the pandemic era to approve digital sports betting, and other types of e-gaming are becoming increasingly popular. Fan favorites including sic bo can be played live, bringing authenticity. Sheets scare some who think it’s technical.</p>\r\n<h2>estimable Casino place for rely method acting : BetOnline</h2>\r\n<p>By using this bonus, you earn a small amount for signing up (normally between $10 and $50) with no deposit required. No-cost money is one of the finest and most ordinary promotions you can find at casino platforms. Use loss limits tools to stay responsible. Crucially, returns become consistent provided you follow the guide risk is near zero. Travel IPs trigger checks. Licensed gaming platforms are licensed through international bodies namely the MGA. However, for customers in Britain, the best sites reflect similar qualities. They are quiet about quality They function well. They’re properly licensed. Their games load instantly. They answer their emails. Risky machines produce rare prizes, but big rewards when they do.</p>\r\n<p>Amid the growth of online gambling, a large number of gamblers are able to access many different online betting sites worldwide. Should you want special deals, cryptocurrency banking options, or offerings from unique content creators, foreign casino platforms create attractive opportunities that local services may not give. Still such foreign gambling websites comply with various regulatory frameworks concerning user rights, data privacy, and assistance. Knowing how these factors work can help you choose wisely and create a better betting experience. Verify if a code applies before activation, or you might miss the offer. Keep software updated to reduce risk. But the truth is, certified iGaming platforms employ randomization engines to ensure fairness. Content libraries need to be varied including slots, blackjack, roulette, and live titles. The growth of online casinos has further supported the adoption of virtual slot games, with advancements in systems transforming playability, visuals, and data protection. Human emotion plays a role. Licensing is vital.</p>\r\n<p>Lines across the reels define winning combos.  Self-control features will use AI. These signup deals typically feature free chips within chosen games. Controlled betting can reduce risks, such as using time caps. The expansion of e-gaming venues has further boosted the adoption of e-slots, with enhancements in digital tools transforming performance, aesthetics, and safety. Disciplined play can reduce risks, such as tracking play history. Users have the chance to get fast returns with top ra casino. If withdrawals fail, it’s risky. These block access to gambling sites for a set period.  The true reason? To draw you in, lengthen your playing time, and enhance your retention and spending.</p>\r\n<p>When any pillar is missing, it’s easy to make rash calls that hurt results. Secure Socket bed ( SSL ) encryption cost habituate aside online casinos to protect personal and fiscal information , guarantee that act on-line gambling casino game come loose of worry Beaver State concern . <a href=\"https://luckytwicecasinouk.com\">Lucky Twice Casino United Kingdom</a> The system produces multiple of numbers per second, determining the spin result of each click the moment a gambler hits the activate button. So, what’s the bottom line—reward or obstacle? Gaming apps tend to offer a more uncluttered and simpler navigation. This method is most often used for big withdrawals.</p>\r\n<ul>\r\n<li>Licence : Anjouan Stake</li>\r\n<li>What Character Of Secret Plan Does The Cassino Extend ? Ar Their Games From Deoxyadenosine Monophosphate Reputable Software Developers ?</li>\r\n<li>Users Can Receive Rewards By Logging In Every Day.</li>\r\n<li>Atomic Number 102 Real-Money Risk Of Infection</li>\r\n<li>Smartphone Members Receive Weekly Deals Smoothly Using Any Platform.</li>\r\n</ul>\r\n<p>For those on public terminals or those minimizing memory use, browser access remains a solid option. Remain composed under pressure — quick isn’t careless, careless punts cost. Be fast and exact. Wrong Calculator Setting. Smartphone gambling increased convenience. Touchscreen-friendly casinos match desktop options, including video poker and keno. If you’re a novice player curious about online casinos, it may feel daunting to understand the basics. Whichever, the option selected, it’s important to play safely to prevent overspending. All the same, a lot of honest platforms apply rigorous security procedures and user privacy safeguards to defend user records from unauthorised access or fraud.</p>\r\n<p>Many rewards have playthrough requirements reaching 40x or greater, which obliges you to play for long stretches to cash out. Themes & Graphics range from exotic adventures to futuristic design, offering visual diversity. High-quality sites feature steady bonuses including reloads, FS, and cashback. New content creation is faster with AI. The offer is free to activate. Trusted web platforms block fraud, creating trust.</p>\r\n<p>Welcome bonuses are frequently offered, offering hybrid deals, to drive engagement. This concentrated style often creates a more refined and more attractive interaction, especially for entry-level players. Online gambling sites used to be in my eyes close to a video story — compelling to behold, though not essential to participate. Offers are shaped to captivate — and indeed they succeed. Validate phone ownership for account recovery. Traditional players opt for real-world experience. This assortment grants user comfort and adaptability, giving you the freedom to deposit and withdraw as you wish, including Bitcoin and fiat currency options. Holding a naked lay position exposes you to liability cost. While some may be more relaxed, top regulators provide maximum reassurance. If you’re down money in the first 24–72 hours, the site gives you a partial payback. Players should always verify how players’ information is archived, whether strong encryption technology is applied, and whether business partners obtain it for ads or verification.</p>\r\n<p>The bottom line is, awareness of payout rates is vital, to increase success. When spinning slot machines or staking chips at roulette, you are usually doing so through either a gambling application or a web browser. That provides flexibility for gaming wherever you are. Push notifications keep players engaged, bringing real-time news. Wagering goals over 35x, bet restrictions, and cashout rules are standard features. Major game makers such as Microgaming are featured on top sites. After wagering, play the entire earned money for cashout. Mobile gaming is also on the rise, with more players playing on the go. Although this might not impact light users, those who play real-time games or special timed bonuses may see browser play as inconvenient. Go for bonuses with open, fair guidelines and use them on games with strong payout rates.</p>\r\n<img src= \"https://images.unsplash.com/photo-1723903819050-a4222736e0fb?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTQ3fHxvbmxpbmUlMjBjYXNpbm8lMjBnYW1lc3xlbnwwfHwwfHx8MA%3D%3D\" width=\"202\">\r\n<p>Keep KYC documents ready to prevent delays. Still, numerous trustworthy sites employ high-grade encryption with clear privacy standards to protect user information from hacking or misuse. Game volatility is a major consideration in gambling decisions. The ace can be one or eleven depending on the total hand value. Premium clubs create exclusivity, offering tiered rewards. No ambiguous clauses for predictability. Final thoughts, RTP is a key factor in selection. This is due to improved internet infrastructure and progress in tools that have allowed new forms of gambling.</p>\r\n<p>When WR is completed, initiate withdrawal through the cashier; standard compliance checks will apply. When internet gaming increases, various jurisdictions have established self-ban programs to keep users within limits. It shapes your funds’ safety once your money is on site. You can access well-known titles such as Ra’s Book Deluxe, Lucky Lady’s Charm, Royal Slot, and the jackpot game Poseidon Slot. Licensing & Security means the casino is approved by a trusted regulator and uses safe technology to keep you safe. For example, slot users are advised to pick deals featuring big maximum win limits. If there\'s no listed authority, don’t use it to stay secure.</p>', 'Cashalot Casino No Deposit Bonus ♢ Brighton   Spin & Win', '', 'inherit', 'closed', 'closed', '', '623-revision-v1', '', '', '2025-11-30 09:50:33', '2025-11-30 09:50:33', '', 623, 'https://onlineincshop.com/?p=624', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(625, 9476, '2025-11-30 09:51:29', '2025-11-30 09:51:29', '\r\n<img src= \"https://www.shutterstock.com/image-photo/safe-online-casinos-600nw-600nw-2437611157.jpg\" width=\"214\">\r\n<p>Studierea istoricului mâinilor ajută strategiile jucătorilor în câștigarea de bani. Role fair-play combină câștiguri mici și mari, ușor de savurat. Mărci de jocuri de noroc online susțin bunăstarea jucătorilor, plafonări ale pierderilor. Sesiunile scurte și concentrate mențin energia și susțin implicarea, în timp ce sesiunile extinse beneficiază de pauze naturale. Rețineți că blackjack-ul este parțial bazat pe noroc iar la serile de cazinou la locul de muncă este vorba despre distracție. Potriviți geolocalizarea IP pentru a păstra bonusurile. Se întâmplă acum în Grupuri Discord, ​​pe forumuri Reddit, și în inbox-urile lor unde oamenii acum Întreabă despre nevoia de locație în timp real la blackjack sau de ce apar reclame după ce se termină navigarea. În cele din urmă, RTP-ul îi ajută pe jucători să înțeleagă valoarea jocului. Jocuri de testare sunt nu doar învățare, ci și o șansă de a vă cunoaște jocurile preferate fără cheltuieli. Regulile GDPR din 2018, aplicat în întreaga UE în 2018, este de obicei denumit cadru de reglementare.</p>\r\n<p>Probleme legate de pariurile nepotrivite/parțial potrivite. Nou-veniți la cazinouri activează frecvent pachete introductive imediat după înregistrare. Schimbă-ți stilul jocuri de cărți. Cazinouri optimizate pentru ecrane tactile oferă conținut egal, inclusiv opțiuni de pariuri sportive.  Servere prietenoase cu mediul . Uneori, diferențele reflectă gusturi, și uneori arată defecte reale. Premii în creștere. Jucătorii trebuie să aleagă dintre zeci de operatori, deci filtrarea inteligentă ajută.</p>\r\n<ul>\r\n<li>Securitate Modernă.</li>\r\n<li>Jucă  Jocuri Populare Cu Rotiri Bonus</li>\r\n<li>Bonusuri Pentru Jucătorii Fideli</li>\r\n<li>Rating Casinouri</li>\r\n<li>Tips To Bet Web-Based Gambling Pentru Bani Reali</li>\r\n</ul>\r\n<p> Use   oferte pentru membri  fără aplicație . Dacă doriți să vă maximizați beneficiile, participarea la un program de loialitate este o idee excelentă. Piețele acoperite pentru a rămâne legal. Cadouri de înregistrare oferă fonduri suplimentare, pentru înscriere. Educându-vă reduce surprizele. Rounduri rapide pentru momente libere. Comentarii help în evaluarea.</p>\r\n<p>Ratings despre casinouri online. Varianța jocului joacă un rol Plafone de pariuri protejează cazinourile de abuz iar încălcările pot anula plățile. Comparativ cu cazinourile la fața locului, locațiile la distanță oferă clienților să joace de noroc 24/7.  Deschideți cu pariuri modeste   pentru a testa volatilitatea  înainte de a crește . Cazinouri virtuale au reprezentat personal similar cu un lungmetraj — stimulant a observa, deși inutil a participa.</p>\r\n<h3>extreme casino 75 free spins</h3>\r\n<p>Randament la jucător (RTP) spune cât un titlu se întoarce pe termen lung. Verificarea licențierii este mai ușoară decât rezolvarea problemelor ulterioare.  Siguranța datelor   sunt factori critici   pentru site-urile de pariuri digitale ,  protejarea tranzacțiilor financiare . Chiar și așa, utilizarea datelor trebuie să fie transparentă. Asistenți virtuali îmbunătățesc serviciul clienți, prin aplicații mobile. Câteva sunt recreări ale tipurilor de jocuri de noroc tradiționale, pe de altă parte funcționalitate elemente moderne și chiar estetică proaspătă.</p>\r\n<p>Potrivit pentru înscrieri noi la cazinou fără depunere care nu au configurat anterior un cont de cazinou pe site. Să presupunem, un slot cotat la 96% va rambursa aproximativ 96 USD pentru fiecare sută cheltuiți, pe parcursul jocului extins. Funcții interactive, alegeri evolutive, căi personalizate, decizii în joc și alegeri dinamice transformă, îmbunătățește, schimbă și caracterizează jucătorul, utilizatorul, personajul principal, participantul, clientul ca element parțial activ, central, narator, figură strategică. Ce sloturi plătesc câștiguri pentru jucătorii din SUA. Pachete de rotiri introduce jucătorilor titluri, prin rotiri finanțate. Plasarea pariurilor gratuite în Normal în loc de SNR vă va reduce avantajul! În cele din urmă, jocurile cu dealeri autentici sunt aici pentru a rămâne. Locuri online aprobate protejează informațiile utilizatorilor, reducând riscurile. Este adevărat că fac bani, jucătorii reali retrag bani. Sesiuni interactive de acasă.</p>\r\n<p>Casino loyalty: cum să câștigați. Jucătorii vor vedea experiențe de joc variate inclus în cazinourile online. Cazinouri în stațiuni respectă și regulile, nu arată clar avantajul casei.  Jucat strategic ,  Un bonus pentru sloturi poate adăuga cu adevărat valoare jocului dvs.  —  Nu prin promiterea plăților , dar oferindu-vă sesiuni mai lungi și oferindu-vă șansa de a risca inteligent fără a vă suprasolicita bugetul. Evită conflictele de călătorie pentru a preveni interdicțiile automate. Prima mea mână a fost egal, următoarea rundă — Am marcat.  Scanarea listei studiourilor   semnalează rapid profunzimea . Păstrează notițe de sesiune   pentru o revizuire ulterioară. Deveniți membru sistem de recompense automat. Consilii despre platforme bune. Implicare senzorială este îmbunătățit prin sunet spațial.</p>\r\n<h3>free spins on sign up</h3>\r\n<p>Viitorul al jocurilor de noroc virtuale se străduiește să fie responsabil.  Înainte de a plasa primul pariu,  utilizatori online  se gândesc   dacă să viziteze un cazinou real sau un site web . Criptare completă, recunoscute de UKGC. Jucători ar trebui să verifice licențele, din jurisdicții respectate, cum ar fi Comisia Alderney.  Această inovație s-a extins  segmente noi de utilizatori pentru companii de iGaming și a introdus o nouă generație de jucători. Date stimulente adesea sunt de obicei prezentate ca bani gratis cuplat cu ture gratuite răscumpărabile pe sloturi video.  Mașini corecte  optimizate pentru   toate dispozitivele .</p>\r\n<p> Aplicații de jocuri de noroc mobile   au beneficii de   funcții încorporate   pe care browserele online nu le pot oglindi . Concentrarea asigură că fiecare minut petrecut jucându-se este semnificativ   și adaugă la distracția generală . Analizați  sloturi cu randament ridicat selected.  Caracteristici de învățare automată   adaptați ofertele . Bonusul total este distribuit pe primele depozite, adesea până la trei sau patru. Dacă riști puțin, chiar și câștigurile mici pot fi valoroase. Aceste jocuri emulează mediul unui cazinou tradițional și pot fi jucate pe telefoane mobile.</p>\r\n<h3>Provably Fair Results You Can Verify</h3>\r\n<p>Vibrația în acel moment a fost uimitor — un amestec de bucurie, uimire amestecat cu șoc ușor. Multe casinouri digitale oferă rolette interactivă pentru o experiență mai realistă. Aceste variații electronice ale role de cazino de școală veche {oferă confort, opțiuni și probabilitatea pentru câștiguri mari, ceea ce le face un format îndrăgit atât printre ușoare, cât și printre cu mize mari entuziaști ai jocurilor de noroc.  Jocuri cu randament mai bun   sunt mai recompensatoare ,  datorită plăților mai mari . Nu este necesară nicio instalare, și de obicei funcționează pe mai multe dispozitive. Un mit persistent   este că ora din zi afectează câștigurile ,  în timp ce rezultatele rămân consecvente .</p>\r\n<p>Un bonus de înscriere reprezintă o parte a cele mai tipice promoții țintire înregistrați inițiali. A te bucura de spectacole și băuturi adaugă valoare emoțională. Opțiuni speciale pe care nu le veți mai juca.  Ghid de pariere : ce trebuie să știți . A înțelege preînregistrarea în program evită problemele ulterioare. Recompense upgradabile prin misiuni. Privește aceste promoții în principal ca o modalitate plăcută de a explora platforma, și niciodată ca o metodă de a asigura câștiguri. Preferi un pariu roșu mic în locul unui dezastru mare decât să rămâi prins pentru întreaga miză.</p>\r\n<p>Așteaptă-te la fluctuații negative pentru a rămâne calm. De exemplu, jocuri de loterie online, keno, bilete razuibile virtuale pot fi acum jucate online. În câteva minute de rulare rotiri, Am început o rundă specială. Reducere avantaj rambursează o parte din pierderile dvs. nete pe un interval de timp stabilit. Referențierea încrucișată a ambelor surse, vă puteți crea un context mai bun despre rezultatele probabile. Datorită dealerilor în timp real, pariorii pot simți jocuri de masă live de acasă.  Mărturiile clienților pot oferi detalii importante   despre profesionalismul și viteza serviciului de asistență , în special pentru cazurile care implică probleme financiare sau defecțiuni tehnice. Use mythical games super animated. Păstrează-ți controlul cu dashboard. Acestea nu sunt statistici minore, ele semnalează o schimbare vizibilă în modul în care utilizatorii obișnuiți utilizează platformele online. Plăți masive sunt câștigate la nivel mondial, prin intermediul aparatelor cu plăți mari.</p>\r\n<p>Washington a devenit primul regiune care legalizează pariuri sportive în începutul anului 2020. Acumpărați cupoane de reducere exclusive prin e-mail. Tone of voice este divers pentru anumite pâlnii. Amediile digitale de jocuri de noroc sunt în creștere datorită ușurinței de utilizare lor. Acest lucru permite testarea mai multor jocuri respectarea bugetului. Să consultați experții, să alegeți cu înțelepciune și să vă bucurați de joc în camera de jocuri. Provocări live în fiecare sezon. Totuși, câteva regiuni care limitează sau interzic accesul la portaluri de jocuri de noroc electronice. Având în vedere creșterea jocuri de noroc pe internet, un număr mare de jucători obține acces la mai multe cazinouri online la scară internațională.   În acele zile, jucătorii trebuiau să ruleze aplicații pentru a se alătura cazinoului. Bucuria de a-ți asuma riscuri alimentează mai mult joc.</p>\r\n<img src= \"https://images.unsplash.com/photo-1716277546280-c31d1d2fa25e?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NjQ5fHxvbmxpbmUlMjBjYXNpbm98ZW58MHx8MHx8fDA%3D\" width=\"796\">\r\n<p>Folosește doar portofele cu nume   pentru a accelera plățile. La lansarea cazinoului nostru online în anul 2016, în plus am stabilit servicii pentru clienți și fiabilitate în prim-plan. Jucă acum și câștigă rotiri. Dacă ești un jucător de sloturi care apreciază recompensele cu rotiri gratuite, aceste pachete îți vor extinde cu siguranță plăcerea și soldul. Programe de fidelitate beneficiază jucătorii fideli prin rambursări, credite și bonusuri. Comunicare automată accompany în timpul înregistrării. Tehnologia Blockchain: cum funcționează.</p>\r\n<p>Jocurile ar trebui să fie pentru bucurie, nu un instrument de adaptare. O abordare frecvent utilizată este doblare a riscului care înseamnă dublarea pariurilor pentru recuperarea pierderilor. Creaturi mitice. Pentru utilizatori doresc flexibilitate, cazinouri independente combinate cu alte cazinouri transfrontaliere nelegat de scheme majore de jocuri de noroc responsabile de exemplu GamStop câștigă popularitate. Puneți un pariu instantaneu pe tabletă. Verificați mărimea pariului per FS pentru a evita surprizele. IA în iGaming creează jocuri mai inteligente. Role cu jackpot, în schimb, tind să fie mai profitabile pentru cazinouri, din cauza designului jocului. Cazinourile și sloturile online oferă opțiuni nelimitate, indiferent dacă îți încerci norocul. O altă eroare este parierea unei mize greșite.</p>\r\n<h3>ducky casino</h3>\r\n<p> Evaluează chat-ul live . Cu jocuri pe smartphone-uri, fani au cazinoul în buzunar. Cecuri Onfido/Trulioo pentru acces facil. Loto video vechi și jocuri de masă inclusiv roulette sunt oferite.  Un alt plan de pariere   este ajustarea pariurilor la bankroll ,  în care mărimea este flexibilă  cu totalul bankroll-ului . Multe platforme oferă, de asemenea, jocuri transmise în direct, unde experți în cazinou dirijează jocuri în format live, adăugând un element social distracției.</p>\r\n<p>Înainte de a alege o tip de tranzacție, jucătorii ar trebui să compară limite. Această dorință de a apăsa „încă o rotire” devine mai puternică atunci când sunt în joc bani bonus , mai ales când promoțiile care se termină repede și ceasurile îndeamnă la joc rapid. A te bucura de spectacole și băuturi contribuie la imersiune. Inregistrează-te în turneuri săptămânale cu premii. Ce categorii se potrivesc preferințelor mele? Acesta marchează cifra pe care îl puteți retrage în cont de debit. Reglementare nu este negociabil, de la consilii oficiale.</p>\r\n<h3>bovada no deposit bonus 2025</h3>\r\n<p>Oferte de bun venit crește timpul de joc. Totuși, ar trebui să analizați opțiunile de casierie acceptate, comisioane pentru conversia banilor, precum și timpii de procesare a plăților. Platforme de pariuri folosesc tactici comportamentale pentru a stimula pariurile continue.  Roți de ruletă live . Retragerile prin criptomonede sunt rapide de multe ori decât prin metode fiat.  Cartografiați atributele fiecărei promoții  —  consultați rezumatul nostru. Urmărirea pierderilor distruge pariurile potrivite. Slot machines muzicale caracterizează distracția. Poartă de achiziție sub 90 de zile pentru mai puține retrimiteri. Poate fi creditate ca bani reali altfel credit bonus.</p>\r\n<p>Devine membru miniconcursuri. Jugați gratuit ușor. În concluzie, platformele mobile modelează tendințele în jocurile de noroc.  În total, rezultă o gamă enormă de cazinouri pentru jucători.   Creșterea popularității cazinourilor online, platformelor digitale, centrelor de jocuri de noroc online, site-urilor de jocuri de <a href=\"https://betmen-casino.net\">Betmen Casino</a> noroc virtuale, cazinourilor la distanță, locațiilor de jocuri de noroc electronice a alimentat, accelerat, stimulat, susținut și intensificat creșterea succesului, adoptării, dominării sloturilor online, rolelor digitale, jocurilor de sloturi virtuale, sloturilor online, sloturilor electronice, sloturilor de cazinou, cu progrese, inovații, progrese, descoperiri, îmbunătățiri în domeniul tehnologiei, software-ului, sistemelor, platformelor, instrumentelor digitale, ingineriei, îmbunătățirii, îmbunătățirii gameplay-ului, experienței utilizatorului, capacității de joc, interacțiunii, mecanicii de performanță, graficii, elementelor vizuale, designului, imaginilor, esteticii, animațiilor și securității datelor. protecție. Confirmați potrivirea numelui și identității pentru a trece verificările.  Evaluările jucătorilor pot oferi o imagine mai clară  despre modul în care serviciul clienți rezolvă problemele, în special pentru cazurile care implică probleme financiare sau defecțiuni tehnice. Selecția de jocuri ar trebui să includă o o bibliotecă diversă de clasice de cazino de la mărci de încredere precum Evolution.  Cunoașterea psihologiei   ajută la evitarea tiparelor periculoase . Factorul cheie de diferențiere cerințele inteligibile.</p>\r\n<h3>deposit 10 get 300 free spins</h3>\r\n<p> Alege procesarea rapidă a plăților . Privacy este cerința de bază pentru trust fiecărui user. Evită Martingale pentru a proteja bankroll-ul. Jackpoturi bazate pe jocuri duc la sesiuni prelungite. Când un jucător solicită eliminarea datelor, furnizorii adesea nu o pot îndeplini. Stimulentele sunt construite pentru a inspira — și realizează acest lucru. Unele cazinouri pe internet găzduiesc jocuri cu dealeri live care permit participanților să să se implice personal instruit prin streaming video. O altă avantaj majoră este sfera de aplicare de opțiuni.</p>\r\n<p>Jocuri jackpot face de neuitat explorare.  Jocuri cu câștiguri mici   produc premii mici ,  cu plăți mai mici . Modern sloturi electronice prezintă diverse narațiuni vizuale, rute de recompensă și funcții suplimentare, oferind o experiență dinamic. bonusul de pornire poate fi cheltuit de către membru pentru mizare.  Identifică creditele fantomă   pentru a gestiona așteptările .  Atenție că  câteva site-uri  limitează jocurile   pentru oferte FS  și  pot limita   numărul de titluri   acceptă credit bonus .  Studierea comportamentului   îți ghidează selecția jocurilor . Portale de jocuri develop oferta digitală datorită conținutului inovator. Într-o anumită zi Am decis să încerc cazinou live online — un site web cu dealer uman live cine direcționează jocul imediat. Promoții fără depunere în stil reîncărcare pot apărea pentru jucătorii existenți în perioade limitate. Transacțiuni sunt flexibile, precum e-wallets.</p>\r\n<p>Corectitudinea contează. Tehnologia continuă să schimbe peisajul, cu jocuri în realitate virtuală și cazinouri cripto câștigând teren. Evoluția criptomonedelor în pariurile virtuale pare promițător. Soccer: dacă o echipă are 10 încercări în prima repriză fără a marca, să pariezi pe ei că vor marca următorul gol ar putea avea valoare.  Dacă vă simțiți incapabili să faceți față, consultați un consilier . Eventual, entuziaștii pot ajunge la evenimente cu role mari.</p>', 'Bonus Fără Depunere La Cazinoul Heapsowins 🔥 Caraș-Severin   🎧', '', 'publish', 'closed', 'open', '', 'bonus-fara-depunere-la-cazinoul-heapsowins-%f0%9f%94%a5-caras-severin-%f0%9f%8e%a7', '', '', '2025-11-30 09:51:29', '2025-11-30 09:51:29', '', 0, 'https://onlineincshop.com/?p=625', 0, 'post', '', 0),
(626, 9476, '2025-11-30 09:51:29', '2025-11-30 09:51:29', '\r\n<img src= \"https://www.shutterstock.com/image-photo/safe-online-casinos-600nw-600nw-2437611157.jpg\" width=\"214\">\r\n<p>Studierea istoricului mâinilor ajută strategiile jucătorilor în câștigarea de bani. Role fair-play combină câștiguri mici și mari, ușor de savurat. Mărci de jocuri de noroc online susțin bunăstarea jucătorilor, plafonări ale pierderilor. Sesiunile scurte și concentrate mențin energia și susțin implicarea, în timp ce sesiunile extinse beneficiază de pauze naturale. Rețineți că blackjack-ul este parțial bazat pe noroc iar la serile de cazinou la locul de muncă este vorba despre distracție. Potriviți geolocalizarea IP pentru a păstra bonusurile. Se întâmplă acum în Grupuri Discord, ​​pe forumuri Reddit, și în inbox-urile lor unde oamenii acum Întreabă despre nevoia de locație în timp real la blackjack sau de ce apar reclame după ce se termină navigarea. În cele din urmă, RTP-ul îi ajută pe jucători să înțeleagă valoarea jocului. Jocuri de testare sunt nu doar învățare, ci și o șansă de a vă cunoaște jocurile preferate fără cheltuieli. Regulile GDPR din 2018, aplicat în întreaga UE în 2018, este de obicei denumit cadru de reglementare.</p>\r\n<p>Probleme legate de pariurile nepotrivite/parțial potrivite. Nou-veniți la cazinouri activează frecvent pachete introductive imediat după înregistrare. Schimbă-ți stilul jocuri de cărți. Cazinouri optimizate pentru ecrane tactile oferă conținut egal, inclusiv opțiuni de pariuri sportive.  Servere prietenoase cu mediul . Uneori, diferențele reflectă gusturi, și uneori arată defecte reale. Premii în creștere. Jucătorii trebuie să aleagă dintre zeci de operatori, deci filtrarea inteligentă ajută.</p>\r\n<ul>\r\n<li>Securitate Modernă.</li>\r\n<li>Jucă  Jocuri Populare Cu Rotiri Bonus</li>\r\n<li>Bonusuri Pentru Jucătorii Fideli</li>\r\n<li>Rating Casinouri</li>\r\n<li>Tips To Bet Web-Based Gambling Pentru Bani Reali</li>\r\n</ul>\r\n<p> Use   oferte pentru membri  fără aplicație . Dacă doriți să vă maximizați beneficiile, participarea la un program de loialitate este o idee excelentă. Piețele acoperite pentru a rămâne legal. Cadouri de înregistrare oferă fonduri suplimentare, pentru înscriere. Educându-vă reduce surprizele. Rounduri rapide pentru momente libere. Comentarii help în evaluarea.</p>\r\n<p>Ratings despre casinouri online. Varianța jocului joacă un rol Plafone de pariuri protejează cazinourile de abuz iar încălcările pot anula plățile. Comparativ cu cazinourile la fața locului, locațiile la distanță oferă clienților să joace de noroc 24/7.  Deschideți cu pariuri modeste   pentru a testa volatilitatea  înainte de a crește . Cazinouri virtuale au reprezentat personal similar cu un lungmetraj — stimulant a observa, deși inutil a participa.</p>\r\n<h3>extreme casino 75 free spins</h3>\r\n<p>Randament la jucător (RTP) spune cât un titlu se întoarce pe termen lung. Verificarea licențierii este mai ușoară decât rezolvarea problemelor ulterioare.  Siguranța datelor   sunt factori critici   pentru site-urile de pariuri digitale ,  protejarea tranzacțiilor financiare . Chiar și așa, utilizarea datelor trebuie să fie transparentă. Asistenți virtuali îmbunătățesc serviciul clienți, prin aplicații mobile. Câteva sunt recreări ale tipurilor de jocuri de noroc tradiționale, pe de altă parte funcționalitate elemente moderne și chiar estetică proaspătă.</p>\r\n<p>Potrivit pentru înscrieri noi la cazinou fără depunere care nu au configurat anterior un cont de cazinou pe site. Să presupunem, un slot cotat la 96% va rambursa aproximativ 96 USD pentru fiecare sută cheltuiți, pe parcursul jocului extins. Funcții interactive, alegeri evolutive, căi personalizate, decizii în joc și alegeri dinamice transformă, îmbunătățește, schimbă și caracterizează jucătorul, utilizatorul, personajul principal, participantul, clientul ca element parțial activ, central, narator, figură strategică. Ce sloturi plătesc câștiguri pentru jucătorii din SUA. Pachete de rotiri introduce jucătorilor titluri, prin rotiri finanțate. Plasarea pariurilor gratuite în Normal în loc de SNR vă va reduce avantajul! În cele din urmă, jocurile cu dealeri autentici sunt aici pentru a rămâne. Locuri online aprobate protejează informațiile utilizatorilor, reducând riscurile. Este adevărat că fac bani, jucătorii reali retrag bani. Sesiuni interactive de acasă.</p>\r\n<p>Casino loyalty: cum să câștigați. Jucătorii vor vedea experiențe de joc variate inclus în cazinourile online. Cazinouri în stațiuni respectă și regulile, nu arată clar avantajul casei.  Jucat strategic ,  Un bonus pentru sloturi poate adăuga cu adevărat valoare jocului dvs.  —  Nu prin promiterea plăților , dar oferindu-vă sesiuni mai lungi și oferindu-vă șansa de a risca inteligent fără a vă suprasolicita bugetul. Evită conflictele de călătorie pentru a preveni interdicțiile automate. Prima mea mână a fost egal, următoarea rundă — Am marcat.  Scanarea listei studiourilor   semnalează rapid profunzimea . Păstrează notițe de sesiune   pentru o revizuire ulterioară. Deveniți membru sistem de recompense automat. Consilii despre platforme bune. Implicare senzorială este îmbunătățit prin sunet spațial.</p>\r\n<h3>free spins on sign up</h3>\r\n<p>Viitorul al jocurilor de noroc virtuale se străduiește să fie responsabil.  Înainte de a plasa primul pariu,  utilizatori online  se gândesc   dacă să viziteze un cazinou real sau un site web . Criptare completă, recunoscute de UKGC. Jucători ar trebui să verifice licențele, din jurisdicții respectate, cum ar fi Comisia Alderney.  Această inovație s-a extins  segmente noi de utilizatori pentru companii de iGaming și a introdus o nouă generație de jucători. Date stimulente adesea sunt de obicei prezentate ca bani gratis cuplat cu ture gratuite răscumpărabile pe sloturi video.  Mașini corecte  optimizate pentru   toate dispozitivele .</p>\r\n<p> Aplicații de jocuri de noroc mobile   au beneficii de   funcții încorporate   pe care browserele online nu le pot oglindi . Concentrarea asigură că fiecare minut petrecut jucându-se este semnificativ   și adaugă la distracția generală . Analizați  sloturi cu randament ridicat selected.  Caracteristici de învățare automată   adaptați ofertele . Bonusul total este distribuit pe primele depozite, adesea până la trei sau patru. Dacă riști puțin, chiar și câștigurile mici pot fi valoroase. Aceste jocuri emulează mediul unui cazinou tradițional și pot fi jucate pe telefoane mobile.</p>\r\n<h3>Provably Fair Results You Can Verify</h3>\r\n<p>Vibrația în acel moment a fost uimitor — un amestec de bucurie, uimire amestecat cu șoc ușor. Multe casinouri digitale oferă rolette interactivă pentru o experiență mai realistă. Aceste variații electronice ale role de cazino de școală veche {oferă confort, opțiuni și probabilitatea pentru câștiguri mari, ceea ce le face un format îndrăgit atât printre ușoare, cât și printre cu mize mari entuziaști ai jocurilor de noroc.  Jocuri cu randament mai bun   sunt mai recompensatoare ,  datorită plăților mai mari . Nu este necesară nicio instalare, și de obicei funcționează pe mai multe dispozitive. Un mit persistent   este că ora din zi afectează câștigurile ,  în timp ce rezultatele rămân consecvente .</p>\r\n<p>Un bonus de înscriere reprezintă o parte a cele mai tipice promoții țintire înregistrați inițiali. A te bucura de spectacole și băuturi adaugă valoare emoțională. Opțiuni speciale pe care nu le veți mai juca.  Ghid de pariere : ce trebuie să știți . A înțelege preînregistrarea în program evită problemele ulterioare. Recompense upgradabile prin misiuni. Privește aceste promoții în principal ca o modalitate plăcută de a explora platforma, și niciodată ca o metodă de a asigura câștiguri. Preferi un pariu roșu mic în locul unui dezastru mare decât să rămâi prins pentru întreaga miză.</p>\r\n<p>Așteaptă-te la fluctuații negative pentru a rămâne calm. De exemplu, jocuri de loterie online, keno, bilete razuibile virtuale pot fi acum jucate online. În câteva minute de rulare rotiri, Am început o rundă specială. Reducere avantaj rambursează o parte din pierderile dvs. nete pe un interval de timp stabilit. Referențierea încrucișată a ambelor surse, vă puteți crea un context mai bun despre rezultatele probabile. Datorită dealerilor în timp real, pariorii pot simți jocuri de masă live de acasă.  Mărturiile clienților pot oferi detalii importante   despre profesionalismul și viteza serviciului de asistență , în special pentru cazurile care implică probleme financiare sau defecțiuni tehnice. Use mythical games super animated. Păstrează-ți controlul cu dashboard. Acestea nu sunt statistici minore, ele semnalează o schimbare vizibilă în modul în care utilizatorii obișnuiți utilizează platformele online. Plăți masive sunt câștigate la nivel mondial, prin intermediul aparatelor cu plăți mari.</p>\r\n<p>Washington a devenit primul regiune care legalizează pariuri sportive în începutul anului 2020. Acumpărați cupoane de reducere exclusive prin e-mail. Tone of voice este divers pentru anumite pâlnii. Amediile digitale de jocuri de noroc sunt în creștere datorită ușurinței de utilizare lor. Acest lucru permite testarea mai multor jocuri respectarea bugetului. Să consultați experții, să alegeți cu înțelepciune și să vă bucurați de joc în camera de jocuri. Provocări live în fiecare sezon. Totuși, câteva regiuni care limitează sau interzic accesul la portaluri de jocuri de noroc electronice. Având în vedere creșterea jocuri de noroc pe internet, un număr mare de jucători obține acces la mai multe cazinouri online la scară internațională.   În acele zile, jucătorii trebuiau să ruleze aplicații pentru a se alătura cazinoului. Bucuria de a-ți asuma riscuri alimentează mai mult joc.</p>\r\n<img src= \"https://images.unsplash.com/photo-1716277546280-c31d1d2fa25e?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NjQ5fHxvbmxpbmUlMjBjYXNpbm98ZW58MHx8MHx8fDA%3D\" width=\"796\">\r\n<p>Folosește doar portofele cu nume   pentru a accelera plățile. La lansarea cazinoului nostru online în anul 2016, în plus am stabilit servicii pentru clienți și fiabilitate în prim-plan. Jucă acum și câștigă rotiri. Dacă ești un jucător de sloturi care apreciază recompensele cu rotiri gratuite, aceste pachete îți vor extinde cu siguranță plăcerea și soldul. Programe de fidelitate beneficiază jucătorii fideli prin rambursări, credite și bonusuri. Comunicare automată accompany în timpul înregistrării. Tehnologia Blockchain: cum funcționează.</p>\r\n<p>Jocurile ar trebui să fie pentru bucurie, nu un instrument de adaptare. O abordare frecvent utilizată este doblare a riscului care înseamnă dublarea pariurilor pentru recuperarea pierderilor. Creaturi mitice. Pentru utilizatori doresc flexibilitate, cazinouri independente combinate cu alte cazinouri transfrontaliere nelegat de scheme majore de jocuri de noroc responsabile de exemplu GamStop câștigă popularitate. Puneți un pariu instantaneu pe tabletă. Verificați mărimea pariului per FS pentru a evita surprizele. IA în iGaming creează jocuri mai inteligente. Role cu jackpot, în schimb, tind să fie mai profitabile pentru cazinouri, din cauza designului jocului. Cazinourile și sloturile online oferă opțiuni nelimitate, indiferent dacă îți încerci norocul. O altă eroare este parierea unei mize greșite.</p>\r\n<h3>ducky casino</h3>\r\n<p> Evaluează chat-ul live . Cu jocuri pe smartphone-uri, fani au cazinoul în buzunar. Cecuri Onfido/Trulioo pentru acces facil. Loto video vechi și jocuri de masă inclusiv roulette sunt oferite.  Un alt plan de pariere   este ajustarea pariurilor la bankroll ,  în care mărimea este flexibilă  cu totalul bankroll-ului . Multe platforme oferă, de asemenea, jocuri transmise în direct, unde experți în cazinou dirijează jocuri în format live, adăugând un element social distracției.</p>\r\n<p>Înainte de a alege o tip de tranzacție, jucătorii ar trebui să compară limite. Această dorință de a apăsa „încă o rotire” devine mai puternică atunci când sunt în joc bani bonus , mai ales când promoțiile care se termină repede și ceasurile îndeamnă la joc rapid. A te bucura de spectacole și băuturi contribuie la imersiune. Inregistrează-te în turneuri săptămânale cu premii. Ce categorii se potrivesc preferințelor mele? Acesta marchează cifra pe care îl puteți retrage în cont de debit. Reglementare nu este negociabil, de la consilii oficiale.</p>\r\n<h3>bovada no deposit bonus 2025</h3>\r\n<p>Oferte de bun venit crește timpul de joc. Totuși, ar trebui să analizați opțiunile de casierie acceptate, comisioane pentru conversia banilor, precum și timpii de procesare a plăților. Platforme de pariuri folosesc tactici comportamentale pentru a stimula pariurile continue.  Roți de ruletă live . Retragerile prin criptomonede sunt rapide de multe ori decât prin metode fiat.  Cartografiați atributele fiecărei promoții  —  consultați rezumatul nostru. Urmărirea pierderilor distruge pariurile potrivite. Slot machines muzicale caracterizează distracția. Poartă de achiziție sub 90 de zile pentru mai puține retrimiteri. Poate fi creditate ca bani reali altfel credit bonus.</p>\r\n<p>Devine membru miniconcursuri. Jugați gratuit ușor. În concluzie, platformele mobile modelează tendințele în jocurile de noroc.  În total, rezultă o gamă enormă de cazinouri pentru jucători.   Creșterea popularității cazinourilor online, platformelor digitale, centrelor de jocuri de noroc online, site-urilor de jocuri de <a href=\"https://betmen-casino.net\">Betmen Casino</a> noroc virtuale, cazinourilor la distanță, locațiilor de jocuri de noroc electronice a alimentat, accelerat, stimulat, susținut și intensificat creșterea succesului, adoptării, dominării sloturilor online, rolelor digitale, jocurilor de sloturi virtuale, sloturilor online, sloturilor electronice, sloturilor de cazinou, cu progrese, inovații, progrese, descoperiri, îmbunătățiri în domeniul tehnologiei, software-ului, sistemelor, platformelor, instrumentelor digitale, ingineriei, îmbunătățirii, îmbunătățirii gameplay-ului, experienței utilizatorului, capacității de joc, interacțiunii, mecanicii de performanță, graficii, elementelor vizuale, designului, imaginilor, esteticii, animațiilor și securității datelor. protecție. Confirmați potrivirea numelui și identității pentru a trece verificările.  Evaluările jucătorilor pot oferi o imagine mai clară  despre modul în care serviciul clienți rezolvă problemele, în special pentru cazurile care implică probleme financiare sau defecțiuni tehnice. Selecția de jocuri ar trebui să includă o o bibliotecă diversă de clasice de cazino de la mărci de încredere precum Evolution.  Cunoașterea psihologiei   ajută la evitarea tiparelor periculoase . Factorul cheie de diferențiere cerințele inteligibile.</p>\r\n<h3>deposit 10 get 300 free spins</h3>\r\n<p> Alege procesarea rapidă a plăților . Privacy este cerința de bază pentru trust fiecărui user. Evită Martingale pentru a proteja bankroll-ul. Jackpoturi bazate pe jocuri duc la sesiuni prelungite. Când un jucător solicită eliminarea datelor, furnizorii adesea nu o pot îndeplini. Stimulentele sunt construite pentru a inspira — și realizează acest lucru. Unele cazinouri pe internet găzduiesc jocuri cu dealeri live care permit participanților să să se implice personal instruit prin streaming video. O altă avantaj majoră este sfera de aplicare de opțiuni.</p>\r\n<p>Jocuri jackpot face de neuitat explorare.  Jocuri cu câștiguri mici   produc premii mici ,  cu plăți mai mici . Modern sloturi electronice prezintă diverse narațiuni vizuale, rute de recompensă și funcții suplimentare, oferind o experiență dinamic. bonusul de pornire poate fi cheltuit de către membru pentru mizare.  Identifică creditele fantomă   pentru a gestiona așteptările .  Atenție că  câteva site-uri  limitează jocurile   pentru oferte FS  și  pot limita   numărul de titluri   acceptă credit bonus .  Studierea comportamentului   îți ghidează selecția jocurilor . Portale de jocuri develop oferta digitală datorită conținutului inovator. Într-o anumită zi Am decis să încerc cazinou live online — un site web cu dealer uman live cine direcționează jocul imediat. Promoții fără depunere în stil reîncărcare pot apărea pentru jucătorii existenți în perioade limitate. Transacțiuni sunt flexibile, precum e-wallets.</p>\r\n<p>Corectitudinea contează. Tehnologia continuă să schimbe peisajul, cu jocuri în realitate virtuală și cazinouri cripto câștigând teren. Evoluția criptomonedelor în pariurile virtuale pare promițător. Soccer: dacă o echipă are 10 încercări în prima repriză fără a marca, să pariezi pe ei că vor marca următorul gol ar putea avea valoare.  Dacă vă simțiți incapabili să faceți față, consultați un consilier . Eventual, entuziaștii pot ajunge la evenimente cu role mari.</p>', 'Bonus Fără Depunere La Cazinoul Heapsowins 🔥 Caraș-Severin   🎧', '', 'inherit', 'closed', 'closed', '', '625-revision-v1', '', '', '2025-11-30 09:51:29', '2025-11-30 09:51:29', '', 625, 'https://onlineincshop.com/?p=626', 0, 'revision', '', 0),
(627, 9476, '2025-11-30 09:52:22', '2025-11-30 09:52:22', '\r\n<img src= \"https://tse4.mm.bing.net/th?id=OIF.0eNxD3j/18O4jy5dPgdtTA&r=0&pid=Api\" width=\"257\">\r\n<p>Partial refund offers lessen financial pain, increasing session resilience. Claiming flows are broadly similar and signup gifts often taking longest. Still, to achieve the top prizes, you normally must bet more. At the start, keep to lower odds. Make sure enough money is in the market to help your order fill. Learn cashable structures to compute WR. Play may be confined to select titles, often with FS bonuses, and some sites limit cash-bonus play too. A popular version is top-up matching, if a provider rewards added cash relative to your amount. Player psychology affects game outcomes, especially in internet betting.</p>\r\n<ul>\r\n<li>Authorized Operators Offer Protected Weekly Terms.</li>\r\n<li>Age Limit For Users Raised To 21 Years</li>\r\n<li>Licensed Companies Deliver Secure Conditions Plus Honest Gameplay.</li>\r\n<li>The Epiphine Casino WELCOMES Novices This Week.</li>\r\n<li>Certified Platforms Deliver Honest Rules As Well As Protected Rules.</li>\r\n</ul>\r\n<p>Rebate promotion refunds a percentage of losses after wins over a period. Picking a safe digital casino today can be challenging. You testament regain elaborated info about completely cookies nether from each one accept class under . Digital casinos are rising in demand over time. Claiming flows are broadly similar and reg bonuses often needing the most steps. Those who apply a clear plan boost their fun, broaden their selection, and enjoy extended, rewarding play. Online gambling is lawful across 28 jurisdictions and is regulated by regulatory agencies that accredit casino platforms.</p>\r\n<p>Save proof of wins for audits. In the mid-90s, early internet casinos came online, featuring classic titles with simple gambling formats. For gamblers wishing for fewer restrictions, casinos not on GamStop and various international sites outside of mainstream player restriction systems namely GamStop are becoming more popular. Virtual users have a wealth of deposit systems to choose from. Most operators promote big sign-up deals. To sum up, new tech will make gambling more immersive. The genuine purpose? To grab your attention, extend your play sessions, and heighten the possibility of your return and payment. With all of these, you’ll find the right site.  Sometimes a bet gets partially matched, part of the stake fills, the rest sits. Let’s say, a game boasting 96% predicts that after many spins, 96% of all wagers stay with users.</p>\r\n<h3>spin time</h3>\r\n<p>Money-out must be smooth and efficient. When payouts are held back, that indicates bad service. Here’s when the risk often shows. A persistent myth is that schedule influences results, and payouts stay constant. Player protection is advanced with predictive analytics, by warning at danger points. Several U.S. casinos have introduced cashback welcome deals alongside or instead of deposit match promotions. Bonus activation for the free no deposit casino bonus is quick. Life-changing amounts are hit every day, on popular platforms. We aggregate top online casino no-deposit bonuses this year so you can save time; scan our reviews in our guide, every brand featured are reliable and proven, and for reel fans claim no-deposit free spins, or for card games opt for bonus credit with broader coverage. You can experience famous titles such as Book of Ra Deluxe, Lucky Lady Slot, Royal Reels, and the progressive slot Poseidon Game. The purpose of the game is to overcome the dealer’s cards while remaining at or below 21. Review reversal policies to keep discipline.</p>\r\n<ul>\r\n<li>Gamblers May Try Activities Any Time Of Day.</li>\r\n<li>PLUS Clxxx Incentive Whirl On For The First Time Sedimentation</li>\r\n<li>Crypto-Friendly: Many $100 Free Bonuses Can Be Used And Payout In Digital Coins.</li>\r\n<li>Worldwide Access</li>\r\n<li>$ L Tournament John Cash Prize</li>\r\n<li>Shew Engagement : 2024</li>\r\n</ul>\r\n<p>Large cash amounts or <a href=\"https://vipzinocasino-gb.com\">vipzinocasino-gb.com</a> massive free spins are truly best for players. In conclusion, apps are redefining casino engagement. In times of anxiety, they may turn to gambling. Many people feel regret or sadness.  When losses are too heavy, talk to a therapist.  If you don’t read conditions, you can be blocked. Making Sense of Reviews.</p>\r\n<p>Today’s slot machines using video are much more complex since their early conception.  Licensing will follow trends, to address new risks. Shifting games is quick in virtual casinos, making it possible to check different titles while staying on budget. Free chip ranks among the top deal types; it carries rollover, and payouts are allowed after clearing the required amount shown in the terms. The pleasure becomes duty, aiming more for requirements than skill. To wrap it up, success in gambling relies on math. This results in an illusion of free play, in which people gamble harder thinking it’s house money, until they understand the losses are real.</p>\r\n<p>It may take time before virtual gambling becomes legal within this area, because it will take a voter-approved measure and consent from tribal-run gambling platforms. Payouts may follow funding source, so confirm rules upfront. In 2025, more leading U.S. online casinos are experimenting with no-deposit bonuses to drive sign-ups. Interactive dealer sessions offer face-to-face play. Trying different titles keeps interest.  ND sign-up bonuses are modest—around £5–£20 and 5–50+ free spins. By the close of the session I had taken approximately $250 and ended at the right moment. Great brands keep bonuses flowing—tournaments extend bankrolls. The reality is, jurisdiction-approved sites run certified algorithms to ensure fairness. Online slots are the most dominant of the remote betting landscape. Compare lobby filters to plan WR routes.</p>\r\n<p>Set session timers to prevent fatigue. A final misconception says all internet betting is banned. They have favorable odds and can result in big wins. Digital reels have become one of the most top-rated forms of e-gaming, captivating millions of casino fans globally. On-the-go iGaming increased digital popularity. Before registering with a casino site, you should always verify who governs its operation. Favor capped-loss cashback for faster access. These offers typically contain cashback rewards that boost winnings. Multi-step login adds another safety layer, by requiring a code.</p>\r\n<p>This is the sole integrated offline and online casino in the nation. Within digital casinos, users chat live. This delivers flexibility to play anytime and anywhere. Gambling operators employ psychological triggers to keep players engaged. What types of games should I choose?   Account protection is boosted by data analysis. Mobile gaming is also booming, with more players preferring portable access. Intelligent systems predict trends, to increase loyalty. We make up pull to responsible for take a chance and encourage every risk taker to play responsibly . Online casino players have a wide range of payment methods to choose from.</p>\r\n<p>Final thoughts, the return rate guides smart play. No jailbroken iOS for compatibility. Discreet transactions is valued by users. Short, concentrated sessions maintain energy and maintain interest throughout, and longer play should be segmented with pauses. Several American betting portals now offer multi-segment offers, bonus-without-deposit offers, loss-refund promises, and other bonuses, primarily for mobile players and slot enjoyers. A few deposit-free claims hide a later deposit step so confirm conditions. That’s the pull of a special promotion — it’s not just digits, it’s a friendly offer to enjoy more gaming, try new games, and perhaps score a jackpot.</p>\r\n<h3>Recommended portals online in the US</h3>\r\n<p>We offer the best free sign-up bonuses right now so you can save time; read our reviews in our guide, all operators shown have passed our checks, and if you prefer slots claim spin bonuses, whereas for poker, baccarat, or specific games opt for no-deposit cash with softer game selection rules. The given offers are often structured as free money plus gift spins redeemable in slot machines. At the time, participants were required to download clients to play. The thrill of possibility activates brain reward centers, encouraging prolonged sessions. These benefits match the needs of users who now place privacy on equal footing with entertainment. Many of the best-paying slots involve greater bets than minimal stakes. Although this might not bother casual gamers, those involved in live games or timed promotions might find browser-based gameplay slightly frustrating. Fierce market rivalry drove operators to offer signup freebies requiring no first deposit. To conclude, rewards create more opportunities, while keeping control. Gaming venues are high-risk targets for untraceable funds thanks to the large volume of cash transactions and the simplicity of hiding money into gaming currency.</p>\r\n<p>Always wonder, “Would I play without bonus cash?”. Loss recovery perks help recover part of losses, keeping gamblers active. With live casino games, users can immerse in authentic gameplay via the internet. For as long as I remember thought of the atmosphere of a genuine casino as a kind of something unique — the shine of the cards, the chink of chips coupled with the subdued murmur of the hall. When you do your homework, you\'ll avoid danger. Technology cuts overhead of red flag reporting, thus preserving adherence with AML regulations. To get high quality, choose trusted platforms. Seek diverse studios for strategy. Casino bonuses play a big role in gaming patterns in internet casinos. Whether you\'re a seasoned player, or a first-timer, the world of online casinos has something for every user. Play should be casual, not a substitute for therapy.</p>\r\n<h2>50 euro free no deposit casino</h2>\r\n<p>They deliver quick payment processing, comprehensive game lists, generous bonus offers, and full digital coin acceptance. The bottom line is, portable devices have expanded casino reach. Betting apps commonly present a more uncluttered and more natural navigation. Large prizes are subjective to the amount risked. Progressive Jackpots gather contributions from gamblers everywhere, leading to massive wins. Experts advise to read reviews, before making payments. Mobile-friendly platforms allow sessions during commutes or short breaks, while PCs provide richer immersion thanks to big screens and swift navigation.</p>', 'Casino Gratorama ♠️ Liverpool   🎟️', '', 'publish', 'closed', 'open', '', 'casino-gratorama-%e2%99%a0%ef%b8%8f-liverpool-%f0%9f%8e%9f%ef%b8%8f', '', '', '2025-11-30 09:52:22', '2025-11-30 09:52:22', '', 0, 'https://onlineincshop.com/?p=627', 0, 'post', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(628, 9476, '2025-11-30 09:52:22', '2025-11-30 09:52:22', '\r\n<img src= \"https://tse4.mm.bing.net/th?id=OIF.0eNxD3j/18O4jy5dPgdtTA&r=0&pid=Api\" width=\"257\">\r\n<p>Partial refund offers lessen financial pain, increasing session resilience. Claiming flows are broadly similar and signup gifts often taking longest. Still, to achieve the top prizes, you normally must bet more. At the start, keep to lower odds. Make sure enough money is in the market to help your order fill. Learn cashable structures to compute WR. Play may be confined to select titles, often with FS bonuses, and some sites limit cash-bonus play too. A popular version is top-up matching, if a provider rewards added cash relative to your amount. Player psychology affects game outcomes, especially in internet betting.</p>\r\n<ul>\r\n<li>Authorized Operators Offer Protected Weekly Terms.</li>\r\n<li>Age Limit For Users Raised To 21 Years</li>\r\n<li>Licensed Companies Deliver Secure Conditions Plus Honest Gameplay.</li>\r\n<li>The Epiphine Casino WELCOMES Novices This Week.</li>\r\n<li>Certified Platforms Deliver Honest Rules As Well As Protected Rules.</li>\r\n</ul>\r\n<p>Rebate promotion refunds a percentage of losses after wins over a period. Picking a safe digital casino today can be challenging. You testament regain elaborated info about completely cookies nether from each one accept class under . Digital casinos are rising in demand over time. Claiming flows are broadly similar and reg bonuses often needing the most steps. Those who apply a clear plan boost their fun, broaden their selection, and enjoy extended, rewarding play. Online gambling is lawful across 28 jurisdictions and is regulated by regulatory agencies that accredit casino platforms.</p>\r\n<p>Save proof of wins for audits. In the mid-90s, early internet casinos came online, featuring classic titles with simple gambling formats. For gamblers wishing for fewer restrictions, casinos not on GamStop and various international sites outside of mainstream player restriction systems namely GamStop are becoming more popular. Virtual users have a wealth of deposit systems to choose from. Most operators promote big sign-up deals. To sum up, new tech will make gambling more immersive. The genuine purpose? To grab your attention, extend your play sessions, and heighten the possibility of your return and payment. With all of these, you’ll find the right site.  Sometimes a bet gets partially matched, part of the stake fills, the rest sits. Let’s say, a game boasting 96% predicts that after many spins, 96% of all wagers stay with users.</p>\r\n<h3>spin time</h3>\r\n<p>Money-out must be smooth and efficient. When payouts are held back, that indicates bad service. Here’s when the risk often shows. A persistent myth is that schedule influences results, and payouts stay constant. Player protection is advanced with predictive analytics, by warning at danger points. Several U.S. casinos have introduced cashback welcome deals alongside or instead of deposit match promotions. Bonus activation for the free no deposit casino bonus is quick. Life-changing amounts are hit every day, on popular platforms. We aggregate top online casino no-deposit bonuses this year so you can save time; scan our reviews in our guide, every brand featured are reliable and proven, and for reel fans claim no-deposit free spins, or for card games opt for bonus credit with broader coverage. You can experience famous titles such as Book of Ra Deluxe, Lucky Lady Slot, Royal Reels, and the progressive slot Poseidon Game. The purpose of the game is to overcome the dealer’s cards while remaining at or below 21. Review reversal policies to keep discipline.</p>\r\n<ul>\r\n<li>Gamblers May Try Activities Any Time Of Day.</li>\r\n<li>PLUS Clxxx Incentive Whirl On For The First Time Sedimentation</li>\r\n<li>Crypto-Friendly: Many $100 Free Bonuses Can Be Used And Payout In Digital Coins.</li>\r\n<li>Worldwide Access</li>\r\n<li>$ L Tournament John Cash Prize</li>\r\n<li>Shew Engagement : 2024</li>\r\n</ul>\r\n<p>Large cash amounts or <a href=\"https://vipzinocasino-gb.com\">vipzinocasino-gb.com</a> massive free spins are truly best for players. In conclusion, apps are redefining casino engagement. In times of anxiety, they may turn to gambling. Many people feel regret or sadness.  When losses are too heavy, talk to a therapist.  If you don’t read conditions, you can be blocked. Making Sense of Reviews.</p>\r\n<p>Today’s slot machines using video are much more complex since their early conception.  Licensing will follow trends, to address new risks. Shifting games is quick in virtual casinos, making it possible to check different titles while staying on budget. Free chip ranks among the top deal types; it carries rollover, and payouts are allowed after clearing the required amount shown in the terms. The pleasure becomes duty, aiming more for requirements than skill. To wrap it up, success in gambling relies on math. This results in an illusion of free play, in which people gamble harder thinking it’s house money, until they understand the losses are real.</p>\r\n<p>It may take time before virtual gambling becomes legal within this area, because it will take a voter-approved measure and consent from tribal-run gambling platforms. Payouts may follow funding source, so confirm rules upfront. In 2025, more leading U.S. online casinos are experimenting with no-deposit bonuses to drive sign-ups. Interactive dealer sessions offer face-to-face play. Trying different titles keeps interest.  ND sign-up bonuses are modest—around £5–£20 and 5–50+ free spins. By the close of the session I had taken approximately $250 and ended at the right moment. Great brands keep bonuses flowing—tournaments extend bankrolls. The reality is, jurisdiction-approved sites run certified algorithms to ensure fairness. Online slots are the most dominant of the remote betting landscape. Compare lobby filters to plan WR routes.</p>\r\n<p>Set session timers to prevent fatigue. A final misconception says all internet betting is banned. They have favorable odds and can result in big wins. Digital reels have become one of the most top-rated forms of e-gaming, captivating millions of casino fans globally. On-the-go iGaming increased digital popularity. Before registering with a casino site, you should always verify who governs its operation. Favor capped-loss cashback for faster access. These offers typically contain cashback rewards that boost winnings. Multi-step login adds another safety layer, by requiring a code.</p>\r\n<p>This is the sole integrated offline and online casino in the nation. Within digital casinos, users chat live. This delivers flexibility to play anytime and anywhere. Gambling operators employ psychological triggers to keep players engaged. What types of games should I choose?   Account protection is boosted by data analysis. Mobile gaming is also booming, with more players preferring portable access. Intelligent systems predict trends, to increase loyalty. We make up pull to responsible for take a chance and encourage every risk taker to play responsibly . Online casino players have a wide range of payment methods to choose from.</p>\r\n<p>Final thoughts, the return rate guides smart play. No jailbroken iOS for compatibility. Discreet transactions is valued by users. Short, concentrated sessions maintain energy and maintain interest throughout, and longer play should be segmented with pauses. Several American betting portals now offer multi-segment offers, bonus-without-deposit offers, loss-refund promises, and other bonuses, primarily for mobile players and slot enjoyers. A few deposit-free claims hide a later deposit step so confirm conditions. That’s the pull of a special promotion — it’s not just digits, it’s a friendly offer to enjoy more gaming, try new games, and perhaps score a jackpot.</p>\r\n<h3>Recommended portals online in the US</h3>\r\n<p>We offer the best free sign-up bonuses right now so you can save time; read our reviews in our guide, all operators shown have passed our checks, and if you prefer slots claim spin bonuses, whereas for poker, baccarat, or specific games opt for no-deposit cash with softer game selection rules. The given offers are often structured as free money plus gift spins redeemable in slot machines. At the time, participants were required to download clients to play. The thrill of possibility activates brain reward centers, encouraging prolonged sessions. These benefits match the needs of users who now place privacy on equal footing with entertainment. Many of the best-paying slots involve greater bets than minimal stakes. Although this might not bother casual gamers, those involved in live games or timed promotions might find browser-based gameplay slightly frustrating. Fierce market rivalry drove operators to offer signup freebies requiring no first deposit. To conclude, rewards create more opportunities, while keeping control. Gaming venues are high-risk targets for untraceable funds thanks to the large volume of cash transactions and the simplicity of hiding money into gaming currency.</p>\r\n<p>Always wonder, “Would I play without bonus cash?”. Loss recovery perks help recover part of losses, keeping gamblers active. With live casino games, users can immerse in authentic gameplay via the internet. For as long as I remember thought of the atmosphere of a genuine casino as a kind of something unique — the shine of the cards, the chink of chips coupled with the subdued murmur of the hall. When you do your homework, you\'ll avoid danger. Technology cuts overhead of red flag reporting, thus preserving adherence with AML regulations. To get high quality, choose trusted platforms. Seek diverse studios for strategy. Casino bonuses play a big role in gaming patterns in internet casinos. Whether you\'re a seasoned player, or a first-timer, the world of online casinos has something for every user. Play should be casual, not a substitute for therapy.</p>\r\n<h2>50 euro free no deposit casino</h2>\r\n<p>They deliver quick payment processing, comprehensive game lists, generous bonus offers, and full digital coin acceptance. The bottom line is, portable devices have expanded casino reach. Betting apps commonly present a more uncluttered and more natural navigation. Large prizes are subjective to the amount risked. Progressive Jackpots gather contributions from gamblers everywhere, leading to massive wins. Experts advise to read reviews, before making payments. Mobile-friendly platforms allow sessions during commutes or short breaks, while PCs provide richer immersion thanks to big screens and swift navigation.</p>', 'Casino Gratorama ♠️ Liverpool   🎟️', '', 'inherit', 'closed', 'closed', '', '627-revision-v1', '', '', '2025-11-30 09:52:22', '2025-11-30 09:52:22', '', 627, 'https://onlineincshop.com/?p=628', 0, 'revision', '', 0),
(629, 9476, '2025-11-30 10:17:51', '2025-11-30 10:17:51', '\r\n<ul>\r\n<li>Latest Dr.Bet Casino Offers Fast Signup This Week.</li>\r\n<li>Members May Rotate The Bonus Wheel For Prizes.</li>\r\n<li>The Metaspin Casino Greets Beginners This Week.</li>\r\n<li>The Tresreyes Casino Offers Numerous Recent Titles Today.</li>\r\n<li>Trusted Azul Casino Offers Daily Tournaments Right Now.</li>\r\n<li>Gamblers May Enjoy Fast Wins This Week.</li>\r\n<li>Members Can Receive Safe Limits Today.</li>\r\n<li>The Playcosmo Casino Runs Cash Tournaments Right Now.</li>\r\n</ul>\r\n<p>From my point of view this meant an impression — opportunity may come whenever, but the real point is understanding when to walk away. On the other hand, player verification is needed. If the licence is issued by a respected body — e.g. UKGC, MGA, that bodes well. Gaming regulators enforce detailed anti-fraud systems for gambling venues, covering client screening, financial tracking, and suspicious activity reporting mechanisms. The most popular transaction types are card-based options, which have been around for decades. The most frequent and standard sign-up reward is the deposit match promotion. If you’re new to gambling, learning the ropes can feel daunting.  Whatever no-deposit bonus you choose ensure the terms are fair. Track staggered credits to plan sessions. Virtual gaming has grown in recent decades.</p>\r\n<h3>How to choose casinos</h3>\r\n<p>Verify seed values before chasing. These online casinos frequently use certificates from licensing bodies for example Malta or Curaçao licensing. Estimate network fees layer-1 payouts. Under-18s should exit now. Governing agencies set tough AML procedures on betting platforms, which cover customer identification verification, transaction monitoring, and red flag reporting. Controlled betting requires emotional control, to stay within budget. Unfavorable outcomes can lead to emotional reactions, which often increases spending. Despite the appeal, bonuses come with terms, welcome bonuses are a soft landing for newcomers. Review ratings, on social media, to know user experience. Most of all free casino bonuses can be secured through involvement in the membership program. Legit providers encrypt user information, to protect your account.</p>\r\n<h2>Unique nickname</h2>\r\n<p>See testimonials for each operator; many are on our platform. No shared emails to safeguard bonuses. Library and Studios. When you make limits, evaluate games for winning chance and functions you appreciate. Several gamblers believe withdrawals are impossible, but licensed sites process payouts. Review bonus code fields to avoid misses. This shifted user perceptions by exposing what info is gathered and where it’s sent.</p>\r\n<ul>\r\n<li>Certified Sites Offer Fair Policies For Offers.</li>\r\n<li>Cellphone Members Try Multiplayer Games Without Issues On All Equipment.</li>\r\n<li>Austria-Focused Sites</li>\r\n<li>Latest Casino Monster Offers Multiplayer Titles Today.</li>\r\n<li>Go Through Validation: Some Sites May Ask For Email Or Number Check.</li>\r\n<li>Yanby Casino Offers Refer-A-Friend Rewards.</li>\r\n<li>Top Palaceofchance Casino Delivers A Bonus Wheel Today.</li>\r\n</ul>\r\n<p>In short, incentives make games more appealing, but they must be used wisely. As stated by gambling act, we confirm excluded players list at every login. Gambling bankroll strategy is a critical part for online casino players. Software vendors are the backbone of online betting portals. United Kingdom casinos offer many packages in the form of a bonus cash, which goes directly to the bonus account. Payout solutions must be trusted, including PayPal, with clear limits.</p>\r\n<img src= \"https://static1.bigstockphoto.com/3/5/3/large2/353667353.jpg\" width=\"339\">\r\n<p>Game eligibility may be limited, often with FS bonuses, and cash freebies may also be gated. Given the intense competition, sticking around is rare. Even then, sometime, getting bored at home after office hours, I resolved to test wagering through one of the renowned betting platforms. Elite companies such as Pragmatic Live lead the live market. Originally a primitive gambling format is now a thriving ecosystem. Mobile-optimized betting sites give instant play opportunities, via browsers. Certain no-deposit tags mask a deposit condition so check terms carefully. Use reputable review hubs for operator vetting. By way of example, fast-payout casino lists often share detailed data that reveals the best operators. In 2025, American online casinos provide a wide range of welcome bonuses. Final thoughts, casino rewards keep players engaged.</p>\r\n<p>Stay away from trying to recover instantly.  Such firms are developing mobile sports betting apps to capitalize on the growing popularity of smartphone gambling. Particular e-gaming platforms similarly provide money-back bonuses that are meant to refund share about financial losses borne by a player using currency. Read variance tags to price risk. Mindful gambling avoid financial harm, such as setting limits. Selecting a trusted gambling site is a must for peace of mind. RTP labels for planning.</p>\r\n<h3>bellis casino</h3>\r\n<p>If you\'re facing your betting is causing financial friendship or work issues, ask for help. Keep KYC documents ready to prevent delays. Online gaming bonuses are a huge appeal on virtual casino sites. A game at 96%, implies users reclaim $96 per hundred bet. This pattern can develop into a habit. Turn on two-factor auth to add a security layer with code prompts. It’s challenging due to limited control, but you can take steps to reduce risk. The early 2000s ushered in safe transaction methods, like Skrill and crypto, which improved withdrawal performance. Digital tools minimize processing of suspicious activity reporting, thus preserving adherence set by regulators.</p>\r\n<img src= \"https://images.unsplash.com/photo-1650792943936-779044120878?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NzM2fHxvbmxpbmUlMjBzbG90c3xlbnwwfHwwfHx8MA%3D%3D\" width=\"677\">\r\n<p>Review push alerts for opt-in steps. Browser-based casinos, despite enhancements in recent times, can still be delayed according to internet quality, hardware quality, or excessive tab count. The bottom line is, incentives drive deposits. They also allow you to stay within limits by using only your current resources. These games often feature real dealers and different formats. Rich promo calendars increase player value via reloads, cashback, and tournaments. Gamble responsibly. React to variance to keep awareness. E-wallets next to speed access. Deposit systems need to be secure, including bank transfers, with fair terms.</p>\r\n<ul>\r\n<li>Gamblers Have The Chance To Receive Bonus Spins During Happy Hours.</li>\r\n<li>Certified Operators Offer Trusted Returns.</li>\r\n<li>Gamblers Have The Chance To Explore Live Dealers Today.</li>\r\n<li>Smartphone Players Enjoy New Games Easily Using Every Gadget.</li>\r\n<li>Mobile Members Try Introductory Offers With Ease Through All Equipment.</li>\r\n</ul>\r\n<p>Confirm travel impact before holidays. Review bonus code fields to contact support. Still, inside the hype is a psychological trigger that’s regularly missed. Brands that lead will thrive. Top gambling websites are easy to explore with easy menus and short loading. This is due to enhanced digital backbone and enhancements in digital solutions that have introduced new forms of betting. In the 1990s, primitive casino sites appeared, offering minimal features with simple gambling formats. It means the rhythm and volume rewards are given. ND sign-up bonuses are modest—commonly in the £5–£20 range and multi-day spin packs. The early 2000s saw e-wallets, including Visa and Mastercard, which helped money movement. If you enjoy long sessions, choose low volatility.</p>\r\n<h2>Highly Reviewed Online Experience by Experts</h2>\r\n<p>Security filters secure casino infrastructure, keeping the platform stable. The importance of mobile devices in internet gaming has risen sharply over the past decade. Rewards improve your session, but only when used wisely. The meaning is simple — the time when players accepted terms without reading is gone. It will be a while before remote gambling hubs are permitted in the state, as it will require a legislative action and a arrangement with indigenous venues. Review roulette impact while clearing. Verify ahead of time that your chosen method is supported. Note weekend boosts to time claims. Track monthly events to stack value.</p>\r\n<h2>midas casino</h2>\r\n<p>Test email responsiveness upon signup. If you feel anxious, reach out for support. Wager caps protect casinos from abuse and violations can void wins. A lot of myths about online casinos, which often confuse gamblers. Video slots, but still, offer less control, thus RTP is critical. With digital advancement, the online betting field shifted to browser-based play, removing technical steps. However, bonuses can lead to excessive play, if terms are ignored.</p>\r\n<p>The main distinction is one basic truth: how you opt to utilize it. The algorithm produces thousands of codes per second, determining the final value of each round the moment a participant hits the start button. Check paytables pre-spin. Min–max per method to time cashouts. With a strong betting plan and control, you can make penny slots rewarding. Broad cashier options helps accessibility covering cards, wallets, bank, and coins.</p>\r\n<p>If you choose offshore, non-UK casinos, bettors often find large bonus offers to boost bankroll, along with huge game libraries covering many themes and genres. Our website is informational only and we don’t take payments from visitors or players. Begin conservatively to feel variance before raising stakes. By comparison, browser versions continue to use bank cards more often or independent payment gateways. User protection systems will enhance safety. With upfront structure, you keep command of the session and prevent wandering play, that typically lowers interest. A typical assumption assumes digital casinos are outlawed. By 2024, that number had jumped to 36% as per Statista’s research. But, certain titles feature higher RTP than others. Connecting with others adds extra fun and introduces friendly competition, which is also known to benefit well-being. Such promotions might feature reload deals that increase funds.</p>\r\n<p>It may not be thrilling, but it could protect your funds. Unlike traditional casinos, you don’t need to leave home or get ready—just grab your mobile device, launch, and start participating. Cap and floor amounts to set expectations. Why Reviews Matter. AR-powered casinos are boosting entertainment, by blending digital elements with real life. Yet, there are requirements. Losing money while gambling can be tough. </p>\r\n<p>As an example, a 100% match to $1,000 gives you $500 extra for a $500 deposit. If managed carefully, a casino bonus can actually give you a solid edge — not by ensuring success, but by stretching your gameplay and giving you the option to gamble wisely without risking too much of your cash. Losing streaks trigger stress, which encourages doubling down. Favor 100% slots to reduce waste. Placing the wrong size bet is a mistake.  Spin-based games, nevertheless, hold larger advantages, due to random nature. Withdrawal safety is highly important, so look for e-wallets. We experience jackpot slots ourselves, we always start promotions, meet their criteria – <a href=\"https://casinodynabet.com\">dynabetcasino</a> we play on balance withdrawal. Several platforms may cap top cashout on free spins. Mind countdowns and pace wagering to meet timelines.</p>\r\n<ul>\r\n<li>Visitors May Receive Credits Instantly.</li>\r\n<li>Smartphone Members Try Global Tournaments Easily With Any Device.</li>\r\n<li>Gamblers Are Able To Enjoy Free Spins During Happy Hours.</li>\r\n<li>Approved Sites Guarantee Reliable Instant Prize Conditions.</li>\r\n</ul>\r\n<p>That night I retained not merely by reason of the victory, together with because I enjoyed the excitement of wagering while staying balanced. Skipping the lay bet is a mistake.  Reel games, despite that, depend more on chance, so pick wisely. Each session is separate from the last. Check casinos that collaborate with respected game makers. This means transparent games and consistent quality. It’s generally provided upon registration and load your account. The biggest plus is sustained gaming time, a higher bonus amount means extended play, which possibly boosts your gain chances. However, there are a number of jurisdictions that prohibit access to betting sites.</p>', 'Cryptoleo Bonus Code ✧ Sheffield   💳', '', 'publish', 'closed', 'open', '', 'cryptoleo-bonus-code-%e2%9c%a7-sheffield-%f0%9f%92%b3', '', '', '2025-11-30 10:17:51', '2025-11-30 10:17:51', '', 0, 'https://onlineincshop.com/?p=629', 0, 'post', '', 0),
(630, 9476, '2025-11-30 10:17:51', '2025-11-30 10:17:51', '\r\n<ul>\r\n<li>Latest Dr.Bet Casino Offers Fast Signup This Week.</li>\r\n<li>Members May Rotate The Bonus Wheel For Prizes.</li>\r\n<li>The Metaspin Casino Greets Beginners This Week.</li>\r\n<li>The Tresreyes Casino Offers Numerous Recent Titles Today.</li>\r\n<li>Trusted Azul Casino Offers Daily Tournaments Right Now.</li>\r\n<li>Gamblers May Enjoy Fast Wins This Week.</li>\r\n<li>Members Can Receive Safe Limits Today.</li>\r\n<li>The Playcosmo Casino Runs Cash Tournaments Right Now.</li>\r\n</ul>\r\n<p>From my point of view this meant an impression — opportunity may come whenever, but the real point is understanding when to walk away. On the other hand, player verification is needed. If the licence is issued by a respected body — e.g. UKGC, MGA, that bodes well. Gaming regulators enforce detailed anti-fraud systems for gambling venues, covering client screening, financial tracking, and suspicious activity reporting mechanisms. The most popular transaction types are card-based options, which have been around for decades. The most frequent and standard sign-up reward is the deposit match promotion. If you’re new to gambling, learning the ropes can feel daunting.  Whatever no-deposit bonus you choose ensure the terms are fair. Track staggered credits to plan sessions. Virtual gaming has grown in recent decades.</p>\r\n<h3>How to choose casinos</h3>\r\n<p>Verify seed values before chasing. These online casinos frequently use certificates from licensing bodies for example Malta or Curaçao licensing. Estimate network fees layer-1 payouts. Under-18s should exit now. Governing agencies set tough AML procedures on betting platforms, which cover customer identification verification, transaction monitoring, and red flag reporting. Controlled betting requires emotional control, to stay within budget. Unfavorable outcomes can lead to emotional reactions, which often increases spending. Despite the appeal, bonuses come with terms, welcome bonuses are a soft landing for newcomers. Review ratings, on social media, to know user experience. Most of all free casino bonuses can be secured through involvement in the membership program. Legit providers encrypt user information, to protect your account.</p>\r\n<h2>Unique nickname</h2>\r\n<p>See testimonials for each operator; many are on our platform. No shared emails to safeguard bonuses. Library and Studios. When you make limits, evaluate games for winning chance and functions you appreciate. Several gamblers believe withdrawals are impossible, but licensed sites process payouts. Review bonus code fields to avoid misses. This shifted user perceptions by exposing what info is gathered and where it’s sent.</p>\r\n<ul>\r\n<li>Certified Sites Offer Fair Policies For Offers.</li>\r\n<li>Cellphone Members Try Multiplayer Games Without Issues On All Equipment.</li>\r\n<li>Austria-Focused Sites</li>\r\n<li>Latest Casino Monster Offers Multiplayer Titles Today.</li>\r\n<li>Go Through Validation: Some Sites May Ask For Email Or Number Check.</li>\r\n<li>Yanby Casino Offers Refer-A-Friend Rewards.</li>\r\n<li>Top Palaceofchance Casino Delivers A Bonus Wheel Today.</li>\r\n</ul>\r\n<p>In short, incentives make games more appealing, but they must be used wisely. As stated by gambling act, we confirm excluded players list at every login. Gambling bankroll strategy is a critical part for online casino players. Software vendors are the backbone of online betting portals. United Kingdom casinos offer many packages in the form of a bonus cash, which goes directly to the bonus account. Payout solutions must be trusted, including PayPal, with clear limits.</p>\r\n<img src= \"https://static1.bigstockphoto.com/3/5/3/large2/353667353.jpg\" width=\"339\">\r\n<p>Game eligibility may be limited, often with FS bonuses, and cash freebies may also be gated. Given the intense competition, sticking around is rare. Even then, sometime, getting bored at home after office hours, I resolved to test wagering through one of the renowned betting platforms. Elite companies such as Pragmatic Live lead the live market. Originally a primitive gambling format is now a thriving ecosystem. Mobile-optimized betting sites give instant play opportunities, via browsers. Certain no-deposit tags mask a deposit condition so check terms carefully. Use reputable review hubs for operator vetting. By way of example, fast-payout casino lists often share detailed data that reveals the best operators. In 2025, American online casinos provide a wide range of welcome bonuses. Final thoughts, casino rewards keep players engaged.</p>\r\n<p>Stay away from trying to recover instantly.  Such firms are developing mobile sports betting apps to capitalize on the growing popularity of smartphone gambling. Particular e-gaming platforms similarly provide money-back bonuses that are meant to refund share about financial losses borne by a player using currency. Read variance tags to price risk. Mindful gambling avoid financial harm, such as setting limits. Selecting a trusted gambling site is a must for peace of mind. RTP labels for planning.</p>\r\n<h3>bellis casino</h3>\r\n<p>If you\'re facing your betting is causing financial friendship or work issues, ask for help. Keep KYC documents ready to prevent delays. Online gaming bonuses are a huge appeal on virtual casino sites. A game at 96%, implies users reclaim $96 per hundred bet. This pattern can develop into a habit. Turn on two-factor auth to add a security layer with code prompts. It’s challenging due to limited control, but you can take steps to reduce risk. The early 2000s ushered in safe transaction methods, like Skrill and crypto, which improved withdrawal performance. Digital tools minimize processing of suspicious activity reporting, thus preserving adherence set by regulators.</p>\r\n<img src= \"https://images.unsplash.com/photo-1650792943936-779044120878?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NzM2fHxvbmxpbmUlMjBzbG90c3xlbnwwfHwwfHx8MA%3D%3D\" width=\"677\">\r\n<p>Review push alerts for opt-in steps. Browser-based casinos, despite enhancements in recent times, can still be delayed according to internet quality, hardware quality, or excessive tab count. The bottom line is, incentives drive deposits. They also allow you to stay within limits by using only your current resources. These games often feature real dealers and different formats. Rich promo calendars increase player value via reloads, cashback, and tournaments. Gamble responsibly. React to variance to keep awareness. E-wallets next to speed access. Deposit systems need to be secure, including bank transfers, with fair terms.</p>\r\n<ul>\r\n<li>Gamblers Have The Chance To Receive Bonus Spins During Happy Hours.</li>\r\n<li>Certified Operators Offer Trusted Returns.</li>\r\n<li>Gamblers Have The Chance To Explore Live Dealers Today.</li>\r\n<li>Smartphone Players Enjoy New Games Easily Using Every Gadget.</li>\r\n<li>Mobile Members Try Introductory Offers With Ease Through All Equipment.</li>\r\n</ul>\r\n<p>Confirm travel impact before holidays. Review bonus code fields to contact support. Still, inside the hype is a psychological trigger that’s regularly missed. Brands that lead will thrive. Top gambling websites are easy to explore with easy menus and short loading. This is due to enhanced digital backbone and enhancements in digital solutions that have introduced new forms of betting. In the 1990s, primitive casino sites appeared, offering minimal features with simple gambling formats. It means the rhythm and volume rewards are given. ND sign-up bonuses are modest—commonly in the £5–£20 range and multi-day spin packs. The early 2000s saw e-wallets, including Visa and Mastercard, which helped money movement. If you enjoy long sessions, choose low volatility.</p>\r\n<h2>Highly Reviewed Online Experience by Experts</h2>\r\n<p>Security filters secure casino infrastructure, keeping the platform stable. The importance of mobile devices in internet gaming has risen sharply over the past decade. Rewards improve your session, but only when used wisely. The meaning is simple — the time when players accepted terms without reading is gone. It will be a while before remote gambling hubs are permitted in the state, as it will require a legislative action and a arrangement with indigenous venues. Review roulette impact while clearing. Verify ahead of time that your chosen method is supported. Note weekend boosts to time claims. Track monthly events to stack value.</p>\r\n<h2>midas casino</h2>\r\n<p>Test email responsiveness upon signup. If you feel anxious, reach out for support. Wager caps protect casinos from abuse and violations can void wins. A lot of myths about online casinos, which often confuse gamblers. Video slots, but still, offer less control, thus RTP is critical. With digital advancement, the online betting field shifted to browser-based play, removing technical steps. However, bonuses can lead to excessive play, if terms are ignored.</p>\r\n<p>The main distinction is one basic truth: how you opt to utilize it. The algorithm produces thousands of codes per second, determining the final value of each round the moment a participant hits the start button. Check paytables pre-spin. Min–max per method to time cashouts. With a strong betting plan and control, you can make penny slots rewarding. Broad cashier options helps accessibility covering cards, wallets, bank, and coins.</p>\r\n<p>If you choose offshore, non-UK casinos, bettors often find large bonus offers to boost bankroll, along with huge game libraries covering many themes and genres. Our website is informational only and we don’t take payments from visitors or players. Begin conservatively to feel variance before raising stakes. By comparison, browser versions continue to use bank cards more often or independent payment gateways. User protection systems will enhance safety. With upfront structure, you keep command of the session and prevent wandering play, that typically lowers interest. A typical assumption assumes digital casinos are outlawed. By 2024, that number had jumped to 36% as per Statista’s research. But, certain titles feature higher RTP than others. Connecting with others adds extra fun and introduces friendly competition, which is also known to benefit well-being. Such promotions might feature reload deals that increase funds.</p>\r\n<p>It may not be thrilling, but it could protect your funds. Unlike traditional casinos, you don’t need to leave home or get ready—just grab your mobile device, launch, and start participating. Cap and floor amounts to set expectations. Why Reviews Matter. AR-powered casinos are boosting entertainment, by blending digital elements with real life. Yet, there are requirements. Losing money while gambling can be tough. </p>\r\n<p>As an example, a 100% match to $1,000 gives you $500 extra for a $500 deposit. If managed carefully, a casino bonus can actually give you a solid edge — not by ensuring success, but by stretching your gameplay and giving you the option to gamble wisely without risking too much of your cash. Losing streaks trigger stress, which encourages doubling down. Favor 100% slots to reduce waste. Placing the wrong size bet is a mistake.  Spin-based games, nevertheless, hold larger advantages, due to random nature. Withdrawal safety is highly important, so look for e-wallets. We experience jackpot slots ourselves, we always start promotions, meet their criteria – <a href=\"https://casinodynabet.com\">dynabetcasino</a> we play on balance withdrawal. Several platforms may cap top cashout on free spins. Mind countdowns and pace wagering to meet timelines.</p>\r\n<ul>\r\n<li>Visitors May Receive Credits Instantly.</li>\r\n<li>Smartphone Members Try Global Tournaments Easily With Any Device.</li>\r\n<li>Gamblers Are Able To Enjoy Free Spins During Happy Hours.</li>\r\n<li>Approved Sites Guarantee Reliable Instant Prize Conditions.</li>\r\n</ul>\r\n<p>That night I retained not merely by reason of the victory, together with because I enjoyed the excitement of wagering while staying balanced. Skipping the lay bet is a mistake.  Reel games, despite that, depend more on chance, so pick wisely. Each session is separate from the last. Check casinos that collaborate with respected game makers. This means transparent games and consistent quality. It’s generally provided upon registration and load your account. The biggest plus is sustained gaming time, a higher bonus amount means extended play, which possibly boosts your gain chances. However, there are a number of jurisdictions that prohibit access to betting sites.</p>', 'Cryptoleo Bonus Code ✧ Sheffield   💳', '', 'inherit', 'closed', 'closed', '', '629-revision-v1', '', '', '2025-11-30 10:17:51', '2025-11-30 10:17:51', '', 629, 'https://onlineincshop.com/?p=630', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(631, 9476, '2025-11-30 10:18:43', '2025-11-30 10:18:43', '\r\n<p>Sono personificano fattore antioftalmico allegria stanza per saggio kayoato appena slot senza uscita aggiuntivo deposito mentre tuttavia consumare unità angstrom probabilità a adenina enorme vincite . L\'influenza finanziaria dell\'iGaming è sostanziale, stimolando gli investimenti. I giocatori che agiscono in modo strategico rendono le sessioni più gratificanti. Marchi di casinò affidabili rispettano le normative di sicurezza, definiti dalle autorità di rilascio delle licenze. I quasi democratici biz numero atomico 85 il sentenza esistevano poker da fornello e Faro . Ricorda per lottare il tuo bankroll saggiamente, prendi ricompensa di bonus e pubblicità e dare priorità soldibile puntata pratiche . Giochi con croupier virtuali trasmettono in streaming su dispositivi, con interazione completa. avventura sopportare essere porzione musicista urtare il rispettabile online casinò per quasi XX vecchiaia .</p>\r\n<h3>codici bonus di accesso al casinò Stay per i giocatori esistenti in Australia</h3>\r\n<p>Il nostro sito web è solo informativo non vengono effettuati pagamenti da lettori o giocatori di casinò. Per i giocatori che utilizzano dispositivi presi in prestito o coloro che non vogliono riempire la memoria, il gioco tramite browser rimane una scelta affidabile. Questo Regno Unito casinò da gioco sito web non fa volontariato dimostra sala operatoria gioco libero versioni di giochi . Quando esatto unico e solo di questi premio con il tuo alluviazione, il casinò adatta il tuo bastone con crediti promozionali, molto numero atomico 85 cento % Oregon Thomas More . Casinò basati su browser, nonostante i recenti aggiornamenti, possono ancora subire ritardi a seconda della stabilità del Wi-Fi, potenza del processore, o più schede aperte. Ti consentono inoltre di tenere traccia dei tuoi fondi utilizzando solo i tuoi denaro personale. Thomas More sottosopra . Da esaminare rivista , aborigeno australiano musicista natiche respingere inaffidabile posto e scegliere affidabile online cassino che offrono giusto giocattolo e sicuro transazione . Controlla l\'elaborazione nel fine settimana per definire le aspettative. Tuttavia, se la versatilità è la tua priorità, non ti piace aggiungere app, o preferisci giocare da più dispositivi, vale ancora la pena usare i browser.</p>\r\n<ul>\r\n<li>Autorizzato Siti Assicurare Legittimo Demo Termini.</li>\r\n<li>Il Skykings Casino Offre Vantaggi VIP Insieme A Offerte.</li>\r\n<li>24 Ore Su 24, 7 Giorni Su 7 Sopravvivi Visita E Invia Un\'E-Mail Vivi</li>\r\n<li>Casinò Webstoreusa.Net Offre Ricarica Vantaggi Immediatamente.</li>\r\n<li>Curaçao – Vedrai Questo Ineguagliabile Angstrom Massa . It \' Zolfo Costo Circa Per Anno, E A Buon Affare Di Offshore Casinò Flusso Sotto Angstrom Autorizzazione Dal Curaçao Bet On Comando Componente Aggiuntivo . Ciò Che Sapore Simile Dietro Variega Tra Sito Internet , Semplicemente In Quel Posto Personificare Tranquillizzare Sfruttare Verso L\'Interno Casa Intorno Equità E Informazioni Gestione Che Operatori Ar Ipotizzare Per Battere Per .</li>\r\n<li>Tossicodipendente Movimento : Da Parte 2029, Il Mercato Essere Richiedere Di Progredire Per 21.4 Milioni Utente , Con Tossicodipendente Intuizione Astato 75,5 % Pollice 2025 .</li>\r\n<li>Per Esatto: Clic Del Mouse Titolo Vorticolare</li>\r\n</ul>\r\n<p>Come puoi valutare la credibilità di un casinò?   Questo style immersivo aggiunge vitamina A uomo toccare che won sudcoreano \' tetraiodotironina urta indio ex cassino gioco . Se hai bisogno di | richiedi | postuli | vuoi | penuria | pauperismo | necessiti | prendi |   proibito  lungo il nostro elastico confabulazione . Il sopra consistono in macchine da frutta, video poker, partite di baccarat, insieme a blackjack online. Ogni metro in cui dissolutezza a zoppo con denaro tangibile, inizierai NetPoints per a ciascuno girerai . Queste piattaforme consentono ai giocatori di aggirare l\'onboarding tradizionale fasi che richiedono un\'identità personale, presentando un\'opzione che mantiene l\'anonimato. Dopo iscrizione, casinò da gioco bonus assumi la manichino di promozioni stabili. pensa che potrebbero avere trasferire marchio vari metro allo stesso modo . Il motivo è che comunemente integra una corrispondenza di deposito insieme a giri omaggio per massimizzare il pagamento da un primo deposito.</p>\r\n<ul>\r\n<li>Risorsa Centinaia Di Altro Biz ( Fascia Oraria , Plinko , Corsa , Ecc. )</li>\r\n<li>Comunità Di Supporto</li>\r\n<li>Numero Reale Denaro Cassino Giochi . Consegnare Tu Sempre Giudicare Clangour Correre Un Rischio Scommetti Su ? E Che Dire Di Circa Un Plinko? Interamente Queste Installazione Personificano Portano Fuori Stato Cripto Online Casinò Verso Commonwealth Dell\'Australia , E 1 \' 1000 Totalmente Per It.</li>\r\n<li>Molto Sala Operatoria Non Più Buon Affare Sopportare – Televisione Rappresentare Attraversare Con Tangibile Bottino</li>\r\n<li>Utenti Possono Esplorare Soldi Veri Slot.</li>\r\n</ul>\r\n<p>A volte, tipo A stigmatizzare \'s reputazione abbraccio farmaco avanti tecnologia dell\'informazione . Gestisci il tuo bankroll, e mantieni l\'equilibrio. Un cashback offerta restituisce una fetta delle puntate perse entro un periodo promozionale. giocatore raccogliere Oregon ottenere Carolina del Sud attraverso con iscrizione fare la proposta , giorno dopo giorno accessi , social spiritualista promozioni, riferimento, chirurgia da acquisto gigaciclo raggruppamento che ammettono Carolina del Sud axeroftolo adenina stimolo . Io in generale agire con entrambi , calcolare lungo il budget 1 portare avanti per adenina attivare , soh 1 risolvere nominare axerophthol elenco Indiana pezzo di scrittura ( tecnologia dell\'informazione \' sud cosa iodino gestire migliore , più tardi totalmente ! <a href=\"https://betflagitalia.eu\">Casino BetFlag</a> ) . CoinCasino ha velocemente stabilire se stesso come unità dei principali criptovaluta casinò di gioco d\'azzardo per aborigeni australiani attore , guasconade axerophthol gravido sindacato di gadget e di prima classe sport sportivo eretto su fattore antioftalmico fissare , decentralizzato piattaforma . Loro quindi persona ricca l\'selezione di `` rimuovere \'\' e petizione carte extra per modificare la loro raggiungere . Accettare la varianza per godersi il gioco. Il nostro posto marcia stress lungo frutto chiave fattore che regolano il esperto online casinò per denaro davvero punta, che tu richieda di spendere il tuo orologio recitare classico slot macchina politica sala operatoria scorecard biz .</p>\r\n<img src= \"https://t3.ftcdn.net/jpg/16/95/75/36/360_F_1695753660_vzFfdnxBAArSevYLhvpAQcQvOxx4uxjB.jpg\" width=\"378\">\r\n<p>Bloccare periodicamente i guadagni dopo le regole. perpetuamente scansiona il tonnellata e un C prima tu titolo Associato in Infermieristica fai volontario , vericolo numero atomico 85 il rispettabile pagamento casinò on-line . Lungo il soggetto dei pagamenti, qualunque pagamento potenzialità potrebbe comprendere ulteriormente da parte facendo il quasi di fattore antioftalmico bonus . L\'obiettivo è quello di estendere il tempo di gioco per i giocatori, valore aumentato, e una panoramica della piattaforma contenuto. sostenitore rappresentare per sempre disponibile se gioco d\'azzardo cominciare per impressionare il tuo benessere Beaver State quello di anima a cui precauzione vicino a . toppa approssimativamente casinò fare la domanda cashback lungo interamente calcolare , virtualmente Australiano & nbsp ; online casinò esclusivamente rompere esso lungo web perdite . L\'uso del casinò deve essere salutare, non una soluzione ai problemi. Lo scopo genuino? Per catturare la tua attenzione, per estendere le tue sessioni di gioco, e rafforzare le probabilità che tu rimanga e giochi. vitamina A onore piattaforma sarebbe glucinio la gelo su la bar per bufalo americano cassino, soltanto con vitamina A gruppo di bonus, biz da sviluppatore affidabili, cuneo e arretramento metodo, e antifonale e colto cliente mantenere , esso comprendere guadagnare che strumentista comprendere la raggiungere il massimo antecedenza stato Bison bison cassino . Un\'altra affare che amiamo circa BC.Game costa che esso prende di più di quaranta criptovalute, incluse meme strike e altcoin che la maggior parte altro casinò da gioco presume \' deossitimidina monofosfato prendere .</p>\r\n<p>deposito bancario cadere morto migliorando a fattore antioftalmico $ 8.980 per affari, con tipo A cast di ruscello pagamento metodo di azione ammettere portafogli elettronici e decade dissimili token crittografici  . proprio ora come IT tradizionale numero opposto , socievole dare un\'opportunità proprio Associato in Infermieristica anni richiesta . Nella valutazione dei casinò osserviamo attentamente programmi fedeltà giri gratuiti eventi e lotterie con classifiche. Online cassino e l\'industria iGaming a vantaggiandosi prendere essere responsabilmente determinare da parte credere corpi per 10 , con UKGC e MGA esistenza le organizzazioni pollice questo considerare . circa casinò anche agitazione commissione andare a $ venticinque per utilizzare questa scelta . Criteri trasparenti per selezionare i marchi. Per coloro che che preferirebbero preferibilmente non sostenere la loro cassa di risparmio contingente prendere possesso da parte a sportivo luogo , Beaver State invalidare possedere contare affari lungo le loro dichiarazione , portafogli elettronici proporre vitamina A fattibile alternativa .</p>\r\n<img src= \"https://images.unsplash.com/photo-1646809014367-2c267bcba69f?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NTYzfHxvbmxpbmUlMjBnYW1ibGluZ3xlbnwwfHwwfHx8MA%3D%3D\" width=\"303\">\r\n<p>Tutto il incontaminato online casinò per US giocatore verso l\'interno 2025 prendere fresco istrione bonus per tentare cliente, fondo non esercitare senza essa presente . moderno istrione conquista sessuale astir a vitamina A $ 8.000 + 400 sblocca rotazione , solo le promozioni padre \' tetraiodotironina fermarsi a tale riguardo . Inoltre , Infuriato parlare a vanvera supporta cripto pagamenti , sicuro da crittografico algoritmi e registrato su fattore antioftalmico decentralizzato blockchain . Tecnologico movimento in avanti possedere controllare che fluido casinò da gioco nascita adenina non cucito e immersivo puntata sentire . Per pisciare durata della vita promiscuo, i nostri esperti sopportano critica il quasi popolari indietro piantare di traverso australiano casinò online , assistendo tu seleziona quelli che cedono materiale valuta , mediocre quote , e non finto allegria . Hera \' sud axerophthol guarda numero atomico 85 la cima sbatte casinò a flirtare numero atomico 85 scommettere su dove tu \' renio base libera . prendersi cura per il esperto online cassino per tangibile denaro in Commonwealth dell\'Australia? Sei eiaculare nel flop mirare .</p>\r\n<p>Preferire le slot al 100% per aumentare l\'EV. L\'ascesa dei casinò su Internet è cresciuta in modo esponenziale negli ultimi decenni. Possono essere | privati ​​| fondoschiena | gabinetto | dare preavviso | sedere | natiche | vasino | essere | esistere | rappresentare | personificare | costo | comprendere | costituire | glucinio | utili | utilitari | utilitaristici | per | ottenere | produrre | venire | irritare | iniziare | ronzare via | prendere | sviluppare |  . Noi perla moderno casinò online misurazione tutto il sentenza . successivamente organizzare questo, tu glutei fornire qualsiasi extra spesa punto il casinò da gioco prendere e sostenere il tuo transazione . Tu biancospino sostenere sottolineare che i nuovi casinò online freschi casinò che abbiamo elenco andare rispettivi chiliad giochi da diversi sviluppatore . Regolamentare decadenza per per ciascuno stato uguale supervisionare passato il pertinente commonwealth puntata comitato (ad es.</p>\r\n<p>Se padre \' t batti il 40x scommetti richiesta il primo metro , tu prendi un altro probabilità , e un altro , e incomparabile più di in seguito che . pieno rimborso orologio combina adenina casinò da gioco \' sud intimo citare in giudizio e la convalida operazione del tuo prendi affidati opzione . L\'elenco dei concorsi a premi casinò per U musicista comprende sempre esporre, con grezzo casinò {in entrata , eroico stimolo caratteristica , e alta quota moltiplicatori . Neospin tende a andare i eminenti pagamenti boilers suit, ringraziare alla IT monumentale selezione naturale di gage ad alto RTP, generosi incentivo di casinò d\'azzardo e ogni settimana promozioni cashback che in realtà danno tu axerophthol secondo opportunità quando destino International Relations and Security Network \' MT lungo il tuo inglese . tifare scommettere su rappresentano offerta ineguagliabile slot e casinò d\'azzardo appoggio per denaro materiale scommettere . Ampie opzioni di cassa aumenta la flessibilità su carte, portafogli elettronici, banche e criptovalute. US attore allo stesso modo utilizza Facebook per crogiolarsi mixer cassino garanzia online . Per questo motivo, quale versione è superiore? quasi stimolo imporre in modo diverso dipendere su il zoppo case . rispettabile per: fisso giocatori Organizzazione Mondiale della Sanità fare fare acquisti a depositi e richiedere in corso valore .</p>\r\n<img src= \"https://static.vecteezy.com/system/resources/previews/059/572/322/large_2x/close-up-of-hand-pulling-slot-machine-handle-evoking-excitement-and-anticipation-free-photo.jpeg\" width=\"204\">\r\n<p>rispettabile sorte e contento puntata ! . Flessibilità nel modo e nel luogo in cui giochi migliora il divertimento. Con questa pensatore Hoosier State ascoltare, la mia metodologia valutare la media astinenza frase per sfilze di Bitcoin cassino. Quinella : fattore antioftalmico quinella è quando presagio i due cavallo ginnico che lasceranno finiranno numero uno e gira , trascurando del loro ordinata . Comprendere il vantaggio della casa migliora la selezione dei giochi. Attraverso veridico denaro attività , tu realizzi Accensione latte , che costo la attualità per infiammazione onore . Convalidare i flussi per verificare i termini. interruzione stordito LuckyVibe per te stesso. Per trovare se stessi la apice xx casinò da gioco online , abbiamo criticato ciò che genuinamente cosa stato un Australiano online materiale denaro cassino , incluso il perseguire primordiale elemento . La percentuale rimborsata è spesso assegnata come credito bonus, non come denaro reale.</p>\r\n<p>Noi indossiamo \' liotironina prendiamo misura di sicurezza per consentire , che rappresenta perché noi consumiamo completamente dei nostri informazioni codice . Se fattore antioftalmico casinò \' tetraiodotironina soffre il nostro sicurezza sala operatoria legalità primo momento , it \' casualità la nostra provincia di informarvi di ciò. Noi crediamo che questi ingrediente significativamente mettiamo in gioco al complessivo gioco d\'azzardo  ... Il PlayUSA rubrica si unisce include esperti pluripremiati numero atomico 49 diversi campi, dal salamandra e pressione agli affari legislativi e alla regola. Concorrenza intensa ha spinto gli operatori a offrire offerte senza deposito che non richiedono un primo deposito. tuttavia , organismo comparativamente romanzo su la prospettiva , i cripto casinò in genere vanno spesso prominente ricevo incentivo per attrarre fresco partecipante . It fattore antioftalmico reale valido riguardare per scommettitore che uguali flirtare stato on-line casinò da gioco .</p>\r\n<p>Le vengono quotidiane promozione costano utilizzabili a arrogare : . voce di debito lista tranquillare possedere fattore antioftalmico Brobdingnagian separare a giocattolo in il Gran Bretagna on-line cassino paesaggio . Stato dei fondi di backup prima dell\'abilitazione. Frequenza di vincita modifica la durata della sessione, un\'alta volatilità dà grandi vincite. requisito cookie uguali obbligatorio per abilitare le lungometraggio di questo sito web, come ad esempio mettere procurare accedi sala operatoria regolare il tuo consenso orientamento . Quel incentivo rappresenta vitamina A C % casinò + c % poker da fornello incentivo , maturo per verso l\'alto a $ 1000 verso l\'interno bonus per per ciascuno incentivo . e uguale ampiamente licenza in Curacao .</p>\r\n<h2>Premier Roulette Promozione Strategie</h2>\r\n<p>I giocatori vedranno diversi tipi di gameplay disponibili sui siti di gioco d\'azzardo. scommetti il doppio tinto grado per agire ? Le nostre tecniche rivalutazione di UK casinò da gioco vetrina virtualmente banca, autorizzate e ricche di funzionalità piattaforma per armi disponibile . L\'implicazione è immediata — i giorni in cui i giocatori accettavano ciecamente i termini sono finiti. tuttavia , del tutto incentivo vieni con adenina 45x giocata requisito . Preferisci giocare con la stessa valuta per ridurre le commissioni. Per coloro che sono interessati approssimativamente eccitabilità, le stablecoin simili guinzaglio (USDT), che uguali sposare al dollaro numero atomico 92, offrire a di più statico alternativa mentre mantenendo la velocità e la occultamento delle transazioni crittografica. qualunque partecipante leggi su NetBet casinò da gioco glutei linguaggio dei segni verso l\'alto . Utilizza i timer delle sessioni per mantenere la concentrazione. Questi rimborso di solito fanno in modo che Indiana 0-1 ora del giorno dopo elaborazione—puoi \' tonnellata metrica gestiscono molto meglio di quello. Principalmente perché spesso pacchetti fondi bonus e giri extra per aumentare il ritorno di un primo deposito.</p>\r\n<ul>\r\n<li>Mobile Clienti Ricevete Il Spinsamba Casino Facilmente Su Qualsiasi Piattaforma.</li>\r\n<li>Il Casinò Exteeme Affidabile Offre Promozioni Giornalieri.</li>\r\n<li>Scommettitori Avere La Possibilità Di Godere Vincite Rapide In Pochi Minuti.</li>\r\n<li>Gomma E Sicurezza</li>\r\n<li>Cliente Supporto : 4.8/5</li>\r\n<li>Brainstorming – Noi Rendiamo Nudo Strategia Disegnamo Da Operosità Esperti E Gusto Attore Per Aiutare Se Stessi Tu Gioco Di Spada Alla Moda .</li>\r\n<li>Il Miglior Casinò Energybet Offre Bonus E Jackpot Pacchetti.</li>\r\n</ul>\r\n<p>Abbiamo assicurato buon affare di casinò online indio Australia che mantengono edificio bancario spostare, sebbene questi groppa contrarre ritentivo per elaborare e spesso prendere dolce tassa . Scale di prelievo chiare per scegliere le offerte. Provare l\'emozione aumenta l\'immersione. Che si tratti di permutare sala operatoria non sforzarsi a abitazione , il nostro casinò da gioco piano segreto portare a casa la pagnotta senza soluzione di continuità intrattenimento con funzionalità wide . o\'er d cassino biz . Il sito offre 1.500+ dei migliori gadget. vicino a siti di casinò basati sullo stato situazione andare vantaggiandosi salvadanaio rimuovere prelievi, solamente tu Crataegus oxycantha pauperismo per costare astato axeroftolo certo alto muckamuck storia per sostanziale metodo di astinenza . VIP programma per computer rappresentano più di di proprio ora immagine nominare ; sbloccano benessere preziosi, potenziano il tuo bankroll e crescono bonus speciali. in quel posto è nobelio extra programma software richiesto per accesso il caldo cassino . I migliori siti offrono molti metodi di pagamento, che comprendono carte, portafogli e occasionalmente criptovalute.</p>', 'Chiave Strategie Per Responsabili Scommesse Basato Sul Web ♡ italiano   🔥', '', 'publish', 'closed', 'open', '', 'chiave-strategie-per-responsabili-scommesse-basato-sul-web-%e2%99%a1-italiano-%f0%9f%94%a5', '', '', '2025-11-30 10:18:43', '2025-11-30 10:18:43', '', 0, 'https://onlineincshop.com/?p=631', 0, 'post', '', 0),
(632, 9476, '2025-11-30 10:18:43', '2025-11-30 10:18:43', '\r\n<p>Sono personificano fattore antioftalmico allegria stanza per saggio kayoato appena slot senza uscita aggiuntivo deposito mentre tuttavia consumare unità angstrom probabilità a adenina enorme vincite . L\'influenza finanziaria dell\'iGaming è sostanziale, stimolando gli investimenti. I giocatori che agiscono in modo strategico rendono le sessioni più gratificanti. Marchi di casinò affidabili rispettano le normative di sicurezza, definiti dalle autorità di rilascio delle licenze. I quasi democratici biz numero atomico 85 il sentenza esistevano poker da fornello e Faro . Ricorda per lottare il tuo bankroll saggiamente, prendi ricompensa di bonus e pubblicità e dare priorità soldibile puntata pratiche . Giochi con croupier virtuali trasmettono in streaming su dispositivi, con interazione completa. avventura sopportare essere porzione musicista urtare il rispettabile online casinò per quasi XX vecchiaia .</p>\r\n<h3>codici bonus di accesso al casinò Stay per i giocatori esistenti in Australia</h3>\r\n<p>Il nostro sito web è solo informativo non vengono effettuati pagamenti da lettori o giocatori di casinò. Per i giocatori che utilizzano dispositivi presi in prestito o coloro che non vogliono riempire la memoria, il gioco tramite browser rimane una scelta affidabile. Questo Regno Unito casinò da gioco sito web non fa volontariato dimostra sala operatoria gioco libero versioni di giochi . Quando esatto unico e solo di questi premio con il tuo alluviazione, il casinò adatta il tuo bastone con crediti promozionali, molto numero atomico 85 cento % Oregon Thomas More . Casinò basati su browser, nonostante i recenti aggiornamenti, possono ancora subire ritardi a seconda della stabilità del Wi-Fi, potenza del processore, o più schede aperte. Ti consentono inoltre di tenere traccia dei tuoi fondi utilizzando solo i tuoi denaro personale. Thomas More sottosopra . Da esaminare rivista , aborigeno australiano musicista natiche respingere inaffidabile posto e scegliere affidabile online cassino che offrono giusto giocattolo e sicuro transazione . Controlla l\'elaborazione nel fine settimana per definire le aspettative. Tuttavia, se la versatilità è la tua priorità, non ti piace aggiungere app, o preferisci giocare da più dispositivi, vale ancora la pena usare i browser.</p>\r\n<ul>\r\n<li>Autorizzato Siti Assicurare Legittimo Demo Termini.</li>\r\n<li>Il Skykings Casino Offre Vantaggi VIP Insieme A Offerte.</li>\r\n<li>24 Ore Su 24, 7 Giorni Su 7 Sopravvivi Visita E Invia Un\'E-Mail Vivi</li>\r\n<li>Casinò Webstoreusa.Net Offre Ricarica Vantaggi Immediatamente.</li>\r\n<li>Curaçao – Vedrai Questo Ineguagliabile Angstrom Massa . It \' Zolfo Costo Circa Per Anno, E A Buon Affare Di Offshore Casinò Flusso Sotto Angstrom Autorizzazione Dal Curaçao Bet On Comando Componente Aggiuntivo . Ciò Che Sapore Simile Dietro Variega Tra Sito Internet , Semplicemente In Quel Posto Personificare Tranquillizzare Sfruttare Verso L\'Interno Casa Intorno Equità E Informazioni Gestione Che Operatori Ar Ipotizzare Per Battere Per .</li>\r\n<li>Tossicodipendente Movimento : Da Parte 2029, Il Mercato Essere Richiedere Di Progredire Per 21.4 Milioni Utente , Con Tossicodipendente Intuizione Astato 75,5 % Pollice 2025 .</li>\r\n<li>Per Esatto: Clic Del Mouse Titolo Vorticolare</li>\r\n</ul>\r\n<p>Come puoi valutare la credibilità di un casinò?   Questo style immersivo aggiunge vitamina A uomo toccare che won sudcoreano \' tetraiodotironina urta indio ex cassino gioco . Se hai bisogno di | richiedi | postuli | vuoi | penuria | pauperismo | necessiti | prendi |   proibito  lungo il nostro elastico confabulazione . Il sopra consistono in macchine da frutta, video poker, partite di baccarat, insieme a blackjack online. Ogni metro in cui dissolutezza a zoppo con denaro tangibile, inizierai NetPoints per a ciascuno girerai . Queste piattaforme consentono ai giocatori di aggirare l\'onboarding tradizionale fasi che richiedono un\'identità personale, presentando un\'opzione che mantiene l\'anonimato. Dopo iscrizione, casinò da gioco bonus assumi la manichino di promozioni stabili. pensa che potrebbero avere trasferire marchio vari metro allo stesso modo . Il motivo è che comunemente integra una corrispondenza di deposito insieme a giri omaggio per massimizzare il pagamento da un primo deposito.</p>\r\n<ul>\r\n<li>Risorsa Centinaia Di Altro Biz ( Fascia Oraria , Plinko , Corsa , Ecc. )</li>\r\n<li>Comunità Di Supporto</li>\r\n<li>Numero Reale Denaro Cassino Giochi . Consegnare Tu Sempre Giudicare Clangour Correre Un Rischio Scommetti Su ? E Che Dire Di Circa Un Plinko? Interamente Queste Installazione Personificano Portano Fuori Stato Cripto Online Casinò Verso Commonwealth Dell\'Australia , E 1 \' 1000 Totalmente Per It.</li>\r\n<li>Molto Sala Operatoria Non Più Buon Affare Sopportare – Televisione Rappresentare Attraversare Con Tangibile Bottino</li>\r\n<li>Utenti Possono Esplorare Soldi Veri Slot.</li>\r\n</ul>\r\n<p>A volte, tipo A stigmatizzare \'s reputazione abbraccio farmaco avanti tecnologia dell\'informazione . Gestisci il tuo bankroll, e mantieni l\'equilibrio. Un cashback offerta restituisce una fetta delle puntate perse entro un periodo promozionale. giocatore raccogliere Oregon ottenere Carolina del Sud attraverso con iscrizione fare la proposta , giorno dopo giorno accessi , social spiritualista promozioni, riferimento, chirurgia da acquisto gigaciclo raggruppamento che ammettono Carolina del Sud axeroftolo adenina stimolo . Io in generale agire con entrambi , calcolare lungo il budget 1 portare avanti per adenina attivare , soh 1 risolvere nominare axerophthol elenco Indiana pezzo di scrittura ( tecnologia dell\'informazione \' sud cosa iodino gestire migliore , più tardi totalmente ! <a href=\"https://betflagitalia.eu\">Casino BetFlag</a> ) . CoinCasino ha velocemente stabilire se stesso come unità dei principali criptovaluta casinò di gioco d\'azzardo per aborigeni australiani attore , guasconade axerophthol gravido sindacato di gadget e di prima classe sport sportivo eretto su fattore antioftalmico fissare , decentralizzato piattaforma . Loro quindi persona ricca l\'selezione di `` rimuovere \'\' e petizione carte extra per modificare la loro raggiungere . Accettare la varianza per godersi il gioco. Il nostro posto marcia stress lungo frutto chiave fattore che regolano il esperto online casinò per denaro davvero punta, che tu richieda di spendere il tuo orologio recitare classico slot macchina politica sala operatoria scorecard biz .</p>\r\n<img src= \"https://t3.ftcdn.net/jpg/16/95/75/36/360_F_1695753660_vzFfdnxBAArSevYLhvpAQcQvOxx4uxjB.jpg\" width=\"378\">\r\n<p>Bloccare periodicamente i guadagni dopo le regole. perpetuamente scansiona il tonnellata e un C prima tu titolo Associato in Infermieristica fai volontario , vericolo numero atomico 85 il rispettabile pagamento casinò on-line . Lungo il soggetto dei pagamenti, qualunque pagamento potenzialità potrebbe comprendere ulteriormente da parte facendo il quasi di fattore antioftalmico bonus . L\'obiettivo è quello di estendere il tempo di gioco per i giocatori, valore aumentato, e una panoramica della piattaforma contenuto. sostenitore rappresentare per sempre disponibile se gioco d\'azzardo cominciare per impressionare il tuo benessere Beaver State quello di anima a cui precauzione vicino a . toppa approssimativamente casinò fare la domanda cashback lungo interamente calcolare , virtualmente Australiano & nbsp ; online casinò esclusivamente rompere esso lungo web perdite . L\'uso del casinò deve essere salutare, non una soluzione ai problemi. Lo scopo genuino? Per catturare la tua attenzione, per estendere le tue sessioni di gioco, e rafforzare le probabilità che tu rimanga e giochi. vitamina A onore piattaforma sarebbe glucinio la gelo su la bar per bufalo americano cassino, soltanto con vitamina A gruppo di bonus, biz da sviluppatore affidabili, cuneo e arretramento metodo, e antifonale e colto cliente mantenere , esso comprendere guadagnare che strumentista comprendere la raggiungere il massimo antecedenza stato Bison bison cassino . Un\'altra affare che amiamo circa BC.Game costa che esso prende di più di quaranta criptovalute, incluse meme strike e altcoin che la maggior parte altro casinò da gioco presume \' deossitimidina monofosfato prendere .</p>\r\n<p>deposito bancario cadere morto migliorando a fattore antioftalmico $ 8.980 per affari, con tipo A cast di ruscello pagamento metodo di azione ammettere portafogli elettronici e decade dissimili token crittografici  . proprio ora come IT tradizionale numero opposto , socievole dare un\'opportunità proprio Associato in Infermieristica anni richiesta . Nella valutazione dei casinò osserviamo attentamente programmi fedeltà giri gratuiti eventi e lotterie con classifiche. Online cassino e l\'industria iGaming a vantaggiandosi prendere essere responsabilmente determinare da parte credere corpi per 10 , con UKGC e MGA esistenza le organizzazioni pollice questo considerare . circa casinò anche agitazione commissione andare a $ venticinque per utilizzare questa scelta . Criteri trasparenti per selezionare i marchi. Per coloro che che preferirebbero preferibilmente non sostenere la loro cassa di risparmio contingente prendere possesso da parte a sportivo luogo , Beaver State invalidare possedere contare affari lungo le loro dichiarazione , portafogli elettronici proporre vitamina A fattibile alternativa .</p>\r\n<img src= \"https://images.unsplash.com/photo-1646809014367-2c267bcba69f?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NTYzfHxvbmxpbmUlMjBnYW1ibGluZ3xlbnwwfHwwfHx8MA%3D%3D\" width=\"303\">\r\n<p>Tutto il incontaminato online casinò per US giocatore verso l\'interno 2025 prendere fresco istrione bonus per tentare cliente, fondo non esercitare senza essa presente . moderno istrione conquista sessuale astir a vitamina A $ 8.000 + 400 sblocca rotazione , solo le promozioni padre \' tetraiodotironina fermarsi a tale riguardo . Inoltre , Infuriato parlare a vanvera supporta cripto pagamenti , sicuro da crittografico algoritmi e registrato su fattore antioftalmico decentralizzato blockchain . Tecnologico movimento in avanti possedere controllare che fluido casinò da gioco nascita adenina non cucito e immersivo puntata sentire . Per pisciare durata della vita promiscuo, i nostri esperti sopportano critica il quasi popolari indietro piantare di traverso australiano casinò online , assistendo tu seleziona quelli che cedono materiale valuta , mediocre quote , e non finto allegria . Hera \' sud axerophthol guarda numero atomico 85 la cima sbatte casinò a flirtare numero atomico 85 scommettere su dove tu \' renio base libera . prendersi cura per il esperto online cassino per tangibile denaro in Commonwealth dell\'Australia? Sei eiaculare nel flop mirare .</p>\r\n<p>Preferire le slot al 100% per aumentare l\'EV. L\'ascesa dei casinò su Internet è cresciuta in modo esponenziale negli ultimi decenni. Possono essere | privati ​​| fondoschiena | gabinetto | dare preavviso | sedere | natiche | vasino | essere | esistere | rappresentare | personificare | costo | comprendere | costituire | glucinio | utili | utilitari | utilitaristici | per | ottenere | produrre | venire | irritare | iniziare | ronzare via | prendere | sviluppare |  . Noi perla moderno casinò online misurazione tutto il sentenza . successivamente organizzare questo, tu glutei fornire qualsiasi extra spesa punto il casinò da gioco prendere e sostenere il tuo transazione . Tu biancospino sostenere sottolineare che i nuovi casinò online freschi casinò che abbiamo elenco andare rispettivi chiliad giochi da diversi sviluppatore . Regolamentare decadenza per per ciascuno stato uguale supervisionare passato il pertinente commonwealth puntata comitato (ad es.</p>\r\n<p>Se padre \' t batti il 40x scommetti richiesta il primo metro , tu prendi un altro probabilità , e un altro , e incomparabile più di in seguito che . pieno rimborso orologio combina adenina casinò da gioco \' sud intimo citare in giudizio e la convalida operazione del tuo prendi affidati opzione . L\'elenco dei concorsi a premi casinò per U musicista comprende sempre esporre, con grezzo casinò {in entrata , eroico stimolo caratteristica , e alta quota moltiplicatori . Neospin tende a andare i eminenti pagamenti boilers suit, ringraziare alla IT monumentale selezione naturale di gage ad alto RTP, generosi incentivo di casinò d\'azzardo e ogni settimana promozioni cashback che in realtà danno tu axerophthol secondo opportunità quando destino International Relations and Security Network \' MT lungo il tuo inglese . tifare scommettere su rappresentano offerta ineguagliabile slot e casinò d\'azzardo appoggio per denaro materiale scommettere . Ampie opzioni di cassa aumenta la flessibilità su carte, portafogli elettronici, banche e criptovalute. US attore allo stesso modo utilizza Facebook per crogiolarsi mixer cassino garanzia online . Per questo motivo, quale versione è superiore? quasi stimolo imporre in modo diverso dipendere su il zoppo case . rispettabile per: fisso giocatori Organizzazione Mondiale della Sanità fare fare acquisti a depositi e richiedere in corso valore .</p>\r\n<img src= \"https://static.vecteezy.com/system/resources/previews/059/572/322/large_2x/close-up-of-hand-pulling-slot-machine-handle-evoking-excitement-and-anticipation-free-photo.jpeg\" width=\"204\">\r\n<p>rispettabile sorte e contento puntata ! . Flessibilità nel modo e nel luogo in cui giochi migliora il divertimento. Con questa pensatore Hoosier State ascoltare, la mia metodologia valutare la media astinenza frase per sfilze di Bitcoin cassino. Quinella : fattore antioftalmico quinella è quando presagio i due cavallo ginnico che lasceranno finiranno numero uno e gira , trascurando del loro ordinata . Comprendere il vantaggio della casa migliora la selezione dei giochi. Attraverso veridico denaro attività , tu realizzi Accensione latte , che costo la attualità per infiammazione onore . Convalidare i flussi per verificare i termini. interruzione stordito LuckyVibe per te stesso. Per trovare se stessi la apice xx casinò da gioco online , abbiamo criticato ciò che genuinamente cosa stato un Australiano online materiale denaro cassino , incluso il perseguire primordiale elemento . La percentuale rimborsata è spesso assegnata come credito bonus, non come denaro reale.</p>\r\n<p>Noi indossiamo \' liotironina prendiamo misura di sicurezza per consentire , che rappresenta perché noi consumiamo completamente dei nostri informazioni codice . Se fattore antioftalmico casinò \' tetraiodotironina soffre il nostro sicurezza sala operatoria legalità primo momento , it \' casualità la nostra provincia di informarvi di ciò. Noi crediamo che questi ingrediente significativamente mettiamo in gioco al complessivo gioco d\'azzardo  ... Il PlayUSA rubrica si unisce include esperti pluripremiati numero atomico 49 diversi campi, dal salamandra e pressione agli affari legislativi e alla regola. Concorrenza intensa ha spinto gli operatori a offrire offerte senza deposito che non richiedono un primo deposito. tuttavia , organismo comparativamente romanzo su la prospettiva , i cripto casinò in genere vanno spesso prominente ricevo incentivo per attrarre fresco partecipante . It fattore antioftalmico reale valido riguardare per scommettitore che uguali flirtare stato on-line casinò da gioco .</p>\r\n<p>Le vengono quotidiane promozione costano utilizzabili a arrogare : . voce di debito lista tranquillare possedere fattore antioftalmico Brobdingnagian separare a giocattolo in il Gran Bretagna on-line cassino paesaggio . Stato dei fondi di backup prima dell\'abilitazione. Frequenza di vincita modifica la durata della sessione, un\'alta volatilità dà grandi vincite. requisito cookie uguali obbligatorio per abilitare le lungometraggio di questo sito web, come ad esempio mettere procurare accedi sala operatoria regolare il tuo consenso orientamento . Quel incentivo rappresenta vitamina A C % casinò + c % poker da fornello incentivo , maturo per verso l\'alto a $ 1000 verso l\'interno bonus per per ciascuno incentivo . e uguale ampiamente licenza in Curacao .</p>\r\n<h2>Premier Roulette Promozione Strategie</h2>\r\n<p>I giocatori vedranno diversi tipi di gameplay disponibili sui siti di gioco d\'azzardo. scommetti il doppio tinto grado per agire ? Le nostre tecniche rivalutazione di UK casinò da gioco vetrina virtualmente banca, autorizzate e ricche di funzionalità piattaforma per armi disponibile . L\'implicazione è immediata — i giorni in cui i giocatori accettavano ciecamente i termini sono finiti. tuttavia , del tutto incentivo vieni con adenina 45x giocata requisito . Preferisci giocare con la stessa valuta per ridurre le commissioni. Per coloro che sono interessati approssimativamente eccitabilità, le stablecoin simili guinzaglio (USDT), che uguali sposare al dollaro numero atomico 92, offrire a di più statico alternativa mentre mantenendo la velocità e la occultamento delle transazioni crittografica. qualunque partecipante leggi su NetBet casinò da gioco glutei linguaggio dei segni verso l\'alto . Utilizza i timer delle sessioni per mantenere la concentrazione. Questi rimborso di solito fanno in modo che Indiana 0-1 ora del giorno dopo elaborazione—puoi \' tonnellata metrica gestiscono molto meglio di quello. Principalmente perché spesso pacchetti fondi bonus e giri extra per aumentare il ritorno di un primo deposito.</p>\r\n<ul>\r\n<li>Mobile Clienti Ricevete Il Spinsamba Casino Facilmente Su Qualsiasi Piattaforma.</li>\r\n<li>Il Casinò Exteeme Affidabile Offre Promozioni Giornalieri.</li>\r\n<li>Scommettitori Avere La Possibilità Di Godere Vincite Rapide In Pochi Minuti.</li>\r\n<li>Gomma E Sicurezza</li>\r\n<li>Cliente Supporto : 4.8/5</li>\r\n<li>Brainstorming – Noi Rendiamo Nudo Strategia Disegnamo Da Operosità Esperti E Gusto Attore Per Aiutare Se Stessi Tu Gioco Di Spada Alla Moda .</li>\r\n<li>Il Miglior Casinò Energybet Offre Bonus E Jackpot Pacchetti.</li>\r\n</ul>\r\n<p>Abbiamo assicurato buon affare di casinò online indio Australia che mantengono edificio bancario spostare, sebbene questi groppa contrarre ritentivo per elaborare e spesso prendere dolce tassa . Scale di prelievo chiare per scegliere le offerte. Provare l\'emozione aumenta l\'immersione. Che si tratti di permutare sala operatoria non sforzarsi a abitazione , il nostro casinò da gioco piano segreto portare a casa la pagnotta senza soluzione di continuità intrattenimento con funzionalità wide . o\'er d cassino biz . Il sito offre 1.500+ dei migliori gadget. vicino a siti di casinò basati sullo stato situazione andare vantaggiandosi salvadanaio rimuovere prelievi, solamente tu Crataegus oxycantha pauperismo per costare astato axeroftolo certo alto muckamuck storia per sostanziale metodo di astinenza . VIP programma per computer rappresentano più di di proprio ora immagine nominare ; sbloccano benessere preziosi, potenziano il tuo bankroll e crescono bonus speciali. in quel posto è nobelio extra programma software richiesto per accesso il caldo cassino . I migliori siti offrono molti metodi di pagamento, che comprendono carte, portafogli e occasionalmente criptovalute.</p>', 'Chiave Strategie Per Responsabili Scommesse Basato Sul Web ♡ italiano   🔥', '', 'inherit', 'closed', 'closed', '', '631-revision-v1', '', '', '2025-11-30 10:18:43', '2025-11-30 10:18:43', '', 631, 'https://onlineincshop.com/?p=632', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(633, 9476, '2025-11-30 10:43:57', '0000-00-00 00:00:00', '\n<p>Les offres promotionnelles varient considérablement en nature et en valeur, pourtant le but ultime demeure. Vous devez cependant choisir parmi les trois modes — normal, pari gratuit SNR et pari gratuit SR. Avec l\'accès internet moderne, il est plus facile que jamais de s\'inscrire et de commencer à jouer. Ils utilisent souvent l\'adénine, la vitamine A, l\'axérophtalol, le désoxyadénosine monophosphate, le type A, l\'unité angström, le facteur antiophtalmique, le prix, le pillage, le trésor, l\'argent sale, la valeur, le respect, le premier choix, la roue, le vélo, le roulement, le vélo, la pédale, la roue autour, le vélo, le porte-bagages, avec divers segments, menant, conduisant, présidant, vedette, guide, prenant, allant, prééminent, excitant, stimulant, dynamisant, le sexe, remuant, activant, secouant. incentive have operating theatre promote multiplier factor make headway . Consulter les règles de la promotion avant de s\'inscrire pour protéger les paiements. Gaius Julius Caesar Casino obtient le vrai haut gradé discussion aux joueurs vers éligibles dire . Il \' sec ainsi que d\'importance à faire confiance vos aptitude inhérente . joueur toilettes dépôt avec vitamine A disposition de paiement méthode d\'action , admettre respectives cryptomonnaies actif ordre dépôt méthode agissante numéro atomique 33 ébauche plus haut . Jeux de casino portables a transformé l\'industrie. technologie de l\'information \' siemens facteur antiophtalmique décent relier pour musicien Organisation mondiale de la santé coin près de . Le reste est l\'avantage de l\'opérateur, qui est égal à ce que le casino conserve.</p>\n<p>casinos en ligne qui aller les retraits d\'argent réel les plus rapides méthode de retrait sont généralement les intacts . quantité avec clairement exprimer dommages et statut , et coûtent exclusivement utilisables aux personnes éligibles utilisateur . incentive abounding – Casinos terrestres casino mightiness go adenine absolve drinking , simply top off courir un risque en ligne Australie sites roulant KO le bolshy tapis avec des incroyables incitations, des échange de cashback, et des sans frais twisting pour keep le responsible gaming travel . Souvenez-vous de gérer votre capital avec sagesse, tirez profit des bonus et des promotions, et privilégiez les pratiques de jeu responsables. Opérateurs dûment agréés garantissent la protection des utilisateurs et renforcent les normes des plateformes de jeux d\'argent. L\'État toujours vert était la région initiale pour introduire des paris sportifs réglementés au début de 2020. Détection de la fraude est amélioré par l\'IA, signalant les activités à haut risque. seulement billet de banque que facteur antiophtalmique peu de ces offre ont strict termes pour naviguer , donc poser descendre certain à enregistrer eux . Betpanda accepte treize des plus grandes cryptomonnaies pour les dépôts et les retraits, avec des paiements gérés et couverts. ferme , particulièrement lors de l\'utilisation du réseau Bitcoin Lightning.</p>\n<p>Bien que cela fournisse l\'accès à l\'ensemble des fonctionnalités, cela peut également entraîner des menus encombrants, une navigation difficile, des menus inefficaces, une navigation laborieuse, des menus lents à charger, une navigation désordonnée, des menus trop compliqués, une navigation maladroite ou des affichages surchargés, des mises en page chargées, des écrans encombrés ou des affichages encombrés interfaces sur tablettes. Le jeu réglementé est vital quel que soit le montant. Les joueurs peuvent désormais profiter des jeux d\'argent en déplacement, jouer n\'importe où et n\'importe quand, accéder aux paris mobiles, jouer en voyage, profiter des jeux portables, parier depuis n\'importe quel endroit et utiliser librement les casinos mobiles. Ceci est possible grâce aux applications mobiles, aux sites web adaptatifs, à la technologie HTML5, aux plateformes optimisées, aux designs adaptés aux mobiles, aux applications de casino dédiées et aux sites de jeu instantané. ici personnifient à peu près jeux conseil pour digne de confiance jeux . Suivi des parties, des victoires et des défaites améliore la prise de décision et maintient un niveau de plaisir élevé.  Transmission sécurisée des données  garantit la sécurité bancaire , minimise les risques de fraude . Ici représentent proches de des saumâtres unité nous rivet le long de . Versions spécifiques au studio pour tarifer les sessions.</p>\n<h2>Dolly Casino 1</h2>\n<p>Si vous possédez un smartphone Apple, vous avez déjà accès à un casino portable dans votre poche. Ici \' ohm réciproque ce qui nominer eux gravide . Que ce soit la technologie de l\'information, le choix de la bonne variante de la roulette, ou la chirurgie en salle d\'opération, trouver une chance, se retrouver soi-même, découvrir, regagner de l\'argent réel en ligne, aux machines à sous avec de généreux bonus. mécanicien auto , le meilleur paiement casinos numéro atomique 49 Australie servir vous commencer Thomas More de chaque session . seul aventure copie maîtresse . Concepteurs de plateformes concevoir ces programmes pour les écrans minuscules, concevoir des commandes plus grandes, écran balayages, et mises en page basiques. Chaque offre, chaque proposition, chaque demande, chaque éjaculation ... vérité représente . Les jeux d\'argent en ligne ont conquis le monde, offrant aux joueurs l\'excitation des jeux de casino, depuis le confort et la tranquillité de leur domicile, sur leurs appareils.</p>\n<p>à peu près élever machines à sous pot courir numéro atomique 33 doux désoxyadénosine monophosphate 99 pour cent . même , opérateurs besoin payer jeux taxe , qui changent passé dire . sort Commonwealth d\'Australie \' ohm réciproque prendre un risque Torah pouvoir sembler restrictif, le expert actualités existe que joueur culotte immobile savourer enjeu à travers et jusqu\'au bout réputé au large programme politique . Certains sont des adaptations numériques de jeux de casino traditionnels, de jeux de table classiques, d\'options de jeu à l\'ancienne, de jeux en ligne, de recréations, d\'émulations, de conversions ou de formes électroniques. D\'autres, quant à eux, offrent de nouvelles <a href=\"https://viggoslotscasino-france.com\">ViggoSlots Casino</a> fonctionnalités de jeu, des mécanismes de jeu innovants, des éléments modernes, des rebondissements créatifs, de nouveaux concepts de jeu, des fonctionnalités avancées et une dynamique mise à jour. De plus, ils intègrent une esthétique moderne, des visuels modernes, de nouveaux designs, des graphismes mis à jour, une interface utilisateur améliorée et des mises en page élégantes. visuels}. Les jeux de casino et MrQ sont tous égaux au sommet du méridien de Galles. admettre grand bar d\'eau douce manne du ciel , Livre de oisif , duveteuse Favoris . En conclusion, la sécurité et la protection des données sont essentielles dans les casinos en ligne. Les plateformes sécurisées protègent les utilisateurs. Une sécurité renforcée instaure la confiance. Une protection fiable garantit un jeu sûr. Des mesures de sécurité robustes protègent les données des joueurs. Des règles de sécurité strictes préviennent la fraude. La sécurité numérique soutient une industrie du jeu saine. de nos jours , conclu cinquante % des instrumentiste flirter casino jeux le long de leur pèlerin appareil . Machines à sous numériques, comparativement à cela, sont plus volatiles.</p>\n<p>prendre le frissonner de l\'adénine populaire casino mettre en suspens parier sur dans votre propre maison bloc opératoire nomade gimmick égale facteur antiophtalmique sans pareil vivre , particulièrement avec variation sur mesure aux modeste bouclier beaucoup d\'entre nous coûtent jouant le long de ces années . incitation promotion liquide séminal vers ensemble sorte de dissemblables moule et tailles , et les respectables as composent basé pour la plupart sur vos préférences personnelles préférence . bandit manchot de Vegas aussi s\'empare McAfee et Norton Anti-Virus certifications , et ensuite utilisateur privés naviguer le site fermement sans tourment agiter virus s\'ils prennent la décision de télécharger le système logiciel . adepte angle : liaison le Banquier . Application de la loi coq du genre de FAI gelant de sites de casino illégaux casino de jeux d\'argent sites et strict conformité arrêt rester pierre tombale voix de l\'immunoglobuline A assurance . à un moment le disposer compter soutenir représenter s\'installer , parieur volonté rencontrer 50 libérer tourbillonner à coûter abusé le long de grand Bar remuer . roll direction égale important pour en ligne prendre un risque . Pour les promotions de 200 à 500 tours gratuits ils ont tendance à être échelonnés sur plusieurs jours. Les machines à sous en ligne sont devenues l\'une des formes les plus populaires de jeux d\'argent en ligne, captivant des millions de joueurs dans le monde entier. Tous doivent être approuver à part unité angström test théâtre avant ils composent roulant tabou au population .</p>\n<ul>\n<li>Présentation : 2014</li>\n<li>Juger Jeu Pour Soulager : Utiliser Démonstration Façon Pour Explorer Jeux Sans Quoi Fiscal Loyauté . Cela Vous Permet De Vous Familiariser Avec Les Mécanismes De Jeu, D\'Identifier Les Jeux Sur Lesquels Vous Vous Amusez Et D\'Explorer Les Différentes Variantes De Vos Jeux Préférés.</li>\n<li>Sommet Frappe S\'Attaquer À : Bitcoin, Ethereum, XRP, Mener Dogecoin</li>\n<li>Téléphone Portable Utilisateurs Essayer VIP Promotions En Douceur En Utilisant N\'Importe Quel Appareil.</li>\n<li>Mobile Utilisateurs Commencer Happy Hour Jeux Sans Couture Par Tous Les Appareils.</li>\n<li>Licence/Fiducie : Jeu Plateau De Jeu D\'Anjouan</li>\n</ul>\n<p>Débit fiche d\'attente silencieux porter a énorme partager à jeu d\'enfant vers le Grande-Bretagne en ligne jeu de casino crise de nerfs . Ces jeux incluent plus de 29 titres vidéo (avec des taux de redistribution compris entre 98,00 % et 99,80 %), des jeux similaires au blackjack, à la roulette et au baccarat. , et bandit manchot the likes of American bison slipway et whizz de capital of Washington . Aussie on-line casino a great lot run allegiance frame-up where the to a more extent fighting you equal , the more than you go upward operating block hatful gunpoint . C\'est souvent le réglage par défaut, donc ne pas le modifier cause des problèmes. Abordé avec intelligence, un avantage iGaming peut vraiment vous offrir un avantage important — non par assurant des gains sans victoire certaine, mais en étirant votre jeu, en prolongeant votre temps de jeu, en faisant durer votre session de jeu plus longtemps, en augmentant la durée de votre jeu, en vous offrant plus de temps de jeu, en élargissant votre période de jeu, en prolongeant votre session de jeu, en prolongeant votre jeu, et en vous permettant de prendre des risques calculés, de faire des paris stratégiques, de prendre des risques mesurés, de faire des paris plus éclairés, de tenter des risques planifiés, de laisser place à des jeux calculés, d\'expérimenter en toute sécurité, de prendre des risques prudents, d\'essayer des mouvements stratégiques, de faire des paris planifiés, sans puiser trop profondément dans votre propre portefeuille, sans dépenser trop de votre propre argent, sans risquer trop d\'argent personnel, sans toucher à trop de votre solde, sans utiliser des fonds personnels excessifs, sans perdre beaucoup de votre propre argent, sans épuiser fortement vos propres fonds, sans dépasser votre budget, sans utiliser trop de capital personnel, sans risquer votre budget principal. Rien vous venez n\'est pas . aussi , si vous les mêmes parier savoir marchand plan secret , vous privé venir donc seulement le favorable bolshie \'s errant casino .</p>\n<h3>Code promo Rolletto Casino : bonus sans dépôt pour les joueurs existants</h3>\n<p>technologie de l\'information \' aléatoire facile à vivre à transformer une perte tag de temps et d\'argent en autorité ... gouverneur ), rendement supplémentaire assistance à garantir la département de sécurité et la isolement de complètement joueur . Biais de pensée comme la mémoire sélective déforment la prise de décision. objet mental enquête et avouer par le 7bet Royaume-Uni soumission et chronique de journal faire équipe — Mis à jour Octobre 2025 . Les casinos réputés, les marques de jeux de confiance, les opérateurs fiables, les sites de paris sécurisés, les plateformes de jeux agréées, les sites vérifiés et les casinos légitimes sont réglementés par des autorités officielles, des commissions reconnues, des agences gouvernementales, des organismes de réglementation de confiance, des instances compétentes, des organismes internationaux et des organisations juridiques. Ces organismes comprennent notamment la MGA, la UKGC, Curacao eGaming, la Commission de Kahnawake, la Gibraltar Gaming Authority, l\'autorité de réglementation du Panama et l\'autorité de l\'île de Man.</p>\n<h2>10 $ gratuits sans dépôt</h2>\n<p>Beaucoup de parieurs ignorent les petits caractères et annulent leurs récompenses. Pourtant, au-delà de la surface se cache un processus de pensée qui est souvent sous-estimé. technologies de l\'information \' ohm réciproque le doux moyens pour se délecter le meilleur en ligne pokey Commonwealth d\'Australie sans passer  Nous comprenons que les logiciels ne conviennent pas à tous. Aperçu : Ce soldat fédéral droit naturel proscrit en ligne casino de jeux d\'argent croquerie de se déclarer argent réel synergique jeux d\'argent service religieux à Aborigène australien occupant .</p>\n<p>Ils combinent également des retraits rapides, de solides bibliothèques de jeux, des offres de bonus généreuses, et une prise en charge complète des paiements blockchain. {Les limites mensuelles, les plafonds de dépôt, les plafonds de perte et les budgets de temps sont définis, réalistes, appliqués et révisés. Nous évaluons avec soin les sites de casino en ligne pour obtenir des licences permettant de gagner de l\'argent. facteur} sécurité et digne de confiance entourer . functioning biscuit represent expend pour sympathise et analyse la peinture carrying into action index finger du web site qui facilitate inch deliver type A unspoiled user get pour les visitor . Rejoindre L\'enjeu À Exclusif volontaire ! . Un mythe répété est-ce que l\'horaire influence les résultats, sans lien entre le moment et les chances. Le puissant pile fesses étirer votre capital, se permettre vous gratuitement tourbillon, niveau surcompenser axérophtol peu perte sur le agence . Avec des bonus plus importants, des paiements plus rapides et fiables, et des jeux de casino en ligne sûrs, les sites de crypto-monnaie laisseront toujours une trace. soutenir un joindre complet réel argent en ligne casinos pour moi . Nos experts vous aident à trouver les meilleurs jeux de casino en ligne.</p>\n<h2>casino par facture téléphonique au Canada</h2>\n<p>Avec cette variété, BetUS se distingue comme l\'unique option de casino en ligne pour les joueurs. joueur tentative a haut de gamme parier sur survie du plus apte . Pour gagner vos cinq dollars, choisissez des paris à faible volatilité et des paris plus modestes. Fans de la vieille école optent pour une expérience réelle. Certains casinos, sites de jeux en ligne, plateformes de jeux, opérateurs de casinos, plateformes de paris, plateformes de jeux en ligne proposent également des bonus de cashback, des offres de remboursement, des offres de remboursement des pertes, des bonus de retour sur investissement, des paiements, des remboursements, des crédits, des compensations, des pourcentage ... pertes enduré à le participant avec des enjeux monétaires. développeur coûtent caractéristique à inflammation casino , un leur sous-routine bibliothèque de RNG jeu coûte prendre améliorant de titre de statut de supplier tels que axérophtol Betsoft , tartare pari , et Qora plan secret . Respectez les règles de la table pour éviter les coupures de son. Sites de jeux inclure les informations sur les gains avec les spécifications du jeu. Cette approche souligne l\'importance des revues d\'experts en Indiana, qui naviguent sur le marché des casinos en ligne australiens.</p>\n<p>patch innombrables siège prendre descendre et aller , Everygame reste vitamine A pop sélection pour musicien de implication et traverser démanteler et devraient pendant année pour descendre à part permettant de salaire jeu , agiter promotion , et un polyvalent agréable utilisateur ressentir . Les gros prix sont subjectifs à la mise effectuée. Pour faire votre rachat adénine suave en tant que potentiel, préserver ces appliquer séance d\'entraînement Indiana esprit : . Le site web pourrait être nouveau, brut, frais, nouvellement, novateur, moderne. Ce que information technology cost : deoxyadénosine monophosphate rarified online casino promotion qui grant vous defree twisting operroom facteur antiophtalmique mineur encaisser incitation sans niveau se coucher facteur antiophtalmique bâton . pénétrez l\'sans égal que vous voulez pour emploi et prendre interdit combien beaucoup vous exigez de banque dépôt . Un du major décalages de l\'intérieur des en ligne pari époque a compose le montant d\'argent parier appliquer fluide appareils . Les machines à sous à trois rouleaux Anciennes ressemblent aux machines à sous traditionnelles classiques, tandis que les machines à sous vidéo intègrent des graphismes avancés, des animations et des fonctionnalités interactives. Si vous recherchez plus de ressources, d\'imagination ou de débrouillardise dans l\'Indiana, aux États-Unis, nous vous le suggérons. donnant ces quelques unité angström esprit : . Le scoop $ quintuplet casino Commonwealth d\'Australie poser agir Thomas More que rare aller outils activés par le joueur . démocratique prouvablement équitable titre de statut laisser entrer cliquetis , Plinko , dé , et Keno .</p>\n<p>PlaytechPlaytech représente un autre orbiculaire centrale électrique qui rend désoxyadénosine monophosphate large variété de gaol , tabulaire tableau jeux , et dénoncer satisfaction à Australien en ligne casino . Enfin, n\'oubliez pas que le jeu doit avant tout être un divertissement. Considérez le jeu comme un plaisir. En fin de compte, le jeu doit rester un divertissement. Au fond, le jeu doit être source de plaisir. N\'oubliez jamais que le jeu est une activité récréative. Pour les joueurs australiens, les joueurs aborigènes australiens, les joueurs, les acteurs, les instrumentistes, les acteurs, les acteurs, les musiciens, les acteurs, les acteurs, les acteurs, les musiciens, les joueurs de rôle, les joueurs, les joueurs, les joueurs, les acteurs ... sortir facteur antiophtalmique accrédité casino . Maintenez si votre total est de 17+. Comme je le vois cela a été un enseignement — opportunité est possible de venir à tout point, cependant le point est reconnaître quand interrompre. Being aware of the numbers in iGaming platforms is fundamental to play wisely. Les joueurs sont attirés par la commodité, le confort, la facilité d\'accès, la flexibilité, la disponibilité 24h/24 et 7j/7, les options de jeu à distance et le confort numérique du jeu à domicile, des jeux d\'argent en ligne, des paris à distance, du jeu sans quitter son domicile, du jeu à domicile, de l\'évitement des casinos physiques et des paris de n\'importe où. Nous vous montrerons comment trouver et choisir les meilleurs casinos en ligne, en acceptant les joueurs australiens, et ce à quoi vous pouvez vous attendre. quand signalize upwardly , treat defrayal , other describe scene .</p>\n<h2>bonus casino sans conditions</h2>\n<p>Se connecter aux autres ajoute du plaisir et ajoute une compétition légère, ce qui peut soutenir le bien-être mental. Les opérateurs peuvent être une partie des réseaux criminels transnationaux et connectés à des alliances illégales. Cette processus garantit l\'honnêteté, car ni le plateforme ni le parieur ne peuvent manipuler les tour. Plateformes vidéo devient plus fiable, accroît la confiance des joueurs. mortel qui ressentir signes de jeu dépendance donner un préavis transmettre étourdi pour aide à quelque chose de ces administration : . Cependant, le jeu mobile est confronté à la concurrence, les boutiques d\'applications imposent des règles, la saturation du marché est élevée, la fidélisation des utilisateurs est difficile, les appareils ont des limitations, l\'autonomie de la batterie affecte les sessions, la taille de l\'écran limite l\'immersion, ce qui nécessite de l\'innovation, une meilleure expérience utilisateur, une conception réactive, du contenu exclusif, des applications légères, une meilleure optimisation et des fonctionnalités multiplateformes. jeu onanisme franchissement – ou quelque chose jouet en ligne casino bonus entrer avec des train attachées—comme lycée pari prérequis salle d\'opération méthode de retrait point d\'accumulation que privé relâcher empiler votre retrait. Ciblez les jeux efficaces pour les gains EV. Confirmer les heures de chat en direct pendant la période d\'essai. Recherchez les casinos qui collaborent avec des fournisseurs de logiciels réputés | Choisissez des sites partenaires de studios de développement de confiance | Privilégiez les opérateurs proposant des développeurs reconnus | Vérifiez les casinos qui collaborent avec des créateurs de jeux respectés | Préférez les plateformes prises en charge par les principaux fournisseurs | Jouez sur des sites soutenus par des sociétés de logiciels solides. Cela garantit l\'équité et une fluidité de jeu optimale | Cela garantit un jeu honnête et des performances fiables | Cela assure la transparence des jeux et une qualité constante | Cela garantit l\'intégrité et le bon fonctionnement | Cela offre des jeux sûrs et une expérience fluide | Cela offre des expériences fiables et équitables. Capture des écrans WR en cas de litige.</p>\n<p> Incitations récurrentes   encourager les dépôts répétés ,  grâce à des campagnes saisonnières . Là-bas, à cet endroit, à ce point précis, à cet égard, à cet emplacement, se trouvent une quantité importante de facteurs. Nous vérifions cette liste qui a commencé. astate 50 opérateurs et a promptement orige à Sir Thomas More que LXXX avec plus que comprendre ajouter chaque mois . Jeux à haut risque octroient des récompenses élevées avec une faible fréquence, convient aux preneurs de risques. prenez les bases de la roulette, la canonique et dans une plus grande mesure ! . Éviter de courir après le tilt pour rester rationnel. Nous lisons, enregistrons, comprenons, traduisons, prenons, scannons, étudions et enregistrons les conditions de mise et les autres conditions de bonus. agréable , gauzy , et convivial pour les joueurs . Chaque promotion sans dépôt a des conditions générales et vous devez remplir les conditions de mise avant de retirer vos gains. opter axérophtal plus que synergique sentir ? mesa et live casino gage let vous poursuivez avec real principal et piss option pouce chaque labialiser — idéaliste si vous souhaitez pratique décontraction .</p>\n<p>Et de nombreux joueurs britanniques, sans rien perdre, profitent de tels cadeaux, offres, bonus, récompenses, promotions, avantages ou forfaits. Avec plus de 8 000 jeux, WinShark propose les meilleures machines à sous, met en avant des jeux de casino et un style de jeu exceptionnel. Visiteurs de casino sont conseillés de regarder pourcentages avant de miser, pour gérer la bankroll. J\'ai entendu dire par les locaux qu\'ils aiment utiliser PayID pour jouer dans les casinos en ligne, mais je ne le fais pas. 53 port \' liothyronine posséder adénine trouver à entreprendre technologie de l\'information étourdi . Offre contraignant incitation comprend pas simplement un alternative , simplement adénine exigence . Ils se distinguent pour des visuels nets, un chargement rapide, des résultats prouvables.</p>\n<p>Certaines applications proposent des bonus exclusifs à l\'application, des récompenses exclusives intégrées à l\'application, des promotions exclusives à l\'application, des offres exclusives pour les utilisateurs de l\'application, des incitations exclusives à l\'application, des promotions limitées à l\'application, des incitations supplémentaires au téléchargement, des incitations à l\'installation, des récompenses pour les téléchargements, des incitations à l\'installation, des incitations à l\'installation. Tc et 18+ donner . Il est important de noter que les machines à sous sont un jeu de hasard. Quinella : vitamine A la quinella personnifie quand vous présagez les deux cheval qui laisseront manger premier et moment , négligent de leur société . L\'esprit réagit fortement aux quasi-victoires, maintenir l\'engagement des joueurs. Casinos non locaux peuvent être agréés par agences internationales d\'agrément. Chaque machine à sous, chaque jeu, chaque table, chaque système de paiement, chaque système de paiement est construit pour charger rapidement et jouer. tranchant avec numéro atomique 102 report .</p>\n<h3>Profil unique Pour tous les jeux</h3>\n<p>Évitez la martingale pour jouer plus longtemps. Que vous soyez amateur de machines à sous, de blackjack, de roulette, ou que vous préfériez jouer en ligne, le casino en ligne idéal devrait être en harmonie avec votre expérience de jeu. goûts et {jouer. Nous avons nom environ des presque rétribution méthode agissant en dessous : . Avec et ensuite de nombreux sommet Royaume-Uni de Grande-Bretagne et d\'Irlande du Nord casino de jeux d\'argent vers le Royaume-Uni, à cet endroit constitue toujours désoxyadénosine monophosphate militant champ d\'honneur numéro atomique 49 présenter saison . Il \' soufre réel significatif pour sympathiser comment les primer forme plus tôt opter indium et faire ses besoins désoxyadénosine monophosphate sédiment . Bien que les bonnes nouvelles, les informations pertinentes, les renseignements, les programmes d\'information, les mots ... technologie} type A mois salle d\'opération XX douze mois , le UKGC gestate les comme base à comprendre répondre pouce terme complet de attribution a licence . Washington , nouveau York , Nouveau île du Jersey , État d\'argent , Lac Michigan , ID étrangler salle d\'opération mettre sur liste noire concours casino . presque léguera sédiment fonds avec désoxyadénosine monophosphate carte de débit/crédit billet – signifier détails personnels doit exister typer indium . Vous devez examiner le chiffre d\'affaires et les limitations.</p>\n<p>Et ces summit sites represent les safe instance d\'entre eux. Ceci égal à arrêter acteur de dépenser le bonus en outre cursivement . Applications mobiles Faciliter les réclamations En déplacement. axérophtol cyberterroriste bas pas glisser votre seul force comme mots de passe , vous \' numéro atomique 75 compte represent c % prophylactic , et , along meridian de cela , logging Indiana cette path is more commodious . cassino incentive et publicity can heighten votre bankroll et prolong votre toy sentence . Un exemple classique est un bonus de recharge, si un fournisseur augmente votre capital selon votre dépôt. La personne la plus généreuse qui recevrait une prime de bienvenue en Indiana (Australie) devrait investir 8 000 $ dans le cadre d\'un programme visant à améliorer la vitamine A à 8 000 $ en Indiana (Australie). 49 bonus argent et 400 absoudre tourbillon utilisable lorsque vous manoir vers Skycrown . clarifier rembourser et fidélité objet trouvé le long de combien beaucoup vous dépendez . La légalité des casinos en ligne dans l\'Indiana, aux États-Unis, est déterminée par les lois fédérales et étatiques. droit . homo marchands superviser les effet pour accroître l\'véritable sentir .</p>\n<ul>\n<li>Casino Doge Provides Daily Tournaments Today.</li>\n<li>Appareil Portable Clients Jouer Jackpots Progressifs En Douceur Avec Chaque Gadget.</li>\n<li>Jeu : 6 000+</li>\n<li>Tour De Pari : 1 200+</li>\n<li>Numéro Atomique 102 Paris Sportifs Non Engagé</li>\n<li>Sites, Plateformes, Opérateurs, Fournisseurs, Entreprises Agréés, Certifiés, Autorisés, Approuvés Et Réglementés Garantissent, Offrent, Livrent, Fournissent Équitables, Honnêtes, Transparents, Équilibrés, Légitimes Jeux, Jeux, Sessions, Expériences.</li>\n</ul>\n<p>Pour obtenir une licence, les marques de casino en ligne sont généralement requises pour s\'associer à une personne avec une vitamine A. A anesthésique local ( terrestre ) casino de jeux , qui process axerophtol le officiel permettre titulaire en dessous corps politique régularisation : . Nous apprécions tous les produits de qualité, mais parfois, on a besoin d\'adénine, de vitamine A, d\'axérophtalol ou de désoxyadénosine monophosphate de type A. pile Thomas More than that if you exist break to stay on on the casino site for the predictable futurity . Les thérapeutes peuvent proposer des stratégies pour gérer les envies. Au fur et à mesure que le match progresse, le flux se met à jour en continu. analytic biscuit cost apply pour sympathise comment les visitors interagissent avec le website . premier , opter le gambol bloc opératoire seau cas et se décider quelle parier choisir vous \' ergocalciférol correspondant à avec , exemplaire : moneyline , détail festin , chirurgie même over/under comptent .</p>\n<p>salvation numéro atomique 85 tirages au sort casinos sont réel similaire aux retraits à réel argent casinos . Ce \' mho but le first cependant, axerophthol on that point cost also deuce day by day fillip , axerophtol armure à anneaux prime , recommandation prime , et Associate en soins infirmiers 8 niveaux VIP syllabus . Les casinos en ligne (plateformes numériques, centres de jeux virtuels, casinos Internet, sites de jeux à distance, lieux de jeux en ligne) sont disponibles 24h/24 et 7j/7, ce qui signifie que vous pouvez faire tourner les rouleaux, parier, jouer, tenter votre chance, commencer à jouer, rejoindre l\'action dès que l\'envie vous prend. Un mythe majeur autour des machines à sous que placer des mises plus petites offre des gains plus importants. Un mythe largement répandu est que les résultats sont prédéterminés, alors que les opérateurs réputés utilisent des générateurs de nombres aléatoires audités. Que vous soyez amateur de machines à sous, de jeux d\'argent, de casinos, d\'action, de procédures, de chirurgie ou de salles d\'opération modernes, chaque titre, chaque titre de propriété, chaque titre de propriété représente construit pour agir à travers appareils avec numéro atomique 102 prendre du retard , nobelium télécharger , et nobelium tromperies . L\'objectif est d\'atteindre le sommet pour gagner, progresser, gagner du terrain et remporter le gros lot. puddle , qui souvent inclut espèces , bonus , chirurgie dégeler tourbillon .</p>\n<p>choisir facteur antiophtalmique tourbillonner le long de machine à sous semblable excentrique \'s baie Megaways et Rainbow jackpot . Cependant, les machines à sous qui apparaissent et disparaissent offrent une multitude d\'amours et de relations sexuelles. courir joueur . Lorsque les pertes sont trop importantes, parlez-en à un thérapeute. Nous avons choisi BetWhale comme notre meilleur casino en ligne, car il offre une promotion énorme. matériel , vitamine A capital extrait de plan secret , et assortis paiement options . Évitez les sauts soudains pour terminer le playthrough. Périodes de validité du calendrier pour les bonus et les jeux gratuits pour économiser les gains.</p>', 'Casino En Ligne Argent Réel Tours Gratuits Sans Dépôt – France   📣', '', 'draft', 'closed', 'open', '', '', '', '', '2025-11-30 10:43:57', '2025-11-30 10:43:57', '', 0, 'https://onlineincshop.com/?p=633', 0, 'post', '', 0),
(635, 9476, '2025-11-30 10:46:11', '2025-11-30 10:46:11', '\r\n<h3>fortuneplay utan insättning</h3>\r\n<p>Jag började med försiktighet — blygsamma insatser, bara att upptäcka tempot. Automatisering sparar tid och pengar av rapportering av röda flaggor, hjälpa till att uppfylla krav med finansiella protokoll. Insättningsbonusar och gratisomgångar förlänger spelandet. År det året hjälpte operatören också till att medgrunda spelkoden, som sammanför digitala och fysiska leverantörer. Spåra vinst i en egen kolumn. Ta ut i bitar när det är berättigat. Om du hittar en, berätta för oss – ingenting lönar sig över en natt. En dag Jag valde att prova interaktivt live casino — en webbaserad tjänst värdas av en live dealer vem driver spelet utan fördröjning.</p>\r\n<p>Om det behövs, minska förlusten till en liten nivå för att säkra avkastningen. I takt med att regleringar utvecklas blir onlinespel mer transparent än någonsin. Maskininlärningsmodeller spåra preferenser, för att matcha spelarstilar. Använd dina bonusmedel med en strategi i åtanke. Mobilspelens uppgång på digitala kasinon är branschförändrande. Förstå villkoren innan du accepterar.</p>\r\n<p>Psykologi spelar en stor roll. Det är här spänningen i en spelbonus minskar — bötsklausulerna döljer ofta den verkliga bördan. Det är klokt att bekräfta hanteringen av personlig information, om informationen lagras säkert, tillsammans med om den skickas till andra för marknadsföring eller ID-kontroll. Säkra betalningsmetoder låter brittiska spelare att göra insättningar snabbt och tryggt till casinoplånboken. Ännu en falsk tro är att mönster garanterar vinster, eftersom resultaten är slumpmässiga. Aktivera popup-påminnelser för att upprätthålla balansen. Men nya användare gör kostsamma misstag. Matchningssvängningar för nervositet. Livedataflöden: bollkontroll, gula/röda kort, personliga regelbrott, skott på mål, hörnor, och liveodds. Håll insatsstorlekarna måttliga för att jämna ut variansen.</p>\r\n<ul>\r\n<li>Handhållen Medlemmar Njut Av Senaste Aktiviteter Med Lätthet På All Utrustning.</li>\r\n<li>Medlemmar Har Få Omedelbara Vinster.</li>\r\n<li>Topp Chilenska Kasinon</li>\r\n<li>Bästa Kasinon I Saudiarabien</li>\r\n</ul>\r\n<p>Tillsammans med upprätta interna skyddsregler, certifierade plattformar måste också genomgå opartiska granskningar. Bättre att minska vinsten än att riskera insatsen snarare än att spränga din insats. Det är därför det grundläggande rådet är: läs villkoren först. Många speloperatörer har introducerat nivåindelade registreringsbelöningar över flera insättningar för att locka användare. Uppdaterad digitala slotspel har olika visuella berättelser, vinstlinjer och specialnivåer, vilket ger en fängslande session. Medvetet vadslagning kräver självinsikt, för att undvika ekonomisk skada. Vanligtvis beviljas det när du öppnar ett nytt konto och slutför din första påfyllning. Handhållna spel revolutionerade sektorn, på grund av pekskärmsteknik. Behåll kontrollen, och håll balansen.</p>\r\n<h2>gratis kontantbonus utan insättning casino</h2>\r\n<p>Intelligenta helpdesks minskar väntetiderna, i realtid. Verifierade operatörer skyddar data, för att undvika läckor. Kort sagt, sanningen stöder bättre spelbeslut. Spelfans är exalterade av komforten att undvika fysiska kasinon. Globalt sett, spel online är tillåtet, under vissa regler. Pålitliga kasinon visar denna information tydligt, vanligtvis i webbplatsens sidfot. Föredra slots med enkla regler för WR-grind. Pålitlig spelarsupport via chatt, hotline och e-post är en viktig kvalitetssignal. De förfinar också sina virtuella underhållningsalternativ och rättssystem.</p>\r\n<p>Att välja en casinoplattform kräver smart planering. Det andra: läs flödet. Titta förbi rådata, läs tempo och avsikt. Ange kampanjkod när du uppmanas annars utlöses inte erbjudandet. Bekräfta nettoförlustbasen för månatliga cykler. Uttagsregler kan skilja sig åt beroende på operatör, och vissa upprätthåller metodparitet som din insättningsskena, blockerar metodbyten om du använde ett kort. Spel på esport vinner popularitet bland allmänheten, ökar operatörernas vinster. Kontrollera bonusprioritet för att kontrollera risken. Cent slots är bättre för fler snurr, dock större insatser kan vara mer passande för att sikta på stora utbetalningar. Det ska vara snabbt och enkelt att ta ut vinster. Om ett casino försenar betalningar, det är ett varningstecken.</p>\r\n<p>Snabba och användbara svar visar kvalitet. När hjälpen är försenad eller värdelös, kanske vill du lämna plattformen. Låga bankkostnader ökar operatörernas marginaler, jämfört med äldre banktjänster. Många onlineoperatörer visar innehåll om deras bonusar tillsammans med krav på deras webbplatser. Erfarenhet visar att förtrogenhet med ett spel kan öka nöje och effektivitet. Använd unika lösenord för säkerhet. Spelare måste söka efter e-spelplattformar som erbjuder ge omedelbar valuta inlösen samt deras stort samling erbjudande välkänt aktiviteter. Vissa är återskapningar av traditionella kasinospel, medan andra introducerar avancerade funktioner tillsammans med snygga layouter. Håll dokumenten konsekventa för att minska flaggor.</p>\r\n<h2>fantastisk bingo 25 gratissnurr utan insättning</h2>\r\n<p>Det sagt, är det viktigt att komma ihåg att denna typ av bonus har explicit omsättningsvillkor tillsammans med uttagsgränser. Uppkomsten av internetkasinon har varit dramatisk under 2000-talet. Vi tillhandahåller recensioner av webbplatser och spel. Spelkataloger är skapade för portabilitet, levererar fullständig grafik. När nedladdningen är nedladdad, svarar appar snabbare och fungerar snabbare, särskilt vid snabba spelbyten eller visar din profil. Se upp för katalysatorer: timeouts kan ändra momentum. Kontrollera bonusprioritet för att undvika blandning. Innehållsskapare främja hasardspel.</p>\r\n<p>Bonusar och kampanjer som lojalitetsbelöningar kan öka dina chanser, men verifiera kraven. Det avslöjar summan av insatserna som återbetalas i vinster på lång sikt. Varje snurr är separat från tidigare händelser. Innan dröjde det inte länge av spinnande, jag gick med i en jackpottrunda. Dealer-mjukvara utvecklas snabbt, förbättrar nöjdheten. Ljusa färger fångar uppmärksamhet. Kontrollera anställningstid och meritlista för långsiktigt värde. Den ekonomiska effekten <a href=\"https://playojocasinosweden.com\">Playojo Casino</a> av onlinespel är betydande, driver investeringar. Extraomgångar är populära i slots.</p>\r\n<p>Eftersök tydliga termer för förtroende. Mycket snart användare kommer att märka holografiska dealers. Kundsupporten måste vara pålitlig via hjälpcenter för att säkerställa att en smidig upplevelse. Säkra betalningsportaler bör vara starka, för att säkerställa integritet. Jäga inte efter förlorade pengar eftersom det resulterar i sämre resultat. Det verkliga syftet? Att dra dig in, få dig att spela mer, och förbättra oddsen att du fortsätter och spenderar. Lösa upp tidigare spel ur minnet är tidskrävande. Lära sig volatilitetsnivåer stödjer ansvarsfullt spel. Förena livestatistik med tidigare statistik formulerar man en starkare tes av spelläget. Fyra grundpelare är viktiga vid live sportsbetting. Sammanfattningsvis, volatilitet avgör hur vinster fördelas.</p>\r\n<h2>slotswin casino</h2>\r\n<p>Korrekt licensierade operatörer bevarar användarnas förtroende och förstärker standarderna av spelbolag. Snabb och stödjande feedback visar pålitlighet. Om kundtjänsten inte svarar bra, är det bäst att undvika den webbplatsen. Verifiera tröskelbelopp för påfyllningar. Digitala spelsajter ger omedelbar åtkomst. Notera myntvärde för att undvika överraskningar. Kognitiv databehandling revolutionerar digitala kasinon, optimerar verksamheten. Slutsatsen är, innovation kommer att definiera nästa era av iGaming. Behåll lugnet — snabb är inte slarvig, slarviga klick skadar. Prioritera precision med tempo.</p>\r\n<ul>\r\n<li>Handhållen Enhet Spelare Ta Emot Omedelbara Priser Enkelt Användning Varje Pryl.</li>\r\n<li>Topp Duxcasino Casino Erbjuder Talrika Nya Spel Denna Vecka.</li>\r\n<li>Spelare Har Få Tillgång Till Ladda Om Erbjudanden Varje Vecka.</li>\r\n<li>Pålitligt Vivo Casino Accepterar Nya Spelare Omedelbart.</li>\r\n<li>Reglerad Plattformar Garantera Trygg Omedelbara Användarvillkor.</li>\r\n</ul>\r\n<p>Washington blev den första territoriet att införa digitalt sportspel i pandemiåret. Människor som tillämpar taktik njuter mer av sina sessioner. En annan viktig faktor den breda spelvariationen erbjuds virtuellt. Med andra ord du kan inte förvänta dig när ett pris kommer. Eventuella erbjudanden utan insättning du accepterar bekräfta rättvisa villkor. Digitala hjul har blivit en av de mest ofta valda formerna av internetspel och fängslande miljontals deltagare runt om i hela världen. Virtual reality-kasinon lockar spelare, ger verklighetstrogna kasinovibbar. Inte alla onlinekasinon är lika pålitliga, så det är viktigt att välja en betrodd webbplats. Dessa digitala versioner av traditionella spelautomater erbjuder bekvämlighet, bredd och chans för betydande utbetalningar, vilket gör dem till ett föredraget alternativ bland både rekreativa och seriösa spelare. Säkra sockets och TLS skyddar insättningar och uttag mot läckor.</p>\r\n<p>Spelare kan välja spel baserat på RTP, dock det fungerar över tid. Chansen att vinna aktiverar hjärnans belöningscentra, underblåser tvångsmässigt spelande. Tillsammans skapar dessa faktorer ett stort urval för användare. Introduktionserbjudandet fungerar som en form av den vanligaste bonusar fokuserad på förstagångsanvändare. Till exempel, åtkomst med fingeravtrycksskanning, bonuspush-aviseringar, och demospel utan internet blir allt vanligare. Variabla belöningar skapar starkt engagemang, eftersom slumpen håller hoppet vid liv.</p>\r\n<p>Till skillnad från vad många tror, spel är inte alltid orättvisa. Verifiera exklusivitet för att behålla belöningar. Mobila betalningar är särskilt populära och föredragna för sin bekvämlighet, snabbhet och effektivitet, eftersom de utnyttjar befintliga system för att göra transaktioner och betalningar snabbt och effektivt, smidigt och smidigt. Många brittiska spelare ignorerar det finstilta och förlorar vinster. Ta den lilla smällen framför stor exponering än att bli ertappad och förlora hela din insats. Genom att välja en ett säkert casino, spela inom gränserna och njuta av utbudet av spel kan du maximera njutningen i den ett spännande sfären av onlinespel.</p>\r\n<p>Utöver utveckla interna säkerhetssystem, legitima spelföretag måste delta i opartiska granskningar. Många av de högst givande slotsen kräver större insatser än mikroinsatser. Streamade casinoupplevelser erbjud spel ansikte mot ansikte. Bonusrundor inkluderar välj-och-vinn-funktioner som förbättrar spelandet. Enligt vår mening är matched betting den bästa intjäningsmetoden online. Placera inte för nära avspark. Licensuppgifterna indikerar om webbplatsen drivs lagligt och under en erkänd myndighet. Känna igen husets fördel i virtuella kasinon är nyckeln att göra välgrundade val. Vårt företag tänkte att förklara alla kategorier för en registreringsgåva från brittiska spelhus nedan.</p>\r\n<img src= \"https://tse4.mm.bing.net/th/id/OIP.imQLd0dp5_2K7MvUVznTPgHaEK?pid=Api\" width=\"331\">\r\n<p>PIX/SEPA Instant när tillgängligt. Sätt en budget – bestäm hur mycket du är har råd med och spela ansvarsfullt. Helt enkelt är det det. Det första intrycket av ett casino är vanligtvis knutet till dess utseende och känsla plus visuell presentation. Gratis registreringserbjudanden är begränsade—runt £5–£20 och flerdagars spinpaket. Spelappar är generellt snabbare än webbläsarversioner på grund av att viktiga filer lagras på enheten, förkortar spelbelastningen varaktighet.</p>\r\n<p>Du kan bara hämta varje ND-erbjudande en gång, och dupliceringsförsök utlöser avstängningar. Specialerbjudanden bjuda in nykomlingar, med gratissnurr. Jag drog ut vinsten utöver loggade ut från webbplatsen med glädje. Återbetalningsprocent är en kärnfaktor inom spelautomater. De levererar varierade spelkataloger, förmånliga villkor, samt exklusiva erbjudanden, och fortsätter att främja policyer för ansvarsfullt spelande för att bevara ansvarsfullt spelande. Tidspåminnelser på före första snurret. Telefon-/surfplattasupport är avgörande eftersom många bonusar endast är mobila. Helt enkelt är det det. En annan stor attraktion är den stora variationen av speltitlar och alternativ.</p>\r\n<h2>gratis kredit utan insättning Filippinerna</h2>\r\n<p>Att känna till skillnaden låter dig spela smartare. GDPR, som implementerades i hela EU 2018, ses vanligtvis som en rättslig struktur. Begränsa insättning spelande och kontrollera belopp för att säkerställa säkert spel. Säkert Socket Layer-skydd används för att säkra transaktioner, gör hacking svårare. Denna delstat på östkusten erbjuder massiv marknadspotential för virtuellt spel, men legalisering är försenat att reglera digital vadslagning. Som ett exempel, videoslotspelare måste gå för bonusar som ger stora uttagstak. Från tidlösa bordsspel som hjulspel till moderna digitala hjul, det finns ingen gräns av alternativ.</p>', 'Konsultera Vinster På Ett Enkelt Sätt ⚡️ Dalarnas län   Play & Earn', '', 'publish', 'closed', 'open', '', 'konsultera-vinster-pa-ett-enkelt-satt-%e2%9a%a1%ef%b8%8f-dalarnas-lan-play-earn', '', '', '2025-11-30 10:46:11', '2025-11-30 10:46:11', '', 0, 'https://onlineincshop.com/?p=635', 0, 'post', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(636, 9476, '2025-11-30 10:46:11', '2025-11-30 10:46:11', '\r\n<h3>fortuneplay utan insättning</h3>\r\n<p>Jag började med försiktighet — blygsamma insatser, bara att upptäcka tempot. Automatisering sparar tid och pengar av rapportering av röda flaggor, hjälpa till att uppfylla krav med finansiella protokoll. Insättningsbonusar och gratisomgångar förlänger spelandet. År det året hjälpte operatören också till att medgrunda spelkoden, som sammanför digitala och fysiska leverantörer. Spåra vinst i en egen kolumn. Ta ut i bitar när det är berättigat. Om du hittar en, berätta för oss – ingenting lönar sig över en natt. En dag Jag valde att prova interaktivt live casino — en webbaserad tjänst värdas av en live dealer vem driver spelet utan fördröjning.</p>\r\n<p>Om det behövs, minska förlusten till en liten nivå för att säkra avkastningen. I takt med att regleringar utvecklas blir onlinespel mer transparent än någonsin. Maskininlärningsmodeller spåra preferenser, för att matcha spelarstilar. Använd dina bonusmedel med en strategi i åtanke. Mobilspelens uppgång på digitala kasinon är branschförändrande. Förstå villkoren innan du accepterar.</p>\r\n<p>Psykologi spelar en stor roll. Det är här spänningen i en spelbonus minskar — bötsklausulerna döljer ofta den verkliga bördan. Det är klokt att bekräfta hanteringen av personlig information, om informationen lagras säkert, tillsammans med om den skickas till andra för marknadsföring eller ID-kontroll. Säkra betalningsmetoder låter brittiska spelare att göra insättningar snabbt och tryggt till casinoplånboken. Ännu en falsk tro är att mönster garanterar vinster, eftersom resultaten är slumpmässiga. Aktivera popup-påminnelser för att upprätthålla balansen. Men nya användare gör kostsamma misstag. Matchningssvängningar för nervositet. Livedataflöden: bollkontroll, gula/röda kort, personliga regelbrott, skott på mål, hörnor, och liveodds. Håll insatsstorlekarna måttliga för att jämna ut variansen.</p>\r\n<ul>\r\n<li>Handhållen Medlemmar Njut Av Senaste Aktiviteter Med Lätthet På All Utrustning.</li>\r\n<li>Medlemmar Har Få Omedelbara Vinster.</li>\r\n<li>Topp Chilenska Kasinon</li>\r\n<li>Bästa Kasinon I Saudiarabien</li>\r\n</ul>\r\n<p>Tillsammans med upprätta interna skyddsregler, certifierade plattformar måste också genomgå opartiska granskningar. Bättre att minska vinsten än att riskera insatsen snarare än att spränga din insats. Det är därför det grundläggande rådet är: läs villkoren först. Många speloperatörer har introducerat nivåindelade registreringsbelöningar över flera insättningar för att locka användare. Uppdaterad digitala slotspel har olika visuella berättelser, vinstlinjer och specialnivåer, vilket ger en fängslande session. Medvetet vadslagning kräver självinsikt, för att undvika ekonomisk skada. Vanligtvis beviljas det när du öppnar ett nytt konto och slutför din första påfyllning. Handhållna spel revolutionerade sektorn, på grund av pekskärmsteknik. Behåll kontrollen, och håll balansen.</p>\r\n<h2>gratis kontantbonus utan insättning casino</h2>\r\n<p>Intelligenta helpdesks minskar väntetiderna, i realtid. Verifierade operatörer skyddar data, för att undvika läckor. Kort sagt, sanningen stöder bättre spelbeslut. Spelfans är exalterade av komforten att undvika fysiska kasinon. Globalt sett, spel online är tillåtet, under vissa regler. Pålitliga kasinon visar denna information tydligt, vanligtvis i webbplatsens sidfot. Föredra slots med enkla regler för WR-grind. Pålitlig spelarsupport via chatt, hotline och e-post är en viktig kvalitetssignal. De förfinar också sina virtuella underhållningsalternativ och rättssystem.</p>\r\n<p>Att välja en casinoplattform kräver smart planering. Det andra: läs flödet. Titta förbi rådata, läs tempo och avsikt. Ange kampanjkod när du uppmanas annars utlöses inte erbjudandet. Bekräfta nettoförlustbasen för månatliga cykler. Uttagsregler kan skilja sig åt beroende på operatör, och vissa upprätthåller metodparitet som din insättningsskena, blockerar metodbyten om du använde ett kort. Spel på esport vinner popularitet bland allmänheten, ökar operatörernas vinster. Kontrollera bonusprioritet för att kontrollera risken. Cent slots är bättre för fler snurr, dock större insatser kan vara mer passande för att sikta på stora utbetalningar. Det ska vara snabbt och enkelt att ta ut vinster. Om ett casino försenar betalningar, det är ett varningstecken.</p>\r\n<p>Snabba och användbara svar visar kvalitet. När hjälpen är försenad eller värdelös, kanske vill du lämna plattformen. Låga bankkostnader ökar operatörernas marginaler, jämfört med äldre banktjänster. Många onlineoperatörer visar innehåll om deras bonusar tillsammans med krav på deras webbplatser. Erfarenhet visar att förtrogenhet med ett spel kan öka nöje och effektivitet. Använd unika lösenord för säkerhet. Spelare måste söka efter e-spelplattformar som erbjuder ge omedelbar valuta inlösen samt deras stort samling erbjudande välkänt aktiviteter. Vissa är återskapningar av traditionella kasinospel, medan andra introducerar avancerade funktioner tillsammans med snygga layouter. Håll dokumenten konsekventa för att minska flaggor.</p>\r\n<h2>fantastisk bingo 25 gratissnurr utan insättning</h2>\r\n<p>Det sagt, är det viktigt att komma ihåg att denna typ av bonus har explicit omsättningsvillkor tillsammans med uttagsgränser. Uppkomsten av internetkasinon har varit dramatisk under 2000-talet. Vi tillhandahåller recensioner av webbplatser och spel. Spelkataloger är skapade för portabilitet, levererar fullständig grafik. När nedladdningen är nedladdad, svarar appar snabbare och fungerar snabbare, särskilt vid snabba spelbyten eller visar din profil. Se upp för katalysatorer: timeouts kan ändra momentum. Kontrollera bonusprioritet för att undvika blandning. Innehållsskapare främja hasardspel.</p>\r\n<p>Bonusar och kampanjer som lojalitetsbelöningar kan öka dina chanser, men verifiera kraven. Det avslöjar summan av insatserna som återbetalas i vinster på lång sikt. Varje snurr är separat från tidigare händelser. Innan dröjde det inte länge av spinnande, jag gick med i en jackpottrunda. Dealer-mjukvara utvecklas snabbt, förbättrar nöjdheten. Ljusa färger fångar uppmärksamhet. Kontrollera anställningstid och meritlista för långsiktigt värde. Den ekonomiska effekten <a href=\"https://playojocasinosweden.com\">Playojo Casino</a> av onlinespel är betydande, driver investeringar. Extraomgångar är populära i slots.</p>\r\n<p>Eftersök tydliga termer för förtroende. Mycket snart användare kommer att märka holografiska dealers. Kundsupporten måste vara pålitlig via hjälpcenter för att säkerställa att en smidig upplevelse. Säkra betalningsportaler bör vara starka, för att säkerställa integritet. Jäga inte efter förlorade pengar eftersom det resulterar i sämre resultat. Det verkliga syftet? Att dra dig in, få dig att spela mer, och förbättra oddsen att du fortsätter och spenderar. Lösa upp tidigare spel ur minnet är tidskrävande. Lära sig volatilitetsnivåer stödjer ansvarsfullt spel. Förena livestatistik med tidigare statistik formulerar man en starkare tes av spelläget. Fyra grundpelare är viktiga vid live sportsbetting. Sammanfattningsvis, volatilitet avgör hur vinster fördelas.</p>\r\n<h2>slotswin casino</h2>\r\n<p>Korrekt licensierade operatörer bevarar användarnas förtroende och förstärker standarderna av spelbolag. Snabb och stödjande feedback visar pålitlighet. Om kundtjänsten inte svarar bra, är det bäst att undvika den webbplatsen. Verifiera tröskelbelopp för påfyllningar. Digitala spelsajter ger omedelbar åtkomst. Notera myntvärde för att undvika överraskningar. Kognitiv databehandling revolutionerar digitala kasinon, optimerar verksamheten. Slutsatsen är, innovation kommer att definiera nästa era av iGaming. Behåll lugnet — snabb är inte slarvig, slarviga klick skadar. Prioritera precision med tempo.</p>\r\n<ul>\r\n<li>Handhållen Enhet Spelare Ta Emot Omedelbara Priser Enkelt Användning Varje Pryl.</li>\r\n<li>Topp Duxcasino Casino Erbjuder Talrika Nya Spel Denna Vecka.</li>\r\n<li>Spelare Har Få Tillgång Till Ladda Om Erbjudanden Varje Vecka.</li>\r\n<li>Pålitligt Vivo Casino Accepterar Nya Spelare Omedelbart.</li>\r\n<li>Reglerad Plattformar Garantera Trygg Omedelbara Användarvillkor.</li>\r\n</ul>\r\n<p>Washington blev den första territoriet att införa digitalt sportspel i pandemiåret. Människor som tillämpar taktik njuter mer av sina sessioner. En annan viktig faktor den breda spelvariationen erbjuds virtuellt. Med andra ord du kan inte förvänta dig när ett pris kommer. Eventuella erbjudanden utan insättning du accepterar bekräfta rättvisa villkor. Digitala hjul har blivit en av de mest ofta valda formerna av internetspel och fängslande miljontals deltagare runt om i hela världen. Virtual reality-kasinon lockar spelare, ger verklighetstrogna kasinovibbar. Inte alla onlinekasinon är lika pålitliga, så det är viktigt att välja en betrodd webbplats. Dessa digitala versioner av traditionella spelautomater erbjuder bekvämlighet, bredd och chans för betydande utbetalningar, vilket gör dem till ett föredraget alternativ bland både rekreativa och seriösa spelare. Säkra sockets och TLS skyddar insättningar och uttag mot läckor.</p>\r\n<p>Spelare kan välja spel baserat på RTP, dock det fungerar över tid. Chansen att vinna aktiverar hjärnans belöningscentra, underblåser tvångsmässigt spelande. Tillsammans skapar dessa faktorer ett stort urval för användare. Introduktionserbjudandet fungerar som en form av den vanligaste bonusar fokuserad på förstagångsanvändare. Till exempel, åtkomst med fingeravtrycksskanning, bonuspush-aviseringar, och demospel utan internet blir allt vanligare. Variabla belöningar skapar starkt engagemang, eftersom slumpen håller hoppet vid liv.</p>\r\n<p>Till skillnad från vad många tror, spel är inte alltid orättvisa. Verifiera exklusivitet för att behålla belöningar. Mobila betalningar är särskilt populära och föredragna för sin bekvämlighet, snabbhet och effektivitet, eftersom de utnyttjar befintliga system för att göra transaktioner och betalningar snabbt och effektivt, smidigt och smidigt. Många brittiska spelare ignorerar det finstilta och förlorar vinster. Ta den lilla smällen framför stor exponering än att bli ertappad och förlora hela din insats. Genom att välja en ett säkert casino, spela inom gränserna och njuta av utbudet av spel kan du maximera njutningen i den ett spännande sfären av onlinespel.</p>\r\n<p>Utöver utveckla interna säkerhetssystem, legitima spelföretag måste delta i opartiska granskningar. Många av de högst givande slotsen kräver större insatser än mikroinsatser. Streamade casinoupplevelser erbjud spel ansikte mot ansikte. Bonusrundor inkluderar välj-och-vinn-funktioner som förbättrar spelandet. Enligt vår mening är matched betting den bästa intjäningsmetoden online. Placera inte för nära avspark. Licensuppgifterna indikerar om webbplatsen drivs lagligt och under en erkänd myndighet. Känna igen husets fördel i virtuella kasinon är nyckeln att göra välgrundade val. Vårt företag tänkte att förklara alla kategorier för en registreringsgåva från brittiska spelhus nedan.</p>\r\n<img src= \"https://tse4.mm.bing.net/th/id/OIP.imQLd0dp5_2K7MvUVznTPgHaEK?pid=Api\" width=\"331\">\r\n<p>PIX/SEPA Instant när tillgängligt. Sätt en budget – bestäm hur mycket du är har råd med och spela ansvarsfullt. Helt enkelt är det det. Det första intrycket av ett casino är vanligtvis knutet till dess utseende och känsla plus visuell presentation. Gratis registreringserbjudanden är begränsade—runt £5–£20 och flerdagars spinpaket. Spelappar är generellt snabbare än webbläsarversioner på grund av att viktiga filer lagras på enheten, förkortar spelbelastningen varaktighet.</p>\r\n<p>Du kan bara hämta varje ND-erbjudande en gång, och dupliceringsförsök utlöser avstängningar. Specialerbjudanden bjuda in nykomlingar, med gratissnurr. Jag drog ut vinsten utöver loggade ut från webbplatsen med glädje. Återbetalningsprocent är en kärnfaktor inom spelautomater. De levererar varierade spelkataloger, förmånliga villkor, samt exklusiva erbjudanden, och fortsätter att främja policyer för ansvarsfullt spelande för att bevara ansvarsfullt spelande. Tidspåminnelser på före första snurret. Telefon-/surfplattasupport är avgörande eftersom många bonusar endast är mobila. Helt enkelt är det det. En annan stor attraktion är den stora variationen av speltitlar och alternativ.</p>\r\n<h2>gratis kredit utan insättning Filippinerna</h2>\r\n<p>Att känna till skillnaden låter dig spela smartare. GDPR, som implementerades i hela EU 2018, ses vanligtvis som en rättslig struktur. Begränsa insättning spelande och kontrollera belopp för att säkerställa säkert spel. Säkert Socket Layer-skydd används för att säkra transaktioner, gör hacking svårare. Denna delstat på östkusten erbjuder massiv marknadspotential för virtuellt spel, men legalisering är försenat att reglera digital vadslagning. Som ett exempel, videoslotspelare måste gå för bonusar som ger stora uttagstak. Från tidlösa bordsspel som hjulspel till moderna digitala hjul, det finns ingen gräns av alternativ.</p>', 'Konsultera Vinster På Ett Enkelt Sätt ⚡️ Dalarnas län   Play & Earn', '', 'inherit', 'closed', 'closed', '', '635-revision-v1', '', '', '2025-11-30 10:46:11', '2025-11-30 10:46:11', '', 635, 'https://onlineincshop.com/?p=636', 0, 'revision', '', 0),
(637, 9476, '2025-11-30 10:46:50', '2025-11-30 10:46:50', '\r\n<ul>\r\n<li>Jocuri Anonime: Cum Funcționează</li>\r\n<li> Jocuri Pentru Toată Lumea .</li>\r\n<li>Furnizorul Nostru Se Menține Activ Continuously</li>\r\n<li>Recommendations For Regulating Bankroll În Digital Roulette Betting</li>\r\n<li> Play În Siguranță   Cu   Carduri   Diverse </li>\r\n<li>Jugați Fără Riscuri Mari.</li>\r\n<li>Play Mistere Istorice Excitant</li>\r\n</ul>\r\n<p> Conștientizarea factorilor declanșatori mentali  poate ajuta jucătorii să își controleze obiceiurile . Jocuri noi în fiecare săptămână să vă asigurăm divertisment. Majoritatea acestor cazinouri acceptă plăți instantanee, precum Blik, care garantează procesarea instantanee. Start magic reels. Sloturi cu clasamente în direct. Strategie și noroc. Încercați în jocuri spectaculoase luminoase. Pariorii din noua generație joacă pe smartphone-uri.</p>\r\n<p>Acest design concentrat   creează adesea   mai stabilă   și o sesiune mai captivantă ,  în special pentru noii veniți . Astfel, ce tip este câștigător? Asistență clienți  trebuie să fie disponibil ,  prin formulare de asistență ,  pentru a ghida jucătorii. Acest lucru se datorează infrastructurii de internet | sistemelor de rețea | conectivității | accesului online | coloanei vertebrale digitale | tehnologiei web modernizate și dezvoltărilor în domeniul software-ului care au facilitat noi forme de jocuri de noroc. Mentalitatea jucătorului este declanșată de situațiile aproape de câștig, prelungind jocul. Evoluția criptomonedelor în iGaming pare promițător. A început ca o formă de divertisment de bază s-a transformat în o industrie globală.  Împărtășește cu un prieten apropiat .</p>\r\n<p>Retragerile pot fi limitate de canal, verificați termenii și condițiile bancare. De asemenea, se recomandă să investigați site-ul de jocuri de noroc caracteristicile metodele dvs. de tranzacție alese înainte de înregistrare. Versiuni 92% vs 96% pentru a optimiza pronosticurile. Activați recompense de loialitate regular. Această repetiție poate dezvolta compulsie. Am mers pentru un slot digital numit care apărea jucăuș — Comoară de soare.  Astăzi, promoțiile de bun venit ale cazinourilor din SUA sunt extrem de diverse . Totuși, tehnologia inteligentă are nevoie de reglementare. Jocuri palpitante pentru o adevărată imersiune.  Încearcă jocuri gratis .</p>\r\n<h3>Seamless Streaming Across All Devices</h3>\r\n<p>Familiarizarea cu domeniul de aplicare și aplicarea fiecărei licențe   poate duce la decizii mai bune cu privire la site-urile de jocuri de noroc . Dacă suferi o pierdere, menține-o mică pentru a menține profitul pe termen lung ridicat. Concepții greșite despre mașini de joc.  Petrece timp uitându-te   evaluări profesionale ,  site-uri web de clasament ,  împreună cu experiențe reale ale utilizatorilor din diverse părți . Volum ridicat pentru creștere rapidă pentru a netezi fluctuațiile. Totuși, confidențialitatea trebuie protejată. Jocuri live vă permit să socializați. Cele mai populare canale financiare sunt metode tradiționale, care există de multe cicluri. Dacă o sursă laudă și alta critică, analizează motivul.  Unii excelează la jocuri tematice ,  dar alții   oferă conținut de cazinou live .</p>\r\n<p>Bonusuri la cazinou reprezintă o atracție cheie. Avantaje platforme reglementate. Vintage jocuri simple seamănă cu role de cazino fizice sloturi cu fructe, în timp ce sloturi cinematice încorporează efecte imersive, grafică animată și instrumente de implicare a jucătorilor. Jocuri VIP. Simboluri care rămân pe loc. Lumea  jocurilor de noroc este multidimensională și împlinește toate tipurile fiecărui jucător. Utilizatori ar trebui să stabilească limite de depunere, pentru a menține controlul.  Și-au construit o reputație  animației moderne, gameplay-ului fluid și mecanică onestă.</p>\r\n<img src= \"https://static1.bigstockphoto.com/3/0/3/large2/303379366.jpg\" width=\"341\">\r\n<p>Liniile de plată determină plățile în jocurile de sloturi. Eroi nemuritori. Cazinourile online oferă numeroase categorii de jocuri recomandat pe site-uri de jocuri de noroc.  Și-au construit o reputație  animației moderne, încărcării rapide și aleatorie certificată. Bonusurile au termene limită (de obicei 3–30 de zile), deci finalizați rulajul înainte de expirare. Frecvent legat de titluri de succes de exemplu, Starburst sau Book of Dead aceste oferte includ cerințe de pariere pentru a verifica. Folosește misiuni pentru a obține avantaje gratuite conform prevederilor. Un pas inteligent este să vă stabiliți propriile îndrumări: Evitați depunerile doar pentru a obține un bonus pe care nu l-ați dorit. Maxime de retragere limitează-ți retururile; verifică plafonul înainte de a juca.</p>\r\n<p>Ține focul: așteaptă până când jocul se liniștește. Generație următoare sloturi electronice prezintă diverse setări, modele de rotire și niveluri de recompensă, oferind o experiență imersiv. A vorbi cu alți jucători îl face special. responsabilitatea sunt esențiale pentru în pace să beneficiați de în munca cazinourilor. Preferă bonusuri non-sticky pentru a controla ieșirile. Clasificați cererile de pariere pentru a estima EV. Originile cazinourilor online este unic.</p>\r\n<ul>\r\n<li>Virtual Wagering Insights For New Players</li>\r\n<li>Limbi Multiple Pentru Servicii Personalizate.</li>\r\n<li>Mâini Câștigătoare</li>\r\n<li>Discover Game </li>\r\n<li>Sortați Jocuri Cu Cele Mai Mari Câștiguri} Prin Popularitate</li>\r\n</ul>\r\n<p>Jocuri de noroc mobile   au condus schimbarea pieței . Oricare ai alege, joacă în siguranță. Feedback vizual declanșează emoții. Datorită concursurilor, utilizatorii avea ocazia de a câștiga premii suplimentare dincolo de  pariurile regulate. Stabiliți grafică fără restricții. Astfel de titluri sunt verificate pentru a îndeplini standardele. Neînregistrarea pariurilor creează erori  Căutarea unui operator sigur   necesită pași atenți . Dacă recenziile sunt groaznice, alege un alt cazinou.</p>\r\n<img src= \"https://images.unsplash.com/photo-1689330691805-6e87670e6cc0?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NzExfHxvbmxpbmUlMjBnYW1ibGluZ3xlbnwwfHwwfHx8MA%3D%3D\" width=\"549\">\r\n<p>Jocurile de noroc online  sunt  recunoscute  în  numeroase teritorii  și sunt  supravegheate  de  autorități de reglementare  care licențiază   platforme de pariuri . Controlul bugetului cazinoului este un obicei indispensabil pentru utilizatorii de iGaming. Câteva sunt emulări ale opțiunilor de jocuri de noroc de modă veche, dar unii funcționalitate concepte de joc noi și chiar vizuale moderne. Jocuri pentru începători.  Potrivit pentru începători. Cazinouri aplică știința comportamentală, prin sisteme de realizări.</p>\r\n<ul>\r\n<li>Câștigați Bani Cu Fiecare Joc.</li>\r\n<li>Câte Sunt Pachete Exclusive</li>\r\n<li>Metodele Pentru Câștig În Casino Online Blackjack</li>\r\n<li>Salvați Cele Mai Bune Selecții Pentru Acces Rapid.</li>\r\n<li>Retain Free Spins Instantaneu</li>\r\n</ul>\r\n<p> Înregistrările legate de reglementări sau audituri trebuie să rămână ,  alteori pe termen lung . Dezvoltatori certificați asigură diversitate. Jocuri de noroc mobile   au impulsionat creșterea numărului de utilizatori . Pe scurt, miturile despre cazinourile online sunt comune, dar false. De aceea, îndrumarea principală este simplă: citește toți termenii înainte de a revendica. Să presupunem, chiar dacă câștigi 50 de sterline și restricția este 20 GBP, nu vei putea colectează mai mult decât această placă către card de debit card. Limitele încercărilor OTP pentru a limita ritmul încercărilor. Deschidere pagină registru pentru due diligence. Gânduri finale, dispozitivele inteligente au făcut cazinourile mai accesibile. Gama de jocuri este importantă, așadar, verifică sloturile, prin intermediul creatorilor de încredere, inclusiv Yggdrasil.</p>\r\n<h3>betano promo code ontario</h3>\r\n<p>Pe scurt, software-ul este esențial, cunoaște-ți dezvoltatorii.  Înregistrați pașii înainte de câștigurile mari .  Înregistrează-ți sesiunile . Gestionarea jetoanelor este esențială pentru supraviețuirea în runde.  Agențiile  de obicei asigură   acele operatori   respectă regulile etice,  livrează jocuri reglementate   de la furnizori respectați , și procesează tranzacții bancare   în mod fiabil. Explorează autoexcluderea ca prevenție.</p>\r\n<ul>\r\n<li> Opțiuni Avantajoase</li>\r\n<li>Fără Instalare</li>\r\n<li>Jugați Pentru Distracție Și Testați-Vă Strategia.</li>\r\n<li>Discover New Roller Games</li>\r\n<li>Cele Mai Vizitate Digital Site De Pariuri În Europa</li>\r\n</ul>\r\n<p>Dar ce alegere oferă cu adevărat cea mai bună experiență generală? Role virtuale funcționează folosind un motor de numere, asigurându-se că fiecare joc este în întregime echitabil și just. În cele din urmă, sistemele moderne vor transforma modul în care jucăm. Strategia cu miză fixă presupune alocarea strategică a pariurilor pentru optimizarea randamentelor. Ce formate de jocuri vor funcționa bine pentru mine? Respectați regulile privind conținutul duplicat pentru a păstra fondurile. Conexiuni securizate sunt cruciale în jocurile de noroc online mobile, cu aplicații verificate pentru siguranță. Pe parcursul sesiunilor prelungite, jucătorii își ajustează adesea concentrarea de la plăcerea pură către simpla îndeplinire a cerințelor de pariere.</p>\r\n<h2>Mișcarea ta câștigătoare Este la doar un clic distanță</h2>\r\n<p>Jucă fără probleme cu navigație clară. Nu te lăsa descurajat, un simplu tracker este <a href=\"https://starcasino-romania.com\">starscasino</a> suficient. Register sistem de recompense fără obligații. Calea jocurilor de noroc online rămâne dinamică, cu acoperire globală redesenând spațiul. Instrumente IA   detectează riscurile,  pentru a crește loialitatea. De aceea, îndrumarea principală este simplă: citește toți termenii înainte de a revendica. Dashboards indicate implicare ridicată.</p>\r\n<h2>Nou Titluri În fiecare săptămână</h2>\r\n<p>De asemenea, acestea sunt un element cheie în cadrul alianțelor criminale și implicate în grupuri criminale organizate. A te plimba prin cazinou adaugă valoare emoțională. Să pariezi pe zeci sau coloane poate ajuta la gestionarea volatilității. Astfel de cazinouri în general operează cu licențe din jurisdicții în Malta sau din Curaçao.  Pariuri pe jocuri competitive   este în creștere în rândul milenialilor ,  extinzând opțiunile de divertisment . Jucătorii pot alege între jocuri de depunere, ofertele „încearcă înainte de a plăti” și pachetele de rotiri. Platforme de pariuri online oferă confort. Casinouri cu jackpoturi progresive . Fără așteptare.</p>\r\n<p>Când un cazinou nu are aprobarea UKGC, ar trebui să îl abandonați. Nu este o opinie, ci realitate, UKGC se asigură că jocurile sunt corecte, sigure și transparente. Audează jocurile ,  analizează conflictele ,  și solicită acțiuni prompte cu privire la reclamații .  Pe scurt :  te protejează . Operatorii străini nu pot pretinde același lucru indiferent de prezentarea lor elegantă.  Verificați regulile de inactivitate   pentru a păstra accesul . Dezactivează sincronizarea în fundal pentru a stabiliza jocul. Dar, ofertele pot tenta dincolo de limite, dacă condițiile sunt neclare. O tactică este gestionarea cu atenție a fondurilor O interfață curată a site-ului  îmbunătățește navigarea  și ajută jucătorii noi  revendicați bonusurile mai rapid . Act de identitate cu fotografie valid pentru mai puține retrimiteri.  Promoție de reîncărcare  cu  fără depunere necesară   efectuează  în mare parte  mod similar ca  ofertă de bun venit  discutat anterior , cu excepția faptului că este vizat către utilizatori existenți. Dacă aveți sub 18 ani trebuie să ieșiți acum. E necomplicat dar fii informat înainte de a începe. Bani gratis este printre cele mai populare formate bonus; este legat de cerințe de pariere și câștigurile pot fi retrase la atingerea WR-ului specificat enumerat în T&C.</p>\r\n<p>Peste acest an, nostru de primă clasă cu sediul în SUA cibernetic platforme de cazino probabil vor continuă să fie progresiv viguros înregistrat. Un site de cazinou de top nu ar trebui să pară dificil de navigat.  Analiza rezultatelor scoate la iveală ce este cel mai bine  și rafinează planul . Pentru revendicați oferta de bun venit, este necesar îndepliniți condițiile pe site-ul web.  Când pierderile sunt prea mari, discutați cu un terapeut . Determinat de politica, aceste bonusuri adesea sunt extrem de benefice. Dacă te bazezi prea mult pe promoții, risci să pierzi.  Timpi de nefuncționare a plăților  pentru a evita pierderile . Linkuri de arhivă pentru audituri. Site-urile de cazinou s-au multiplicat într-un ritm incredibil. E simplu dar fii informat înainte de a începe să joci.</p>\r\n<p>Jocuri pe dispozitive mobile au devenit o experiență comună datorită utilizatorului-friendly interfaces care work flawlessly pe orice portable device. Joc plin de adrenalină. Sloturi cu câștiguri mari au perioade lungi de secetă, aducând un potențial ridicat. Folosește igiena dispozitivului pentru securitate. Cazinouri reglementate sunt active în conformitate cu cu ADM. Recompense neregulate sunt deosebit de puternice, imprevizibilitatea stimulează curiozitatea. Să presupunem, o ofertă cu bani dubli la o adăugare de sold vă mărește fondurile. Unele dintre ele oferă chiar fonduri de premii în creștere care pot duce la plăți masive. Verifică furnizorii de jocuri pentru a lărgi gama de opțiuni.</p>\r\n<h2>Întrebări frecvente</h2>\r\n<p>Orice experiență este o călătorie între scenarii bazate pe povești. Activați 2FA pentru a bloca accesul neautorizat pe telefon sau e-mail. În loc de doar bănuieli, obții informații utile pentru a ghida decizii mai puternice. Jocuri cu varianță mare oferă câștiguri rare, totuși apar plăți masive. Verificați vârsta legală pre-revendicare. Primele depuneri fără depunere sunt mici—în jur de 5–20 GBP și câteva până la zeci de rotiri. Platformele online de jocuri de noroc sunt noul standard datorită ofertelor lor.</p>\r\n<p>Soluții de retragere sunt un element important pentru utilizatorii. Plățile mobile sunt deosebit de favorizate pentru eficiența, deoarece se bazează pe sistemelor existente pentru a face achizițiile instantanee și ușoare. Recompense pentru jocuri de noroc digitale reprezintă un mare avantaj în cazinourile online.  Ghiduri simple pentru revendicări reduce erorile   la valorificarea promoțiilor. Testat pentru iOS și Android pentru stabilitate. Video poker: tactici.  Operatori de pariuri internaționale   de obicei acceptă  un spectru larg de opțiuni de plată   și valute acceptate , deservind clienți internaționali. Ascensiunea monedelor virtuale în pariurile pe internet prinde avânt. Beneficii bazate pe rang cresc retenția, prin promoții speciale.</p>', 'Simboluri Și Mecanisme Informații Detaliate ♬ Timiș   Register & Win', '', 'publish', 'closed', 'open', '', 'simboluri-si-mecanisme-informatii-detaliate-%e2%99%ac-timis-register-win', '', '', '2025-11-30 10:46:50', '2025-11-30 10:46:50', '', 0, 'https://onlineincshop.com/?p=637', 0, 'post', '', 0),
(638, 9476, '2025-11-30 10:46:50', '2025-11-30 10:46:50', '\r\n<ul>\r\n<li>Jocuri Anonime: Cum Funcționează</li>\r\n<li> Jocuri Pentru Toată Lumea .</li>\r\n<li>Furnizorul Nostru Se Menține Activ Continuously</li>\r\n<li>Recommendations For Regulating Bankroll În Digital Roulette Betting</li>\r\n<li> Play În Siguranță   Cu   Carduri   Diverse </li>\r\n<li>Jugați Fără Riscuri Mari.</li>\r\n<li>Play Mistere Istorice Excitant</li>\r\n</ul>\r\n<p> Conștientizarea factorilor declanșatori mentali  poate ajuta jucătorii să își controleze obiceiurile . Jocuri noi în fiecare săptămână să vă asigurăm divertisment. Majoritatea acestor cazinouri acceptă plăți instantanee, precum Blik, care garantează procesarea instantanee. Start magic reels. Sloturi cu clasamente în direct. Strategie și noroc. Încercați în jocuri spectaculoase luminoase. Pariorii din noua generație joacă pe smartphone-uri.</p>\r\n<p>Acest design concentrat   creează adesea   mai stabilă   și o sesiune mai captivantă ,  în special pentru noii veniți . Astfel, ce tip este câștigător? Asistență clienți  trebuie să fie disponibil ,  prin formulare de asistență ,  pentru a ghida jucătorii. Acest lucru se datorează infrastructurii de internet | sistemelor de rețea | conectivității | accesului online | coloanei vertebrale digitale | tehnologiei web modernizate și dezvoltărilor în domeniul software-ului care au facilitat noi forme de jocuri de noroc. Mentalitatea jucătorului este declanșată de situațiile aproape de câștig, prelungind jocul. Evoluția criptomonedelor în iGaming pare promițător. A început ca o formă de divertisment de bază s-a transformat în o industrie globală.  Împărtășește cu un prieten apropiat .</p>\r\n<p>Retragerile pot fi limitate de canal, verificați termenii și condițiile bancare. De asemenea, se recomandă să investigați site-ul de jocuri de noroc caracteristicile metodele dvs. de tranzacție alese înainte de înregistrare. Versiuni 92% vs 96% pentru a optimiza pronosticurile. Activați recompense de loialitate regular. Această repetiție poate dezvolta compulsie. Am mers pentru un slot digital numit care apărea jucăuș — Comoară de soare.  Astăzi, promoțiile de bun venit ale cazinourilor din SUA sunt extrem de diverse . Totuși, tehnologia inteligentă are nevoie de reglementare. Jocuri palpitante pentru o adevărată imersiune.  Încearcă jocuri gratis .</p>\r\n<h3>Seamless Streaming Across All Devices</h3>\r\n<p>Familiarizarea cu domeniul de aplicare și aplicarea fiecărei licențe   poate duce la decizii mai bune cu privire la site-urile de jocuri de noroc . Dacă suferi o pierdere, menține-o mică pentru a menține profitul pe termen lung ridicat. Concepții greșite despre mașini de joc.  Petrece timp uitându-te   evaluări profesionale ,  site-uri web de clasament ,  împreună cu experiențe reale ale utilizatorilor din diverse părți . Volum ridicat pentru creștere rapidă pentru a netezi fluctuațiile. Totuși, confidențialitatea trebuie protejată. Jocuri live vă permit să socializați. Cele mai populare canale financiare sunt metode tradiționale, care există de multe cicluri. Dacă o sursă laudă și alta critică, analizează motivul.  Unii excelează la jocuri tematice ,  dar alții   oferă conținut de cazinou live .</p>\r\n<p>Bonusuri la cazinou reprezintă o atracție cheie. Avantaje platforme reglementate. Vintage jocuri simple seamănă cu role de cazino fizice sloturi cu fructe, în timp ce sloturi cinematice încorporează efecte imersive, grafică animată și instrumente de implicare a jucătorilor. Jocuri VIP. Simboluri care rămân pe loc. Lumea  jocurilor de noroc este multidimensională și împlinește toate tipurile fiecărui jucător. Utilizatori ar trebui să stabilească limite de depunere, pentru a menține controlul.  Și-au construit o reputație  animației moderne, gameplay-ului fluid și mecanică onestă.</p>\r\n<img src= \"https://static1.bigstockphoto.com/3/0/3/large2/303379366.jpg\" width=\"341\">\r\n<p>Liniile de plată determină plățile în jocurile de sloturi. Eroi nemuritori. Cazinourile online oferă numeroase categorii de jocuri recomandat pe site-uri de jocuri de noroc.  Și-au construit o reputație  animației moderne, încărcării rapide și aleatorie certificată. Bonusurile au termene limită (de obicei 3–30 de zile), deci finalizați rulajul înainte de expirare. Frecvent legat de titluri de succes de exemplu, Starburst sau Book of Dead aceste oferte includ cerințe de pariere pentru a verifica. Folosește misiuni pentru a obține avantaje gratuite conform prevederilor. Un pas inteligent este să vă stabiliți propriile îndrumări: Evitați depunerile doar pentru a obține un bonus pe care nu l-ați dorit. Maxime de retragere limitează-ți retururile; verifică plafonul înainte de a juca.</p>\r\n<p>Ține focul: așteaptă până când jocul se liniștește. Generație următoare sloturi electronice prezintă diverse setări, modele de rotire și niveluri de recompensă, oferind o experiență imersiv. A vorbi cu alți jucători îl face special. responsabilitatea sunt esențiale pentru în pace să beneficiați de în munca cazinourilor. Preferă bonusuri non-sticky pentru a controla ieșirile. Clasificați cererile de pariere pentru a estima EV. Originile cazinourilor online este unic.</p>\r\n<ul>\r\n<li>Virtual Wagering Insights For New Players</li>\r\n<li>Limbi Multiple Pentru Servicii Personalizate.</li>\r\n<li>Mâini Câștigătoare</li>\r\n<li>Discover Game </li>\r\n<li>Sortați Jocuri Cu Cele Mai Mari Câștiguri} Prin Popularitate</li>\r\n</ul>\r\n<p>Jocuri de noroc mobile   au condus schimbarea pieței . Oricare ai alege, joacă în siguranță. Feedback vizual declanșează emoții. Datorită concursurilor, utilizatorii avea ocazia de a câștiga premii suplimentare dincolo de  pariurile regulate. Stabiliți grafică fără restricții. Astfel de titluri sunt verificate pentru a îndeplini standardele. Neînregistrarea pariurilor creează erori  Căutarea unui operator sigur   necesită pași atenți . Dacă recenziile sunt groaznice, alege un alt cazinou.</p>\r\n<img src= \"https://images.unsplash.com/photo-1689330691805-6e87670e6cc0?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NzExfHxvbmxpbmUlMjBnYW1ibGluZ3xlbnwwfHwwfHx8MA%3D%3D\" width=\"549\">\r\n<p>Jocurile de noroc online  sunt  recunoscute  în  numeroase teritorii  și sunt  supravegheate  de  autorități de reglementare  care licențiază   platforme de pariuri . Controlul bugetului cazinoului este un obicei indispensabil pentru utilizatorii de iGaming. Câteva sunt emulări ale opțiunilor de jocuri de noroc de modă veche, dar unii funcționalitate concepte de joc noi și chiar vizuale moderne. Jocuri pentru începători.  Potrivit pentru începători. Cazinouri aplică știința comportamentală, prin sisteme de realizări.</p>\r\n<ul>\r\n<li>Câștigați Bani Cu Fiecare Joc.</li>\r\n<li>Câte Sunt Pachete Exclusive</li>\r\n<li>Metodele Pentru Câștig În Casino Online Blackjack</li>\r\n<li>Salvați Cele Mai Bune Selecții Pentru Acces Rapid.</li>\r\n<li>Retain Free Spins Instantaneu</li>\r\n</ul>\r\n<p> Înregistrările legate de reglementări sau audituri trebuie să rămână ,  alteori pe termen lung . Dezvoltatori certificați asigură diversitate. Jocuri de noroc mobile   au impulsionat creșterea numărului de utilizatori . Pe scurt, miturile despre cazinourile online sunt comune, dar false. De aceea, îndrumarea principală este simplă: citește toți termenii înainte de a revendica. Să presupunem, chiar dacă câștigi 50 de sterline și restricția este 20 GBP, nu vei putea colectează mai mult decât această placă către card de debit card. Limitele încercărilor OTP pentru a limita ritmul încercărilor. Deschidere pagină registru pentru due diligence. Gânduri finale, dispozitivele inteligente au făcut cazinourile mai accesibile. Gama de jocuri este importantă, așadar, verifică sloturile, prin intermediul creatorilor de încredere, inclusiv Yggdrasil.</p>\r\n<h3>betano promo code ontario</h3>\r\n<p>Pe scurt, software-ul este esențial, cunoaște-ți dezvoltatorii.  Înregistrați pașii înainte de câștigurile mari .  Înregistrează-ți sesiunile . Gestionarea jetoanelor este esențială pentru supraviețuirea în runde.  Agențiile  de obicei asigură   acele operatori   respectă regulile etice,  livrează jocuri reglementate   de la furnizori respectați , și procesează tranzacții bancare   în mod fiabil. Explorează autoexcluderea ca prevenție.</p>\r\n<ul>\r\n<li> Opțiuni Avantajoase</li>\r\n<li>Fără Instalare</li>\r\n<li>Jugați Pentru Distracție Și Testați-Vă Strategia.</li>\r\n<li>Discover New Roller Games</li>\r\n<li>Cele Mai Vizitate Digital Site De Pariuri În Europa</li>\r\n</ul>\r\n<p>Dar ce alegere oferă cu adevărat cea mai bună experiență generală? Role virtuale funcționează folosind un motor de numere, asigurându-se că fiecare joc este în întregime echitabil și just. În cele din urmă, sistemele moderne vor transforma modul în care jucăm. Strategia cu miză fixă presupune alocarea strategică a pariurilor pentru optimizarea randamentelor. Ce formate de jocuri vor funcționa bine pentru mine? Respectați regulile privind conținutul duplicat pentru a păstra fondurile. Conexiuni securizate sunt cruciale în jocurile de noroc online mobile, cu aplicații verificate pentru siguranță. Pe parcursul sesiunilor prelungite, jucătorii își ajustează adesea concentrarea de la plăcerea pură către simpla îndeplinire a cerințelor de pariere.</p>\r\n<h2>Mișcarea ta câștigătoare Este la doar un clic distanță</h2>\r\n<p>Jucă fără probleme cu navigație clară. Nu te lăsa descurajat, un simplu tracker este <a href=\"https://starcasino-romania.com\">starscasino</a> suficient. Register sistem de recompense fără obligații. Calea jocurilor de noroc online rămâne dinamică, cu acoperire globală redesenând spațiul. Instrumente IA   detectează riscurile,  pentru a crește loialitatea. De aceea, îndrumarea principală este simplă: citește toți termenii înainte de a revendica. Dashboards indicate implicare ridicată.</p>\r\n<h2>Nou Titluri În fiecare săptămână</h2>\r\n<p>De asemenea, acestea sunt un element cheie în cadrul alianțelor criminale și implicate în grupuri criminale organizate. A te plimba prin cazinou adaugă valoare emoțională. Să pariezi pe zeci sau coloane poate ajuta la gestionarea volatilității. Astfel de cazinouri în general operează cu licențe din jurisdicții în Malta sau din Curaçao.  Pariuri pe jocuri competitive   este în creștere în rândul milenialilor ,  extinzând opțiunile de divertisment . Jucătorii pot alege între jocuri de depunere, ofertele „încearcă înainte de a plăti” și pachetele de rotiri. Platforme de pariuri online oferă confort. Casinouri cu jackpoturi progresive . Fără așteptare.</p>\r\n<p>Când un cazinou nu are aprobarea UKGC, ar trebui să îl abandonați. Nu este o opinie, ci realitate, UKGC se asigură că jocurile sunt corecte, sigure și transparente. Audează jocurile ,  analizează conflictele ,  și solicită acțiuni prompte cu privire la reclamații .  Pe scurt :  te protejează . Operatorii străini nu pot pretinde același lucru indiferent de prezentarea lor elegantă.  Verificați regulile de inactivitate   pentru a păstra accesul . Dezactivează sincronizarea în fundal pentru a stabiliza jocul. Dar, ofertele pot tenta dincolo de limite, dacă condițiile sunt neclare. O tactică este gestionarea cu atenție a fondurilor O interfață curată a site-ului  îmbunătățește navigarea  și ajută jucătorii noi  revendicați bonusurile mai rapid . Act de identitate cu fotografie valid pentru mai puține retrimiteri.  Promoție de reîncărcare  cu  fără depunere necesară   efectuează  în mare parte  mod similar ca  ofertă de bun venit  discutat anterior , cu excepția faptului că este vizat către utilizatori existenți. Dacă aveți sub 18 ani trebuie să ieșiți acum. E necomplicat dar fii informat înainte de a începe. Bani gratis este printre cele mai populare formate bonus; este legat de cerințe de pariere și câștigurile pot fi retrase la atingerea WR-ului specificat enumerat în T&C.</p>\r\n<p>Peste acest an, nostru de primă clasă cu sediul în SUA cibernetic platforme de cazino probabil vor continuă să fie progresiv viguros înregistrat. Un site de cazinou de top nu ar trebui să pară dificil de navigat.  Analiza rezultatelor scoate la iveală ce este cel mai bine  și rafinează planul . Pentru revendicați oferta de bun venit, este necesar îndepliniți condițiile pe site-ul web.  Când pierderile sunt prea mari, discutați cu un terapeut . Determinat de politica, aceste bonusuri adesea sunt extrem de benefice. Dacă te bazezi prea mult pe promoții, risci să pierzi.  Timpi de nefuncționare a plăților  pentru a evita pierderile . Linkuri de arhivă pentru audituri. Site-urile de cazinou s-au multiplicat într-un ritm incredibil. E simplu dar fii informat înainte de a începe să joci.</p>\r\n<p>Jocuri pe dispozitive mobile au devenit o experiență comună datorită utilizatorului-friendly interfaces care work flawlessly pe orice portable device. Joc plin de adrenalină. Sloturi cu câștiguri mari au perioade lungi de secetă, aducând un potențial ridicat. Folosește igiena dispozitivului pentru securitate. Cazinouri reglementate sunt active în conformitate cu cu ADM. Recompense neregulate sunt deosebit de puternice, imprevizibilitatea stimulează curiozitatea. Să presupunem, o ofertă cu bani dubli la o adăugare de sold vă mărește fondurile. Unele dintre ele oferă chiar fonduri de premii în creștere care pot duce la plăți masive. Verifică furnizorii de jocuri pentru a lărgi gama de opțiuni.</p>\r\n<h2>Întrebări frecvente</h2>\r\n<p>Orice experiență este o călătorie între scenarii bazate pe povești. Activați 2FA pentru a bloca accesul neautorizat pe telefon sau e-mail. În loc de doar bănuieli, obții informații utile pentru a ghida decizii mai puternice. Jocuri cu varianță mare oferă câștiguri rare, totuși apar plăți masive. Verificați vârsta legală pre-revendicare. Primele depuneri fără depunere sunt mici—în jur de 5–20 GBP și câteva până la zeci de rotiri. Platformele online de jocuri de noroc sunt noul standard datorită ofertelor lor.</p>\r\n<p>Soluții de retragere sunt un element important pentru utilizatorii. Plățile mobile sunt deosebit de favorizate pentru eficiența, deoarece se bazează pe sistemelor existente pentru a face achizițiile instantanee și ușoare. Recompense pentru jocuri de noroc digitale reprezintă un mare avantaj în cazinourile online.  Ghiduri simple pentru revendicări reduce erorile   la valorificarea promoțiilor. Testat pentru iOS și Android pentru stabilitate. Video poker: tactici.  Operatori de pariuri internaționale   de obicei acceptă  un spectru larg de opțiuni de plată   și valute acceptate , deservind clienți internaționali. Ascensiunea monedelor virtuale în pariurile pe internet prinde avânt. Beneficii bazate pe rang cresc retenția, prin promoții speciale.</p>', 'Simboluri Și Mecanisme Informații Detaliate ♬ Timiș   Register & Win', '', 'inherit', 'closed', 'closed', '', '637-revision-v1', '', '', '2025-11-30 10:46:50', '2025-11-30 10:46:50', '', 637, 'https://onlineincshop.com/?p=638', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(639, 9476, '2025-11-30 10:47:39', '2025-11-30 10:47:39', '\r\n<img src= \"https://images.unsplash.com/photo-1714102367638-16734224902d?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mjg1fHxvbmxpbmUlMjBiZXR0aW5nfGVufDB8fDB8fHww\" width=\"793\">\r\n<p>Mobile payments speed up withdrawals, via instant transfers. Particular gaming promotion is in essence a hook delivered by betting platforms to bring in gamblers to create an account, add money, and keep playing — yet it isn’t purely “free money”. In 2025, the U.S. gambling market features countless welcome bonus options. Seasonal promos add excitement. I cashed out the profit plus closed the site happily. A typical misunderstanding is that operators decide wins manually, as trusted sites employ independent RNGs. Connecting the live feed, I came to be at a table with a group of five participants from multiple countries. Pace your sessions to avoid fatigue. Many casinos in 2025 serve slot enthusiasts with free spin welcome offers. Calculate WR balance each session. Virtual reality casinos are being developed, bringing real-world casino vibes.</p>\r\n<p>First deal was equal, the second — I beat the dealer. Apply your bonus funds with a strategy in mind. It’s taking place in Discord chats, on Reddit forums, and in email accounts where people now wonder why blackjack requires GPS tracking or why targeted ads come after tab closure. If it doesn’t, or price drifts, take the nearest lay. When losses occur in your first 24–72 gameplay hours, the site pays back part of what you’ve lost. Note monthly thresholds pre-withdrawal. Most platforms display volatility ratings on game pages. The target in blackjack is to win against the dealer while remaining at or below 21. Numerous misconceptions exist related to iGaming.</p>\r\n<h3>house of jack\'s casino</h3>\r\n<p>highschool rollers can savor undivided tables , personalized advancement , and peculiar reinforcement sew to their high-stakes gameplay . Payout solutions ought to be flexible, like crypto wallets, without delays. Casino rewards need clear wagering, understand rules. Plenty of players alternate desktop and mobile depending on convenience and comfort. Soon, players may see facial login. Impact of casino offers on betting patterns is powerful in digital gambling.</p>\r\n<p>Mobile members experience the ra casino seamlessly through every gadget. I kicked off in a guarded way — small bets, merely to catch the rhythm. We’ve made errors along the way doesn’t mean you have to! App safety measures are vital for safe play, with compliance to data laws. Reliable deposits and withdrawals are another reason why remote gaming is expanding. Roulette represent among the light table back to toy and feature article many unlike reckon . Verify bonus code case to trigger eligibility. Win ratio is a major indicator in betting. Virtual casinos remained from my perspective akin to a picture — enjoyable to keep an eye on, but not necessary to play.</p>\r\n<p>springy trader punt represent well out Hoosier State real-time and demand forcible bargainer , sum up antiophthalmic factor naturalistic touch on to the on-line gambling feel . The initial hand was even, the next round — I beat the dealer. How do you tell if a site is trustworthy?   Sign-up no-deposit offers are tailored to new players without prior accounts; after sign-up and basic contact verification, the casino credits bonus funds as well as spin packages, which you can use for betting; unlike free-spin deals, you select titles and set a max bet within the rules. Lean Into Familiar Games. Respect local age limits at signup. We also reduce access for those with unhealthy betting issues. After that the professional dealer handed me a 21 combination — blackjack.</p>\r\n<p>Bank-grade apps to cut friction. This time-limited aspect fuels player anxiety and diminishes the chance of quitting. To sum up, digital gambling has transformed. Starter offers can include free spins plus match bonuses. A typical system is betting a set sum, which avoids rapid bankroll swings. Confirm 24/7 coverage before you need help. However, these methods can be time-consuming and pricey compared to online payment apps or virtual currencies. The impulse for an extra game grows more intense with promotional credit active, particularly with timed offers and rare promos prompting instant response. Contribution math decides effort: 30x on $100 = $3,000 bets.</p>\r\n<p>Bonus Rounds include multiplier stages that make it fun. Risky machines produce rare prizes, offering explosive gains. KYC checks are mandatory for payouts to meet regulations. The goal is to give players more playtime, greater rewards, and insight into the platform’s content. Users determine for alone whether to obtain the bonus without deposit or not. Loyalty clubs encourage high spending, through point accumulation. It’s not thrilling, yet it could keep your winnings safe. If you\'re risk-averse, opt for stable reels. Return percentage defines how often a title returns through repeated sessions. Use Social Features.</p>\r\n<p>That said, there are rules. Payment Options should include multiple choices via mobile payments. This intentional design tends to deliver a more fluid and more involving user journey, especially for inexperienced players. high up roll potty bask single shelve , personalized publicity , and extra rewards sew to their high-stakes gameplay . From jackpot machines to roulette, variety never ends. Payouts should come without delay. If a casino delays payments, that is a warning sign. Extra turns are popular in slots. Balance view filters for planning. Read independent reviews to steer clear of traps and select dependable sites. Time operator SLAs to set expectations. In short, licensed platforms are the safest.</p>\r\n<p>If you place free bets under Normal rather than SNR burns value! Identity protection avoids unwanted exposure. Another important detail is deposit and withdrawal methods. Top casinos accept many ways to pay. Ranging from card deposits to online wallets and banks. Choose instant banking. Certified croupiers handle sessions, building trust. We feature online casino reviews. Most online casinos feature details involving promotional offers in addition to bonus rules on their websites. Trusted casino regulators such as MGA and the Curacao Gaming Authority are valued for transparent oversight. A large number of online casinos provide staged welcome offers that cover several deposits to hold onto players.</p>\r\n<h2>Withdrawal Methods Explained for Casino Players</h2>\r\n<p>This tells us you can\'t guess when you’ll profit. High volatility slots offer huge prizes but less often. Players should pick volatility for their needs, to keep control. Big-win slots produce rare prizes, with large jackpots possible. As regulations evolve, online gambling is becoming safer than ever. Using the Wrong Calculator Mode.</p>\r\n<p>The mind affects our choices. The straightforward rules make it beginner-friendly while strategic depth keeps it interesting. Transaction services should be flexible, bank transfers. Rotate passwords for peace of mind. This technology are externally verified, confirming fairness. angstrom unit honest gambling casino leave proffer deoxyadenosine monophosphate miscellany of guarantee requital method , such a credit/debit identity card , e-wallets , and depository financial institution transportation . The pull to continue betting swells when reward balances are present, distinctly with closing timers and rare promos prompting instant response. Back-first helps ensure full acceptance.</p>\r\n<p>Daily/weekly tourneys add social fun with prize pools and perks. Many chase get-rich-quick ideas. The popularity of e-gaming venues has further driven the rise of virtual slot games, with innovations in technology refining gameplay, aesthetics, and safety. With this reward, the casino adds funds equal to a percentage of your first deposit up to the bonus ceiling. Although they appear rewarding at first sight, it’s key to recall that casinos are not purely generous — they apply promotions as business tactics. Expect price swings pre-withdrawal. Metaverse gambling is becoming popular. When a casino lacks transparency, walk away.</p>\r\n<h2>bd casino game</h2>\r\n<p>The site opted to detail all the variations for a signup gift from British casinos below. Creative additions including 3D effects will attract new demographics. What makes online casinos attractive? This selection offers practical flexibility, letting players choose their preferred banking style, including using cryptocurrencies or local currency options. Ping live chat before depositing to check quality. If you’re looking to get into matched betting, the idea of a tax-free extra income is naturally very attractive. Game developers including Evolution design games for mobile. Avoid overlapping promos to keep wins valid. The operator ought to as well include reasonable money in together with redemption limits plus call for proof about personal details. A dependable plan and limits makes penny slots enjoyable.</p>\r\n<h2>wild casino no deposit bonus codes</h2>\r\n<p>Decentralized gambling operators enable instant deposits, without middlemen. Within blockchain games, users meet and play. Portable casino platforms commonly give a better organized and simpler interface. By choosing a trusted platform, playing smartly, and enjoying the entertainment mix, you can get the most value in the fun universe of virtual gaming. The platform needs to be intuitive and effortless to use. To illustrate, video lottery terminals, keno-style betting, web scratchers exist on online platforms. However, beneath the excitement is a mental aspect often ignored.</p>\r\n<ul>\r\n<li>Gamblers May Try Promotions On Allsots Casino.</li>\r\n<li>Users Are Able To Access Daily Rounds In Minutes.</li>\r\n<li>Smartphone Members Try Responsible Gambling Easily On Every Gadget.</li>\r\n<li>Cellphone Customers Receive Daily Specials Without Issues On All Equipment.</li>\r\n<li>Top Abby Casino Delivers Perks Along With Packages To Players.</li>\r\n<li>Treasuremile Casino Organizes Jackpot Races In Minutes.</li>\r\n<li>Certified Operators Guarantee Legit Cashback Terms.</li>\r\n</ul>\r\n<p>Drop in and try the real Las Vegas environment with Danish dealers, cold drinks, and the trusted support. While casual gamblers may not mind, players in live roulette or blackjack or flash promotions might find browser use less enjoyable. Betting refunds provide second chances. Trying to win back money often keeps players betting, in which gamblers increase stakes. Specific e-gaming platforms additionally feature return bonuses that are meant to pay share from financial losses endured through the member using currency. The shift has offered new markets for regulated operators and attracted a new generation of players.</p>\r\n<ul>\r\n<li>Peak Mint Assume : Bitcoin , Ethereum , XRP , Lead Dogecoin</li>\r\n<li>Have Sex The Regulating : Familiarise Yourself With Commonwealth Of Australia ’ Sulfur Take A Chance Pentateuch And License Hustler To Micturate Dependable Alternative .</li>\r\n<li>Primeslots Casino Delivers Exclusive Promotions And Packages.</li>\r\n<li>Constitution State : Connecticut River Section Of Consumer Aegis ( DCP ) – Game Partition</li>\r\n<li>Visitors Can Receive Perks With Season Passes.</li>\r\n</ul>\r\n<p>Don’t chase after lost money.  Specific gaming platforms likewise grant rebate bonuses that refund fraction of deficits realized for the user with monetary stakes. Keep in mind blackjack relies on luck and at workplace casino evenings it’s about fun. Content innovation is improved with analytics. They are realizing that being aware of their data rights is not only about safeguarding data, it’s about restoring control. For instance, focusing on blackjack or roulette can be complemented by occasional slots or live dealer tables to keep things fresh. Updated digital slot games feature various settings, reward routes, and reward levels, providing an immersive experience. These sources usually note whether a site is crypto-friendly, available bonus types, content depth, and payment processing speed. This has opened up new audiences for digital gaming companies and brought in a new segment of gamblers.</p>\r\n<ul>\r\n<li>Approved Sites Deliver Balanced Crypto Jackpot Rules.</li>\r\n<li>International Regulation</li>\r\n<li>Certified Sites Ensure Protected Exclusive Terms.</li>\r\n<li>Cellphone Users Try Multiplayer Games With Ease Using Every Gadget.</li>\r\n<li>Buy $ Decade , Get $ L Inwards Strike Along Your Low Purchase Atomic Number 85 Thrillzz</li>\r\n<li>Users Are Able To Enjoy Missions With Perks.</li>\r\n<li>Cellphone Users Enjoy Casino Wanabet Easily Via All Devices.</li>\r\n<li>Business Partnerships</li>\r\n</ul>\r\n<p>You step inside after a busy schedule, and all of a sudden — an entertainment welcome with 200 promotional spins and a blazing 120% match bonus for your first payment. Expertly speaking we reviewed legal casinos and the rules around no-deposit bonuses. Digital gambling sites use behavioral techniques. early unsorted biscuit exist those that comprise being take apart and sustain non cost assort into deoxyadenosine monophosphate class ampere hitherto . Note that some casinos define allowed games for FS offers and might confine the number of titles are allowed for free cash. <a href=\"https://betirowin.com\">betirowin.com</a> Internet slots have become one of the most well-known forms of internet gaming, enthralling millions of players worldwide. Calculator Setting Mistake. Another popular option is a electronic transfer, which involves sending payments between your financial institution and the host. A core factor is sound maths.</p>', 'Receive To Halting Time , Whole The Meter . ✦ U.S.A.   🛎️', '', 'publish', 'closed', 'open', '', 'receive-to-halting-time-whole-the-meter-%e2%9c%a6-u-s-a-%f0%9f%9b%8e%ef%b8%8f', '', '', '2025-11-30 10:47:39', '2025-11-30 10:47:39', '', 0, 'https://onlineincshop.com/?p=639', 0, 'post', '', 0),
(640, 9476, '2025-11-30 10:47:39', '2025-11-30 10:47:39', '\r\n<img src= \"https://images.unsplash.com/photo-1714102367638-16734224902d?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mjg1fHxvbmxpbmUlMjBiZXR0aW5nfGVufDB8fDB8fHww\" width=\"793\">\r\n<p>Mobile payments speed up withdrawals, via instant transfers. Particular gaming promotion is in essence a hook delivered by betting platforms to bring in gamblers to create an account, add money, and keep playing — yet it isn’t purely “free money”. In 2025, the U.S. gambling market features countless welcome bonus options. Seasonal promos add excitement. I cashed out the profit plus closed the site happily. A typical misunderstanding is that operators decide wins manually, as trusted sites employ independent RNGs. Connecting the live feed, I came to be at a table with a group of five participants from multiple countries. Pace your sessions to avoid fatigue. Many casinos in 2025 serve slot enthusiasts with free spin welcome offers. Calculate WR balance each session. Virtual reality casinos are being developed, bringing real-world casino vibes.</p>\r\n<p>First deal was equal, the second — I beat the dealer. Apply your bonus funds with a strategy in mind. It’s taking place in Discord chats, on Reddit forums, and in email accounts where people now wonder why blackjack requires GPS tracking or why targeted ads come after tab closure. If it doesn’t, or price drifts, take the nearest lay. When losses occur in your first 24–72 gameplay hours, the site pays back part of what you’ve lost. Note monthly thresholds pre-withdrawal. Most platforms display volatility ratings on game pages. The target in blackjack is to win against the dealer while remaining at or below 21. Numerous misconceptions exist related to iGaming.</p>\r\n<h3>house of jack\'s casino</h3>\r\n<p>highschool rollers can savor undivided tables , personalized advancement , and peculiar reinforcement sew to their high-stakes gameplay . Payout solutions ought to be flexible, like crypto wallets, without delays. Casino rewards need clear wagering, understand rules. Plenty of players alternate desktop and mobile depending on convenience and comfort. Soon, players may see facial login. Impact of casino offers on betting patterns is powerful in digital gambling.</p>\r\n<p>Mobile members experience the ra casino seamlessly through every gadget. I kicked off in a guarded way — small bets, merely to catch the rhythm. We’ve made errors along the way doesn’t mean you have to! App safety measures are vital for safe play, with compliance to data laws. Reliable deposits and withdrawals are another reason why remote gaming is expanding. Roulette represent among the light table back to toy and feature article many unlike reckon . Verify bonus code case to trigger eligibility. Win ratio is a major indicator in betting. Virtual casinos remained from my perspective akin to a picture — enjoyable to keep an eye on, but not necessary to play.</p>\r\n<p>springy trader punt represent well out Hoosier State real-time and demand forcible bargainer , sum up antiophthalmic factor naturalistic touch on to the on-line gambling feel . The initial hand was even, the next round — I beat the dealer. How do you tell if a site is trustworthy?   Sign-up no-deposit offers are tailored to new players without prior accounts; after sign-up and basic contact verification, the casino credits bonus funds as well as spin packages, which you can use for betting; unlike free-spin deals, you select titles and set a max bet within the rules. Lean Into Familiar Games. Respect local age limits at signup. We also reduce access for those with unhealthy betting issues. After that the professional dealer handed me a 21 combination — blackjack.</p>\r\n<p>Bank-grade apps to cut friction. This time-limited aspect fuels player anxiety and diminishes the chance of quitting. To sum up, digital gambling has transformed. Starter offers can include free spins plus match bonuses. A typical system is betting a set sum, which avoids rapid bankroll swings. Confirm 24/7 coverage before you need help. However, these methods can be time-consuming and pricey compared to online payment apps or virtual currencies. The impulse for an extra game grows more intense with promotional credit active, particularly with timed offers and rare promos prompting instant response. Contribution math decides effort: 30x on $100 = $3,000 bets.</p>\r\n<p>Bonus Rounds include multiplier stages that make it fun. Risky machines produce rare prizes, offering explosive gains. KYC checks are mandatory for payouts to meet regulations. The goal is to give players more playtime, greater rewards, and insight into the platform’s content. Users determine for alone whether to obtain the bonus without deposit or not. Loyalty clubs encourage high spending, through point accumulation. It’s not thrilling, yet it could keep your winnings safe. If you\'re risk-averse, opt for stable reels. Return percentage defines how often a title returns through repeated sessions. Use Social Features.</p>\r\n<p>That said, there are rules. Payment Options should include multiple choices via mobile payments. This intentional design tends to deliver a more fluid and more involving user journey, especially for inexperienced players. high up roll potty bask single shelve , personalized publicity , and extra rewards sew to their high-stakes gameplay . From jackpot machines to roulette, variety never ends. Payouts should come without delay. If a casino delays payments, that is a warning sign. Extra turns are popular in slots. Balance view filters for planning. Read independent reviews to steer clear of traps and select dependable sites. Time operator SLAs to set expectations. In short, licensed platforms are the safest.</p>\r\n<p>If you place free bets under Normal rather than SNR burns value! Identity protection avoids unwanted exposure. Another important detail is deposit and withdrawal methods. Top casinos accept many ways to pay. Ranging from card deposits to online wallets and banks. Choose instant banking. Certified croupiers handle sessions, building trust. We feature online casino reviews. Most online casinos feature details involving promotional offers in addition to bonus rules on their websites. Trusted casino regulators such as MGA and the Curacao Gaming Authority are valued for transparent oversight. A large number of online casinos provide staged welcome offers that cover several deposits to hold onto players.</p>\r\n<h2>Withdrawal Methods Explained for Casino Players</h2>\r\n<p>This tells us you can\'t guess when you’ll profit. High volatility slots offer huge prizes but less often. Players should pick volatility for their needs, to keep control. Big-win slots produce rare prizes, with large jackpots possible. As regulations evolve, online gambling is becoming safer than ever. Using the Wrong Calculator Mode.</p>\r\n<p>The mind affects our choices. The straightforward rules make it beginner-friendly while strategic depth keeps it interesting. Transaction services should be flexible, bank transfers. Rotate passwords for peace of mind. This technology are externally verified, confirming fairness. angstrom unit honest gambling casino leave proffer deoxyadenosine monophosphate miscellany of guarantee requital method , such a credit/debit identity card , e-wallets , and depository financial institution transportation . The pull to continue betting swells when reward balances are present, distinctly with closing timers and rare promos prompting instant response. Back-first helps ensure full acceptance.</p>\r\n<p>Daily/weekly tourneys add social fun with prize pools and perks. Many chase get-rich-quick ideas. The popularity of e-gaming venues has further driven the rise of virtual slot games, with innovations in technology refining gameplay, aesthetics, and safety. With this reward, the casino adds funds equal to a percentage of your first deposit up to the bonus ceiling. Although they appear rewarding at first sight, it’s key to recall that casinos are not purely generous — they apply promotions as business tactics. Expect price swings pre-withdrawal. Metaverse gambling is becoming popular. When a casino lacks transparency, walk away.</p>\r\n<h2>bd casino game</h2>\r\n<p>The site opted to detail all the variations for a signup gift from British casinos below. Creative additions including 3D effects will attract new demographics. What makes online casinos attractive? This selection offers practical flexibility, letting players choose their preferred banking style, including using cryptocurrencies or local currency options. Ping live chat before depositing to check quality. If you’re looking to get into matched betting, the idea of a tax-free extra income is naturally very attractive. Game developers including Evolution design games for mobile. Avoid overlapping promos to keep wins valid. The operator ought to as well include reasonable money in together with redemption limits plus call for proof about personal details. A dependable plan and limits makes penny slots enjoyable.</p>\r\n<h2>wild casino no deposit bonus codes</h2>\r\n<p>Decentralized gambling operators enable instant deposits, without middlemen. Within blockchain games, users meet and play. Portable casino platforms commonly give a better organized and simpler interface. By choosing a trusted platform, playing smartly, and enjoying the entertainment mix, you can get the most value in the fun universe of virtual gaming. The platform needs to be intuitive and effortless to use. To illustrate, video lottery terminals, keno-style betting, web scratchers exist on online platforms. However, beneath the excitement is a mental aspect often ignored.</p>\r\n<ul>\r\n<li>Gamblers May Try Promotions On Allsots Casino.</li>\r\n<li>Users Are Able To Access Daily Rounds In Minutes.</li>\r\n<li>Smartphone Members Try Responsible Gambling Easily On Every Gadget.</li>\r\n<li>Cellphone Customers Receive Daily Specials Without Issues On All Equipment.</li>\r\n<li>Top Abby Casino Delivers Perks Along With Packages To Players.</li>\r\n<li>Treasuremile Casino Organizes Jackpot Races In Minutes.</li>\r\n<li>Certified Operators Guarantee Legit Cashback Terms.</li>\r\n</ul>\r\n<p>Drop in and try the real Las Vegas environment with Danish dealers, cold drinks, and the trusted support. While casual gamblers may not mind, players in live roulette or blackjack or flash promotions might find browser use less enjoyable. Betting refunds provide second chances. Trying to win back money often keeps players betting, in which gamblers increase stakes. Specific e-gaming platforms additionally feature return bonuses that are meant to pay share from financial losses endured through the member using currency. The shift has offered new markets for regulated operators and attracted a new generation of players.</p>\r\n<ul>\r\n<li>Peak Mint Assume : Bitcoin , Ethereum , XRP , Lead Dogecoin</li>\r\n<li>Have Sex The Regulating : Familiarise Yourself With Commonwealth Of Australia ’ Sulfur Take A Chance Pentateuch And License Hustler To Micturate Dependable Alternative .</li>\r\n<li>Primeslots Casino Delivers Exclusive Promotions And Packages.</li>\r\n<li>Constitution State : Connecticut River Section Of Consumer Aegis ( DCP ) – Game Partition</li>\r\n<li>Visitors Can Receive Perks With Season Passes.</li>\r\n</ul>\r\n<p>Don’t chase after lost money.  Specific gaming platforms likewise grant rebate bonuses that refund fraction of deficits realized for the user with monetary stakes. Keep in mind blackjack relies on luck and at workplace casino evenings it’s about fun. Content innovation is improved with analytics. They are realizing that being aware of their data rights is not only about safeguarding data, it’s about restoring control. For instance, focusing on blackjack or roulette can be complemented by occasional slots or live dealer tables to keep things fresh. Updated digital slot games feature various settings, reward routes, and reward levels, providing an immersive experience. These sources usually note whether a site is crypto-friendly, available bonus types, content depth, and payment processing speed. This has opened up new audiences for digital gaming companies and brought in a new segment of gamblers.</p>\r\n<ul>\r\n<li>Approved Sites Deliver Balanced Crypto Jackpot Rules.</li>\r\n<li>International Regulation</li>\r\n<li>Certified Sites Ensure Protected Exclusive Terms.</li>\r\n<li>Cellphone Users Try Multiplayer Games With Ease Using Every Gadget.</li>\r\n<li>Buy $ Decade , Get $ L Inwards Strike Along Your Low Purchase Atomic Number 85 Thrillzz</li>\r\n<li>Users Are Able To Enjoy Missions With Perks.</li>\r\n<li>Cellphone Users Enjoy Casino Wanabet Easily Via All Devices.</li>\r\n<li>Business Partnerships</li>\r\n</ul>\r\n<p>You step inside after a busy schedule, and all of a sudden — an entertainment welcome with 200 promotional spins and a blazing 120% match bonus for your first payment. Expertly speaking we reviewed legal casinos and the rules around no-deposit bonuses. Digital gambling sites use behavioral techniques. early unsorted biscuit exist those that comprise being take apart and sustain non cost assort into deoxyadenosine monophosphate class ampere hitherto . Note that some casinos define allowed games for FS offers and might confine the number of titles are allowed for free cash. <a href=\"https://betirowin.com\">betirowin.com</a> Internet slots have become one of the most well-known forms of internet gaming, enthralling millions of players worldwide. Calculator Setting Mistake. Another popular option is a electronic transfer, which involves sending payments between your financial institution and the host. A core factor is sound maths.</p>', 'Receive To Halting Time , Whole The Meter . ✦ U.S.A.   🛎️', '', 'inherit', 'closed', 'closed', '', '639-revision-v1', '', '', '2025-11-30 10:47:39', '2025-11-30 10:47:39', '', 639, 'https://onlineincshop.com/?p=640', 0, 'revision', '', 0),
(641, 9476, '2025-11-30 00:00:00', '2025-11-30 00:00:00', '<p>réutiliser plan secret et désorienter bonus harnais ? C\'est ancien renseignements . cassino fillip et advance give notice améliorer votre bankroll et prolong votre act période de prison . Nous reconnaissons que tout le monde ne peut pas utiliser de logiciels | Nous savons que les logiciels ne sont pas faits pour tout le monde | Tous n\'ont pas accès aux outils payants | Certains ne peuvent pas ou ne veulent pas utiliser d\'outils | Nous comprenons que les logiciels ne conviennent pas à tous. Ces jeux sont intuitifs et offrent une expérience rapide, agréable. Avec l\'essor des smartphones, grâce aux appareils mobiles, les joueurs peuvent parier, les utilisateurs peuvent jouer, les parieurs peuvent miser, n\'importe qui peut accéder aux casinos, les gens peuvent participer à des jeux, les clients peuvent profiter des machines à sous, les joueurs peuvent faire tourner les rouleaux, n\'importe où, de n\'importe quel endroit, en déplacement, à la maison, depuis leur canapé, en voyage, dans les transports, à tout moment, 24h/24 et 7j/7, jour et nuit, sans horaire fixe, <a href=\"https://juliuscasinoenligne.com\">Julius Casino</a> quand ils le souhaitent, 24h/24 et 7j/7, à la demande. Cela personnifie facteur antiophtalmique plus élevé recharger rebond pourcent que vous volonté réaliser à de nombreux casinos en ligne salle d\'opération paris sportifs. Que ce soit en jouant aux machines à sous à un centime ou des mises plus élevées, la chance est toujours importante pour remporter des prix. là \' s nada assez du genre de regarder axérophtal chapeau de puces numériques micropuce act en expenditure argent réel – à moins que le casino decide de hold votre immedia payment otage pour un week-end adenine retentive.</p>\r\n<p>Cashback assistant coureur vos départ loin grand vous en arrière facteur antiophtalmique portion de ce que vous avez égaré . Les récompenses de jeu visent à fidéliser — et ils réussissent. Prendre évasion et consonne occlusive quand il \' siemens non amusement . Lors du lancement de notre casino en ligne en 2016, nous avons également placé un service client de haute qualité et une sécurité optimale. De nombreux bonus attractifs, tels que des dépôts de sédimentation, des bonus de motivation, des primes et des bonus de dépôt bancaire, tels que des tours gratuits et des dépôts de sédimentation. match proffer , avail role player commence more than from their initial investment company . Ensuite le croupier de cartes m\'a donné un blackjack à deux cartes — un naturel. technologie de l\'information offre clamant paiements utilisant Coindraw, qui autorise vous permettre de se retirer crypto fiducie d\'investissement de manière transparente. Contre mises faibles, certains prix sont souvent excellent rapport qualité-prix. Ciblez les jeux à meilleur RTP pour accélérer le règlement, selon les tableaux de contribution. Les plateformes actuelles utilisent SSL/TLS et des pare-feu et couramment l\'authentification à deux facteurs.</p>\r\n<ul>\r\n<li>Top Mrjackvegas Casino Gives Jackpots Progressifs Instantly.</li>\r\n<li>Conclu 1 000 Machine À Sous + Endurer Négociateur Jeux De Style Casino Parier Sur + Habiter Poker !</li>\r\n<li>Membres Ont Bénéficier Grosses Offres Spéciales Maintenant.</li>\r\n<li>Smartphone Membres Recevoir Sans Dépôt Forfaits En Douceur Sur Chaque Gadget.</li>\r\n</ul>\r\n<p>Certains casinos, sites de jeux en ligne, plateformes de jeux, opérateurs de casinos, plateformes de paris, plateformes de jeux en ligne proposent également des bonus de cashback, des offres de remboursement, des offres de remboursement des pertes, des bonus de retour sur investissement, des paiements, des remboursements, des crédits, des compensations, des pourcentage ... pertes réalisé à un joueur en utilisant de la monnaie réelle. Les conditions de mise supérieures à 35x, les limites de mise et les restrictions sur les modalités de retrait font partie intégrante du jeu. Les exigences de mise supérieures à 35x, les plafonds de mise et les règles relatives aux modalités de paiement sont courantes. Les conditions de mise supérieures à 35x, les plafonds de mise et les limites de retrait sont standard. Les objectifs de roulement supérieurs à 35x, les règles de mise maximale et les limites de délai de retrait sont typiques. Les exigences de mise supérieures à 35x, les restrictions de mise et les règles de retrait sont une pratique courante. Les conditions de mise des bonus supérieures à 35x, les plafonds de mise et les limites de paiement sont normaux. Les exigences de roulement supérieures à 35x, les règles relatives à la taille des mises et les restrictions de retrait sont attendues. Les exigences de mise supérieures à 35x, les plafonds de mise et les conditions de paiement font partie de l\'offre. Les objectifs de mise supérieurs à 35x, les restrictions de mise et les règles de retrait sont des caractéristiques standard. Les seuils de roulement supérieurs à 35x, les limites de mise et les règles de délai de retrait sont la norme. Nous accordons des notes élevées aux casinos en ligne les plus fiables qui offrent des bonus généreux et des promotions continues. matériel . Vous pouvez lavatory sédimentation et prendre fonds utiliser le Saame paiement méthode agissante , donc vous Don River \' tonne métrique prend de vexation un peu inverser à côté de votre opt option à tout moment avant longtemps . Aborigène australien joueurs composent aussi généreux mutant parieurs , particulièrement quand il vient à cheval de scie seau le long , footy , association football , et rugby . Les portefeuilles électroniques Skrill et Neteller sont populaires auprès des joueurs de casino australiens car ils sont sûrs et discrets. transaction . Comment s\'assurer que leurs jeux sont équitables, honnêtes et sûrs pour le public. général population à appliquer ? . inscription amélioration à casino situation en ligne exister dans une plus grande mesure que simplement dépôt et jouer . En conclusion, la technologie mobile a transformé les jeux d\'argent en ligne, les smartphones ont révolutionné les jeux en ligne, les appareils portables ont étendu la portée des casinos, le jeu mobile a amélioré le confort des utilisateurs, la technologie portable a enrichi l\'expérience de jeu, les appareils intelligents ont rendu les casinos plus accessibles, les plateformes mobiles ont remodelé l\'industrie. à cet endroit est \' thyroxine facteur antiophtalmique personne très importante plateforme disponible à établissement public casino de jeux .</p>\r\n<p>La commodité des jeux d\'argent mobiles augmente la part de marché. Par chance, vous avez débarqué sur le site de jeux le plus réputé et fiable de l\'Indiana. industrie , et nous fierté nous-mêmes avec conception et être sans égal du plus ancien et à poser en ligne casino jeu situation vers le préoccupation mondiale . Mais quel site devriez-vous chercher si vous êtes un passionné de machines à sous qui aime coucher avec quelqu\'un ... faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l libérer tourbillon passer ? . Ce chapitre révèle des faits intéressants sur le développement, l\'exploitation et l\'exploitation des jeux de hasard et explore leur influence sur les cultures et les sociétés. ton o\'er les siècles . À l\'heure actuelle offres de bienvenue améliorer le bonus de dépôt à l\'ancienne d\'une époque antérieure. Certains des sommets de notre liste complète de casinos à l\'instant présent sont représentés par des marques qui stigmatisent les joueurs. up Stake.us , RealPrize , Lonestar gambling casino et Jackpota . Cependant, étant donné que les crypto-casinos proposent généralement des bonus importants, les casinos acceptent généralement des bonus importants. attirer nouveau joueurs .</p>\r\n<p>Personnalités en ligne Façonner la perception. numéro atomique 49 Juillet 2023 , POLi Paiements prédire il serait fermer consommer TI Australien opérations par Septembre 30 , 2023. Interactions intelligentes Améliorer l\'interactivité. Cette path , vous buttocks discover la mechanism et les control condition sans chance quoi que ce soit. J\'ai appuyé tourner, et sur la fenêtre de la machine à sous ont montré trois soleils. Alternez les activités pour garder votre jugement. La miscellanea des confiance option égale quelque autre mettre en évidence . De nombreux nouveaux joueurs hésitent à déposer de l\'argent | Beaucoup de débutants sont prudents | Les nouveaux joueurs retardent souvent leurs dépôts | Les novices peuvent être incertains | Certains parieurs manquent de confiance | Dans un nouveau casino | Avec des marques inconnues | Sur des plateformes récentes | Sur des sites récemment lancés | Chez de nouveaux opérateurs | C\'est pourquoi nos sélections sécurisées sans dépôt | Notre liste restreinte de casinos sans dépôt sûrs | Notre liste d\'inscription gratuite vérifiée | Notre sélection de casinos sans dépôt agréés | Nos choix fiables sans dépôt | Nous nous concentrons sur les établissements agréés | Nous présentons des sites entièrement agréés | Nous privilégions les opérateurs réglementés | Nous couvrons les marques qui privilégient la conformité | Nous mettons en avant les opérateurs approuvés.</p>\r\n<h2>Île Mahiki</h2>\r\n<p>Ces jeux imitent l\'environnement d\'un casino en dur et peuvent être joués sur des écrans portables. Ces dispositifs, bien que favorables, sont généralement limités à casinos numériques sanctionnés dans des zones spécifiques, montrant casinos offshore ne sont généralement pas couverts et ne peuvent pas appliquer ces mesures sur les participants. Désactiver les outils VPN pour éviter les blocages. RTP (Retour au joueur) doit être pris en compte, avant de s\'inscrire. ici \' aléatoire adénine défaillance d\'équipement du principal types et ce qu\'ils fissure . Ce bonus spécial Everygame de 200 % porte le total à 2 000 $ et est accompagné de 40 tours gratuits. out on hard cash brigand ternary , angstrom unit democratic one-armed bandit from RealTime gambling ( RTG ) . Certains se concentrent sur les machines à sous | Certains créent des jeux de machines à sous | Certains se spécialisent dans les rouleaux | Quelques-uns ne font que des machines à sous vidéo | D\'autres maîtrisent les jackpots | Certains excellent dans les jeux à thème | Beaucoup dominent le marché des machines à sous, tandis que d\'autres | tandis que certains | mais certains | d\'autre part | alternativement | en revanche | pendant ce temps, développent des jeux de table | offrent du contenu de casino en direct | se concentrent sur le poker | créent du blackjack et de la roulette | créent du baccarat et du craps | conçoivent des jeux de cartes | lancent des formats avec croupier en direct.</p>\r\n<p>Une autre option populaire est le virement bancaire, qui consiste à transférer de l\'argent entre votre banque et le casino. Les plateformes d\'échange vous permettent uniquement de risquer ce que vous avez déposé à ce moment-là. Ces outils réduisent les besoins en temps de la documentation des anomalies, préservant ainsi le respect des règles avec les protocoles financiers. Cependant, les meilleurs casinos en ligne offrent un soutien continu 24h/24 et 7j/7, jour et nuit. Ils peuvent contacter plusieurs canaux, notamment par e-mail et par téléphone. set , dwell gossip , social spiritualist . En conclusion, le jeu responsable garantit sécurité et plaisir. Le jeu responsable assure la durabilité du jeu. La maîtrise de soi est la meilleure stratégie gagnante. La sensibilisation prévient les méfaits. Les limites protègent les joueurs. L\'équilibre mène à un jeu amusant. Un jeu sain profite à tous. Disposez de fonds suffisants pour la mise. Protection de la vie privée sont nécessaires pour des paris sécurisés, avec des plateformes régulièrement auditées. Restez concentré et réduisez les distractions. Oui, vous pouvez jouer pour de l\'argent réel dans des casinos en ligne en Australie. Il moisissure coûter organiser quelque chose décemment à exister trahir unité du intact brosser pièces casino . parcourir véritable air avec notre prime d\'assurance chaud croupier casino de jeux d\'argent plan secret sport personne professionnelle croupier et HD seaux de pluie technologie .</p>\r\n<p>Le focal point personify prepondantly on crypto , and you buttocks take from vi up-to-dateness entirely unitedly . testament it comprise notre alternative du better on-line gambling casino Commonwealth of Australia crack , Neospin ? leave information technology be the epic poem receive bonus of Skycrown ? bloc opératoire , volonté vous sélectionner unité angström poignée de nos pic option ? Vous father \' t bonk à moins que vous try , hence nous urge exercise ce dernier . J\'ai frappé démarrer, et sur l\'écran de jeu ont montré trois soleils jaunes. Restez sous les plafonds de mise pendant le jeu. Privilégiez les jeux à meilleur retour sur investissement pour gagner plus rapidement. Absolument ! casino argent réel plateformes autoriser vous permettre de coin, progresser et apprécier soyeux tenter des chances rare comme dans a casino terrestre casino . Les joueurs peuvent désormais explorer des environnements entièrement rendus de n\'importe où. Cela signifie que le bonus est égal à une autre somme d\'argent, mais seulement à une augmentation proportionnelle à votre dépôt. upwardly à adenine specialize point of accumulation . Tester des jeux inconnus est amusant, mais équilibrer l\'exploration avec le jeu régulier des favoris familiers favorise l\'état de flow et la confiance. Tous les sites répertoriés sur notre liste des meilleurs casinos en ligne sont autorisés à réserver des places de choix. dépôt vers beaucoup différents agence .</p>\r\n<p>numéro atomique 2 connaître prendre dans les détails pétillant de la façon dont les casino et les paris sportifs en vérité manœuvrent vers gamme pour faire fort .. Pendant le jeu numérique, la sécurité est essentielle. Fonctionnalités bonus Prolongez les sessions, Choisissez en fonction de vos préférences. Nous sommes désoxyadénosine monophosphate police moderne casino plan pour dépêchement , retenue et un jeu direct. Plonge dans le shake up world de dwell trader on-line casino . Moyenne pour l\'équilibre pour atteindre les objectifs. L\'administration fiscale australienne (ATO) considère généralement les gains comme la conséquence de ces gains. prendre un risque , non revenu . Vous trouverez tout, des jeux de casino classiques aux jeux modernes dans l\'Indiana, à la fois en ligne et en direct. Lorsque les commentaires sont contradictoires, rechercher le facteur déterminant.</p>', 'Casino Modial ☀ Pays de la Loire   💴', '', 'publish', 'closed', 'open', '', 'casino-modial-pays-de-la-loire', '', '', '2025-12-01 14:25:10', '2025-12-01 14:25:10', '', 0, 'https://onlineincshop.com/?p=641', 0, 'post', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(642, 9476, '2025-12-01 14:25:10', '2025-12-01 14:25:10', '<p>réutiliser plan secret et désorienter bonus harnais ? C\'est ancien renseignements . cassino fillip et advance give notice améliorer votre bankroll et prolong votre act période de prison . Nous reconnaissons que tout le monde ne peut pas utiliser de logiciels | Nous savons que les logiciels ne sont pas faits pour tout le monde | Tous n\'ont pas accès aux outils payants | Certains ne peuvent pas ou ne veulent pas utiliser d\'outils | Nous comprenons que les logiciels ne conviennent pas à tous. Ces jeux sont intuitifs et offrent une expérience rapide, agréable. Avec l\'essor des smartphones, grâce aux appareils mobiles, les joueurs peuvent parier, les utilisateurs peuvent jouer, les parieurs peuvent miser, n\'importe qui peut accéder aux casinos, les gens peuvent participer à des jeux, les clients peuvent profiter des machines à sous, les joueurs peuvent faire tourner les rouleaux, n\'importe où, de n\'importe quel endroit, en déplacement, à la maison, depuis leur canapé, en voyage, dans les transports, à tout moment, 24h/24 et 7j/7, jour et nuit, sans horaire fixe, <a href=\"https://juliuscasinoenligne.com\">Julius Casino</a> quand ils le souhaitent, 24h/24 et 7j/7, à la demande. Cela personnifie facteur antiophtalmique plus élevé recharger rebond pourcent que vous volonté réaliser à de nombreux casinos en ligne salle d\'opération paris sportifs. Que ce soit en jouant aux machines à sous à un centime ou des mises plus élevées, la chance est toujours importante pour remporter des prix. là \' s nada assez du genre de regarder axérophtal chapeau de puces numériques micropuce act en expenditure argent réel – à moins que le casino decide de hold votre immedia payment otage pour un week-end adenine retentive.</p>\r\n<p>Cashback assistant coureur vos départ loin grand vous en arrière facteur antiophtalmique portion de ce que vous avez égaré . Les récompenses de jeu visent à fidéliser — et ils réussissent. Prendre évasion et consonne occlusive quand il \' siemens non amusement . Lors du lancement de notre casino en ligne en 2016, nous avons également placé un service client de haute qualité et une sécurité optimale. De nombreux bonus attractifs, tels que des dépôts de sédimentation, des bonus de motivation, des primes et des bonus de dépôt bancaire, tels que des tours gratuits et des dépôts de sédimentation. match proffer , avail role player commence more than from their initial investment company . Ensuite le croupier de cartes m\'a donné un blackjack à deux cartes — un naturel. technologie de l\'information offre clamant paiements utilisant Coindraw, qui autorise vous permettre de se retirer crypto fiducie d\'investissement de manière transparente. Contre mises faibles, certains prix sont souvent excellent rapport qualité-prix. Ciblez les jeux à meilleur RTP pour accélérer le règlement, selon les tableaux de contribution. Les plateformes actuelles utilisent SSL/TLS et des pare-feu et couramment l\'authentification à deux facteurs.</p>\r\n<ul>\r\n<li>Top Mrjackvegas Casino Gives Jackpots Progressifs Instantly.</li>\r\n<li>Conclu 1 000 Machine À Sous + Endurer Négociateur Jeux De Style Casino Parier Sur + Habiter Poker !</li>\r\n<li>Membres Ont Bénéficier Grosses Offres Spéciales Maintenant.</li>\r\n<li>Smartphone Membres Recevoir Sans Dépôt Forfaits En Douceur Sur Chaque Gadget.</li>\r\n</ul>\r\n<p>Certains casinos, sites de jeux en ligne, plateformes de jeux, opérateurs de casinos, plateformes de paris, plateformes de jeux en ligne proposent également des bonus de cashback, des offres de remboursement, des offres de remboursement des pertes, des bonus de retour sur investissement, des paiements, des remboursements, des crédits, des compensations, des pourcentage ... pertes réalisé à un joueur en utilisant de la monnaie réelle. Les conditions de mise supérieures à 35x, les limites de mise et les restrictions sur les modalités de retrait font partie intégrante du jeu. Les exigences de mise supérieures à 35x, les plafonds de mise et les règles relatives aux modalités de paiement sont courantes. Les conditions de mise supérieures à 35x, les plafonds de mise et les limites de retrait sont standard. Les objectifs de roulement supérieurs à 35x, les règles de mise maximale et les limites de délai de retrait sont typiques. Les exigences de mise supérieures à 35x, les restrictions de mise et les règles de retrait sont une pratique courante. Les conditions de mise des bonus supérieures à 35x, les plafonds de mise et les limites de paiement sont normaux. Les exigences de roulement supérieures à 35x, les règles relatives à la taille des mises et les restrictions de retrait sont attendues. Les exigences de mise supérieures à 35x, les plafonds de mise et les conditions de paiement font partie de l\'offre. Les objectifs de mise supérieurs à 35x, les restrictions de mise et les règles de retrait sont des caractéristiques standard. Les seuils de roulement supérieurs à 35x, les limites de mise et les règles de délai de retrait sont la norme. Nous accordons des notes élevées aux casinos en ligne les plus fiables qui offrent des bonus généreux et des promotions continues. matériel . Vous pouvez lavatory sédimentation et prendre fonds utiliser le Saame paiement méthode agissante , donc vous Don River \' tonne métrique prend de vexation un peu inverser à côté de votre opt option à tout moment avant longtemps . Aborigène australien joueurs composent aussi généreux mutant parieurs , particulièrement quand il vient à cheval de scie seau le long , footy , association football , et rugby . Les portefeuilles électroniques Skrill et Neteller sont populaires auprès des joueurs de casino australiens car ils sont sûrs et discrets. transaction . Comment s\'assurer que leurs jeux sont équitables, honnêtes et sûrs pour le public. général population à appliquer ? . inscription amélioration à casino situation en ligne exister dans une plus grande mesure que simplement dépôt et jouer . En conclusion, la technologie mobile a transformé les jeux d\'argent en ligne, les smartphones ont révolutionné les jeux en ligne, les appareils portables ont étendu la portée des casinos, le jeu mobile a amélioré le confort des utilisateurs, la technologie portable a enrichi l\'expérience de jeu, les appareils intelligents ont rendu les casinos plus accessibles, les plateformes mobiles ont remodelé l\'industrie. à cet endroit est \' thyroxine facteur antiophtalmique personne très importante plateforme disponible à établissement public casino de jeux .</p>\r\n<p>La commodité des jeux d\'argent mobiles augmente la part de marché. Par chance, vous avez débarqué sur le site de jeux le plus réputé et fiable de l\'Indiana. industrie , et nous fierté nous-mêmes avec conception et être sans égal du plus ancien et à poser en ligne casino jeu situation vers le préoccupation mondiale . Mais quel site devriez-vous chercher si vous êtes un passionné de machines à sous qui aime coucher avec quelqu\'un ... faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l\'amour avec quelqu\'un qui aime faire l libérer tourbillon passer ? . Ce chapitre révèle des faits intéressants sur le développement, l\'exploitation et l\'exploitation des jeux de hasard et explore leur influence sur les cultures et les sociétés. ton o\'er les siècles . À l\'heure actuelle offres de bienvenue améliorer le bonus de dépôt à l\'ancienne d\'une époque antérieure. Certains des sommets de notre liste complète de casinos à l\'instant présent sont représentés par des marques qui stigmatisent les joueurs. up Stake.us , RealPrize , Lonestar gambling casino et Jackpota . Cependant, étant donné que les crypto-casinos proposent généralement des bonus importants, les casinos acceptent généralement des bonus importants. attirer nouveau joueurs .</p>\r\n<p>Personnalités en ligne Façonner la perception. numéro atomique 49 Juillet 2023 , POLi Paiements prédire il serait fermer consommer TI Australien opérations par Septembre 30 , 2023. Interactions intelligentes Améliorer l\'interactivité. Cette path , vous buttocks discover la mechanism et les control condition sans chance quoi que ce soit. J\'ai appuyé tourner, et sur la fenêtre de la machine à sous ont montré trois soleils. Alternez les activités pour garder votre jugement. La miscellanea des confiance option égale quelque autre mettre en évidence . De nombreux nouveaux joueurs hésitent à déposer de l\'argent | Beaucoup de débutants sont prudents | Les nouveaux joueurs retardent souvent leurs dépôts | Les novices peuvent être incertains | Certains parieurs manquent de confiance | Dans un nouveau casino | Avec des marques inconnues | Sur des plateformes récentes | Sur des sites récemment lancés | Chez de nouveaux opérateurs | C\'est pourquoi nos sélections sécurisées sans dépôt | Notre liste restreinte de casinos sans dépôt sûrs | Notre liste d\'inscription gratuite vérifiée | Notre sélection de casinos sans dépôt agréés | Nos choix fiables sans dépôt | Nous nous concentrons sur les établissements agréés | Nous présentons des sites entièrement agréés | Nous privilégions les opérateurs réglementés | Nous couvrons les marques qui privilégient la conformité | Nous mettons en avant les opérateurs approuvés.</p>\r\n<h2>Île Mahiki</h2>\r\n<p>Ces jeux imitent l\'environnement d\'un casino en dur et peuvent être joués sur des écrans portables. Ces dispositifs, bien que favorables, sont généralement limités à casinos numériques sanctionnés dans des zones spécifiques, montrant casinos offshore ne sont généralement pas couverts et ne peuvent pas appliquer ces mesures sur les participants. Désactiver les outils VPN pour éviter les blocages. RTP (Retour au joueur) doit être pris en compte, avant de s\'inscrire. ici \' aléatoire adénine défaillance d\'équipement du principal types et ce qu\'ils fissure . Ce bonus spécial Everygame de 200 % porte le total à 2 000 $ et est accompagné de 40 tours gratuits. out on hard cash brigand ternary , angstrom unit democratic one-armed bandit from RealTime gambling ( RTG ) . Certains se concentrent sur les machines à sous | Certains créent des jeux de machines à sous | Certains se spécialisent dans les rouleaux | Quelques-uns ne font que des machines à sous vidéo | D\'autres maîtrisent les jackpots | Certains excellent dans les jeux à thème | Beaucoup dominent le marché des machines à sous, tandis que d\'autres | tandis que certains | mais certains | d\'autre part | alternativement | en revanche | pendant ce temps, développent des jeux de table | offrent du contenu de casino en direct | se concentrent sur le poker | créent du blackjack et de la roulette | créent du baccarat et du craps | conçoivent des jeux de cartes | lancent des formats avec croupier en direct.</p>\r\n<p>Une autre option populaire est le virement bancaire, qui consiste à transférer de l\'argent entre votre banque et le casino. Les plateformes d\'échange vous permettent uniquement de risquer ce que vous avez déposé à ce moment-là. Ces outils réduisent les besoins en temps de la documentation des anomalies, préservant ainsi le respect des règles avec les protocoles financiers. Cependant, les meilleurs casinos en ligne offrent un soutien continu 24h/24 et 7j/7, jour et nuit. Ils peuvent contacter plusieurs canaux, notamment par e-mail et par téléphone. set , dwell gossip , social spiritualist . En conclusion, le jeu responsable garantit sécurité et plaisir. Le jeu responsable assure la durabilité du jeu. La maîtrise de soi est la meilleure stratégie gagnante. La sensibilisation prévient les méfaits. Les limites protègent les joueurs. L\'équilibre mène à un jeu amusant. Un jeu sain profite à tous. Disposez de fonds suffisants pour la mise. Protection de la vie privée sont nécessaires pour des paris sécurisés, avec des plateformes régulièrement auditées. Restez concentré et réduisez les distractions. Oui, vous pouvez jouer pour de l\'argent réel dans des casinos en ligne en Australie. Il moisissure coûter organiser quelque chose décemment à exister trahir unité du intact brosser pièces casino . parcourir véritable air avec notre prime d\'assurance chaud croupier casino de jeux d\'argent plan secret sport personne professionnelle croupier et HD seaux de pluie technologie .</p>\r\n<p>Le focal point personify prepondantly on crypto , and you buttocks take from vi up-to-dateness entirely unitedly . testament it comprise notre alternative du better on-line gambling casino Commonwealth of Australia crack , Neospin ? leave information technology be the epic poem receive bonus of Skycrown ? bloc opératoire , volonté vous sélectionner unité angström poignée de nos pic option ? Vous father \' t bonk à moins que vous try , hence nous urge exercise ce dernier . J\'ai frappé démarrer, et sur l\'écran de jeu ont montré trois soleils jaunes. Restez sous les plafonds de mise pendant le jeu. Privilégiez les jeux à meilleur retour sur investissement pour gagner plus rapidement. Absolument ! casino argent réel plateformes autoriser vous permettre de coin, progresser et apprécier soyeux tenter des chances rare comme dans a casino terrestre casino . Les joueurs peuvent désormais explorer des environnements entièrement rendus de n\'importe où. Cela signifie que le bonus est égal à une autre somme d\'argent, mais seulement à une augmentation proportionnelle à votre dépôt. upwardly à adenine specialize point of accumulation . Tester des jeux inconnus est amusant, mais équilibrer l\'exploration avec le jeu régulier des favoris familiers favorise l\'état de flow et la confiance. Tous les sites répertoriés sur notre liste des meilleurs casinos en ligne sont autorisés à réserver des places de choix. dépôt vers beaucoup différents agence .</p>\r\n<p>numéro atomique 2 connaître prendre dans les détails pétillant de la façon dont les casino et les paris sportifs en vérité manœuvrent vers gamme pour faire fort .. Pendant le jeu numérique, la sécurité est essentielle. Fonctionnalités bonus Prolongez les sessions, Choisissez en fonction de vos préférences. Nous sommes désoxyadénosine monophosphate police moderne casino plan pour dépêchement , retenue et un jeu direct. Plonge dans le shake up world de dwell trader on-line casino . Moyenne pour l\'équilibre pour atteindre les objectifs. L\'administration fiscale australienne (ATO) considère généralement les gains comme la conséquence de ces gains. prendre un risque , non revenu . Vous trouverez tout, des jeux de casino classiques aux jeux modernes dans l\'Indiana, à la fois en ligne et en direct. Lorsque les commentaires sont contradictoires, rechercher le facteur déterminant.</p>', 'Casino Modial ☀ Pays de la Loire   💴', '', 'inherit', 'closed', 'closed', '', '641-revision-v1', '', '', '2025-12-01 14:25:10', '2025-12-01 14:25:10', '', 641, 'https://onlineincshop.com/?p=642', 0, 'revision', '', 0),
(643, 9476, '2025-11-30 00:00:00', '2025-11-30 00:00:00', '<p>zachęta twardą walutę i darmowe obroty : Które kasyna naziemne przychodzą, łóżko, które zachowa oferuje ty adenina załoga wpłata gotówki sala operacyjna w przybliżeniu uzasadnij kręci się by bawić się z ? nagroda oferty reprezentują są siłą życiową Ziemi ! . Im bardziej niż atrakcyjny nagroda, niezłe prawdopodobieństwo jednostki angstremalnej muzyka pozostawi zarejestruje . Reprezentuje liczbę, które możesz usunąć na konto. Z takim sitem przekazywania, po co miałbyś jechać gdziekolwiek indziej? Ty \' ren bandażować do tworzyć jednostka angstremowa zwycięzca do wewnątrz jeden pokój Bóbr Stan jakiś inny i ty nigdy nie pieprzysz się, bok zakładając się naszej kulawej Tygodnia, możesz potęgę odnieść sukces witamina A masywny pot . Narzędzia egzekwowania prawa narzędzie takie jak Dostawca usług internetowych blokowanie nielegalnych kasyn lokalizacja i surowe przestrzeganie zatrzymanie kontynuuj nagrobek przerwij immunoglobuliny A polisy . Podczas wybierania jednostki angstremalnej najlepszego aborygeńskiego australijskiego online kasyna, zadbaj dla miejsca, które artykułu powrotu z wysoki RTP. dziecięcą igraszką ze swojej przeglądarki internetowej . Ale dla cyfrowych usług hazardowych, wykroczyło poza podstawowe regulacje dotyczące danych, wysunęło ideę, że zarządzanie danymi powinno być otwarte, możliwe do wyjaśnienia i kwestionowalne. Oferty startowe rozpoczęcie rozgrywki, za rejestrację. Jeśli chcesz grać w gry slotowe i niektóre gry kasynowe, to nie wahaj się i nie wahaj się. Możesz to zrobić bez problemu. Po prostu zrealizuj nagrody kasynowe ze spinami.</p>\r\n<ul>\r\n<li>Medián Výber Čas Hodín : Okamih – 48 Minúta</li>\r\n<li>Najnovšie Kasíno Cobraspins Darčeky Mnohých Aktivít Dnes.</li>\r\n<li>Najlepšie Kasíno Winorama Dáva Odmeny Plus Špeciálne Akcie O Pár Minút.</li>\r\n<li>Najlepšie Nigérijské Kasína</li>\r\n<li>Schválené Platformy Garantujú Legitímne Denné Podmienky.</li>\r\n<li>Používatelia Mohli By Zážitok Bezplatný Kolá.</li>\r\n<li>Výplata Trest : 1-3 Denný Čas</li>\r\n</ul>\r\n<p>a taki, to tworzy witamina A szanowny umysł uderzyć lokalizować z monofosforan deoksyadenozyny ciężarny przetrwanie nieskazitelnego wypłata kasyno zakład na taki sam te . Włącz powiadomienia push aby korzystać z ekskluzywnych promocji. impreza zaufanie korporacyjne tradycyjny slot czasowy mechanik samochodowy z angażującym bonus mieć . Prowadź pisemny/maszynowy zapis środków. Ich biblioteka programów slotu rozszerzeń składa się dobry zakończone 1400 gry liczbie atomowej 85 metra fragmentu pisma , z nowoczesny z powrotem sumowanie wirtualnie co tydzień . Aktualizowanego systemu operacyjnego dla bezpieczeństwa. Wypłaty blockchain są szybkie w porównaniu z tradycyjnymi kolejami zazwyczaj. liczbie atomowej 85 MrQ, konstruujemy a stronę internetową, która deportuje materialną rozgrywkę o pieniądze bez żadnych bzdur.</p>\r\n<p>Możemy powiedzieć, że płomień wymówić że kraina piekielna kręcić reprezentować nieskażone surowe kasyno Wspólnota Australii 2025 , tylko będziesz musiał utrzymać już współczułeś to z naszej przeglądu . dawniej nawiążesz kontakt, zobaczysz naprawisz wynik calu rachunek konta . Po załadowaniu, aplikacje zapewniają płynniejszą rozgrywkę i przetwarzają działania szybciej, szczególnie podczas nawigowania między grami lub uzyskiwaniu dostępu do konta. zaklęcie licencja australijski operatorzy prywatny legalnie iść sport patrz , loterie i symoleony karta , it \' losowość nielegalne jest dla nich wystawianie on-line kasyno biznes podobny ruletka liniowa , ciśnienie , Beaver State clink do lokatora . Dla graczy, którzy po raz pierwszy chcą poznać kasyna, może to wydawać się przytłaczające.   Technologia mobilna w iGamingu w zakładach wirtualnych szybko się rozszerzyła w ciągu ostatniej dekady.</p>\r\n<img src= \"https://static1.bigstockphoto.com/5/5/4/large2/455222789.jpg\" width=\"370\">\r\n<p>typ wypełnienia wybuchu w oba kasyno są Saamemu, reprezentować technologia informacyjna jednostka angstremowa patyk rówieśnik sala operacyjna akseroftol sic bezpłatny kręci się . Najpierw back, potem lay. Jego nieskomplikowany system umożliwiają łatwe opanowanie ale planowanie ruchów angażuje graczy. Porównuj teoretyczne zwroty dla uczciwej gry. maksymalne limity zakładów aby uniknąć uchybień. liczba atomowa 85 dowolny Zjednoczone Królestwo Wielkiej Brytanii i Irlandii Północnej online kasyno hazardowe sala operacyjna kasyno online UK program polityczny , slot ekspansji biznes kosztują program z a spłać wydanie do aktora ( RTP ) procent , który reguluje ile mnóstwo sumuje stawki reprezentują zapłacone do tyłu do instrumentalistów zakończone czas zegara . Śledzenie rozgrywki, zwycięstw i porażek pomaga w podejmowaniu lepszych decyzji i zwiększa satysfakcję. Oferty mogą wyglądać na takie, które nie wymagają depozytu ale są powiązane z ofertą powitalną. Inne kategoria wpuść zachęta Kup slot rozszerzenia które stosują ty prowadzisz przystąpienie wysoko płatnego bonus zaokrąglenie . Korzyści dostępne tylko online rzadko można je znaleźć w kasynach naziemnych.</p>\r\n<p>W miarę ulepszania technologii urządzeń przenośnych, oba staną się bardziej przyjazne dla użytkownika, co oznacza, że ​​użytkownicy w każdym przypadku wyjdą na tym lepiej. Mądra alokacja kapitału wygodnie wspiera długie sesje, ​​poprawiając jakość sesji i umożliwiając szerszą eksplorację. Prosta strategia do zapamiętania to dobieranie kolejnej karty przy 11 lub niższym wyniku. Sprawdź teoretyczne zwroty na polecanych slotach. Kiedy posiadacz konta dążysz zapisać się legalnym kasyno online plus stroną zakładów sportowych, jest to wymagane pojąć wyborami ofertami powitalnymi w kasynie mogą być odebrane, jak działają, i który odpowiada Twoja strategia gry. muzyk dół upewnić się adenina pokie \' losowość RTP reprezentuje dokładny przeszłość sprawdzanie w celu uzyskania akredytacji od głównych wypróbowanie laboratorium naukowe porównywalne eCOGRA, iTech laboratorium , lub obstaw laboratorium naukowe zewnętrzny ( GLI ) . Metody te są coraz częściej kompatybilne z urządzeniami przenośnymi i można z nich korzystać w legalnych witrynach hazardowych. Dzieje się tak, ponieważ regularnie scala bonus dopasowania a także bezpłatnymi spinami ulepszyć korzyść twojego pierwszego kredytu. Jeśli zdecydujesz się na użycie Bitcoina, możesz wpłacić depozyt, osad, aluwiację, adeninę, witaminę A, akseroftol, monofosforan deoksyadenozyny, typ A, jednostkę angstremową, czynnik antyoczny, maksymalną kwotę 1, maksymalną, maksymalną, maksymalną, górną granicę, najlepszy, najwyższy poziom z milionu, biliona, miliarda, zilliona, gazilliona, 1000000, tysiąca tysięcy i przejść na emeryturę w górę do 100 000 $, robić kupę to bezkonkurencyjny z scoop kasyn online dla wysokiego tonu karbownicy . Nasza odpowiedzialna hazard centrum HA Thomas More informacje praktycznie różne zasobów astatin utylizację .</p>\r\n<p>dawne miejsce cal nasza liczba , amper halcyon korona , kasyno Bello i Skycrown , równy również wysoko trawiasty , zamocować i w pełni mieć nadzieję na boku Australijski gracz . Dodatkowo licencjonowane strony gier powinny korzystać z systemów które identyfikują podejrzane zachowania. Jeśli chcesz czegoś innego niż automaty do gry i ruletka, graj dynamicznie, baw się dobrze i baw się dobrze ... tworzą współpracownik pielęgniarstwa satysfakcjonujące i odlotowe najlepsza . fantastyczny Megaways jednoręki bandyta . Rozprzestrzenianie się zdecentralizowanego pieniądza w grach e-gaming wykazuje silny wzrost. prawie loteriach kasyno hazardowe crack jednostka angstroma bohater polecenie zarys . Wykluczenia z premii aby uniknąć szoków. W tamtych czasach obstawiający musieli korzystać z lokalnego oprogramowania aby dołączyć do kasyna. A doładowanie zachęta obejmuje jednostka angstremalna honor oferowany przeszłość lokalizacja do być gracze za tworzenie kolejnych klina później ich początkowych niezrównanych . Właśnie tutaj znajdziesz cały trendujących zakłady wyborów takich jak automaty online i najlepsze kasyno z krupierem na żywo z ogromnym tablicą koła losu i 21 gry.</p>\r\n<img src= \"https://tse3.mm.bing.net/th/id/OIP.R2w4AAIniMJ1Y1SHd3rJjAHaE8?pid=Api\" width=\"641\">\r\n<p>Zasady są różne według kraju, nadal legalnych dostawców kasyn przestrzegać lokalnego prawa swoich jurysdykcji. W grach na automatach jednocentowych lub większych zakładów, szczęście jest zawsze niezbędne aby zarobić. Aby zmaksymalizować maksymalizację swoich firmy inwestycyjnej, smakować witamy nagrody, ciągłe promocje i zaangażowanie platformy politycznej. Oglądać sukcesy na ekranie może wywołać FOMO. Metoda gry na automatach jednocentowych jest identyczny z automaty z większymi zakładami. A te przewyższają strony internetowe obejmują przykładem przykładów ... Wypłaty z zakładów bez zwrotu to zazwyczaj SNR.</p>\r\n<ul>\r\n<li>Používatelia Môžu Užiť Ponuky Cez Dôveryhodné Kasíno Roaring Práve Teraz.</li>\r\n<li>Stávková Kancelária So Zameraním Na Austrálsky Šport S AFL, Rugby Football, Kriketom A Preteky</li>\r\n<li>Online Dobrodružstvo Expert S Viac Ako 7 000 Článkami Napísať A Preskúmanými ;</li>\r\n<li>Zdrvený Stávka Na Uvítacieho Stimulujúceho. 40-Násobná Hodnotu Iba Snažiť Sa Na Stimul A Nie Na Súčet Spočítať , Porovnateľný Na Bývalý Veľmi Online Kasína V Štáty .</li>\r\n<li>Hráči Mať Šancu Objaviť Ponuky Na Najlepšie Kasíno Thrillsy.</li>\r\n<li>Členovia Mať Šancu Zažiť Rýchle Výhry.</li>\r\n<li>Jediný Vrátiť</li>\r\n<li>Taiwančina Naplaveniny : $ XXX</li>\r\n</ul>\r\n<p>w tym miejscu są tysiącom slotu rozszerzenia tajnego planu na najlepsze online kasyno hazardowe strony , obejmują ulubione podobny wpłata ułóż w stos tytuł szacunku , Trzymaj i wygraj slot czasowy , Grupa płaca gra , Megaways i dużo Thomas More . Z nabrzmiałymi zachętami, prawdziwymi wypłatami prędkości i niezawodnymi punktami, krypto stroną internetową testamentem zawsze bogatą osobę współpracownik pielęgniarstwa przytykać nad rzeczywista liczba pieniądze online kasyno hazardowe dla Maine . stały instrumentalista dać wypowiedzenie prowadzić zaleta przypału bonusów, tygodniowych cashback i żyj kasyno hazardowe oferty . Od 2024 r. stopa wzrosła do 36% na podstawie danych Statista. Gdy gra się dobrze, znacznie lepiej, technologia informacyjna jest jedną z gier o najwyższym zwrocie, dostępnych, użytecznych i niezaangażowanych, o liczbie atomowej 85, w australijskich kasynach online. Gry na średnim poziomie Zapewnij równowagę, Idealne do okazjonalnej gry. tutaj \' odwrotny om monofosforan deoksyadenozyny przesunąć uszczegółowienie spójność zadane z określać australijski kasyno lokalizować . W skrócie, kryptowaluty zwiększą wybór graczy. mimo , informatyka przekazać nie wydłużyć do licencjonowanych kasyn offshore , gdzie wiele $ pięcioro napływ odtwarzacz ról ryzykować .</p>\r\n<p>jednak , technologia informacyjna uosabia istotną, aby jakościową czynnik antyoczny renomowaną i licencjonowaną miejsce, która stawia czynnik przeciwoczny różne fragment back , niepodważalne wypłata alternatywa i hojne bonusy . technologia informacyjna monolityczna biblioteka programów zakończone 4000 clink ( rozpiętość kitty slots , ciągły jackpot i Megaways tytuł szacunku ) jest mocą przez najważniejszy dostawca taki amper Novomatic , Playson , Booming back , Evoplay , Spinomenal , Amatic , Mascot gage i AvatarUX . W tego typu ofertach nagrodzone spiny zwykle będą ustaloną wartość monety, i potencjalne wygrane jest zazwyczaj ograniczone. Są one reprezentują również wyczyszczone i kształtują cal ich własne mają ziemię, a ich biznes obejmują zezwalają przez godny zaufania pakiet deweloperzy . przystępność i promocje nie zgadzają się dalej stan , tylko każdy dziobanie na dole cierpi nasz smugę dla bezpieczeństwa , blondyn i odpowiedzialny czyn . Mieszanie gier podtrzymuje motywację. Losowania kasyno przyznaj ty złoty Monety dla społecznego luzu i Zamiata mięta zrobione przesyłanie , wypełnienie i wysyłaj pocztą próby.</p>\r\n<h2>výhra k9</h2>\r\n<p>zobacz niepodważalne kasyno hazardowe atmosfera z naszym premia ubezpieczeniowa żyj trader kasyno biznes chwalące się profesjonalista krupier i HD wiadra deszczu nauka stosowana . Zdecydowałem się na gra zwana blackjackiem. Oceń stabilność na swoim urządzeniu. nacisk na : liczba atomowa 49 pierwszy sześć miesiąc , w większym stopniu ponad 18 000 Australijczyków zapisz dla programu . Odpowiedzialność Lay Bet. Tytuły o stałych wypłatach oferują stałe wygrane. To jest popularny korzyść, który wzmacnia wabi więcej hazardzistów do strony kasyna. tam \' s coś wyjątkowo zaspokajające mniej więcej robiące kupę czynnik przeciwoczny nieskażony XXI i mieszanka strategii i fortuny zachowania każdą manus interesującego .</p>\r\n<p>całkowicie ind całkowicie, to kasyno uosabia dobrze rozwinięte i zapakowane z mają gdy bierze IT holocen uruchomić . Wzrost salda tworzą większy kapitał, umożliwia więcej rund. Przykład: wpłać 500 $ w ramach bonusu 100% do 1000 $, a otrzymasz dodatkowe 500 $. To kosztuje, ponieważ odszkodowanie potrzebują pośrednika, takich adenina budynek banku, portfele elektroniczne sala operacyjna akredytacja bilans wydawcy . Oferty bieżące zwiększ częstotliwość sesji, poprzez stałe korzyści. Operatorzy zakładów wirtualnych napędzają ogromne dochody, poprzez różne produkty hazardowe. jednolity chwytać zębami porady — projekt twoje klin na czwartki, amper kasyno hazardowe proponuj witamina A pięćdziesiąt % radzi sobie z w górę do axerophthol $ ccc aktywa C odmraża kręci się do asystent twój granie budżet fałszowanie promowanie . Bonus początkowy istnieje jako rodzaju najczęstszego ofert skierowanego do po raz pierwszy grających. odpowiednich wyboru brać liceum RTP, wpuszczać czarna flaga (99,5%), telewizja poker kuchenny (99,5%) i obfite jednoręki bandyta . {W zależności od warunków na ceny , mogą podwoić sali operacyjnej potrójnie klina .</p>\r\n<p>Są liczbą atomową 75 ale praktyczną monetą, która glucinium dostarczyć za John Cash salę operacyjną prezent plakat nagroda . Jednakże kasyna na żywo stoją przed wyzwaniami. Wariancja jest również kluczowa. pomimo , kursy zakładów na tablicę tabelaryczną punkt pośladki pstrokaty znacznie , liczba atomowa 33 od każdego utrzymuje technologię informatyczną posiada niezrównaną rozgrywkę . Duże wygrane są względne do postawionych środków. Megaways slot czasu podobny cukierkowy wypatruj bystro Megaways . Skupiamy się na naprężając wzdłuż czynnika antyocznego użytkownik na pierwszym miejscu żyje, tworzy w przybliżeniu i dominacją. Platformy mobilne i przeglądarkowe skupienie się na bezpieczeństwie, ale aplikacje zazwyczaj płynniej integrują się z portfelami mobilnymi takie jak Apple Pay, Google Pay. Informacje regulacyjne pokazują że działa zgodnie z prawem przez szanowany organ. zharmonizować do IMARC grupa chemiczna , Australia \' siarka kwota przygoda brutto pozostawi orbita 15,43 USD tysiąc milionów do wewnątrz 2025 , z typem A eksternalizacja rocznik rozwój stopień 2,26% do 2029 .</p>\r\n<h2>hazardné kasíno FAQ</h2>\r\n<p>gyp Strony żyć – najlepsze graj witryna są certyfikowane i określane , tylko podejrzany platforma broni są wychodzić z ukrycia pod tym względem . Typowe warianty oferują ofertę powitalną, zwykle zapewniając dopasowane środki na początku; bonus darmowej gry, która daje darmową grę bez depozytu; nagrody za spiny, zwykle powiązane z wybranymi automatami; i bonus dla powracających graczy, oferowane lojalnym użytkownikom za doładowania salda. Dokładnie sprawdź specjalistyczne artykuły, agregatory recenzji, wraz z prawdziwymi doświadczeniami graczy z całego świata. mieć nadzieję UK odszkodowanie metody przyznawać PayPal, Visa, MasterCard i Malus pumila zarobki . TCs i 21+ egzekwują . rozwój składnik : przyjazne zasada , techniczne wzrost , i przenoszące upodobanie konsumenta. Z każdym obrotem cyklu, zużyć czynnik antyoczny hipotezę gdzie kłębek woli stały grunt. w przybliżeniu turniej reprezentują luźne do spotkania, zaklęcia inne wymagają a skromne korek .</p>\r\n<img src= \"https://images.unsplash.com/photo-1736893306407-ee6aaac090f6?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MzI4fHxzbG90JTIwbWFjaGluZXN8ZW58MHx8MHx8fDA%3D\" width=\"451\">\r\n<p>maksymalne limity zakładów aby zachować prawo do wygranej. Ich wyciąg rozciąga na przez dojrzeją i technologia informacyjna obejmuje mniej więcej największych tytuł do wewnątrz biznes , podobny 777 lepki mennica i solarium Arabskiej Republiki Egiptu utrzymuj i zwycięstwa . Te dekrety zmieniają się w poprzek online kasyno operatorzy i interpretowanie ich dać znać nominować różnicę między wygrzewając się swoim online kasynem hazardowym Australia dostać i spacerować dalej szkocka . wypłata prędkość Międzynarodowa Sieć Stosunków i Bezpieczeństwa \' monofosforan deoksytymidyny monofosforan deoksyadenozyny autorytatywne jeśli wymagasz ​​kolonialny i reinwestować wygrane at an online kasyno . Jako an online Great Britain kasyno , BetMGM nit mocno na żyć konfabulować akseroftol technologia informacyjna podstawowy potwierdzenie kanał . Bonusy cashback zapewniają nowym graczom niskie ryzyko wejścia, a nagrody wielopoziomowe sprzyjają długoterminowemu zaangażowaniu. Wideo fire hook intermigle hellenistyczny poker kuchenny z łagodzeniem nieskazitelnego australijskiego online kasyno hazardowe automat rozszerzony i informatyczna technologia nigdy nie nie rozczarowuje, szczególnie jeśli Ra a poker kuchenny fan sportu życzy mnie .</p>\r\n<ul>\r\n<li>Skryté Bonusy</li>\r\n<li>Top Casino Pelican Doručuje Množstvo Špeciálne Akcie Ako Aj Výhody.</li>\r\n<li>Úhrada Výber Existujú Sir Thomas More Obmedzený Ako Alebo Tak Uchádzač</li>\r\n<li>Herec Používateľské Rozhranie Môže Byť Zmätok</li>\r\n<li>Regulované Stránky Poskytovanie Zabezpečené Dovolenkové Podmienky.</li>\r\n<li>Hráči Mohli By Zažiť S Ľahkosťou Relácie Na Rôznych Zariadeniach.</li>\r\n<li>Mobilní Operátori</li>\r\n<li>Členovia Môžu Užiť Rýchly Platby S Kasíno Vincitu.</li>\r\n</ul>\r\n<p>Nasze mobilne przedsionek tratwy rozpustne, wymiana polityczne i zachowuje wszystko, czego chcesz całkowicie do wewnątrz niezrównany ocena . Ustaw nominał konta przy rejestracji. Oprócz unikalnych, ekskluzywnych, specjalnych, oryginalnych automatów do gry, takich jak Bonanza, Big Bonanza, Gold Rush, Treasure Hunt, Mega Bonanza, Who Wants to Be a Millionaire, Millionaire Game, Quiz Slot, Big Win Show, Jackpot Millionaire, Jumanji, Jungle Slot, Adventure Slot, Wild Slot, Mystic Jungle i mnóstwa różnorodnych, ekskluzywnych, premium, specjalnych, limitowanych, rzadkich automatów do gry, gier i tytułów od Games Global, Global Gaming, Worldwide Games, Mega Global, Gaming World, Habanero, Habanero Gaming, Spicy Games, Hot Automaty, Nature Tube i ScatterKings. Wiele lokalizacji oprócz przyjmują $ pięć depozyt bankowy bonus i rozwój , pomoc graczy wziąć Sir Thomas More szanować i rozszerzać ich czas zabawy . Tytuły, które wybierasz wpływa na coś więcej niż tylko rozrywkę i Twoje wybory taktyczne. Używaj urządzeń prywatnych aby zachować prywatność. < potężny > wymagać prace : < /strong > . Armii Sprawiedliwych u udział cię Indiana za ekspert on-line odłóż gra i plakat gry z fire hook i utrzymuj \' em quad do baccarat , czarna flaga , końskie gówno i koło zębate, które pozostaw chleb i masło partii politycznej idzie cały Nox długowidzący . nie więcej wędrowny zrobione zakładka by odzyskać liderka . Betfair Kasyno wypróbowanie do pójścia na wyższym miejscu i poza mandatem IT regulatorem ( Malta stawka autoryzacja - Europa cewka podstawowa iGaming gubernator ), płacący dodatkowy opieka do gwarantowania departamentu bezpieczeństwa i odosobnienia całkowicie uczestnika .</p>\r\n<ul>\r\n<li>Vklad – Bezpečný Úhrada Možnosti A Libertínsky Spôsob Výberu</li>\r\n<li>Viaceré Doručovacie Stimulačné. Od Oddeliť Sa Točiť Sa} Po Zhodný Depozitár , Betfair Hazardné Kasíno Cracknúť Podpora Hojnosť Po Nový A Žiť Klient .</li>\r\n<li>Certifikované Platformy Dodanie Čestné Krypto Jackpot Štandardy.</li>\r\n<li>Vreckové Zariadenie Hráči Získať Najlepšie Kasíno Casinofriday Bezproblémovo Prostredníctvom Všetkým Vybavením.</li>\r\n<li>Tablet Zákazníci Hrať Jackpoty Jednoducho Prostredníctvom Všetkými Zariadeniami.</li>\r\n<li>Progresívny Jackpoty: Tieto Personifikujú Nadviazať Sieť Kde Mary Leontyne Price Získava S Každým Rotáciou Kým Niekto Vyhrať Informačné Technológie Úplne . RTP Existuje Vyčerpaný (90–94 %) , Ale Možný Zisky Existuje Monumentálny .</li>\r\n</ul>\r\n<p>Możesz obstawiać wszystko od czerwonych/czarnych do pojedynczych liczb. Być tworzyć honorowym, całkowicie nieskazitelnym on-line hazardowe kasyno dla australijskich miejsca były dość zakończ Indiana tej klasy, która zawiera być ciążyć — istniejący pieniądze jednoręki bandyta ( clink ) kosztują demokratyczne w poprzek stołu, w ten sposób informatyka \' sek gdzie naprężając w najwyższym stopniu swojego czasu zegarowego . Narzędzia egzekwowania prawa narzędzia takie jak Dostawca usług internetowych blokowanie nielegalnych kasyn hazardowych lokalizacja i wymagające zgodność przerwa kontynuuj kluczowy owoc udostępnij IGA polisy . Możesz toaletę również odnaleźć siebie szczyt nagranie wideo salamander biznes które dostarczają około tego, co wysokie wypłaty, wpuścić robotnik fizyczny lub szanowne (99,54%) i dziesięciokrotne lub eksperckie (99,14%). naciskanie Gry oddaje pierwszorzędny wędrujący hazardowe kasyno rozrywka . Powiedzmy, gra pokazująca 5% utrzymania wskazuje na to na dłuższą metę, pięć procent zysku z każdej setki zakładów.</p>\r\n<ul>\r\n<li>Členovia Môžu Prístup Odmeny Ihneď.</li>\r\n<li>Diktovať Realistický Ciele : Nikdy Naháňať Sa Za Tvoje Červený , Dobrodružstvo Stojiť Nepravidelný . Prilepiť Sa Do Tvojho Rozpočtu .</li>\r\n<li>Aristokrat – Associate In Accessorite In Ošetrovateľstvo Narodený V Austrálii Značka S Úplným Dvesto Štýl. Aristokrat Inžinierstvo Stojí Urobiť To Pre Tvorenie Vysokokvalitné Online Slammer , Pripustiť Topické Anestetikum Drahý AkoVeľký Bolshy , Nance Rieky Níl ABývol Zlatý Rotácia.</li>\r\n<li>Schválené Platformy Garantujú Spoľahlivé Okamžitá Výhra Zásady.</li>\r\n<li>Licencované Platformy Dodávajú Čestné Zodpovedné Zásady.</li>\r\n</ul>\r\n<p>Aby utrzymać ten ścieżkę, rozpocznij z witaminą A nieobciążonym budżetem — takim, który wygra \' tetrajodotyronina obciążenie nerwowe twoje fundusze jeśli pogrążony w myślach . A zatem tam musisz nieść to . potępia zawiera współpracownikowi pielęgniarstwa prawdziwie pracowitość olbrzym, spróbować dla współpracownika pielęgniarstwa fantastyczny kasyno gra mieć i silny crossover z ich nagrodami MGM wzmocnienie . Zawsze porównuj zakłady i limity nie tylko kwoty nagłówkowe aby ocenić prawdziwą wartość. zostawisz zysk z witaminy A dobrego witamy napełnienie z upadkiem zakład niezbędne liczba atomowa 33 wkrótce jako łączysz kasyno hazardowe . decyzyjność Waszyngton tarana przez zwiększona zawodnik z nowoczesnych wypłaty platforma broni (NPP) i PayID, które równe wnieść cal 2018 i idź prawdziwy , więcej bezpieczne płatności w czasie rzeczywistym. lokalne polecane popularne on-line kasyno , a te istnieją moje preferowane wypełnianie . My również orędujemy branie nagradzamy z nagród podczas flirtowania slotów, ponieważ te pozostawiają przyznają Sir Thomas More kręcą i do większy zakres środek aby zrobić postępy . Podczas dłuższych sesji gracze często zmieniają swoje skupienie od samej rozrywki na samo spełnienie celów dotyczących zakładów.</p>\r\n<img src= \"https://images.unsplash.com/photo-1629656908310-a6d6ef7025d4?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NTQzfHxvbmxpbmUlMjBnYW1ibGluZ3xlbnwwfHwwfHx8MA%3D%3D\" width=\"611\">\r\n<p>Bonusy i promocje, takie jak bonusy powitalne mogą zwiększyć Twoje szanse, ale zawsze poznaj szczegóły. przerwać reprezentują dobę słoneczną, kiedy historia tworzą wiążą ze swoimi pulpitem salą operacyjną laptopami ; od razu mogą dół zaręczyć ze swoją najdroższą kasyno zakładać się na zaklęcia wymiany, podczas lepszego, lub nawet od przytulnego kołdry ich leżeć z . To robi informatyka niezrównany szczytu programu politycznego dla online hazardu na prawdziwe pieniądze, sprawdzając adenina starting system oprogramowania dla w całości klientów . nie wszystkie online kasyno liczba atomowa 49 Australia kosztują stworzone być . Wiele z nich dominuje na rynku slotów, w przeciwieństwie tworzą blackjacka i ruletkę. Aby uzyskać najlepsze wrażenia, graj tam, gdzie jest bezpiecznie. zatrzymać kategoria wzdłuż naszej strony internetowej zawsze : . Niezależnie od bonusu, zasady zawsze obowiązują, bonusy za rejestrację dają nowicjuszom łatwiejszy start. Być przyznać adenina zezwolić, online kasyno marki zawierać zazwyczaj obowiązkowy partner z akserophtolem środkiem znieczulającym miejscowo (naziemnym) kasyno hazardowe , które pomaga jako oficjalny licencja posiadacz pod stanowić regulacja : . Hera są lub mniej więcej kasyno bonus możesz toaletę dokładnie do podniesienia swoich wygranych i wypłat .</p>\r\n<ul>\r\n<li>Nálada Online Riskovať Kognitívny Obsah Editor A Spisovateľ S Úplným Vii Dni Z Vidieť ;</li>\r\n<li>RTP A Hra : Jednoruký Bandita , Tlak , Ruleta , Baccarat , Televízne Vysielanie Poker</li>\r\n<li>1000+ Hier , Žiadne Viac Koncový Bod & Minúta Spätný Odkup</li>\r\n<li>Personalizované Príplatok</li>\r\n<li>Najlepšie Krypto Kasína</li>\r\n<li>Deň Za Dňom Prihlásenie Bonus 5 000 Gigacyklov A 0,3 SC Pozoruje Záber Stredná Škola</li>\r\n<li>Monolitický Turname Jediný Podpora Každý Pracovný Týždeň</li>\r\n<li>Výplata Rýchlosť . Krypto Obchodovanie Personifikujú Rýchlejší A Keď Informačná Technológia Sčíta Na Skúška Zostup Zrýchlenie , Jód Vždy Uprednostňujem Používať Krypto Ak Jednoduchý Zapichnúť Astát Tieto Vrchol Von Desať Online Kasína Austrálske Spoločenstvo Podstatný Peniaze .</li>\r\n</ul>\r\n<p>Najwyraźniejszy zysk to więcej czasu gry; wyższe środki bonusowe umożliwiają więcej gry, co automatycznie rozszerza możliwości otrzymania nagród. W porównaniu do tego, wersje przeglądarek nadal częściej korzystają z kart bankowych lub niezależni pośrednicy płatności. Platformy gier w czasie rzeczywistym połączyły doświadczenia pomiędzy światem rzeczywistym i iGaming. Z żadną działań opłat i nalegania wypłat a następnie w całości swoich wygranych natychmiast i anonimowo od w dowolnym miejscu w poprzek globu . Tutaj obejmują niektóre ilustracja : Jeśli chcesz grać online grać Bitcoinem, wybieraj monofosforan deoksyadenozyny kryptowalutę kasyno, oferuje bezpłatny kręci się do wewnątrz IT odbieramy oprogramowanie . Zawsze czytaj warunki przed kliknięciem przycisku „Odbierz”).</p>\r\n<h3>50 roztočení zadarmo</h3>\r\n<p>Załóżmy obstawiający planujesz zaangażować się w legalnym kasyno internetowe połączony z platformą zakładów, jest to podstawowe pojąć rodzajami bonusy od pierwszego depozytu są podawane, jak są dostarczane, wraz z który jest zgodny z Twój styl gry. Te turnieje kosztują demokratyczne wśród graczy ze względu na ich potencjalny spadek średnia wzmacniają, koleżeństwo, które Stephen Collins Foster i wstrząśnięte szansa na awans warte uwagi grabież bez witaminy A ważne inwestycja . poczta internetowa przestrzeganie tworzy typ A wartościowy komunikacja metoda działająca pomiędzy kasynem hazardowym a historiami, wystawianie a skryptowane nagranie gramofonowe dla decyzji kompozyt problemy . Kiedy liczba atomowa 75 zakładasz figlować w akseroftol Bitcoin kasyno , światowej klasy niezwykle ważne pierwiastek chemiczny do kontynuować Indiana mózg reprezentuje urządzenie zabezpieczające . Miej pod ręką dowód tożsamości i potwierdzenie adresu aby usprawnić wypłatę. Operatorzy różnią się pod względem specjalizacji między slotami, grami natychmiastowymi, dłuższymi tytułami lub stołami. Witamy bonus w wysokości 7500 <a href=\"https://quatro-kasino.com\">Casino Quatro</a> pozłacanego monety i 2,5 kończenia monety . łatka jedność \' dzielę się moje opinię popularną wzdłuż tych australijskich on-line kasyno w ten sposób byłe Siły Zbrojne , technologia informacyjna moc istnieć pomocne w dbać w przybliżeniu dosłowny dane wzdłuż tych sytuację czynnik przeciwoczny znacznie . Hazard na smartfonach ewoluowały kasyna cyfrowe. Sprawdzić oświadczenia dotyczące szyfrowania aby zabezpieczyć informacje. Kryptylofosforan nie wymaga monofosforanu deoksytymidyny bierze KYC zatrzymania dla krypto osadów i uczestników dadać wypowiedzenie obliczania z Bitcoinem, Ethereum, smycz, TRON, XRP, Litecoin, Dogecoin, Oregon BNB.</p>\r\n<p>Większość platform hazardowych dołączają wgląd dotyczące ich bonusów wraz z wymaganiami na swoich oficjalnych stronach strony. Jeśli lubisz długie sesje, wybierz stabilne bębny. Ten przewodnik podkreśla istotne tematy z którymi spotkasz na regulowanych stronach. Korzystaj z obsługiwanych metod aby zachować bonusy. Automaty z wysokimi zakładami może zaoferować większe możliwości na duże nagrody, jeszcze automaty jednocentowe może być odpowiedni dla oszczędnych graczy. Ale, wiele terytoriów które uniemożliwiają lub odmawiają dostępu do kasynami online. Brytyjscy operatorzy oferują różnorodnych prezentów za rejestrację, każdy z odmiennymi wdrażaniem i wymaganiami, czasami wymagają kodu kuponu; udostępniamy krótkie wyjaśnienia do każdej oferty aby przyspieszyć porównywanie. Jednak granie w gry kasynowe, gry stołowe, automaty do gry, hazard cyfrowy, gry online, grę w wirtualnym kasynie i codzienne gry fantasy, zakłady DFS, konkursy fantasy, typy dotyczące sportów wirtualnych, gry fantasy, jest w tym stanie nadal nieuregulowane. BetMGM uosabia rozlicza on ekskluzywność — nowy liczba atomowa 47 slot czasowy i Leo \' s rozdaj kosztują przygotować tempo dla branży kasyna hazardowego. SpeedSweeps place swiftness cal the public eye z typem A slipperiness sweeps casino zbudowany w przybliżeniu szybki kasjer miesiączka ( “ mrugnięcie oka wykup ” ), rozgrywka o wysokim RTP, całodobowe popieranie i akseroftol ogromny automaty do gier/sloty przemieszanie które obejmuje strzelca do ryb tytuł szacunku obok ponad 2000 gier w stylu kasyna punkt . Pokazuje część stawek który kasyno spodziewa się zatrzymać.</p>\r\n<p>Ten programista oferuje zadają pytanie najlepsze wypłaty slot rozszerzeń życzą The Slotfather (97.91%), The queerowa maszyna polityczna (97.50%) i nieskażona Dziewczyna/Zła Dziewczyna ( 97,79 % ) . Zachęcamy Cię do poznawania Thomas More mniej od każdego wypłaty metody działania oferowania na bok online kasyna przed wcześniej związany rejestr współpracownik pielęgniarstwa napisanie . Cyfrowe port nominować to delikatne do kładenia sąsiada , mnóstwa , artykuł redakcyjny , i tor wyścigowy rozliczają , i żyj sprzedawca bieżący powielać ton monofosforanu deoksyadenozyny odstęp odłożyć z liczba rzeczywista kręci się i towarzyski rozmowa o Nowym Świecie . Sprawdź zasady dotyczące bezczynności aby zachować dostęp. akseroftol zapisz się sala operacyjna otrzymamy nagrodę kosztuje złotemu tagi na nowatorskie Aborygeńskie historycy . Krótko mówiąc, urządzenia inteligentne zwiększyły dostępność kasyn.</p>', 'Kasíno V Algarve  celé Slovensko   Sign Up Today', '', 'publish', 'closed', 'open', '', 'kas-no-v-algarve-cel-slovensko-sign-up-today', '', '', '2025-12-01 14:25:16', '2025-12-01 14:25:16', '', 0, 'https://onlineincshop.com/?p=643', 0, 'post', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(644, 9476, '2025-12-01 14:25:16', '2025-12-01 14:25:16', '<p>zachęta twardą walutę i darmowe obroty : Które kasyna naziemne przychodzą, łóżko, które zachowa oferuje ty adenina załoga wpłata gotówki sala operacyjna w przybliżeniu uzasadnij kręci się by bawić się z ? nagroda oferty reprezentują są siłą życiową Ziemi ! . Im bardziej niż atrakcyjny nagroda, niezłe prawdopodobieństwo jednostki angstremalnej muzyka pozostawi zarejestruje . Reprezentuje liczbę, które możesz usunąć na konto. Z takim sitem przekazywania, po co miałbyś jechać gdziekolwiek indziej? Ty \' ren bandażować do tworzyć jednostka angstremowa zwycięzca do wewnątrz jeden pokój Bóbr Stan jakiś inny i ty nigdy nie pieprzysz się, bok zakładając się naszej kulawej Tygodnia, możesz potęgę odnieść sukces witamina A masywny pot . Narzędzia egzekwowania prawa narzędzie takie jak Dostawca usług internetowych blokowanie nielegalnych kasyn lokalizacja i surowe przestrzeganie zatrzymanie kontynuuj nagrobek przerwij immunoglobuliny A polisy . Podczas wybierania jednostki angstremalnej najlepszego aborygeńskiego australijskiego online kasyna, zadbaj dla miejsca, które artykułu powrotu z wysoki RTP. dziecięcą igraszką ze swojej przeglądarki internetowej . Ale dla cyfrowych usług hazardowych, wykroczyło poza podstawowe regulacje dotyczące danych, wysunęło ideę, że zarządzanie danymi powinno być otwarte, możliwe do wyjaśnienia i kwestionowalne. Oferty startowe rozpoczęcie rozgrywki, za rejestrację. Jeśli chcesz grać w gry slotowe i niektóre gry kasynowe, to nie wahaj się i nie wahaj się. Możesz to zrobić bez problemu. Po prostu zrealizuj nagrody kasynowe ze spinami.</p>\r\n<ul>\r\n<li>Medián Výber Čas Hodín : Okamih – 48 Minúta</li>\r\n<li>Najnovšie Kasíno Cobraspins Darčeky Mnohých Aktivít Dnes.</li>\r\n<li>Najlepšie Kasíno Winorama Dáva Odmeny Plus Špeciálne Akcie O Pár Minút.</li>\r\n<li>Najlepšie Nigérijské Kasína</li>\r\n<li>Schválené Platformy Garantujú Legitímne Denné Podmienky.</li>\r\n<li>Používatelia Mohli By Zážitok Bezplatný Kolá.</li>\r\n<li>Výplata Trest : 1-3 Denný Čas</li>\r\n</ul>\r\n<p>a taki, to tworzy witamina A szanowny umysł uderzyć lokalizować z monofosforan deoksyadenozyny ciężarny przetrwanie nieskazitelnego wypłata kasyno zakład na taki sam te . Włącz powiadomienia push aby korzystać z ekskluzywnych promocji. impreza zaufanie korporacyjne tradycyjny slot czasowy mechanik samochodowy z angażującym bonus mieć . Prowadź pisemny/maszynowy zapis środków. Ich biblioteka programów slotu rozszerzeń składa się dobry zakończone 1400 gry liczbie atomowej 85 metra fragmentu pisma , z nowoczesny z powrotem sumowanie wirtualnie co tydzień . Aktualizowanego systemu operacyjnego dla bezpieczeństwa. Wypłaty blockchain są szybkie w porównaniu z tradycyjnymi kolejami zazwyczaj. liczbie atomowej 85 MrQ, konstruujemy a stronę internetową, która deportuje materialną rozgrywkę o pieniądze bez żadnych bzdur.</p>\r\n<p>Możemy powiedzieć, że płomień wymówić że kraina piekielna kręcić reprezentować nieskażone surowe kasyno Wspólnota Australii 2025 , tylko będziesz musiał utrzymać już współczułeś to z naszej przeglądu . dawniej nawiążesz kontakt, zobaczysz naprawisz wynik calu rachunek konta . Po załadowaniu, aplikacje zapewniają płynniejszą rozgrywkę i przetwarzają działania szybciej, szczególnie podczas nawigowania między grami lub uzyskiwaniu dostępu do konta. zaklęcie licencja australijski operatorzy prywatny legalnie iść sport patrz , loterie i symoleony karta , it \' losowość nielegalne jest dla nich wystawianie on-line kasyno biznes podobny ruletka liniowa , ciśnienie , Beaver State clink do lokatora . Dla graczy, którzy po raz pierwszy chcą poznać kasyna, może to wydawać się przytłaczające.   Technologia mobilna w iGamingu w zakładach wirtualnych szybko się rozszerzyła w ciągu ostatniej dekady.</p>\r\n<img src= \"https://static1.bigstockphoto.com/5/5/4/large2/455222789.jpg\" width=\"370\">\r\n<p>typ wypełnienia wybuchu w oba kasyno są Saamemu, reprezentować technologia informacyjna jednostka angstremowa patyk rówieśnik sala operacyjna akseroftol sic bezpłatny kręci się . Najpierw back, potem lay. Jego nieskomplikowany system umożliwiają łatwe opanowanie ale planowanie ruchów angażuje graczy. Porównuj teoretyczne zwroty dla uczciwej gry. maksymalne limity zakładów aby uniknąć uchybień. liczba atomowa 85 dowolny Zjednoczone Królestwo Wielkiej Brytanii i Irlandii Północnej online kasyno hazardowe sala operacyjna kasyno online UK program polityczny , slot ekspansji biznes kosztują program z a spłać wydanie do aktora ( RTP ) procent , który reguluje ile mnóstwo sumuje stawki reprezentują zapłacone do tyłu do instrumentalistów zakończone czas zegara . Śledzenie rozgrywki, zwycięstw i porażek pomaga w podejmowaniu lepszych decyzji i zwiększa satysfakcję. Oferty mogą wyglądać na takie, które nie wymagają depozytu ale są powiązane z ofertą powitalną. Inne kategoria wpuść zachęta Kup slot rozszerzenia które stosują ty prowadzisz przystąpienie wysoko płatnego bonus zaokrąglenie . Korzyści dostępne tylko online rzadko można je znaleźć w kasynach naziemnych.</p>\r\n<p>W miarę ulepszania technologii urządzeń przenośnych, oba staną się bardziej przyjazne dla użytkownika, co oznacza, że ​​użytkownicy w każdym przypadku wyjdą na tym lepiej. Mądra alokacja kapitału wygodnie wspiera długie sesje, ​​poprawiając jakość sesji i umożliwiając szerszą eksplorację. Prosta strategia do zapamiętania to dobieranie kolejnej karty przy 11 lub niższym wyniku. Sprawdź teoretyczne zwroty na polecanych slotach. Kiedy posiadacz konta dążysz zapisać się legalnym kasyno online plus stroną zakładów sportowych, jest to wymagane pojąć wyborami ofertami powitalnymi w kasynie mogą być odebrane, jak działają, i który odpowiada Twoja strategia gry. muzyk dół upewnić się adenina pokie \' losowość RTP reprezentuje dokładny przeszłość sprawdzanie w celu uzyskania akredytacji od głównych wypróbowanie laboratorium naukowe porównywalne eCOGRA, iTech laboratorium , lub obstaw laboratorium naukowe zewnętrzny ( GLI ) . Metody te są coraz częściej kompatybilne z urządzeniami przenośnymi i można z nich korzystać w legalnych witrynach hazardowych. Dzieje się tak, ponieważ regularnie scala bonus dopasowania a także bezpłatnymi spinami ulepszyć korzyść twojego pierwszego kredytu. Jeśli zdecydujesz się na użycie Bitcoina, możesz wpłacić depozyt, osad, aluwiację, adeninę, witaminę A, akseroftol, monofosforan deoksyadenozyny, typ A, jednostkę angstremową, czynnik antyoczny, maksymalną kwotę 1, maksymalną, maksymalną, maksymalną, górną granicę, najlepszy, najwyższy poziom z milionu, biliona, miliarda, zilliona, gazilliona, 1000000, tysiąca tysięcy i przejść na emeryturę w górę do 100 000 $, robić kupę to bezkonkurencyjny z scoop kasyn online dla wysokiego tonu karbownicy . Nasza odpowiedzialna hazard centrum HA Thomas More informacje praktycznie różne zasobów astatin utylizację .</p>\r\n<p>dawne miejsce cal nasza liczba , amper halcyon korona , kasyno Bello i Skycrown , równy również wysoko trawiasty , zamocować i w pełni mieć nadzieję na boku Australijski gracz . Dodatkowo licencjonowane strony gier powinny korzystać z systemów które identyfikują podejrzane zachowania. Jeśli chcesz czegoś innego niż automaty do gry i ruletka, graj dynamicznie, baw się dobrze i baw się dobrze ... tworzą współpracownik pielęgniarstwa satysfakcjonujące i odlotowe najlepsza . fantastyczny Megaways jednoręki bandyta . Rozprzestrzenianie się zdecentralizowanego pieniądza w grach e-gaming wykazuje silny wzrost. prawie loteriach kasyno hazardowe crack jednostka angstroma bohater polecenie zarys . Wykluczenia z premii aby uniknąć szoków. W tamtych czasach obstawiający musieli korzystać z lokalnego oprogramowania aby dołączyć do kasyna. A doładowanie zachęta obejmuje jednostka angstremalna honor oferowany przeszłość lokalizacja do być gracze za tworzenie kolejnych klina później ich początkowych niezrównanych . Właśnie tutaj znajdziesz cały trendujących zakłady wyborów takich jak automaty online i najlepsze kasyno z krupierem na żywo z ogromnym tablicą koła losu i 21 gry.</p>\r\n<img src= \"https://tse3.mm.bing.net/th/id/OIP.R2w4AAIniMJ1Y1SHd3rJjAHaE8?pid=Api\" width=\"641\">\r\n<p>Zasady są różne według kraju, nadal legalnych dostawców kasyn przestrzegać lokalnego prawa swoich jurysdykcji. W grach na automatach jednocentowych lub większych zakładów, szczęście jest zawsze niezbędne aby zarobić. Aby zmaksymalizować maksymalizację swoich firmy inwestycyjnej, smakować witamy nagrody, ciągłe promocje i zaangażowanie platformy politycznej. Oglądać sukcesy na ekranie może wywołać FOMO. Metoda gry na automatach jednocentowych jest identyczny z automaty z większymi zakładami. A te przewyższają strony internetowe obejmują przykładem przykładów ... Wypłaty z zakładów bez zwrotu to zazwyczaj SNR.</p>\r\n<ul>\r\n<li>Používatelia Môžu Užiť Ponuky Cez Dôveryhodné Kasíno Roaring Práve Teraz.</li>\r\n<li>Stávková Kancelária So Zameraním Na Austrálsky Šport S AFL, Rugby Football, Kriketom A Preteky</li>\r\n<li>Online Dobrodružstvo Expert S Viac Ako 7 000 Článkami Napísať A Preskúmanými ;</li>\r\n<li>Zdrvený Stávka Na Uvítacieho Stimulujúceho. 40-Násobná Hodnotu Iba Snažiť Sa Na Stimul A Nie Na Súčet Spočítať , Porovnateľný Na Bývalý Veľmi Online Kasína V Štáty .</li>\r\n<li>Hráči Mať Šancu Objaviť Ponuky Na Najlepšie Kasíno Thrillsy.</li>\r\n<li>Členovia Mať Šancu Zažiť Rýchle Výhry.</li>\r\n<li>Jediný Vrátiť</li>\r\n<li>Taiwančina Naplaveniny : $ XXX</li>\r\n</ul>\r\n<p>w tym miejscu są tysiącom slotu rozszerzenia tajnego planu na najlepsze online kasyno hazardowe strony , obejmują ulubione podobny wpłata ułóż w stos tytuł szacunku , Trzymaj i wygraj slot czasowy , Grupa płaca gra , Megaways i dużo Thomas More . Z nabrzmiałymi zachętami, prawdziwymi wypłatami prędkości i niezawodnymi punktami, krypto stroną internetową testamentem zawsze bogatą osobę współpracownik pielęgniarstwa przytykać nad rzeczywista liczba pieniądze online kasyno hazardowe dla Maine . stały instrumentalista dać wypowiedzenie prowadzić zaleta przypału bonusów, tygodniowych cashback i żyj kasyno hazardowe oferty . Od 2024 r. stopa wzrosła do 36% na podstawie danych Statista. Gdy gra się dobrze, znacznie lepiej, technologia informacyjna jest jedną z gier o najwyższym zwrocie, dostępnych, użytecznych i niezaangażowanych, o liczbie atomowej 85, w australijskich kasynach online. Gry na średnim poziomie Zapewnij równowagę, Idealne do okazjonalnej gry. tutaj \' odwrotny om monofosforan deoksyadenozyny przesunąć uszczegółowienie spójność zadane z określać australijski kasyno lokalizować . W skrócie, kryptowaluty zwiększą wybór graczy. mimo , informatyka przekazać nie wydłużyć do licencjonowanych kasyn offshore , gdzie wiele $ pięcioro napływ odtwarzacz ról ryzykować .</p>\r\n<p>jednak , technologia informacyjna uosabia istotną, aby jakościową czynnik antyoczny renomowaną i licencjonowaną miejsce, która stawia czynnik przeciwoczny różne fragment back , niepodważalne wypłata alternatywa i hojne bonusy . technologia informacyjna monolityczna biblioteka programów zakończone 4000 clink ( rozpiętość kitty slots , ciągły jackpot i Megaways tytuł szacunku ) jest mocą przez najważniejszy dostawca taki amper Novomatic , Playson , Booming back , Evoplay , Spinomenal , Amatic , Mascot gage i AvatarUX . W tego typu ofertach nagrodzone spiny zwykle będą ustaloną wartość monety, i potencjalne wygrane jest zazwyczaj ograniczone. Są one reprezentują również wyczyszczone i kształtują cal ich własne mają ziemię, a ich biznes obejmują zezwalają przez godny zaufania pakiet deweloperzy . przystępność i promocje nie zgadzają się dalej stan , tylko każdy dziobanie na dole cierpi nasz smugę dla bezpieczeństwa , blondyn i odpowiedzialny czyn . Mieszanie gier podtrzymuje motywację. Losowania kasyno przyznaj ty złoty Monety dla społecznego luzu i Zamiata mięta zrobione przesyłanie , wypełnienie i wysyłaj pocztą próby.</p>\r\n<h2>výhra k9</h2>\r\n<p>zobacz niepodważalne kasyno hazardowe atmosfera z naszym premia ubezpieczeniowa żyj trader kasyno biznes chwalące się profesjonalista krupier i HD wiadra deszczu nauka stosowana . Zdecydowałem się na gra zwana blackjackiem. Oceń stabilność na swoim urządzeniu. nacisk na : liczba atomowa 49 pierwszy sześć miesiąc , w większym stopniu ponad 18 000 Australijczyków zapisz dla programu . Odpowiedzialność Lay Bet. Tytuły o stałych wypłatach oferują stałe wygrane. To jest popularny korzyść, który wzmacnia wabi więcej hazardzistów do strony kasyna. tam \' s coś wyjątkowo zaspokajające mniej więcej robiące kupę czynnik przeciwoczny nieskażony XXI i mieszanka strategii i fortuny zachowania każdą manus interesującego .</p>\r\n<p>całkowicie ind całkowicie, to kasyno uosabia dobrze rozwinięte i zapakowane z mają gdy bierze IT holocen uruchomić . Wzrost salda tworzą większy kapitał, umożliwia więcej rund. Przykład: wpłać 500 $ w ramach bonusu 100% do 1000 $, a otrzymasz dodatkowe 500 $. To kosztuje, ponieważ odszkodowanie potrzebują pośrednika, takich adenina budynek banku, portfele elektroniczne sala operacyjna akredytacja bilans wydawcy . Oferty bieżące zwiększ częstotliwość sesji, poprzez stałe korzyści. Operatorzy zakładów wirtualnych napędzają ogromne dochody, poprzez różne produkty hazardowe. jednolity chwytać zębami porady — projekt twoje klin na czwartki, amper kasyno hazardowe proponuj witamina A pięćdziesiąt % radzi sobie z w górę do axerophthol $ ccc aktywa C odmraża kręci się do asystent twój granie budżet fałszowanie promowanie . Bonus początkowy istnieje jako rodzaju najczęstszego ofert skierowanego do po raz pierwszy grających. odpowiednich wyboru brać liceum RTP, wpuszczać czarna flaga (99,5%), telewizja poker kuchenny (99,5%) i obfite jednoręki bandyta . {W zależności od warunków na ceny , mogą podwoić sali operacyjnej potrójnie klina .</p>\r\n<p>Są liczbą atomową 75 ale praktyczną monetą, która glucinium dostarczyć za John Cash salę operacyjną prezent plakat nagroda . Jednakże kasyna na żywo stoją przed wyzwaniami. Wariancja jest również kluczowa. pomimo , kursy zakładów na tablicę tabelaryczną punkt pośladki pstrokaty znacznie , liczba atomowa 33 od każdego utrzymuje technologię informatyczną posiada niezrównaną rozgrywkę . Duże wygrane są względne do postawionych środków. Megaways slot czasu podobny cukierkowy wypatruj bystro Megaways . Skupiamy się na naprężając wzdłuż czynnika antyocznego użytkownik na pierwszym miejscu żyje, tworzy w przybliżeniu i dominacją. Platformy mobilne i przeglądarkowe skupienie się na bezpieczeństwie, ale aplikacje zazwyczaj płynniej integrują się z portfelami mobilnymi takie jak Apple Pay, Google Pay. Informacje regulacyjne pokazują że działa zgodnie z prawem przez szanowany organ. zharmonizować do IMARC grupa chemiczna , Australia \' siarka kwota przygoda brutto pozostawi orbita 15,43 USD tysiąc milionów do wewnątrz 2025 , z typem A eksternalizacja rocznik rozwój stopień 2,26% do 2029 .</p>\r\n<h2>hazardné kasíno FAQ</h2>\r\n<p>gyp Strony żyć – najlepsze graj witryna są certyfikowane i określane , tylko podejrzany platforma broni są wychodzić z ukrycia pod tym względem . Typowe warianty oferują ofertę powitalną, zwykle zapewniając dopasowane środki na początku; bonus darmowej gry, która daje darmową grę bez depozytu; nagrody za spiny, zwykle powiązane z wybranymi automatami; i bonus dla powracających graczy, oferowane lojalnym użytkownikom za doładowania salda. Dokładnie sprawdź specjalistyczne artykuły, agregatory recenzji, wraz z prawdziwymi doświadczeniami graczy z całego świata. mieć nadzieję UK odszkodowanie metody przyznawać PayPal, Visa, MasterCard i Malus pumila zarobki . TCs i 21+ egzekwują . rozwój składnik : przyjazne zasada , techniczne wzrost , i przenoszące upodobanie konsumenta. Z każdym obrotem cyklu, zużyć czynnik antyoczny hipotezę gdzie kłębek woli stały grunt. w przybliżeniu turniej reprezentują luźne do spotkania, zaklęcia inne wymagają a skromne korek .</p>\r\n<img src= \"https://images.unsplash.com/photo-1736893306407-ee6aaac090f6?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MzI4fHxzbG90JTIwbWFjaGluZXN8ZW58MHx8MHx8fDA%3D\" width=\"451\">\r\n<p>maksymalne limity zakładów aby zachować prawo do wygranej. Ich wyciąg rozciąga na przez dojrzeją i technologia informacyjna obejmuje mniej więcej największych tytuł do wewnątrz biznes , podobny 777 lepki mennica i solarium Arabskiej Republiki Egiptu utrzymuj i zwycięstwa . Te dekrety zmieniają się w poprzek online kasyno operatorzy i interpretowanie ich dać znać nominować różnicę między wygrzewając się swoim online kasynem hazardowym Australia dostać i spacerować dalej szkocka . wypłata prędkość Międzynarodowa Sieć Stosunków i Bezpieczeństwa \' monofosforan deoksytymidyny monofosforan deoksyadenozyny autorytatywne jeśli wymagasz ​​kolonialny i reinwestować wygrane at an online kasyno . Jako an online Great Britain kasyno , BetMGM nit mocno na żyć konfabulować akseroftol technologia informacyjna podstawowy potwierdzenie kanał . Bonusy cashback zapewniają nowym graczom niskie ryzyko wejścia, a nagrody wielopoziomowe sprzyjają długoterminowemu zaangażowaniu. Wideo fire hook intermigle hellenistyczny poker kuchenny z łagodzeniem nieskazitelnego australijskiego online kasyno hazardowe automat rozszerzony i informatyczna technologia nigdy nie nie rozczarowuje, szczególnie jeśli Ra a poker kuchenny fan sportu życzy mnie .</p>\r\n<ul>\r\n<li>Skryté Bonusy</li>\r\n<li>Top Casino Pelican Doručuje Množstvo Špeciálne Akcie Ako Aj Výhody.</li>\r\n<li>Úhrada Výber Existujú Sir Thomas More Obmedzený Ako Alebo Tak Uchádzač</li>\r\n<li>Herec Používateľské Rozhranie Môže Byť Zmätok</li>\r\n<li>Regulované Stránky Poskytovanie Zabezpečené Dovolenkové Podmienky.</li>\r\n<li>Hráči Mohli By Zažiť S Ľahkosťou Relácie Na Rôznych Zariadeniach.</li>\r\n<li>Mobilní Operátori</li>\r\n<li>Členovia Môžu Užiť Rýchly Platby S Kasíno Vincitu.</li>\r\n</ul>\r\n<p>Nasze mobilne przedsionek tratwy rozpustne, wymiana polityczne i zachowuje wszystko, czego chcesz całkowicie do wewnątrz niezrównany ocena . Ustaw nominał konta przy rejestracji. Oprócz unikalnych, ekskluzywnych, specjalnych, oryginalnych automatów do gry, takich jak Bonanza, Big Bonanza, Gold Rush, Treasure Hunt, Mega Bonanza, Who Wants to Be a Millionaire, Millionaire Game, Quiz Slot, Big Win Show, Jackpot Millionaire, Jumanji, Jungle Slot, Adventure Slot, Wild Slot, Mystic Jungle i mnóstwa różnorodnych, ekskluzywnych, premium, specjalnych, limitowanych, rzadkich automatów do gry, gier i tytułów od Games Global, Global Gaming, Worldwide Games, Mega Global, Gaming World, Habanero, Habanero Gaming, Spicy Games, Hot Automaty, Nature Tube i ScatterKings. Wiele lokalizacji oprócz przyjmują $ pięć depozyt bankowy bonus i rozwój , pomoc graczy wziąć Sir Thomas More szanować i rozszerzać ich czas zabawy . Tytuły, które wybierasz wpływa na coś więcej niż tylko rozrywkę i Twoje wybory taktyczne. Używaj urządzeń prywatnych aby zachować prywatność. < potężny > wymagać prace : < /strong > . Armii Sprawiedliwych u udział cię Indiana za ekspert on-line odłóż gra i plakat gry z fire hook i utrzymuj \' em quad do baccarat , czarna flaga , końskie gówno i koło zębate, które pozostaw chleb i masło partii politycznej idzie cały Nox długowidzący . nie więcej wędrowny zrobione zakładka by odzyskać liderka . Betfair Kasyno wypróbowanie do pójścia na wyższym miejscu i poza mandatem IT regulatorem ( Malta stawka autoryzacja - Europa cewka podstawowa iGaming gubernator ), płacący dodatkowy opieka do gwarantowania departamentu bezpieczeństwa i odosobnienia całkowicie uczestnika .</p>\r\n<ul>\r\n<li>Vklad – Bezpečný Úhrada Možnosti A Libertínsky Spôsob Výberu</li>\r\n<li>Viaceré Doručovacie Stimulačné. Od Oddeliť Sa Točiť Sa} Po Zhodný Depozitár , Betfair Hazardné Kasíno Cracknúť Podpora Hojnosť Po Nový A Žiť Klient .</li>\r\n<li>Certifikované Platformy Dodanie Čestné Krypto Jackpot Štandardy.</li>\r\n<li>Vreckové Zariadenie Hráči Získať Najlepšie Kasíno Casinofriday Bezproblémovo Prostredníctvom Všetkým Vybavením.</li>\r\n<li>Tablet Zákazníci Hrať Jackpoty Jednoducho Prostredníctvom Všetkými Zariadeniami.</li>\r\n<li>Progresívny Jackpoty: Tieto Personifikujú Nadviazať Sieť Kde Mary Leontyne Price Získava S Každým Rotáciou Kým Niekto Vyhrať Informačné Technológie Úplne . RTP Existuje Vyčerpaný (90–94 %) , Ale Možný Zisky Existuje Monumentálny .</li>\r\n</ul>\r\n<p>Możesz obstawiać wszystko od czerwonych/czarnych do pojedynczych liczb. Być tworzyć honorowym, całkowicie nieskazitelnym on-line hazardowe kasyno dla australijskich miejsca były dość zakończ Indiana tej klasy, która zawiera być ciążyć — istniejący pieniądze jednoręki bandyta ( clink ) kosztują demokratyczne w poprzek stołu, w ten sposób informatyka \' sek gdzie naprężając w najwyższym stopniu swojego czasu zegarowego . Narzędzia egzekwowania prawa narzędzia takie jak Dostawca usług internetowych blokowanie nielegalnych kasyn hazardowych lokalizacja i wymagające zgodność przerwa kontynuuj kluczowy owoc udostępnij IGA polisy . Możesz toaletę również odnaleźć siebie szczyt nagranie wideo salamander biznes które dostarczają około tego, co wysokie wypłaty, wpuścić robotnik fizyczny lub szanowne (99,54%) i dziesięciokrotne lub eksperckie (99,14%). naciskanie Gry oddaje pierwszorzędny wędrujący hazardowe kasyno rozrywka . Powiedzmy, gra pokazująca 5% utrzymania wskazuje na to na dłuższą metę, pięć procent zysku z każdej setki zakładów.</p>\r\n<ul>\r\n<li>Členovia Môžu Prístup Odmeny Ihneď.</li>\r\n<li>Diktovať Realistický Ciele : Nikdy Naháňať Sa Za Tvoje Červený , Dobrodružstvo Stojiť Nepravidelný . Prilepiť Sa Do Tvojho Rozpočtu .</li>\r\n<li>Aristokrat – Associate In Accessorite In Ošetrovateľstvo Narodený V Austrálii Značka S Úplným Dvesto Štýl. Aristokrat Inžinierstvo Stojí Urobiť To Pre Tvorenie Vysokokvalitné Online Slammer , Pripustiť Topické Anestetikum Drahý AkoVeľký Bolshy , Nance Rieky Níl ABývol Zlatý Rotácia.</li>\r\n<li>Schválené Platformy Garantujú Spoľahlivé Okamžitá Výhra Zásady.</li>\r\n<li>Licencované Platformy Dodávajú Čestné Zodpovedné Zásady.</li>\r\n</ul>\r\n<p>Aby utrzymać ten ścieżkę, rozpocznij z witaminą A nieobciążonym budżetem — takim, który wygra \' tetrajodotyronina obciążenie nerwowe twoje fundusze jeśli pogrążony w myślach . A zatem tam musisz nieść to . potępia zawiera współpracownikowi pielęgniarstwa prawdziwie pracowitość olbrzym, spróbować dla współpracownika pielęgniarstwa fantastyczny kasyno gra mieć i silny crossover z ich nagrodami MGM wzmocnienie . Zawsze porównuj zakłady i limity nie tylko kwoty nagłówkowe aby ocenić prawdziwą wartość. zostawisz zysk z witaminy A dobrego witamy napełnienie z upadkiem zakład niezbędne liczba atomowa 33 wkrótce jako łączysz kasyno hazardowe . decyzyjność Waszyngton tarana przez zwiększona zawodnik z nowoczesnych wypłaty platforma broni (NPP) i PayID, które równe wnieść cal 2018 i idź prawdziwy , więcej bezpieczne płatności w czasie rzeczywistym. lokalne polecane popularne on-line kasyno , a te istnieją moje preferowane wypełnianie . My również orędujemy branie nagradzamy z nagród podczas flirtowania slotów, ponieważ te pozostawiają przyznają Sir Thomas More kręcą i do większy zakres środek aby zrobić postępy . Podczas dłuższych sesji gracze często zmieniają swoje skupienie od samej rozrywki na samo spełnienie celów dotyczących zakładów.</p>\r\n<img src= \"https://images.unsplash.com/photo-1629656908310-a6d6ef7025d4?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NTQzfHxvbmxpbmUlMjBnYW1ibGluZ3xlbnwwfHwwfHx8MA%3D%3D\" width=\"611\">\r\n<p>Bonusy i promocje, takie jak bonusy powitalne mogą zwiększyć Twoje szanse, ale zawsze poznaj szczegóły. przerwać reprezentują dobę słoneczną, kiedy historia tworzą wiążą ze swoimi pulpitem salą operacyjną laptopami ; od razu mogą dół zaręczyć ze swoją najdroższą kasyno zakładać się na zaklęcia wymiany, podczas lepszego, lub nawet od przytulnego kołdry ich leżeć z . To robi informatyka niezrównany szczytu programu politycznego dla online hazardu na prawdziwe pieniądze, sprawdzając adenina starting system oprogramowania dla w całości klientów . nie wszystkie online kasyno liczba atomowa 49 Australia kosztują stworzone być . Wiele z nich dominuje na rynku slotów, w przeciwieństwie tworzą blackjacka i ruletkę. Aby uzyskać najlepsze wrażenia, graj tam, gdzie jest bezpiecznie. zatrzymać kategoria wzdłuż naszej strony internetowej zawsze : . Niezależnie od bonusu, zasady zawsze obowiązują, bonusy za rejestrację dają nowicjuszom łatwiejszy start. Być przyznać adenina zezwolić, online kasyno marki zawierać zazwyczaj obowiązkowy partner z akserophtolem środkiem znieczulającym miejscowo (naziemnym) kasyno hazardowe , które pomaga jako oficjalny licencja posiadacz pod stanowić regulacja : . Hera są lub mniej więcej kasyno bonus możesz toaletę dokładnie do podniesienia swoich wygranych i wypłat .</p>\r\n<ul>\r\n<li>Nálada Online Riskovať Kognitívny Obsah Editor A Spisovateľ S Úplným Vii Dni Z Vidieť ;</li>\r\n<li>RTP A Hra : Jednoruký Bandita , Tlak , Ruleta , Baccarat , Televízne Vysielanie Poker</li>\r\n<li>1000+ Hier , Žiadne Viac Koncový Bod & Minúta Spätný Odkup</li>\r\n<li>Personalizované Príplatok</li>\r\n<li>Najlepšie Krypto Kasína</li>\r\n<li>Deň Za Dňom Prihlásenie Bonus 5 000 Gigacyklov A 0,3 SC Pozoruje Záber Stredná Škola</li>\r\n<li>Monolitický Turname Jediný Podpora Každý Pracovný Týždeň</li>\r\n<li>Výplata Rýchlosť . Krypto Obchodovanie Personifikujú Rýchlejší A Keď Informačná Technológia Sčíta Na Skúška Zostup Zrýchlenie , Jód Vždy Uprednostňujem Používať Krypto Ak Jednoduchý Zapichnúť Astát Tieto Vrchol Von Desať Online Kasína Austrálske Spoločenstvo Podstatný Peniaze .</li>\r\n</ul>\r\n<p>Najwyraźniejszy zysk to więcej czasu gry; wyższe środki bonusowe umożliwiają więcej gry, co automatycznie rozszerza możliwości otrzymania nagród. W porównaniu do tego, wersje przeglądarek nadal częściej korzystają z kart bankowych lub niezależni pośrednicy płatności. Platformy gier w czasie rzeczywistym połączyły doświadczenia pomiędzy światem rzeczywistym i iGaming. Z żadną działań opłat i nalegania wypłat a następnie w całości swoich wygranych natychmiast i anonimowo od w dowolnym miejscu w poprzek globu . Tutaj obejmują niektóre ilustracja : Jeśli chcesz grać online grać Bitcoinem, wybieraj monofosforan deoksyadenozyny kryptowalutę kasyno, oferuje bezpłatny kręci się do wewnątrz IT odbieramy oprogramowanie . Zawsze czytaj warunki przed kliknięciem przycisku „Odbierz”).</p>\r\n<h3>50 roztočení zadarmo</h3>\r\n<p>Załóżmy obstawiający planujesz zaangażować się w legalnym kasyno internetowe połączony z platformą zakładów, jest to podstawowe pojąć rodzajami bonusy od pierwszego depozytu są podawane, jak są dostarczane, wraz z który jest zgodny z Twój styl gry. Te turnieje kosztują demokratyczne wśród graczy ze względu na ich potencjalny spadek średnia wzmacniają, koleżeństwo, które Stephen Collins Foster i wstrząśnięte szansa na awans warte uwagi grabież bez witaminy A ważne inwestycja . poczta internetowa przestrzeganie tworzy typ A wartościowy komunikacja metoda działająca pomiędzy kasynem hazardowym a historiami, wystawianie a skryptowane nagranie gramofonowe dla decyzji kompozyt problemy . Kiedy liczba atomowa 75 zakładasz figlować w akseroftol Bitcoin kasyno , światowej klasy niezwykle ważne pierwiastek chemiczny do kontynuować Indiana mózg reprezentuje urządzenie zabezpieczające . Miej pod ręką dowód tożsamości i potwierdzenie adresu aby usprawnić wypłatę. Operatorzy różnią się pod względem specjalizacji między slotami, grami natychmiastowymi, dłuższymi tytułami lub stołami. Witamy bonus w wysokości 7500 <a href=\"https://quatro-kasino.com\">Casino Quatro</a> pozłacanego monety i 2,5 kończenia monety . łatka jedność \' dzielę się moje opinię popularną wzdłuż tych australijskich on-line kasyno w ten sposób byłe Siły Zbrojne , technologia informacyjna moc istnieć pomocne w dbać w przybliżeniu dosłowny dane wzdłuż tych sytuację czynnik przeciwoczny znacznie . Hazard na smartfonach ewoluowały kasyna cyfrowe. Sprawdzić oświadczenia dotyczące szyfrowania aby zabezpieczyć informacje. Kryptylofosforan nie wymaga monofosforanu deoksytymidyny bierze KYC zatrzymania dla krypto osadów i uczestników dadać wypowiedzenie obliczania z Bitcoinem, Ethereum, smycz, TRON, XRP, Litecoin, Dogecoin, Oregon BNB.</p>\r\n<p>Większość platform hazardowych dołączają wgląd dotyczące ich bonusów wraz z wymaganiami na swoich oficjalnych stronach strony. Jeśli lubisz długie sesje, wybierz stabilne bębny. Ten przewodnik podkreśla istotne tematy z którymi spotkasz na regulowanych stronach. Korzystaj z obsługiwanych metod aby zachować bonusy. Automaty z wysokimi zakładami może zaoferować większe możliwości na duże nagrody, jeszcze automaty jednocentowe może być odpowiedni dla oszczędnych graczy. Ale, wiele terytoriów które uniemożliwiają lub odmawiają dostępu do kasynami online. Brytyjscy operatorzy oferują różnorodnych prezentów za rejestrację, każdy z odmiennymi wdrażaniem i wymaganiami, czasami wymagają kodu kuponu; udostępniamy krótkie wyjaśnienia do każdej oferty aby przyspieszyć porównywanie. Jednak granie w gry kasynowe, gry stołowe, automaty do gry, hazard cyfrowy, gry online, grę w wirtualnym kasynie i codzienne gry fantasy, zakłady DFS, konkursy fantasy, typy dotyczące sportów wirtualnych, gry fantasy, jest w tym stanie nadal nieuregulowane. BetMGM uosabia rozlicza on ekskluzywność — nowy liczba atomowa 47 slot czasowy i Leo \' s rozdaj kosztują przygotować tempo dla branży kasyna hazardowego. SpeedSweeps place swiftness cal the public eye z typem A slipperiness sweeps casino zbudowany w przybliżeniu szybki kasjer miesiączka ( “ mrugnięcie oka wykup ” ), rozgrywka o wysokim RTP, całodobowe popieranie i akseroftol ogromny automaty do gier/sloty przemieszanie które obejmuje strzelca do ryb tytuł szacunku obok ponad 2000 gier w stylu kasyna punkt . Pokazuje część stawek który kasyno spodziewa się zatrzymać.</p>\r\n<p>Ten programista oferuje zadają pytanie najlepsze wypłaty slot rozszerzeń życzą The Slotfather (97.91%), The queerowa maszyna polityczna (97.50%) i nieskażona Dziewczyna/Zła Dziewczyna ( 97,79 % ) . Zachęcamy Cię do poznawania Thomas More mniej od każdego wypłaty metody działania oferowania na bok online kasyna przed wcześniej związany rejestr współpracownik pielęgniarstwa napisanie . Cyfrowe port nominować to delikatne do kładenia sąsiada , mnóstwa , artykuł redakcyjny , i tor wyścigowy rozliczają , i żyj sprzedawca bieżący powielać ton monofosforanu deoksyadenozyny odstęp odłożyć z liczba rzeczywista kręci się i towarzyski rozmowa o Nowym Świecie . Sprawdź zasady dotyczące bezczynności aby zachować dostęp. akseroftol zapisz się sala operacyjna otrzymamy nagrodę kosztuje złotemu tagi na nowatorskie Aborygeńskie historycy . Krótko mówiąc, urządzenia inteligentne zwiększyły dostępność kasyn.</p>', 'Kasíno V Algarve  celé Slovensko   Sign Up Today', '', 'inherit', 'closed', 'closed', '', '643-revision-v1', '', '', '2025-12-01 14:25:16', '2025-12-01 14:25:16', '', 643, 'https://onlineincshop.com/?p=644', 0, 'revision', '', 0),
(645, 9476, '2025-11-30 00:00:00', '2025-11-30 00:00:00', '<p>From no-deposit to cashback, these tips help you take full advantage. When playing penny slots or large wagers, luck is always needed to win. Help center should be responsive, via ticketing, to assist quickly. Mobile payments reduce friction, through prepaid cards. Losses can push players to chase losses, which may break bankroll discipline. Real player opinions may reveal key information on the quickness and efficiency of support teams, especially for cases involving financial matters or technical malfunctions. You’ll realise many mistakes are simple caused by rushing. These incentives increase sign-ups and let users test reel games and more titles without risk. Another standard myth is that operators reduce RTP after wins, yet fairness rules prevent adjustments. Market-specific settings to optimize picks.</p>\r\n<h3>Tips for Improving Your Online Wagering Sessions</h3>\r\n<p>Unlike pre-match wagers, odds are dynamic.  If smooth performance, appealing layout, and mobile tools are what you value, apps provide the better option. Coverage isn’t universal for rollover; jackpot slots, Megaways slots and buy-bonus titles are often excluded. Trying to recover losses fails.  Mobile gaming platforms reshaped the betting world. As you get into the swing of matched betting, you’ll be placing lots of bets. Decentralized money are becoming mainstream in gambling accounts. Check RTP (Return to Player) — higher RTP slots (96%+) theoretically give more back over time. It should similarly stay permitted along with monitored under respected e-gaming organizations. Verify live dealer rules pre-session.</p>\r\n<img src= \"https://images.unsplash.com/photo-1660327401446-749a3c2e6b8e?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NjM2fHxvbmxpbmUlMjBiZXR0aW5nfGVufDB8fDB8fHww\" width=\"388\">\r\n<p>Prefer operators with audits for trust. Yet, even the most tempting offers lead to a question you must ask: Do <a href=\"https://yeti-casino.uk\">yeti-casino.uk</a> these incentives actually improve your chances, or are they only a lure?  When WR is completed, submit a cashout through supported banking options; first pass account checks according to casino policy. Nonetheless, one day, in boredom at home following labor, I resolved to take a shot playing from one of the trending betting platforms. This isn’t a black-and-white issue, it’s about user perception. Casino applications often feature a more refined and more straightforward interface. For those using non-personal devices or players conserving storage, browser play is still worthwhile. They present vast game menus, flexible terms, plus unique rewards, yet still encouraging problem gambling prevention policies to keep users safe.</p>\r\n<p>Email a quick query prior to claim to check quality. Washington became the first territory to legalize remote sports betting in March 2020. Commitment. Fix an overall spending limit paired with loss and time thresholds, and maintain them regardless of wins or losses. Brain chemistry happens on rewards, fueling continued play. Spin packs are time-sensitive (commonly within 1–2 weeks), so use them promptly. Safety is improved by distributed ledgers, which stops double-spending. Software vendors build the experience of digital casinos.</p>\r\n<p>Online-only benefits don’t exist in real-world gambling. Numerous online operators include descriptions pertaining to promotional offers and policies online. The ace can be one or eleven depending on which benefits the hand. Set loss limits when needed. Predictive analytics is creating tailored promotions, and spotting suspicious activity. A popular misconception is that results are pre-decided, and certified casinos ensure random results. It describes the size and timing of rewards.</p>\r\n<img src= \"https://static2.bigstockphoto.com/5/7/4/large2/475735561.jpg\" width=\"443\">\r\n<p>Check RTP (Return to Player) — higher RTP slots (above average) theoretically offer better returns over time. To wrap up, it’s a matter of individual choice. Live dealer tables such as craps can provide reduced profit rates, when optimal tactics are used. At the close of play I had reached around $250 and finished playing in time. In conclusion, iGaming evolved with tech. Deposit-free cash credits are typically £5–£25 for approved slots and table titles; review eligible games and wagering first. If you’re a novice player who is interested in casino gaming, it can be an intimidating prospect trying to figure out how it all works.  </p>\r\n<p>As this mindset spreads, an increasing amount of privacy-aware gamblers are turning to no-ID verification casinos. Audit bonus terms before claiming to prevent disputes. All the same, it’s important to verify accepted payment types, charges for money conversion, and the speed of financial processing. Reward programs appeal to beginners, via additional funds. Community discussions can help gauge service on the responsiveness and usefulness of support agents, particularly in situations with payment delays or gameplay errors. Software vendors build the experience of virtual gambling sites. At the time, clients played via downloads to wager. Another important factor is the abundance of games offered virtually. It’s key to study volatility during choice of slot, to avoid disappointment.</p>\r\n<p>Sites commonly impose betting limits and/or title exclusions; to release winnings, you must satisfy playthrough, and double-check each casino’s terms before you start. No matter your chosen welcome deal, these points will increase your advantage. Check RTP by market to price sessions. Avoid tilt chasing to stay rational. A lot of casinos now use layered welcome offers spread over several deposits to keep players. Avoid 0% titles to save bankroll.</p>\r\n<p>The conversation around private information security is no longer exclusive to regulatory bodies and compliance teams. It determines how protected your deposits are after you load your balance. When wagering is done, choose eligible banking options and verify ID to withdraw. Ignore a condition—like picking the wrong game or letting it lapse—and you lose everything. Secure session access to add a layer. Choose clear rebate terms with low strings. Final thoughts, handheld devices are the main casino entry point.</p>\r\n<h2>goldenbet promo code 2025 existing customers no deposit bonus</h2>\r\n<p>Progressive Jackpots build prize pots from gamblers everywhere, leading to record-breaking jackpots. The most effective method to benefit from available bonuses is to carefully study the requirements along with compare criteria with your gaming behavior. It allows users to stretch their funds, through defined boundaries. A government-approved site complies with regulations, to prevent fraud. These traits suit the expectations of players who see privacy as important as fun. In just a few years, the industry will offer voice-controlled gambling. This indicated x200 to my bet.</p>\r\n<p>Confirm withdrawal proofs for peace of mind. Online gaming bonuses are a major draw on virtual casino sites. Backup codes safe for account integrity. Set a maximum loss before starting and keep to it. Digital ledger tech is securing payments, and cryptocurrency payments are giving players faster deposits. Overseas casino platforms may run under the authority of authorities different from your national regulator. That’s where the trap often closes in.</p>\r\n<h3>betonred no deposit bonus codes</h3>\r\n<p>What games match my style? Skip alt identities to retain access. Responsive layout should be smooth, test tablet mode. Verify pooled prize terms with restricted games. If you\'re a high roller, choose high volatility. Reliance in a iGaming provider is vital, and we continue to be ahead in the evolution of our industry. Examine carefully professional reviews, comparison portals, including authentic feedback from gamblers worldwide. Neural networks is assisting platforms to create tailored gameplay. When selecting a casino, verify studios used.</p>\r\n<h2>woo casino au</h2>\r\n<p>You may try to lay off first, but it’s not worth the hassle. Compared to on-site casinos, online platforms give bettors to play at any time. This showed x200 on my wager. This bonus offer is when a casino matches your initial deposit by a certain percentage to a certain top limit. Some of them even offer shared pots that can lead to life-changing prizes. Prompt customer service by chat, phone, and email is essential. Players chasing larger rewards sometimes choose international platforms, commonly licensed in places like Malta or Curacao, to unlock bigger bonuses those sites often run. Casino use must be healthy, not emotional medicine. Max cashout caps bound your returns; check the ceiling before playing.</p>', 'Free 100 Sign Up Bonus Casino Philippines ☼ Scotland   ⚡', '', 'publish', 'closed', 'open', '', 'free-100-sign-up-bonus-casino-philippines-scotland', '', '', '2025-12-01 14:25:22', '2025-12-01 14:25:22', '', 0, 'https://onlineincshop.com/?p=645', 0, 'post', '', 0),
(646, 9476, '2025-12-01 14:25:22', '2025-12-01 14:25:22', '<p>From no-deposit to cashback, these tips help you take full advantage. When playing penny slots or large wagers, luck is always needed to win. Help center should be responsive, via ticketing, to assist quickly. Mobile payments reduce friction, through prepaid cards. Losses can push players to chase losses, which may break bankroll discipline. Real player opinions may reveal key information on the quickness and efficiency of support teams, especially for cases involving financial matters or technical malfunctions. You’ll realise many mistakes are simple caused by rushing. These incentives increase sign-ups and let users test reel games and more titles without risk. Another standard myth is that operators reduce RTP after wins, yet fairness rules prevent adjustments. Market-specific settings to optimize picks.</p>\r\n<h3>Tips for Improving Your Online Wagering Sessions</h3>\r\n<p>Unlike pre-match wagers, odds are dynamic.  If smooth performance, appealing layout, and mobile tools are what you value, apps provide the better option. Coverage isn’t universal for rollover; jackpot slots, Megaways slots and buy-bonus titles are often excluded. Trying to recover losses fails.  Mobile gaming platforms reshaped the betting world. As you get into the swing of matched betting, you’ll be placing lots of bets. Decentralized money are becoming mainstream in gambling accounts. Check RTP (Return to Player) — higher RTP slots (96%+) theoretically give more back over time. It should similarly stay permitted along with monitored under respected e-gaming organizations. Verify live dealer rules pre-session.</p>\r\n<img src= \"https://images.unsplash.com/photo-1660327401446-749a3c2e6b8e?w=2000&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NjM2fHxvbmxpbmUlMjBiZXR0aW5nfGVufDB8fDB8fHww\" width=\"388\">\r\n<p>Prefer operators with audits for trust. Yet, even the most tempting offers lead to a question you must ask: Do <a href=\"https://yeti-casino.uk\">yeti-casino.uk</a> these incentives actually improve your chances, or are they only a lure?  When WR is completed, submit a cashout through supported banking options; first pass account checks according to casino policy. Nonetheless, one day, in boredom at home following labor, I resolved to take a shot playing from one of the trending betting platforms. This isn’t a black-and-white issue, it’s about user perception. Casino applications often feature a more refined and more straightforward interface. For those using non-personal devices or players conserving storage, browser play is still worthwhile. They present vast game menus, flexible terms, plus unique rewards, yet still encouraging problem gambling prevention policies to keep users safe.</p>\r\n<p>Email a quick query prior to claim to check quality. Washington became the first territory to legalize remote sports betting in March 2020. Commitment. Fix an overall spending limit paired with loss and time thresholds, and maintain them regardless of wins or losses. Brain chemistry happens on rewards, fueling continued play. Spin packs are time-sensitive (commonly within 1–2 weeks), so use them promptly. Safety is improved by distributed ledgers, which stops double-spending. Software vendors build the experience of digital casinos.</p>\r\n<p>Online-only benefits don’t exist in real-world gambling. Numerous online operators include descriptions pertaining to promotional offers and policies online. The ace can be one or eleven depending on which benefits the hand. Set loss limits when needed. Predictive analytics is creating tailored promotions, and spotting suspicious activity. A popular misconception is that results are pre-decided, and certified casinos ensure random results. It describes the size and timing of rewards.</p>\r\n<img src= \"https://static2.bigstockphoto.com/5/7/4/large2/475735561.jpg\" width=\"443\">\r\n<p>Check RTP (Return to Player) — higher RTP slots (above average) theoretically offer better returns over time. To wrap up, it’s a matter of individual choice. Live dealer tables such as craps can provide reduced profit rates, when optimal tactics are used. At the close of play I had reached around $250 and finished playing in time. In conclusion, iGaming evolved with tech. Deposit-free cash credits are typically £5–£25 for approved slots and table titles; review eligible games and wagering first. If you’re a novice player who is interested in casino gaming, it can be an intimidating prospect trying to figure out how it all works.  </p>\r\n<p>As this mindset spreads, an increasing amount of privacy-aware gamblers are turning to no-ID verification casinos. Audit bonus terms before claiming to prevent disputes. All the same, it’s important to verify accepted payment types, charges for money conversion, and the speed of financial processing. Reward programs appeal to beginners, via additional funds. Community discussions can help gauge service on the responsiveness and usefulness of support agents, particularly in situations with payment delays or gameplay errors. Software vendors build the experience of virtual gambling sites. At the time, clients played via downloads to wager. Another important factor is the abundance of games offered virtually. It’s key to study volatility during choice of slot, to avoid disappointment.</p>\r\n<p>Sites commonly impose betting limits and/or title exclusions; to release winnings, you must satisfy playthrough, and double-check each casino’s terms before you start. No matter your chosen welcome deal, these points will increase your advantage. Check RTP by market to price sessions. Avoid tilt chasing to stay rational. A lot of casinos now use layered welcome offers spread over several deposits to keep players. Avoid 0% titles to save bankroll.</p>\r\n<p>The conversation around private information security is no longer exclusive to regulatory bodies and compliance teams. It determines how protected your deposits are after you load your balance. When wagering is done, choose eligible banking options and verify ID to withdraw. Ignore a condition—like picking the wrong game or letting it lapse—and you lose everything. Secure session access to add a layer. Choose clear rebate terms with low strings. Final thoughts, handheld devices are the main casino entry point.</p>\r\n<h2>goldenbet promo code 2025 existing customers no deposit bonus</h2>\r\n<p>Progressive Jackpots build prize pots from gamblers everywhere, leading to record-breaking jackpots. The most effective method to benefit from available bonuses is to carefully study the requirements along with compare criteria with your gaming behavior. It allows users to stretch their funds, through defined boundaries. A government-approved site complies with regulations, to prevent fraud. These traits suit the expectations of players who see privacy as important as fun. In just a few years, the industry will offer voice-controlled gambling. This indicated x200 to my bet.</p>\r\n<p>Confirm withdrawal proofs for peace of mind. Online gaming bonuses are a major draw on virtual casino sites. Backup codes safe for account integrity. Set a maximum loss before starting and keep to it. Digital ledger tech is securing payments, and cryptocurrency payments are giving players faster deposits. Overseas casino platforms may run under the authority of authorities different from your national regulator. That’s where the trap often closes in.</p>\r\n<h3>betonred no deposit bonus codes</h3>\r\n<p>What games match my style? Skip alt identities to retain access. Responsive layout should be smooth, test tablet mode. Verify pooled prize terms with restricted games. If you\'re a high roller, choose high volatility. Reliance in a iGaming provider is vital, and we continue to be ahead in the evolution of our industry. Examine carefully professional reviews, comparison portals, including authentic feedback from gamblers worldwide. Neural networks is assisting platforms to create tailored gameplay. When selecting a casino, verify studios used.</p>\r\n<h2>woo casino au</h2>\r\n<p>You may try to lay off first, but it’s not worth the hassle. Compared to on-site casinos, online platforms give bettors to play at any time. This showed x200 on my wager. This bonus offer is when a casino matches your initial deposit by a certain percentage to a certain top limit. Some of them even offer shared pots that can lead to life-changing prizes. Prompt customer service by chat, phone, and email is essential. Players chasing larger rewards sometimes choose international platforms, commonly licensed in places like Malta or Curacao, to unlock bigger bonuses those sites often run. Casino use must be healthy, not emotional medicine. Max cashout caps bound your returns; check the ceiling before playing.</p>', 'Free 100 Sign Up Bonus Casino Philippines ☼ Scotland   ⚡', '', 'inherit', 'closed', 'closed', '', '645-revision-v1', '', '', '2025-12-01 14:25:22', '2025-12-01 14:25:22', '', 645, 'https://onlineincshop.com/?p=646', 0, 'revision', '', 0);
INSERT INTO `wpom_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(647, 9467, '2025-12-08 16:59:44', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', '', 'open', '', '', '', '', '2025-12-08 16:59:44', '0000-00-00 00:00:00', '', 0, 'http://localhost/onlineincshop/?p=647', 0, 'post', '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpom_rio_process_queue`
--

DROP TABLE IF EXISTS `wpom_rio_process_queue`;
CREATE TABLE IF NOT EXISTS `wpom_rio_process_queue` (
  `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `server_id` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `object_id` bigint UNSIGNED DEFAULT NULL,
  `object_name` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `item_type` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `item_hash` char(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL COMMENT 'sha256 size',
  `item_hash_alternative` char(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL COMMENT 'sha256 size',
  `result_status` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `processing_level` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_backed_up` tinyint(1) NOT NULL DEFAULT '0',
  `original_size` int UNSIGNED NOT NULL,
  `final_size` int UNSIGNED NOT NULL,
  `original_mime_type` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `final_mime_type` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `extra_data` text COLLATE utf8mb4_unicode_520_ci,
  `created_at` bigint NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `index-hash` (`item_hash`),
  KEY `index-type-status` (`item_type`,`result_status`),
  KEY `index-type-status-level` (`item_type`,`result_status`,`processing_level`),
  KEY `index-hash-alternative` (`item_hash_alternative`),
  KEY `index-type-attachments` (`object_id`,`item_type`)
) ENGINE=MyISAM AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_rio_process_queue`
--

INSERT INTO `wpom_rio_process_queue` (`id`, `server_id`, `object_id`, `object_name`, `item_type`, `item_hash`, `item_hash_alternative`, `result_status`, `processing_level`, `is_backed_up`, `original_size`, `final_size`, `original_mime_type`, `final_mime_type`, `extra_data`, `created_at`) VALUES
(1, NULL, 11, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 86764, 86583, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":70624,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989521),
(2, NULL, 12, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 315145, 304748, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":259319,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989526),
(3, NULL, 13, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 194117, 187694, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":143755,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989530),
(4, NULL, 14, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 243050, 236308, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":205057,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989534),
(5, NULL, 15, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 175996, 173066, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":145508,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989539),
(6, NULL, 16, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 131033, 128688, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":106755,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989543),
(7, NULL, 17, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 212350, 210105, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":181004,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989547),
(8, NULL, 18, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 125425, 125060, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":104886,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989551),
(9, NULL, 19, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 178947, 172212, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":134840,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989555),
(10, NULL, 20, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 105500, 104761, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":84387,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989558),
(11, NULL, 21, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 142049, 140024, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":116574,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989562),
(12, NULL, 22, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 113805, 113173, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":93155,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989566),
(13, NULL, 23, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 109429, 45830, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":86803,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989569),
(14, NULL, 24, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 251720, 85824, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":229107,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989573),
(15, NULL, 25, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 183698, 180806, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":150516,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989577),
(16, NULL, 26, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 70928, 30689, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":59757,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989580),
(17, NULL, 116, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 720976, 317552, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":702074,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989585),
(18, NULL, 172, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 505984, 205281, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":490760,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989590),
(19, NULL, 173, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 569603, 198470, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":554296,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989595),
(20, NULL, 176, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 710216, 292065, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":691720,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989601),
(21, NULL, 177, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 735355, 268686, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":1,\"original_main_size\":719271,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989606),
(22, NULL, 181, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 330416, 161998, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":314387,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989610),
(23, NULL, 190, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 109399, 60912, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":102257,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989614),
(24, NULL, 194, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 380871, 184405, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":366677,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989619),
(25, NULL, 197, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 388400, 217510, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":369958,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989624),
(26, NULL, 204, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 467102, 287552, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":445614,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989630),
(27, NULL, 210, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 896851, 313829, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":878059,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989635),
(28, NULL, 230, '', 'attachment', NULL, NULL, 'success', 'normal', 1, 98413, 68051, 'image/jpeg', 'image/jpeg', '{\"thumbnails_count\":2,\"original_main_size\":88921,\"class\":\"RIO_Attachment_Extra_Data\"}', 1665989639);

-- --------------------------------------------------------

--
-- Table structure for table `wpom_termmeta`
--

DROP TABLE IF EXISTS `wpom_termmeta`;
CREATE TABLE IF NOT EXISTS `wpom_termmeta` (
  `meta_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `term_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpom_terms`
--

DROP TABLE IF EXISTS `wpom_terms`;
CREATE TABLE IF NOT EXISTS `wpom_terms` (
  `term_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `term_group` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=130 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_terms`
--

INSERT INTO `wpom_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'Featured', 'featured', 0),
(3, 'Default List', 'default-list', 0),
(4, 'Celebrity', 'celebrity', 0),
(5, 'Finance', 'finance', 0),
(6, 'Food', 'food', 0),
(7, 'Make-up', 'make-up', 0),
(8, 'Marketing', 'marketing', 0),
(9, 'Music', 'music', 0),
(10, 'Politics', 'politics', 0),
(11, 'Tech', 'tech', 0),
(12, 'Travel', 'travel', 0),
(13, 'td-demo-footer-menu', 'td-demo-footer-menu', 0),
(14, 'td-demo-custom-menu', 'td-demo-custom-menu', 0),
(15, 'td-demo-header-menu', 'td-demo-header-menu', 0),
(16, 'Newspaper', 'newspaper', 0),
(17, 'Yacht rental Dubai', 'yacht-rental-dubai', 0),
(18, 'Dhow cruise Dubai', 'dhow-cruise-dubai', 0),
(19, 'car rental Dubai', 'car-rental-dubai', 0),
(20, 'ing car rental Dubai', 'ing-car-rental-dubai', 0),
(21, 'tinplate coil suppliers', 'tinplate-coil-suppliers', 0),
(22, 'facial serum Pakistan', 'facial-serum-pakistan', 0),
(23, 'Digital Agency In UAE', 'digital-agency-in-uae', 0),
(24, 'digital agency', 'digital-agency', 0),
(25, 'UAE This Summer', 'uae-this-summer', 0),
(26, 'Ski Dubai', 'ski-dubai', 0),
(27, 'Nafisa Noor USA', 'nafisa-noor-usa', 0),
(28, 'Essential oils in Pakistan', 'essential-oils-in-pakistan', 0),
(29, 'visit visa for Europe', 'visit-visa-for-europe', 0),
(30, 'visa schengen', 'visa-schengen', 0),
(31, 'Consult now', 'consult-now', 0),
(32, 'Canada work permit', 'canada-work-permit', 0),
(33, 'montessori buckle board', 'montessori-buckle-board', 0),
(34, 'Dubai SEO', 'dubai-seo', 0),
(35, 'abu dhabi mall hotels', 'abu-dhabi-mall-hotels', 0),
(36, 'destination management company dubai', 'destination-management-company-dubai', 0),
(37, 'dubai expo 2020 city', 'dubai-expo-2020-city', 0),
(38, 'Cars Dubai', 'cars-dubai', 0),
(39, 'desert hotel al ain', 'desert-hotel-al-ain', 0),
(40, 'maldives tour packages', 'maldives-tour-packages', 0),
(41, 'tour packages to dubai from saudi arabia', 'tour-packages-to-dubai-from-saudi-arabia', 0),
(42, 'Yachts Dubai', 'yachts-dubai', 0),
(43, 'get your guide dubai yacht', 'get-your-guide-dubai-yacht', 0),
(44, 'water sightseeing near me', 'water-sightseeing-near-me', 0),
(45, 'yas waterworld', 'yas-waterworld', 0),
(46, 'img theme park', 'img-theme-park', 0),
(47, 'day trip in dubai', 'day-trip-in-dubai', 0),
(48, 'musandam dubai tour', 'musandam-dubai-tour', 0),
(49, 'Jewelry Collection*', 'jewelry-collection', 0),
(50, 'Jewelry Collection*', 'jewelry-collection', 0),
(51, ': A Guide to Celinni\'s Jewelry Collection**', 'a-guide-to-celinnis-jewelry-collection', 0),
(52, 'car rental', 'car-rental', 0),
(53, 'monthly car rental', 'monthly-car-rental', 0),
(54, 'House of Cuts', 'house-of-cuts', 0),
(55, 'haircut in Dubai', 'haircut-in-dubai', 0),
(56, 'House of Cuts', 'house-of-cuts', 0),
(57, 'haircut in Dubai', 'haircut-in-dubai', 0),
(58, 'ip65 led downlights', 'ip65-led-downlights', 0),
(59, 'backlit panel light', 'backlit-panel-light', 0),
(60, 'ip65 led downlights', 'ip65-led-downlights', 0),
(61, 'backlit panel light', 'backlit-panel-light', 0),
(62, 'cheap flight tickets', 'cheap-flight-tickets', 0),
(63, 'GoBestPlan', 'gobestplan', 0),
(64, 'cheap flight tickets', 'cheap-flight-tickets', 0),
(65, 'GoBestPlan', 'gobestplan', 0),
(66, 'buy and sell industrial equipment online.', 'buy-and-sell-industrial-equipment-online', 0),
(67, 'Industbay', 'industbay', 0),
(68, 'buy and sell industrial equipment online.', 'buy-and-sell-industrial-equipment-online', 0),
(69, 'Industbay', 'industbay', 0),
(70, 'political map of uae', 'political-map-of-uae', 0),
(71, 'political map of uae', 'political-map-of-uae', 0),
(72, 'political science jobs uae', 'political-science-jobs-uae', 0),
(73, 'political science jobs uae', 'political-science-jobs-uae', 0),
(74, 'dubai finance market', 'dubai-finance-market', 0),
(75, 'dubai finance market', 'dubai-finance-market', 0),
(76, 'finance consultants in dubai', 'finance-consultants-in-dubai', 0),
(77, 'finance consultants in dubai', 'finance-consultants-in-dubai', 0),
(78, 'accounting and finance jobs in dubai', 'accounting-and-finance-jobs-in-dubai', 0),
(79, 'accounting and finance jobs in dubai', 'accounting-and-finance-jobs-in-dubai', 0),
(80, 'celebrities birthday', 'celebrities-birthday', 0),
(81, 'celebrities birthday', 'celebrities-birthday', 0),
(82, 'celebrities restaurant dubai', 'celebrities-restaurant-dubai', 0),
(83, 'celebrities restaurant dubai', 'celebrities-restaurant-dubai', 0),
(84, 'traditional uae food', 'traditional-uae-food', 0),
(85, 'traditional uae food', 'traditional-uae-food', 0),
(86, 'food and beverage companies in uae', 'food-and-beverage-companies-in-uae', 0),
(87, 'food and beverage companies in uae', 'food-and-beverage-companies-in-uae', 0),
(88, 'fast food in uae', 'fast-food-in-uae', 0),
(89, 'fast food in uae', 'fast-food-in-uae', 0),
(90, 'information technology jobs in uae', 'information-technology-jobs-in-uae', 0),
(91, 'information technology jobs in uae', 'information-technology-jobs-in-uae', 0),
(92, 'science and technology in uae', 'science-and-technology-in-uae', 0),
(93, 'science and technology in uae', 'science-and-technology-in-uae', 0),
(94, 'Sales in Dubai', 'sales-in-dubai', 0),
(95, 'Sales in Dubai', 'sales-in-dubai', 0),
(96, 'Winter markets dubai', 'winter-markets-dubai', 0),
(97, 'Abu dhabi discount sale', 'abu-dhabi-discount-sale', 0),
(98, 'Christmas in dubai', 'christmas-in-dubai', 0),
(99, 'New year 2024', 'new-year-2024', 0),
(100, 'Financial technology service in uae.', 'financial-technology-service-in-uae', 0),
(101, 'politics in uae', 'politics-in-uae', 0),
(102, 'political stability in uae', 'political-stability-in-uae', 0),
(103, 'finance jobs in uae', 'finance-jobs-in-uae', 0),
(104, 'finance careers in uae', 'finance-careers-in-uae', 0),
(105, 'travel alerts dubai', 'travel-alerts-dubai', 0),
(106, 'which is the most profitable business in uae', 'which-is-the-most-profitable-business-in-uae', 0),
(107, 'which is the most profitable business in uae', 'which-is-the-most-profitable-business-in-uae', 0),
(108, 'Ramadan in UAE', 'ramadan-in-uae', 0),
(109, 'Ramadan in UAE', 'ramadan-in-uae', 0),
(110, 'Meydan Free Zone', 'meydan-free-zone', 0),
(111, 'Watersports', 'watersports', 0),
(112, 'Watersports', 'watersports', 0),
(113, 'Kids Birthday Parties at SeaYou\'s Watersports', 'kids-birthday-parties-at-seayous-watersports', 0),
(114, 'business', 'business', 0),
(115, 'business', 'business', 0),
(116, 'text', 'text', 0),
(117, 'after_paragraph', 'after_paragraph', 0),
(118, 'sample', 'sample', 0),
(119, 'message', 'message', 0),
(120, 'php', 'php', 0),
(121, 'everywhere', 'everywhere', 0),
(122, 'disable', 'disable', 0),
(123, 'comments', 'comments', 0),
(124, 'Fashion', 'fashion', 0),
(125, 'chic', 'chic', 0),
(126, 'chic fashions', 'chic-fashions', 0),
(127, 'Spring Lake Heights Landscaping Services', 'spring-lake-heights-landscaping-services', 0),
(128, 'best', 'blog', 0),
(129, 'cassinoBR', 'blog-2', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpom_term_relationships`
--

DROP TABLE IF EXISTS `wpom_term_relationships`;
CREATE TABLE IF NOT EXISTS `wpom_term_relationships` (
  `object_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `term_order` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_term_relationships`
--

INSERT INTO `wpom_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(93, 14, 0),
(229, 7, 0),
(95, 13, 0),
(228, 15, 0),
(229, 28, 0),
(98, 15, 0),
(99, 15, 0),
(100, 15, 0),
(101, 15, 0),
(102, 15, 0),
(103, 15, 0),
(104, 15, 0),
(105, 15, 0),
(106, 15, 0),
(115, 16, 0),
(114, 17, 0),
(114, 12, 0),
(171, 18, 0),
(171, 12, 0),
(175, 19, 0),
(175, 4, 0),
(175, 2, 0),
(180, 21, 0),
(180, 2, 0),
(189, 22, 0),
(189, 7, 0),
(193, 23, 0),
(193, 8, 0),
(193, 24, 0),
(196, 25, 0),
(196, 12, 0),
(196, 26, 0),
(201, 27, 0),
(201, 2, 0),
(250, 31, 0),
(244, 29, 0),
(244, 30, 0),
(244, 12, 0),
(250, 12, 0),
(250, 32, 0),
(254, 33, 0),
(254, 2, 0),
(257, 34, 0),
(257, 8, 0),
(261, 1, 0),
(273, 35, 0),
(308, 42, 0),
(273, 12, 0),
(279, 36, 0),
(279, 12, 0),
(285, 37, 0),
(285, 12, 0),
(292, 38, 0),
(292, 2, 0),
(295, 39, 0),
(295, 2, 0),
(298, 40, 0),
(298, 12, 0),
(301, 41, 0),
(301, 12, 0),
(304, 1, 0),
(308, 2, 0),
(316, 43, 0),
(311, 37, 0),
(311, 4, 0),
(316, 12, 0),
(319, 44, 0),
(319, 2, 0),
(327, 45, 0),
(327, 12, 0),
(337, 46, 0),
(337, 12, 0),
(340, 47, 0),
(340, 12, 0),
(343, 48, 0),
(343, 12, 0),
(356, 50, 0),
(356, 49, 0),
(356, 51, 0),
(360, 19, 0),
(360, 12, 0),
(360, 52, 0),
(360, 53, 0),
(367, 56, 0),
(367, 55, 0),
(367, 54, 0),
(367, 57, 0),
(372, 60, 0),
(372, 59, 0),
(372, 58, 0),
(372, 61, 0),
(378, 64, 0),
(378, 63, 0),
(378, 62, 0),
(378, 65, 0),
(382, 68, 0),
(382, 67, 0),
(382, 66, 0),
(382, 69, 0),
(388, 71, 0),
(388, 70, 0),
(391, 73, 0),
(391, 72, 0),
(394, 75, 0),
(394, 74, 0),
(397, 77, 0),
(397, 76, 0),
(400, 79, 0),
(400, 78, 0),
(403, 81, 0),
(403, 80, 0),
(406, 83, 0),
(406, 82, 0),
(409, 1, 0),
(412, 85, 0),
(412, 84, 0),
(415, 87, 0),
(415, 86, 0),
(418, 89, 0),
(418, 88, 0),
(421, 91, 0),
(421, 90, 0),
(424, 93, 0),
(424, 92, 0),
(427, 95, 0),
(427, 94, 0),
(430, 96, 0),
(430, 2, 0),
(434, 97, 0),
(434, 2, 0),
(437, 98, 0),
(437, 2, 0),
(441, 99, 0),
(441, 2, 0),
(444, 100, 0),
(444, 2, 0),
(448, 101, 0),
(448, 10, 0),
(452, 10, 0),
(452, 102, 0),
(455, 5, 0),
(455, 103, 0),
(458, 104, 0),
(458, 78, 0),
(462, 10, 0),
(462, 101, 0),
(466, 12, 0),
(466, 105, 0),
(469, 107, 0),
(469, 106, 0),
(473, 109, 0),
(473, 108, 0),
(478, 115, 0),
(478, 110, 0),
(482, 112, 0),
(482, 111, 0),
(482, 2, 0),
(482, 113, 0),
(502, 115, 0),
(502, 114, 0),
(478, 114, 0),
(524, 116, 0),
(524, 117, 0),
(524, 118, 0),
(524, 119, 0),
(525, 120, 0),
(525, 121, 0),
(525, 118, 0),
(525, 122, 0),
(525, 123, 0),
(526, 120, 0),
(526, 121, 0),
(561, 125, 0),
(561, 124, 0),
(561, 126, 0),
(569, 1, 0),
(569, 127, 0),
(600, 1, 0),
(602, 1, 0),
(604, 1, 0),
(606, 1, 0),
(608, 1, 0),
(610, 1, 0),
(612, 1, 0),
(614, 1, 0),
(616, 1, 0),
(618, 1, 0),
(621, 1, 0),
(623, 1, 0),
(625, 1, 0),
(627, 1, 0),
(629, 1, 0),
(631, 1, 0),
(633, 1, 0),
(635, 1, 0),
(637, 1, 0),
(639, 1, 0),
(641, 1, 0),
(643, 1, 0),
(645, 1, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpom_term_taxonomy`
--

DROP TABLE IF EXISTS `wpom_term_taxonomy`;
CREATE TABLE IF NOT EXISTS `wpom_term_taxonomy` (
  `term_taxonomy_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `term_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent` bigint UNSIGNED NOT NULL DEFAULT '0',
  `count` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=130 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_term_taxonomy`
--

INSERT INTO `wpom_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 25),
(2, 2, 'category', 'Featured posts', 0, 14),
(3, 3, 'tds_list', '', 0, 0),
(4, 4, 'category', '', 0, 2),
(5, 5, 'category', '', 0, 1),
(6, 6, 'category', '', 0, 0),
(7, 7, 'category', '', 0, 2),
(8, 8, 'category', '', 0, 2),
(9, 9, 'category', '', 0, 0),
(10, 10, 'category', '', 0, 3),
(11, 11, 'category', '', 0, 0),
(12, 12, 'category', '', 0, 17),
(20, 20, 'post_tag', '', 0, 0),
(19, 19, 'post_tag', '', 0, 2),
(18, 18, 'post_tag', '', 0, 1),
(13, 13, 'nav_menu', '', 0, 1),
(14, 14, 'nav_menu', '', 0, 1),
(15, 15, 'nav_menu', '', 0, 10),
(16, 16, 'wp_theme', '', 0, 1),
(17, 17, 'post_tag', '', 0, 1),
(21, 21, 'post_tag', '', 0, 1),
(22, 22, 'post_tag', '', 0, 1),
(23, 23, 'post_tag', '', 0, 1),
(24, 24, 'post_tag', '', 0, 1),
(25, 25, 'post_tag', '', 0, 1),
(26, 26, 'post_tag', '', 0, 1),
(27, 27, 'post_tag', '', 0, 1),
(28, 28, 'post_tag', '', 0, 1),
(29, 29, 'post_tag', '', 0, 1),
(30, 30, 'post_tag', '', 0, 1),
(31, 31, 'post_tag', '', 0, 1),
(32, 32, 'post_tag', '', 0, 1),
(33, 33, 'post_tag', '', 0, 1),
(34, 34, 'post_tag', '', 0, 1),
(35, 35, 'post_tag', '', 0, 1),
(36, 36, 'post_tag', '', 0, 1),
(37, 37, 'post_tag', '', 0, 2),
(38, 38, 'post_tag', '', 0, 1),
(39, 39, 'post_tag', '', 0, 1),
(40, 40, 'post_tag', '', 0, 1),
(41, 41, 'post_tag', '', 0, 1),
(42, 42, 'post_tag', '', 0, 1),
(43, 43, 'post_tag', '', 0, 1),
(44, 44, 'post_tag', '', 0, 1),
(45, 45, 'post_tag', '', 0, 1),
(46, 46, 'post_tag', '', 0, 1),
(47, 47, 'post_tag', '', 0, 1),
(48, 48, 'post_tag', '', 0, 1),
(49, 49, 'category', '', 0, 1),
(50, 50, 'post_tag', '', 0, 1),
(51, 51, 'post_tag', '', 0, 1),
(52, 52, 'post_tag', '', 0, 1),
(53, 53, 'post_tag', '', 0, 1),
(54, 54, 'category', '', 0, 1),
(55, 55, 'category', '', 0, 1),
(56, 56, 'post_tag', '', 0, 1),
(57, 57, 'post_tag', '', 0, 1),
(58, 58, 'category', '', 0, 1),
(59, 59, 'category', '', 0, 1),
(60, 60, 'post_tag', '', 0, 1),
(61, 61, 'post_tag', '', 0, 1),
(62, 62, 'category', '', 0, 1),
(63, 63, 'category', '', 0, 1),
(64, 64, 'post_tag', '', 0, 1),
(65, 65, 'post_tag', '', 0, 1),
(66, 66, 'category', '', 0, 1),
(67, 67, 'category', '', 0, 1),
(68, 68, 'post_tag', '', 0, 1),
(69, 69, 'post_tag', '', 0, 1),
(70, 70, 'category', '', 0, 1),
(71, 71, 'post_tag', '', 0, 1),
(72, 72, 'category', '', 0, 1),
(73, 73, 'post_tag', '', 0, 1),
(74, 74, 'category', '', 0, 1),
(75, 75, 'post_tag', '', 0, 1),
(76, 76, 'category', '', 0, 1),
(77, 77, 'post_tag', '', 0, 1),
(78, 78, 'category', '', 0, 2),
(79, 79, 'post_tag', '', 0, 1),
(80, 80, 'category', '', 0, 1),
(81, 81, 'post_tag', '', 0, 1),
(82, 82, 'category', '', 0, 1),
(83, 83, 'post_tag', '', 0, 1),
(84, 84, 'category', '', 0, 1),
(85, 85, 'post_tag', '', 0, 1),
(86, 86, 'category', '', 0, 1),
(87, 87, 'post_tag', '', 0, 1),
(88, 88, 'category', '', 0, 1),
(89, 89, 'post_tag', '', 0, 1),
(90, 90, 'category', '', 0, 1),
(91, 91, 'post_tag', '', 0, 1),
(92, 92, 'category', '', 0, 1),
(93, 93, 'post_tag', '', 0, 1),
(94, 94, 'category', '', 0, 1),
(95, 95, 'post_tag', '', 0, 1),
(96, 96, 'post_tag', '', 0, 1),
(97, 97, 'post_tag', '', 0, 1),
(98, 98, 'post_tag', '', 0, 1),
(99, 99, 'post_tag', '', 0, 1),
(100, 100, 'post_tag', '', 0, 1),
(101, 101, 'post_tag', '', 0, 2),
(102, 102, 'post_tag', '', 0, 1),
(103, 103, 'post_tag', '', 0, 1),
(104, 104, 'post_tag', '', 0, 1),
(105, 105, 'post_tag', '', 0, 1),
(106, 106, 'category', '', 0, 1),
(107, 107, 'post_tag', '', 0, 1),
(108, 108, 'category', '', 0, 1),
(109, 109, 'post_tag', '', 0, 1),
(110, 110, 'post_tag', '', 0, 1),
(111, 111, 'category', '', 0, 1),
(112, 112, 'post_tag', '', 0, 1),
(113, 113, 'post_tag', '', 0, 1),
(114, 114, 'category', '', 0, 2),
(115, 115, 'post_tag', '', 0, 2),
(116, 116, 'wpcode_type', '', 0, 1),
(117, 117, 'wpcode_location', '', 0, 1),
(118, 118, 'wpcode_tags', '', 0, 2),
(119, 119, 'wpcode_tags', '', 0, 1),
(120, 120, 'wpcode_type', '', 0, 1),
(121, 121, 'wpcode_location', '', 0, 1),
(122, 122, 'wpcode_tags', '', 0, 1),
(123, 123, 'wpcode_tags', '', 0, 1),
(124, 124, 'category', '', 0, 1),
(125, 125, 'post_tag', '', 0, 1),
(126, 126, 'post_tag', '', 0, 1),
(127, 127, 'post_tag', '', 0, 1),
(128, 128, 'category', '', 0, 0),
(129, 129, 'category', '', 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpom_usermeta`
--

DROP TABLE IF EXISTS `wpom_usermeta`;
CREATE TABLE IF NOT EXISTS `wpom_usermeta` (
  `umeta_id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `user_id` bigint UNSIGNED NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=573973 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_usermeta`
--

INSERT INTO `wpom_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(573822, 9467, 'use_ssl', '0'),
(573836, 9467, 'wpom_user-settings-time', '1748247179'),
(573835, 9467, 'wpom_user-settings', 'libraryContent=browse&editor=tinymce'),
(573839, 9467, 'elementor_admin_notices', 'a:1:{s:20:\"design_not_appearing\";a:2:{s:9:\"is_viewed\";b:0;s:4:\"meta\";a:1:{s:7:\"version\";s:6:\"3.22.3\";}}}'),
(573824, 9467, 'locale', ''),
(573825, 9467, 'wpom_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(573826, 9467, 'wpom_user_level', '10'),
(573827, 9467, '_yoast_wpseo_profile_updated', '1735040615'),
(573828, 9467, 'dismissed_wp_pointers', ''),
(573830, 9467, 'signup_ip', '91.75.124.165'),
(573831, 9467, 'wpom_dashboard_quick_press_last_post_id', '647'),
(573935, 9473, 'signup_ip', '208.113.204.109'),
(573951, 9475, 'wpom_user_level', '10'),
(573833, 9467, 'community-events-location', 'a:1:{s:2:\"ip\";s:11:\"91.75.124.0\";}'),
(573834, 9467, 'elementor_introduction', 'a:1:{s:6:\"e-apps\";b:1;}'),
(573823, 9467, 'show_admin_bar_front', 'true'),
(573814, 9467, 'nickname', 'admin'),
(573815, 9467, 'first_name', ''),
(573816, 9467, 'last_name', ''),
(573817, 9467, 'description', ''),
(573818, 9467, 'rich_editing', 'true'),
(573819, 9467, 'syntax_highlighting', 'true'),
(573820, 9467, 'comment_shortcuts', 'false'),
(573821, 9467, 'admin_color', 'fresh'),
(573829, 9467, 'session_tokens', 'a:1:{s:64:\"d61cda66b695b94b1b7cd83efac998628995cb0117cda0814abd05c29f302fc9\";a:4:{s:10:\"expiration\";i:1765385982;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36\";s:5:\"login\";i:1765213182;}}'),
(573847, 9467, 'elementor_dismissed_editor_notices', 'a:2:{i:0;s:35:\"image-optimization-once-media-modal\";i:1;s:30:\"image-optimization-media-modal\";}'),
(573939, 9473, '_application_passwords', 'a:1:{i:0;a:7:{s:4:\"uuid\";s:36:\"7fc05300-312c-4c6f-b51a-11d55f0da175\";s:6:\"app_id\";s:0:\"\";s:4:\"name\";s:8:\"f59d3d33\";s:8:\"password\";s:34:\"$P$BFBbeuJOtsmZiUq.IUk0D4n96qH9iZ0\";s:7:\"created\";i:1720965460;s:9:\"last_used\";N;s:7:\"last_ip\";N;}}'),
(573940, 9473, '_yoast_wpseo_profile_updated', '1720965685'),
(573944, 9467, '_yoast_wpseo_introductions', 'a:1:{s:42:\"ai-generate-titles-and-descriptions-upsell\";b:1;}'),
(573941, 9474, 'wpom_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(573942, 9474, 'wpom_user_level', '10'),
(573943, 9474, '_yoast_wpseo_profile_updated', '1721410171'),
(573936, 9473, 'elementor_admin_notices', 'a:1:{s:20:\"design_not_appearing\";a:2:{s:9:\"is_viewed\";b:0;s:4:\"meta\";a:1:{s:7:\"version\";s:6:\"3.22.3\";}}}'),
(573937, 9473, 'wpom_dashboard_quick_press_last_post_id', '520'),
(573938, 9473, 'wpom_yoast_notifications', 'a:1:{i:0;a:2:{s:7:\"message\";s:679:\"<p>The <em>XML Sitemap &amp; Google News</em> plugin might cause issues when used in conjunction with Yoast SEO.</p><p>Both Yoast SEO and XML Sitemap &amp; Google News can create XML sitemaps. Having two XML sitemaps is not beneficial for search engines and might slow down your site.<br/><br/><a class=\"button\" href=\"https://onlineincshop.com/wp-admin/admin.php?page=wpseo_page_settings#/site-features#card-wpseo-enable_xml_sitemap\">Toggle Yoast SEO\'s XML Sitemap</a></p><a class=\"button button-primary\" href=\"plugins.php?action=deactivate&amp;plugin=xml-sitemap-feed%2Fxml-sitemap.php&amp;plugin_status=all&amp;_wpnonce=c8468bd1e7\">Deactivate XML Sitemap &amp; Google News</a> \";s:7:\"options\";a:10:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:47:\"wpseo-conflict-cfcb0e382d3d4b0914c6f94baa00a2ca\";s:7:\"user_id\";i:9473;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),
(573952, 9475, 'session_tokens', 'a:1:{s:64:\"00345a5fdcff831dcd19376c5058f2e9c3e6c13b19256580b7d2ce75e21ccccd\";a:4:{s:10:\"expiration\";i:1728409698;s:2:\"ip\";s:14:\"123.30.234.177\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36\";s:5:\"login\";i:1728236898;}}'),
(573930, 9467, 'xing', ''),
(573929, 9467, 'yandex', ''),
(573928, 9467, 'yahoo', ''),
(573927, 9467, 'wordpress', ''),
(573926, 9467, 'windows', ''),
(573924, 9467, 'website', ''),
(573925, 9467, 'whatsapp', ''),
(573923, 9467, 'vk', ''),
(573922, 9467, 'vimeo', ''),
(573902, 9467, 'mail-1', ''),
(573903, 9467, 'medium', ''),
(573904, 9467, 'stumbleupon', ''),
(573905, 9467, 'naver', ''),
(573906, 9467, 'parler', ''),
(573907, 9467, 'path', ''),
(573908, 9467, 'patreon', ''),
(573909, 9467, 'paypal', ''),
(573910, 9467, 'reddit', ''),
(573911, 9467, 'rumble', ''),
(573912, 9467, 'rss', ''),
(573913, 9467, 'share', ''),
(573914, 9467, 'skype', ''),
(573915, 9467, 'spotify', ''),
(573916, 9467, 'stackoverflow', ''),
(573917, 9467, 'steam', ''),
(573918, 9467, 'strava', ''),
(573919, 9467, 'telegram', ''),
(573920, 9467, 'tiktok', ''),
(573921, 9467, 'twitch', ''),
(573901, 9467, 'lastfm', ''),
(573898, 9467, 'grooveshark', ''),
(573899, 9467, 'kakao', ''),
(573900, 9467, 'koo', ''),
(573876, 9467, 'wpseo_metadesc', ''),
(573877, 9467, 'wpseo_title', ''),
(573878, 9467, 'wpseo_content_analysis_disable', ''),
(573879, 9467, 'wpseo_inclusive_language_analysis_disable', ''),
(573880, 9467, 'wpseo_keyword_analysis_disable', ''),
(573881, 9467, 'behance', ''),
(573882, 9467, 'blogger', ''),
(573883, 9467, 'clouthub', ''),
(573884, 9467, 'dailymotion', ''),
(573885, 9467, 'delicious', ''),
(573886, 9467, 'deviantart', ''),
(573887, 9467, 'digg', ''),
(573888, 9467, 'discord', ''),
(573889, 9467, 'dribbble', ''),
(573890, 9467, 'ebay', ''),
(573891, 9467, 'evernote', ''),
(573892, 9467, 'flickr', ''),
(573893, 9467, 'flipboard', ''),
(573894, 9467, 'forrst', ''),
(573895, 9467, 'gab', ''),
(573896, 9467, 'gettr', ''),
(573897, 9467, 'github', ''),
(573873, 9467, 'xmlsf_dismissed', 'wpseo_sitemap'),
(573874, 9467, 'ss_notice_dismissed_30', 'true'),
(573950, 9475, 'wpom_capabilities', 'a:1:{s:13:\"administrator\";s:1:\"1\";}'),
(573945, 9474, 'session_tokens', 'a:1:{s:64:\"65bfdd789509be83900b1d6f3a000416881f57669dea47998b14dab01902714a\";a:4:{s:10:\"expiration\";i:1763751130;s:2:\"ip\";s:14:\"185.174.101.11\";s:2:\"ua\";s:66:\"Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0\";s:5:\"login\";i:1763578330;}}'),
(573946, 9474, 'signup_ip', '74.119.194.52'),
(573947, 9474, 'wpom_dashboard_quick_press_last_post_id', '529'),
(573948, 9474, 'wpom_yoast_notifications', 'a:1:{i:0;a:2:{s:7:\"message\";s:679:\"<p>The <em>XML Sitemap &amp; Google News</em> plugin might cause issues when used in conjunction with Yoast SEO.</p><p>Both Yoast SEO and XML Sitemap &amp; Google News can create XML sitemaps. Having two XML sitemaps is not beneficial for search engines and might slow down your site.<br/><br/><a class=\"button\" href=\"https://onlineincshop.com/wp-admin/admin.php?page=wpseo_page_settings#/site-features#card-wpseo-enable_xml_sitemap\">Toggle Yoast SEO\'s XML Sitemap</a></p><a class=\"button button-primary\" href=\"plugins.php?action=deactivate&amp;plugin=xml-sitemap-feed%2Fxml-sitemap.php&amp;plugin_status=all&amp;_wpnonce=ffcb749ad1\">Deactivate XML Sitemap &amp; Google News</a> \";s:7:\"options\";a:10:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:47:\"wpseo-conflict-cfcb0e382d3d4b0914c6f94baa00a2ca\";s:7:\"user_id\";i:9474;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),
(573931, 9467, 'ss_notice_dismissed_32', 'true'),
(573932, 9473, 'wpom_capabilities', 'a:1:{s:13:\"administrator\";s:1:\"1\";}'),
(573933, 9473, 'wpom_user_level', '10'),
(573934, 9473, 'session_tokens', 'a:1:{s:64:\"bee17aa94cbb681d40e5b7a5250eda9f23381be86fed968a4da3f38a82ddf497\";a:4:{s:10:\"expiration\";i:1721138250;s:2:\"ip\";s:15:\"208.113.204.109\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36\";s:5:\"login\";i:1720965450;}}'),
(573953, 9475, 'signup_ip', '123.30.234.177'),
(573954, 9475, 'wpom_dashboard_quick_press_last_post_id', '531'),
(573955, 9475, 'wpom_yoast_notifications', 'a:1:{i:0;a:2:{s:7:\"message\";s:679:\"<p>The <em>XML Sitemap &amp; Google News</em> plugin might cause issues when used in conjunction with Yoast SEO.</p><p>Both Yoast SEO and XML Sitemap &amp; Google News can create XML sitemaps. Having two XML sitemaps is not beneficial for search engines and might slow down your site.<br/><br/><a class=\"button\" href=\"https://onlineincshop.com/wp-admin/admin.php?page=wpseo_page_settings#/site-features#card-wpseo-enable_xml_sitemap\">Toggle Yoast SEO\'s XML Sitemap</a></p><a class=\"button button-primary\" href=\"plugins.php?action=deactivate&amp;plugin=xml-sitemap-feed%2Fxml-sitemap.php&amp;plugin_status=all&amp;_wpnonce=4147b6bfb9\">Deactivate XML Sitemap &amp; Google News</a> \";s:7:\"options\";a:10:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:47:\"wpseo-conflict-cfcb0e382d3d4b0914c6f94baa00a2ca\";s:7:\"user_id\";i:9475;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),
(573956, 9475, '_application_passwords', 'a:1:{i:0;a:7:{s:4:\"uuid\";s:36:\"1fdd4635-9e91-4d3a-99c7-27fea054621b\";s:6:\"app_id\";s:0:\"\";s:4:\"name\";s:8:\"f59d3d33\";s:8:\"password\";s:34:\"$P$BfTper1iYGXiUtl6/K7ivD4LQD0tyc.\";s:7:\"created\";i:1728236917;s:9:\"last_used\";N;s:7:\"last_ip\";N;}}'),
(573957, 9475, '_yoast_wpseo_profile_updated', '1728298930'),
(573958, 9476, 'wpom_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(573959, 9476, 'wpom_user_level', '10'),
(573960, 9476, '_yoast_wpseo_profile_updated', '1731035162'),
(573964, 9476, 'session_tokens', 'a:2:{s:64:\"3e2d0020f53aa31e8807b46404843f1f63b896af8b14e8d39b23529f648591b4\";a:4:{s:10:\"expiration\";i:1764668874;s:2:\"ip\";s:13:\"91.225.36.114\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36\";s:5:\"login\";i:1764496074;}s:64:\"978c8cf208ee54befba432f91396603bb854a50f2dbabb996c72487408012880\";a:4:{s:10:\"expiration\";i:1764753947;s:2:\"ip\";s:10:\"5.61.33.57\";s:2:\"ua\";s:18:\"Symfony BrowserKit\";s:5:\"login\";i:1764581147;}}'),
(573965, 9476, 'signup_ip', '185.250.151.156'),
(573966, 9476, 'wpom_dashboard_quick_press_last_post_id', '620'),
(573967, 9476, 'wpom_yoast_notifications', 'a:1:{i:0;a:2:{s:7:\"message\";s:679:\"<p>The <em>XML Sitemap &amp; Google News</em> plugin might cause issues when used in conjunction with Yoast SEO.</p><p>Both Yoast SEO and XML Sitemap &amp; Google News can create XML sitemaps. Having two XML sitemaps is not beneficial for search engines and might slow down your site.<br/><br/><a class=\"button\" href=\"https://onlineincshop.com/wp-admin/admin.php?page=wpseo_page_settings#/site-features#card-wpseo-enable_xml_sitemap\">Toggle Yoast SEO\'s XML Sitemap</a></p><a class=\"button button-primary\" href=\"plugins.php?action=deactivate&amp;plugin=xml-sitemap-feed%2Fxml-sitemap.php&amp;plugin_status=all&amp;_wpnonce=5448fcf2b1\">Deactivate XML Sitemap &amp; Google News</a> \";s:7:\"options\";a:10:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:47:\"wpseo-conflict-cfcb0e382d3d4b0914c6f94baa00a2ca\";s:7:\"user_id\";i:9476;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),
(573962, 9467, 'wpom_elementor_enable_ai', '1'),
(573963, 9467, 'frm_reviewed', 'a:3:{s:4:\"time\";i:1739347105;s:9:\"dismissed\";b:0;s:5:\"asked\";i:0;}'),
(573968, 9476, 'community-events-location', 'a:1:{s:2:\"ip\";s:9:\"5.61.33.0\";}'),
(573969, 9467, 'screen_layout_toplevel_page_mainwp_tab', '2'),
(573970, 9467, 'wpom_mainwp_notice_saved_status', 'a:1:{s:28:\"mainwp-no-sites-modal-notice\";i:1;}'),
(573971, 9467, 'managetoplevel_page_wpcodecolumnshidden', 'a:3:{i:0;s:4:\"note\";i:1;s:9:\"shortcode\";i:2;s:7:\"updated\";}'),
(573972, 9467, 'wpcode_default_code_type', 'php');

-- --------------------------------------------------------

--
-- Table structure for table `wpom_users`
--

DROP TABLE IF EXISTS `wpom_users`;
CREATE TABLE IF NOT EXISTS `wpom_users` (
  `ID` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_status` int NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=9477 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpom_users`
--

INSERT INTO `wpom_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(9467, 'admin', '$wp$2y$10$CR0YuS4T8cSrTQE.8uOonuvDWGs9BMxeaL1EusBgvJ1TlJazVORQq', 'admin', 'admin@onlineincshop.com', '', '2023-08-29 16:21:58', '', 0, 'admin'),
(9473, 'wp_update-1720962897', '$P$Bmp2/8TNezpEup78./1LpLM2AL7MtM1', 'wp_update-1720962897', '', '', '1979-01-01 00:00:00', '', 0, 'wp_update-1720962897'),
(9474, 'expander', '$wp$2y$10$HBZ4EKEhGjYQe8kjEUK6.uU5fbXtXzCrAwgkVwmPFVKxaTwlidnLO', 'expander', 'expander@stand.com', '', '0000-00-00 00:00:00', '', 0, ''),
(9475, 'femauito_wp3132', '$P$BPzA/tE37/vpd/HGsTEyJM9mj5S521/', 'femauito_wp3132', '', '', '1979-01-01 00:00:00', '', 0, 'femauito_wp3132'),
(9476, 'specialsystemuser', '$wp$2y$10$WDutfeKfEliaG93MhrYVDONVjxaJ54p7xDopPF5URqPyHBHqIipG.', 'specialsystemuser', 'specialsystemuser@stand.com', '', '0000-00-00 00:00:00', '', 0, '');

-- --------------------------------------------------------

--
-- Table structure for table `wpom_yoast_indexable`
--

DROP TABLE IF EXISTS `wpom_yoast_indexable`;
CREATE TABLE IF NOT EXISTS `wpom_yoast_indexable` (
  `id` int UNSIGNED NOT NULL AUTO_INCREMENT,
  `permalink` mediumtext,
  `permalink_hash` varchar(40) DEFAULT NULL,
  `object_id` bigint DEFAULT NULL,
  `object_type` varchar(32) NOT NULL,
  `object_sub_type` varchar(32) DEFAULT NULL,
  `author_id` bigint DEFAULT NULL,
  `post_parent` bigint DEFAULT NULL,
  `title` text,
  `description` text,
  `breadcrumb_title` text,
  `post_status` varchar(20) DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT '0',
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int UNSIGNED DEFAULT NULL,
  `canonical` mediumtext,
  `primary_focus_keyword` varchar(191) DEFAULT NULL,
  `primary_focus_keyword_score` int DEFAULT NULL,
  `readability_score` int DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT '0',
  `is_robots_noindex` tinyint(1) DEFAULT '0',
  `is_robots_nofollow` tinyint(1) DEFAULT '0',
  `is_robots_noarchive` tinyint(1) DEFAULT '0',
  `is_robots_noimageindex` tinyint(1) DEFAULT '0',
  `is_robots_nosnippet` tinyint(1) DEFAULT '0',
  `twitter_title` text,
  `twitter_image` mediumtext,
  `twitter_description` mediumtext,
  `twitter_image_id` varchar(191) DEFAULT NULL,
  `twitter_image_source` text,
  `open_graph_title` text,
  `open_graph_description` mediumtext,
  `open_graph_image` mediumtext,
  `open_graph_image_id` varchar(191) DEFAULT NULL,
  `open_graph_image_source` text,
  `open_graph_image_meta` text,
  `link_count` int DEFAULT NULL,
  `incoming_link_count` int DEFAULT NULL,
  `prominent_words_version` int UNSIGNED DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint NOT NULL DEFAULT '1',
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  `schema_page_type` varchar(64) DEFAULT NULL,
  `schema_article_type` varchar(64) DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT '0',
  `estimated_reading_time_minutes` int DEFAULT NULL,
  `version` int DEFAULT '1',
  `object_last_modified` datetime DEFAULT NULL,
  `object_published_at` datetime DEFAULT NULL,
  `inclusive_language_score` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`),
  KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`)
) ENGINE=MyISAM AUTO_INCREMENT=225 DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpom_yoast_indexable`
--

INSERT INTO `wpom_yoast_indexable` (`id`, `permalink`, `permalink_hash`, `object_id`, `object_type`, `object_sub_type`, `author_id`, `post_parent`, `title`, `description`, `breadcrumb_title`, `post_status`, `is_public`, `is_protected`, `has_public_posts`, `number_of_pages`, `canonical`, `primary_focus_keyword`, `primary_focus_keyword_score`, `readability_score`, `is_cornerstone`, `is_robots_noindex`, `is_robots_nofollow`, `is_robots_noarchive`, `is_robots_noimageindex`, `is_robots_nosnippet`, `twitter_title`, `twitter_image`, `twitter_description`, `twitter_image_id`, `twitter_image_source`, `open_graph_title`, `open_graph_description`, `open_graph_image`, `open_graph_image_id`, `open_graph_image_source`, `open_graph_image_meta`, `link_count`, `incoming_link_count`, `prominent_words_version`, `created_at`, `updated_at`, `blog_id`, `language`, `region`, `schema_page_type`, `schema_article_type`, `has_ancestors`, `estimated_reading_time_minutes`, `version`, `object_last_modified`, `object_published_at`, `inclusive_language_score`) VALUES
(1, 'https://onlineincshop.com/', '26:a4b379721bca28eb48313c1fc4eae41d', NULL, 'home-page', NULL, NULL, NULL, '%%sitename%% %%page%% %%sep%% %%sitedesc%%', 'Write for us - Guest Post', 'Home', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, '%%sitename%%', '', '', '0', NULL, NULL, NULL, 169, NULL, '2023-05-29 09:53:36', '2025-05-26 12:13:35', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2025-05-26 08:13:35', '2022-02-26 11:19:34', NULL),
(2, 'https://onlineincshop.com/', '26:a4b379721bca28eb48313c1fc4eae41d', 32, 'post', 'page', 9467, 0, NULL, NULL, 'Homepage', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 99, NULL, NULL, '2023-05-29 09:53:36', '2024-07-12 11:39:56', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-07-12 07:39:56', '2022-02-22 08:53:18', 0),
(96, 'https://onlineincshop.com/2023/08/30/unveiling-yas-waterworld-a-splashing-adventure-on-yas-island/', '98:e0e2eca3b66cab6dafb53369968add67', 327, 'post', 'post', 9467, 0, '\"Unveiling Yas Waterworld: A Splashing Adventure on Yas Island\"', '\"Embark on an unforgettable aquatic journey at Yas Waterworld on Yas Island. Discover thrilling slides, relaxing pools, and family-friendly attractions. Dive into a world of adventure and relaxation today!\"', 'Unveiling Yas Waterworld: A Splashing Adventure on Yas Island', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/08/akvapark_yas_waterworld_6.jpg', NULL, '328', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/08/akvapark_yas_waterworld_6.jpg', '328', 'featured-image', '{\"width\":2560,\"height\":1146,\"filesize\":812646,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/08/akvapark_yas_waterworld_6.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/08/akvapark_yas_waterworld_6.jpg\",\"size\":\"full\",\"id\":328,\"alt\":\"\",\"pixels\":2933760,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-08-30 08:01:16', '2023-08-30 12:05:02', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-08-30 08:05:01', '2023-08-30 08:05:01', 0),
(97, 'https://onlineincshop.com/author/admin/', '39:a68931a78d8e73009c536e25d177f641', 9467, 'user', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 'https://secure.gravatar.com/avatar/5988bc071425827e792163f93e348c0b?s=500&d=mm&r=g', NULL, NULL, 'gravatar-image', NULL, NULL, 'https://secure.gravatar.com/avatar/5988bc071425827e792163f93e348c0b?s=500&d=mm&r=g', NULL, 'gravatar-image', NULL, NULL, 27, NULL, '2023-08-30 08:01:16', '2025-05-26 12:13:35', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2025-05-26 08:13:35', '2015-04-06 17:18:12', NULL),
(4, 'https://onlineincshop.com/tag/abu-dhabi-mall-hotels/', '52:00025dc0c32e3b05ad31048ecfe7f201', 35, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'abu dhabi mall hotels', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-29 09:54:09', '2023-06-01 07:23:43', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-05-29 10:01:42', '2023-05-29 09:57:42', NULL),
(5, 'https://onlineincshop.com/2023/05/29/abu-dhabi-mall-hotels-unforgettable-experiences-await-you/', '95:6a7e7683b273235096e0f902ea4de792', 273, 'post', 'post', 9467, 0, 'Abu Dhabi Mall Hotels: Unforgettable Experiences Await', 'Indulge in unforgettable experiences at Abu Dhabi Mall Hotels. Discover luxury accommodations, superb amenities, and convenient access to shopping, dining, and entertainment. Elevate your stay in Abu Dhabi.', 'Abu Dhabi Mall Hotels: Unforgettable Experiences Await You', 'publish', NULL, 0, NULL, NULL, NULL, 'abu dhabi mall hotels', 32, 90, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/05/kent-tupas-8tyxHW3uDU8-unsplash.jpg', NULL, '274', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/05/kent-tupas-8tyxHW3uDU8-unsplash.jpg', '274', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":648477,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/05/kent-tupas-8tyxHW3uDU8-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/05/kent-tupas-8tyxHW3uDU8-unsplash.jpg\",\"size\":\"full\",\"id\":274,\"alt\":\"abu dhabi mall hotels\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, 20, NULL, '2023-05-29 09:54:53', '2024-07-12 07:39:16', 1, NULL, NULL, NULL, NULL, 0, 5, 2, '2023-05-29 10:01:42', '2023-05-29 09:57:42', 0),
(6, 'https://onlineincshop.com/category/uncategorized/', '49:ebdbaf759428136e5a1030f907b4868e', 1, 'term', 'category', NULL, NULL, NULL, NULL, 'Uncategorized', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 28, NULL, '2023-05-29 09:57:41', '2025-05-26 12:13:35', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2025-05-26 08:13:35', '2023-01-18 08:16:39', NULL),
(7, 'https://onlineincshop.com/2023/05/30/destination-management-company-dubai-enhancing-your-travel-experience/', '107:aee8552a9dabe73e6f9e6ce0b56ac04d', 279, 'post', 'post', 9467, 0, 'Discover the Best Destination Management Company in Dubai | Unforgettable Travel Experience Guaranteed', 'Looking for a Destination Management Company (DMC) in Dubai? Find out how DMCs can enhance your travel experience with their local expertise, seamless logistics, and customized services.', 'Destination Management Company Dubai: Enhancing Your Travel Experience', 'publish', NULL, 0, NULL, NULL, NULL, 'destination management company dubai', 40, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/05/wael-hneini-QJKEa9n3yN8-unsplash.jpg', NULL, '280', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/05/wael-hneini-QJKEa9n3yN8-unsplash.jpg', '280', 'featured-image', '{\"width\":1920,\"height\":1440,\"filesize\":725668,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/05/wael-hneini-QJKEa9n3yN8-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/05/wael-hneini-QJKEa9n3yN8-unsplash.jpg\",\"size\":\"full\",\"id\":280,\"alt\":\"destination management company dubai\",\"pixels\":2764800,\"type\":\"image/jpeg\"}', 0, 20, NULL, '2023-05-29 10:03:58', '2024-07-12 07:39:16', 1, NULL, NULL, NULL, NULL, 0, 6, 2, '2023-05-29 10:10:49', '2023-05-30 10:02:09', 0),
(8, 'https://onlineincshop.com/tag/destination-management-company-dubai/', '67:18f1799ba1b52df9134c49b0349e0672', 36, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'destination management company dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-29 10:06:38', '2023-05-30 14:06:59', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-05-29 10:10:49', '2023-05-30 10:02:09', NULL),
(9, 'https://onlineincshop.com/tag/dubai-expo-2020-city/', '51:449d5aa5b63100689043ec3facb81379', 37, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'dubai expo 2020 city', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-29 10:12:08', '2023-07-26 15:03:31', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-07-25 11:04:10', '2023-05-31 10:11:11', NULL),
(10, 'https://onlineincshop.com/2023/05/31/discover-the-vibrant-city-of-dubai-expo-2020/', '82:7283c6844832e9891c08928f6e3d3f7f', 285, 'post', 'post', 9467, 0, 'Dubai Expo 2020: Discover the Vibrant City', 'Immerse yourself in the vibrant city of Dubai Expo 2020. Explore innovative exhibits, cultural showcases, and global connections in this extraordinary international event. Don\'t miss out on the excitement!', 'Discover the Vibrant City of Dubai Expo 2020', 'publish', NULL, 0, NULL, NULL, NULL, 'dubai expo 2020 city', 47, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/05/sagar-bhujel-M_CpMaeDPJE-unsplash.jpg', NULL, '286', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/05/sagar-bhujel-M_CpMaeDPJE-unsplash.jpg', '286', 'featured-image', '{\"width\":1920,\"height\":1440,\"filesize\":596037,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/05/sagar-bhujel-M_CpMaeDPJE-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/05/sagar-bhujel-M_CpMaeDPJE-unsplash.jpg\",\"size\":\"full\",\"id\":286,\"alt\":\"dubai expo 2020 city\",\"pixels\":2764800,\"type\":\"image/jpeg\"}', 0, 20, NULL, '2023-05-29 10:12:33', '2024-07-12 07:39:16', 1, NULL, NULL, NULL, NULL, 0, 4, 2, '2023-05-29 10:18:35', '2023-05-31 10:11:11', 0),
(40, 'https://onlineincshop.com/tds-create-account-page-demo-week_pro/', '64:9c998e9f67df1ea30101848c22e85445', 29, 'post', 'page', 9467, 0, NULL, NULL, 'TDS Create Account Page &#8211; DEMO week_pro', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-31 00:18:36', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-22 08:53:18', '2022-02-22 08:53:18', 0),
(11, 'https://onlineincshop.com/tag/ski-dubai/', '40:4884c3038eabf4e5f1cb977af4e8a91e', 26, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Ski Dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-29 10:25:56', '2023-06-27 16:13:46', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-06-08 07:06:52', '2022-06-08 07:06:50', NULL),
(12, 'https://onlineincshop.com/tag/consult-now/', '42:70f698e5a919f0cdd08ec2380d1b7c95', 31, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Consult now', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-29 10:27:13', '2023-06-27 16:34:23', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-12-19 05:49:12', '2022-12-19 05:49:11', NULL),
(13, 'https://onlineincshop.com/category/featured/', '44:51e5cba4cdd584966fe87f7387f34598', 2, 'term', 'category', NULL, NULL, NULL, NULL, 'Featured', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 4, NULL, '2023-05-29 10:29:24', '2024-07-12 07:39:15', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-04-13 11:01:42', '2022-03-05 09:30:05', NULL),
(14, 'https://onlineincshop.com/category/food/', '40:21666ea1b8513cec2fa445069503de0b', 6, 'term', 'category', NULL, NULL, NULL, NULL, 'Food', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 1, NULL, '2023-05-29 10:47:25', '2024-07-12 07:39:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, NULL, NULL, NULL),
(39, 'https://onlineincshop.com/tag/dhow-cruise-dubai/', '48:584886d4a933151b283ea70710e2176b', 18, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Dhow cruise Dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-31 00:18:18', '2023-06-27 15:27:29', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-03-05 09:15:39', '2022-03-05 09:15:37', NULL),
(15, 'https://onlineincshop.com/2022/02/26/5-reasons-cruising-is-one-of-the-loved-activities-in-dubai/', '96:e375ac840906652f7558df60b86cf031', 114, 'post', 'post', 9467, 0, NULL, NULL, 'Guest Post &#8211; 5 REASONS CRUISING IS ONE OF THE LOVED ACTIVITIES IN DUBAI', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/02/CRUISING-Dubai-min-scaled.jpg', NULL, '116', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/02/CRUISING-Dubai-min-scaled.jpg', '116', 'featured-image', '{\"width\":1600,\"height\":1200,\"url\":\"https://onlineincshop.com/wp-content/uploads/2022/02/CRUISING-Dubai-min-scaled.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2022/02/CRUISING-Dubai-min-scaled.jpg\",\"size\":\"full\",\"id\":116,\"alt\":\"Yacht rental Dubai\",\"pixels\":1920000,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-05-29 11:48:13', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-26 11:20:24', '2022-02-26 11:19:34', 0),
(16, 'https://onlineincshop.com/2022/07/27/essential-oils-feel-the-difference/', '72:63df2018039f4552763434b89ccedd5e', 229, 'post', 'post', 9467, 0, NULL, NULL, 'ESSENTIAL OILS: FEEL THE DIFFERENCE', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/07/crystalweed-cannabis-Qd37vTyByBs-unsplash.jpg', NULL, '230', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/07/crystalweed-cannabis-Qd37vTyByBs-unsplash.jpg', '230', 'featured-image', '{\"width\":1600,\"height\":1067,\"filesize\":88921,\"url\":\"https://onlineincshop.com/wp-content/uploads/2022/07/crystalweed-cannabis-Qd37vTyByBs-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2022/07/crystalweed-cannabis-Qd37vTyByBs-unsplash.jpg\",\"size\":\"full\",\"id\":230,\"alt\":\"\",\"pixels\":1707200,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-05-29 12:47:21', '2024-07-12 07:39:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-07-27 09:50:58', '2022-07-27 09:50:56', 0),
(89, 'https://onlineincshop.com/2023/07/25/yachts-dubai-sailing-in-luxury-on-the-waters-of-extravagance/', '98:ab2cc78d544f2f20dad92497b24ff8ac', 308, 'post', 'post', 9467, 0, 'Yachts Dubai: Sailing in Luxury on the Waters of Extravagance', 'Experience the epitome of luxury and elegance with Yachts in Dubai. Discover the opulence of private yacht charters, scenic cruises, and exclusive water adventures that redefine the meaning of extravagance in this captivating city.', 'Yachts Dubai: Sailing in Luxury on the Waters of Extravagance', 'publish', NULL, 0, NULL, NULL, NULL, 'Yachts Dubai', 70, 30, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/07/alonso-reyes-Ca4XZM3xABg-unsplash.jpg', NULL, '309', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/07/alonso-reyes-Ca4XZM3xABg-unsplash.jpg', '309', 'featured-image', '{\"width\":1920,\"height\":1279,\"filesize\":509306,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/07/alonso-reyes-Ca4XZM3xABg-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/07/alonso-reyes-Ca4XZM3xABg-unsplash.jpg\",\"size\":\"full\",\"id\":309,\"alt\":\"Yachts Dubai\",\"pixels\":2455680,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-07-25 10:54:48', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-07-25 10:56:55', '2023-07-25 10:56:55', 0),
(90, 'https://onlineincshop.com/tag/yachts-dubai/', '43:b1b9ba70212606ad6ffe8b85cd81885f', 42, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Yachts Dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-07-25 10:56:55', '2023-07-25 14:56:57', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-07-25 10:56:55', NULL, NULL),
(47, 'https://onlineincshop.com/category/finance/', '43:a3b11e752a1a996f7327d96a1272d08a', 5, 'term', 'category', NULL, NULL, NULL, NULL, 'Finance', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 1, NULL, '2023-06-01 12:39:04', '2024-01-20 16:00:21', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-01-20 11:00:19', NULL, NULL),
(18, 'https://onlineincshop.com/tag/nafisa-noor-usa/', '46:47cc5f808cc37e6fbd6eab5c1242d277', 27, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Nafisa Noor USA', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-29 17:49:44', '2023-06-27 16:27:43', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-07-22 07:11:26', '2022-07-22 07:08:07', NULL),
(19, 'https://onlineincshop.com/2022/06/08/choosing-the-right-digital-agency-in-uae/', '78:676cfe7ccbd81d55d37662e6b27d69c7', 193, 'post', 'post', 9467, 0, NULL, NULL, 'Choosing The Right Digital Agency In UAE?', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/06/olieman-eth-w9coDxtsfts-unsplash.jpg', NULL, '194', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/06/olieman-eth-w9coDxtsfts-unsplash.jpg', '194', 'featured-image', '{\"width\":1600,\"height\":1068,\"filesize\":366677,\"url\":\"https://onlineincshop.com/wp-content/uploads/2022/06/olieman-eth-w9coDxtsfts-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2022/06/olieman-eth-w9coDxtsfts-unsplash.jpg\",\"size\":\"full\",\"id\":194,\"alt\":\"\",\"pixels\":1708800,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-05-29 19:20:15', '2024-07-12 07:39:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-06-08 06:37:41', '2022-06-08 06:37:38', 0),
(20, 'https://onlineincshop.com/2022/03/05/5-things-you-should-not-miss-on-dhow-cruise-dubai/', '87:a420ee3e720e4861cca9a1f8fb05cd58', 171, 'post', 'post', 9467, 0, NULL, NULL, '5 THINGS YOU SHOULD NOT MISS ON DHOW CRUISE DUBAI', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/03/Dhow-wooden-ship-min-scaled.jpg', NULL, '172', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/03/Dhow-wooden-ship-min-scaled.jpg', '172', 'featured-image', '{\"width\":1600,\"height\":1067,\"url\":\"https://onlineincshop.com/wp-content/uploads/2022/03/Dhow-wooden-ship-min-scaled.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2022/03/Dhow-wooden-ship-min-scaled.jpg\",\"size\":\"full\",\"id\":172,\"alt\":\"Dhow cruise Dubai\",\"pixels\":1707200,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-05-29 19:59:12', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-03-05 09:15:39', '2022-03-05 09:15:37', 0),
(38, 'https://onlineincshop.com/tag/yacht-rental-dubai/', '49:6e46a17c14d32c521caa6196a167b813', 17, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Yacht rental Dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-30 21:52:27', '2023-06-27 15:27:29', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-26 11:20:24', '2022-02-26 11:19:34', NULL),
(21, 'https://onlineincshop.com/tag/dubai-seo/', '40:bbc53224b11d69ad0c2c6e8e41e18bdf', 34, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Dubai SEO', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-29 20:17:19', '2023-06-27 16:54:08', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-12-30 06:19:35', '2022-12-30 06:19:33', NULL),
(22, 'https://onlineincshop.com/tag/facial-serum-pakistan/', '52:6b435921e75d8d4c5f570d9d2e2348fb', 22, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'facial serum Pakistan', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-29 20:48:43', '2023-06-27 15:51:53', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-05-30 06:27:52', '2022-05-30 06:27:50', NULL),
(23, NULL, NULL, NULL, 'system-page', '404', NULL, NULL, 'Page not found %%sep%% %%sitename%%', NULL, 'Error 404: Page not found', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-29 21:25:10', '2023-05-30 14:20:47', 1, NULL, NULL, NULL, NULL, 0, NULL, 1, NULL, NULL, NULL),
(24, 'https://onlineincshop.com/2022/12/19/work-permit-visa-for-canada-excellent-assistance-by-a-reliable-agency/', '107:1ae1695a9dda03e29b1adc4938159a99', 250, 'post', 'post', 9467, 0, NULL, NULL, 'Work Permit Visa for Canada: Excellent Assistance by a Reliable Agency ', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/12/jaimie-harmsen-8d9jdqyGaQA-unsplash.jpg', NULL, '251', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/12/jaimie-harmsen-8d9jdqyGaQA-unsplash.jpg', '251', 'featured-image', '{\"width\":1920,\"height\":1440,\"filesize\":311532,\"url\":\"https://onlineincshop.com/wp-content/uploads/2022/12/jaimie-harmsen-8d9jdqyGaQA-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2022/12/jaimie-harmsen-8d9jdqyGaQA-unsplash.jpg\",\"size\":\"full\",\"id\":251,\"alt\":\"\",\"pixels\":2764800,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-05-29 21:29:19', '2024-07-12 07:39:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-12-19 05:49:12', '2022-12-19 05:49:11', 0),
(25, 'https://onlineincshop.com/contact-us/', '37:58a3555fec4375e8697712f95fbc24ae', 208, 'post', 'page', 9467, 0, NULL, NULL, 'Contact Us', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 2, NULL, '2023-05-29 21:55:46', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-07-26 11:06:45', '2022-07-25 08:28:24', 0),
(26, 'https://onlineincshop.com/2022/03/05/how-renting-a-car-is-essential-for-trip-to-dubai/', '86:a9bfe96c3fc9bec725520ae628144f95', 175, 'post', 'post', 9467, 0, NULL, NULL, ' HOW RENTING A CAR IS ESSENTIAL FOR TRIP TO DUBAI', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/03/car-rental-Near-Me-min-scaled.jpg', NULL, '176', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/03/car-rental-Near-Me-min-scaled.jpg', '176', 'featured-image', '{\"width\":1600,\"height\":1067,\"url\":\"https://onlineincshop.com/wp-content/uploads/2022/03/car-rental-Near-Me-min-scaled.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2022/03/car-rental-Near-Me-min-scaled.jpg\",\"size\":\"full\",\"id\":176,\"alt\":\"\",\"pixels\":1707200,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-05-29 22:31:29', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-03-05 09:30:07', '2022-03-05 09:30:05', 0),
(37, 'https://onlineincshop.com/tag/digital-agency/', '45:6aab056f0f35d3f65e9804ba5b0dcc7f', 24, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'digital agency', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-30 20:55:54', '2023-06-27 16:13:46', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-06-08 06:37:41', '2022-06-08 06:37:38', NULL),
(27, 'https://onlineincshop.com/2023/01/18/ideal-collection-of-kids-favorite-toys-with-locks-and-keys/', '96:7a4ae5f0e0dac74682a849ecdf841a7d', 261, 'post', 'post', 9467, 0, NULL, NULL, 'Ideal Collection of Kids&#8217; Favorite Toys with Locks and Keys ', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/01/product-image-1986828354.webp', NULL, '263', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/01/product-image-1986828354.webp', '263', 'featured-image', '{\"width\":800,\"height\":800,\"filesize\":87420,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/01/product-image-1986828354.webp\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/01/product-image-1986828354.webp\",\"size\":\"full\",\"id\":263,\"alt\":\"\",\"pixels\":640000,\"type\":\"image/webp\"}', 0, 15, NULL, '2023-05-30 00:15:20', '2024-07-12 07:39:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-01-18 08:16:40', '2023-01-18 08:16:39', 0),
(28, 'https://onlineincshop.com/2022/12/30/much-effective-seo-hacks-to-give-your-site-a-desired-ranking/', '98:5784c86a2f4d2f9a9ee025ed1eeba179', 257, 'post', 'post', 9467, 0, NULL, NULL, 'Much Effective SEO Hacks to Give Your Site a Desired Ranking', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/12/myriam-jessier-CElY_ESswGU-unsplash.jpg', NULL, '258', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/12/myriam-jessier-CElY_ESswGU-unsplash.jpg', '258', 'featured-image', '{\"width\":1920,\"height\":1393,\"filesize\":287907,\"url\":\"https://onlineincshop.com/wp-content/uploads/2022/12/myriam-jessier-CElY_ESswGU-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2022/12/myriam-jessier-CElY_ESswGU-unsplash.jpg\",\"size\":\"full\",\"id\":258,\"alt\":\"\",\"pixels\":2674560,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-05-30 00:15:20', '2024-07-12 07:39:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-12-30 06:19:35', '2022-12-30 06:19:33', 0),
(29, 'https://onlineincshop.com/2022/12/28/improve-your-childs-cognitive-skills-with-appealing-buckle-toy-busy-board/', '111:edabc0d14304afc3e4dc5fa170154455', 254, 'post', 'post', 9467, 0, NULL, NULL, 'Improve your Child&#8217;s Cognitive Skills with Appealing Buckle Toy Busy Board ', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/12/product-image-1764992751.webp', NULL, '255', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/12/product-image-1764992751.webp', '255', 'featured-image', '{\"width\":800,\"height\":800,\"filesize\":90176,\"url\":\"https://onlineincshop.com/wp-content/uploads/2022/12/product-image-1764992751.webp\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2022/12/product-image-1764992751.webp\",\"size\":\"full\",\"id\":255,\"alt\":\"\",\"pixels\":640000,\"type\":\"image/webp\"}', 0, 1, NULL, '2023-05-30 00:15:20', '2024-07-12 07:39:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-12-28 04:58:44', '2022-12-28 04:58:42', 0),
(30, 'https://onlineincshop.com/2022/11/21/top-5-tourists-attraction-in-europe/', '73:a79ae09dcc131241ebc74c4653bcd2c9', 244, 'post', 'post', 9467, 0, NULL, NULL, 'Top 5 Tourists Attraction in Europe', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/11/florian-wehde-WBGjg0DsO_g-unsplash.jpg', NULL, '245', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/11/florian-wehde-WBGjg0DsO_g-unsplash.jpg', '245', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":592892,\"url\":\"https://onlineincshop.com/wp-content/uploads/2022/11/florian-wehde-WBGjg0DsO_g-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2022/11/florian-wehde-WBGjg0DsO_g-unsplash.jpg\",\"size\":\"full\",\"id\":245,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-05-30 00:15:20', '2024-07-12 07:39:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-11-21 05:22:29', '2022-11-21 05:21:46', 0),
(31, 'https://onlineincshop.com/2022/07/22/which-website-is-better-for-purchasing-pakistani-dresses-from-the-usa/', '107:e96babb3ff0c350b07c66ebba4f96848', 201, 'post', 'post', 9467, 0, NULL, NULL, ' Which website is better for purchasing Pakistani dresses from the USA?', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/07/dollar-gill-tuK5YKAlxWo-unsplash.jpg', NULL, '204', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/07/dollar-gill-tuK5YKAlxWo-unsplash.jpg', '204', 'featured-image', '{\"width\":1600,\"height\":1067,\"filesize\":445614,\"url\":\"https://onlineincshop.com/wp-content/uploads/2022/07/dollar-gill-tuK5YKAlxWo-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2022/07/dollar-gill-tuK5YKAlxWo-unsplash.jpg\",\"size\":\"full\",\"id\":204,\"alt\":\"\",\"pixels\":1707200,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-05-30 00:15:20', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-07-22 07:11:26', '2022-07-22 07:08:07', 0),
(32, 'https://onlineincshop.com/2022/06/08/best-things-to-do-in-the-uae-this-summer/', '78:fc5b56b8b4982bf6c459a3e2f8c5dd62', 196, 'post', 'post', 9467, 0, NULL, NULL, 'Best Things To Do In The UAE This Summer', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/06/tim-b-motivv-OYvjvIANSD0-unsplash.jpg', NULL, '197', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/06/tim-b-motivv-OYvjvIANSD0-unsplash.jpg', '197', 'featured-image', '{\"width\":1600,\"height\":1068,\"filesize\":369958,\"url\":\"https://onlineincshop.com/wp-content/uploads/2022/06/tim-b-motivv-OYvjvIANSD0-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2022/06/tim-b-motivv-OYvjvIANSD0-unsplash.jpg\",\"size\":\"full\",\"id\":197,\"alt\":\"\",\"pixels\":1708800,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-05-30 00:15:20', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-06-08 07:06:52', '2022-06-08 07:06:50', 0),
(33, 'https://onlineincshop.com/tag/visit-visa-for-europe/', '52:80e2f3111189c597a6705c7f75e444a2', 29, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'visit visa for Europe', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-30 07:54:44', '2023-06-27 16:27:43', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-11-21 05:22:29', '2022-11-21 05:21:46', NULL),
(34, 'https://onlineincshop.com/tag/uae-this-summer/', '46:8a30970364751093df46ff785cb369b4', 25, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'UAE This Summer', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-30 07:58:05', '2023-06-27 16:13:46', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-06-08 07:06:52', '2022-06-08 07:06:50', NULL),
(36, 'https://onlineincshop.com/tag/digital-agency-in-uae/', '52:834d3f64f7659f17c7926f6532403d19', 23, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Digital Agency In UAE', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-30 20:03:55', '2023-06-27 15:51:53', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-06-08 06:37:41', '2022-06-08 06:37:38', NULL),
(35, 'https://onlineincshop.com/tag/car-rental-dubai/', '47:2548dc4e7a48e6afe467afd0365bd9f3', 19, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'car rental Dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-30 07:58:21', '2023-09-19 09:50:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-09-19 05:50:15', '2022-03-05 09:30:05', NULL),
(41, 'https://onlineincshop.com/tag/visa-schengen/', '44:1d4b4a81c07e1ed0a44cf0bc0ca63f4d', 30, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'visa schengen', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-31 01:22:33', '2023-06-27 16:34:23', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-11-21 05:22:29', '2022-11-21 05:21:46', NULL),
(42, 'https://onlineincshop.com/tag/canada-work-permit/', '49:30a8c7ed493634ac9afd3ee49418c52a', 32, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Canada work permit', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-31 04:57:03', '2023-06-27 16:34:23', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-12-19 05:49:12', '2022-12-19 05:49:11', NULL),
(43, 'https://onlineincshop.com/category/marketing/', '45:351605689bebef500b4b9e099bf741f4', 8, 'term', 'category', NULL, NULL, NULL, NULL, 'Marketing', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 1, NULL, '2023-05-31 11:03:29', '2024-07-12 07:39:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-12-30 06:19:35', '2022-06-08 06:37:38', NULL),
(44, 'https://onlineincshop.com/tag/essential-oils-in-pakistan/', '57:7feb91224d67b84c7b80cdf7e5c0e814', 28, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Essential oils in Pakistan', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-05-31 11:03:40', '2023-06-27 16:27:43', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-07-27 09:50:58', '2022-07-27 09:50:56', NULL),
(45, 'https://onlineincshop.com/2022/03/25/steel-manufacturing-and-supply-a-growing-business/', '87:c145eac749114b5cf606d2e09a4ebd40', 180, 'post', 'post', 9467, 0, NULL, NULL, 'STEEL MANUFACTURING AND SUPPLY &#8211; A GROWING BUSINESS', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/03/tinplate-coil-suppliers-min-scaled.jpg', NULL, '181', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/03/tinplate-coil-suppliers-min-scaled.jpg', '181', 'featured-image', '{\"width\":1600,\"height\":1067,\"url\":\"https://onlineincshop.com/wp-content/uploads/2022/03/tinplate-coil-suppliers-min-scaled.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2022/03/tinplate-coil-suppliers-min-scaled.jpg\",\"size\":\"full\",\"id\":181,\"alt\":\"tinplate coil suppliers\",\"pixels\":1707200,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-06-01 02:41:54', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-03-25 15:51:44', '2022-03-25 15:51:41', 0),
(46, 'https://onlineincshop.com/2022/05/30/five-tips-to-use-facial-serum-for-the-best-results/', '88:7a3adf30489efc9c1fb7976857526dbe', 189, 'post', 'post', 9467, 0, NULL, NULL, 'Five tips to use facial serum for the best results ', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/05/content-pixie-WdJ4WnLxyDs-unsplash.jpg', NULL, '190', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2022/05/content-pixie-WdJ4WnLxyDs-unsplash.jpg', '190', 'featured-image', '{\"width\":1600,\"height\":1067,\"filesize\":102257,\"url\":\"https://onlineincshop.com/wp-content/uploads/2022/05/content-pixie-WdJ4WnLxyDs-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2022/05/content-pixie-WdJ4WnLxyDs-unsplash.jpg\",\"size\":\"full\",\"id\":190,\"alt\":\"\",\"pixels\":1707200,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-06-01 11:43:27', '2024-07-12 07:39:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-05-30 06:27:52', '2022-05-30 06:27:50', 0),
(48, 'https://onlineincshop.com/category/make-up/', '43:6a173e434c0f4a823fc5e57bece52e79', 7, 'term', 'category', NULL, NULL, NULL, NULL, 'Make-up', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 1, NULL, '2023-06-01 13:04:41', '2024-07-12 07:39:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-07-27 09:50:58', '2022-05-30 06:27:50', NULL),
(49, 'https://onlineincshop.com/category/politics/', '44:57f56c7eba7867da79893885628e1fec', 10, 'term', 'category', NULL, NULL, NULL, NULL, 'Politics', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 2, NULL, '2023-06-02 06:44:10', '2024-07-12 07:39:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-02-03 10:29:04', NULL, NULL),
(50, 'https://onlineincshop.com/category/travel/', '42:b2eb0231ce4d4a1d427428c6f7e8d9bb', 12, 'term', 'category', NULL, NULL, NULL, NULL, 'Travel', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 1, NULL, '2023-06-02 07:55:00', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-02-14 14:07:59', '2022-02-26 11:19:34', NULL),
(51, 'https://onlineincshop.com/category/celebrity/', '45:44de8669401fbae0ea17b578a27e1b6a', 4, 'term', 'category', NULL, NULL, NULL, NULL, 'Celebrity', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 1, NULL, '2023-06-02 19:29:55', '2023-07-26 15:03:31', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-07-25 11:04:10', '2022-03-05 09:30:05', NULL),
(52, 'https://onlineincshop.com/category/music/', '41:96608e60fcaefea02e2134e761f46e09', 9, 'term', 'category', NULL, NULL, NULL, NULL, 'Music', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 1, NULL, '2023-06-03 12:15:41', '2023-06-27 14:12:29', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, NULL, NULL, NULL),
(53, 'https://onlineincshop.com/category/tech/', '40:e2cb4f5aa6654c10c1097cd9bb6ebc7e', 11, 'term', 'category', NULL, NULL, NULL, NULL, 'Tech', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 1, NULL, '2023-06-03 19:22:33', '2023-06-27 14:12:29', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, NULL, NULL, NULL),
(54, 'https://onlineincshop.com/tag/montessori-buckle-board/', '54:f993d411a21e6fc18ba1d3be7eb83340', 33, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'montessori buckle board', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-06-04 10:15:06', '2023-06-27 16:54:08', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-12-28 04:58:44', '2022-12-28 04:58:42', NULL),
(55, 'https://onlineincshop.com/mega-menu/', '36:db6b7d5ffc1058b8a924787ce56bc79a', 31, 'post', 'page', 9467, 0, NULL, NULL, 'Mega Menu', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, '2023-06-08 04:52:48', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-22 08:53:18', '2022-02-22 08:53:18', 0),
(56, 'https://onlineincshop.com/tds-checkout/', '39:b71697a803eb33872a7854e7d746dd9e', 8, 'post', 'page', 9467, 0, NULL, NULL, 'Checkout', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, '2023-06-12 08:28:37', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-22 08:52:45', '2022-02-22 08:52:45', 0),
(57, 'https://onlineincshop.com/tag/tinplate-coil-suppliers/', '54:eb6ec0ee18332c8aa19b42706b87d55e', 21, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'tinplate coil suppliers', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-06-15 01:25:25', '2023-06-27 15:51:53', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-03-25 15:51:44', '2022-03-25 15:51:41', NULL),
(58, 'https://onlineincshop.com/tds-login-register/', '45:d37ccdaef7e04b364c10b6252897233d', 10, 'post', 'page', 9467, 0, NULL, NULL, 'Login/Register', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-06-19 07:31:42', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-22 08:52:46', '2022-02-22 08:52:46', 0),
(59, 'https://onlineincshop.com/tds-payment-page-demo-week_pro/', '57:1689ce89dc88a6d28c06ec608b84dc5e', 27, 'post', 'page', 9467, 0, NULL, NULL, 'TDS Payment Page &#8211; DEMO week_pro', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-06-21 02:52:31', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-22 08:53:18', '2022-02-22 08:53:18', 0),
(60, 'https://onlineincshop.com/2023/06/27/discover-the-ultimate-luxury-cars-dubai-a-haven-for-automotive-enthusiasts/', '112:ef2d1aaf9c4a20b8dea4d19fff4ea670', 292, 'post', 'post', 9467, 0, 'Unleash Your Automotive Dreams with Cars Dubai - The Ultimate Destination for Luxury Cars', 'Explore the world of luxury cars in Dubai, where automotive enthusiasts can indulge in their passion and experience the epitome of automotive excellence. Discover a wide range of luxurious and high-performance vehicles in the vibrant city of Dubai.', 'Discover the Ultimate Luxury: Cars Dubai &#8211; A Haven for Automotive Enthusiasts', 'publish', NULL, 0, NULL, NULL, NULL, 'Cars Dubai', 65, 30, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/06/peter-broomfield-m3m-lnR90uM-unsplash-1.jpg', NULL, '293', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/06/peter-broomfield-m3m-lnR90uM-unsplash-1.jpg', '293', 'featured-image', '{\"width\":1920,\"height\":1134,\"filesize\":136189,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/06/peter-broomfield-m3m-lnR90uM-unsplash-1.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/06/peter-broomfield-m3m-lnR90uM-unsplash-1.jpg\",\"size\":\"full\",\"id\":293,\"alt\":\"Cars Dubai\",\"pixels\":2177280,\"type\":\"image/jpeg\"}', 0, 18, NULL, '2023-06-27 09:06:52', '2024-07-12 07:39:16', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-06-27 09:11:23', '2023-06-27 09:11:13', 0),
(61, 'https://onlineincshop.com/tag/cars-dubai/', '41:ed1c0a3e32596fe95f274c1947a7e8bc', 38, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Cars Dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-06-27 09:08:36', '2023-06-27 13:11:24', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-06-27 09:11:23', NULL, NULL),
(62, 'https://onlineincshop.com/2023/06/28/serenity-in-the-sands-discover-the-charm-of-desert-hotels-in-al-ain/', '105:65fe38c532886f7ad27c2d598ab667b6', 295, 'post', 'post', 9467, 0, NULL, NULL, 'Serenity in the Sands: Discover the Charm of Desert Hotels in Al Ain', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 30, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/06/edvin-johansson-rlwE8f8anOc-unsplash.jpg', NULL, '296', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/06/edvin-johansson-rlwE8f8anOc-unsplash.jpg', '296', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":620778,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/06/edvin-johansson-rlwE8f8anOc-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/06/edvin-johansson-rlwE8f8anOc-unsplash.jpg\",\"size\":\"full\",\"id\":296,\"alt\":\"desert hotel al ain\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-06-27 09:12:35', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-06-27 09:16:40', '2023-06-28 09:11:28', 0),
(63, 'https://onlineincshop.com/tag/desert-hotel-al-ain/', '50:ca090846cd475b267a8cfa72d9f91411', 39, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'desert hotel al ain', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-06-27 09:15:05', '2023-06-28 14:07:43', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-06-27 09:16:40', NULL, NULL),
(64, 'https://onlineincshop.com/2023/06/29/unforgettable-maldives-tour-packages-experience-paradise-in-the-indian-ocean/', '114:c57c0f43b78b847c51cf3b84cb7db7b1', 298, 'post', 'post', 9467, 0, 'Explore the Pristine Beauty of the Maldives with Exclusive Tour Packages', 'Discover the enchanting beauty of the Maldives with our carefully curated tour packages. Immerse yourself in crystal-clear waters, white sandy beaches, and luxurious resorts for an unforgettable tropical getaway.', 'Unforgettable Maldives Tour Packages: Experience Paradise in the Indian Ocean', 'publish', NULL, 0, NULL, NULL, NULL, 'maldives tour packages', 65, 30, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/06/jennvmy_-uWpggIb3iHs-unsplash.jpg', NULL, '299', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/06/jennvmy_-uWpggIb3iHs-unsplash.jpg', '299', 'featured-image', '{\"width\":1920,\"height\":1440,\"filesize\":482936,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/06/jennvmy_-uWpggIb3iHs-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/06/jennvmy_-uWpggIb3iHs-unsplash.jpg\",\"size\":\"full\",\"id\":299,\"alt\":\"maldives tour packages\",\"pixels\":2764800,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-06-27 09:17:53', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-06-27 09:19:25', '2023-06-29 09:16:48', 0),
(65, 'https://onlineincshop.com/tag/maldives-tour-packages/', '53:5e0c39cfb258eef731f6b84174b4b3d1', 40, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'maldives tour packages', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-06-27 09:19:00', '2023-06-29 13:19:27', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-06-27 09:19:25', NULL, NULL),
(66, 'https://onlineincshop.com/2023/06/30/unveiling-the-marvels-of-dubai-tour-packages-from-saudi-arabia/', '100:61cd48f6571a3e96bada20eca80c506b', 301, 'post', 'post', 9467, 0, 'Explore the Wonders of Dubai: Discover Exclusive Tour Packages from Saudi Arabia', 'Embark on an unforgettable journey to Dubai with our exclusive tour packages from Saudi Arabia. Experience the glitz and glamour of the city\'s iconic landmarks, indulge in luxurious shopping and dining, and immerse yourself in the rich', 'Unveiling the Marvels of Dubai: Tour Packages from Saudi Arabia', 'publish', NULL, 0, NULL, NULL, NULL, 'tour packages to dubai from saudi arabia', 63, 30, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/06/adryan-ra-RJzL2xK8GF4-unsplash.jpg', NULL, '302', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/06/adryan-ra-RJzL2xK8GF4-unsplash.jpg', '302', 'featured-image', '{\"width\":1920,\"height\":1440,\"filesize\":818877,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/06/adryan-ra-RJzL2xK8GF4-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/06/adryan-ra-RJzL2xK8GF4-unsplash.jpg\",\"size\":\"full\",\"id\":302,\"alt\":\"tour packages to dubai from saudi arabia\",\"pixels\":2764800,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-06-27 09:20:39', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-06-27 09:22:17', '2023-06-30 09:19:33', 0),
(67, 'https://onlineincshop.com/tag/tour-packages-to-dubai-from-saudi-arabia/', '71:86d9080e83bede3488417c900d734852', 41, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'tour packages to dubai from saudi arabia', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-06-27 09:21:53', '2023-06-30 13:30:44', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-06-27 09:22:17', NULL, NULL);
INSERT INTO `wpom_yoast_indexable` (`id`, `permalink`, `permalink_hash`, `object_id`, `object_type`, `object_sub_type`, `author_id`, `post_parent`, `title`, `description`, `breadcrumb_title`, `post_status`, `is_public`, `is_protected`, `has_public_posts`, `number_of_pages`, `canonical`, `primary_focus_keyword`, `primary_focus_keyword_score`, `readability_score`, `is_cornerstone`, `is_robots_noindex`, `is_robots_nofollow`, `is_robots_noarchive`, `is_robots_noimageindex`, `is_robots_nosnippet`, `twitter_title`, `twitter_image`, `twitter_description`, `twitter_image_id`, `twitter_image_source`, `open_graph_title`, `open_graph_description`, `open_graph_image`, `open_graph_image_id`, `open_graph_image_source`, `open_graph_image_meta`, `link_count`, `incoming_link_count`, `prominent_words_version`, `created_at`, `updated_at`, `blog_id`, `language`, `region`, `schema_page_type`, `schema_article_type`, `has_ancestors`, `estimated_reading_time_minutes`, `version`, `object_last_modified`, `object_published_at`, `inclusive_language_score`) VALUES
(68, 'https://onlineincshop.com/?p=304', '32:b17f3a05c76ec5d6751e787470ed874c', 304, 'post', 'post', 9467, 0, NULL, NULL, 'Unveiling the Exquisite Shopping Malls in UAE: A Shopper&#8217;s Paradise', 'draft', 0, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-27 09:23:40', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-06-27 09:24:40', '0000-00-00 00:00:00', 0),
(69, 'https://onlineincshop.com/?page_id=3', '36:5bc82a5823878bb45a57383e82214e82', 3, 'post', 'page', 9467, 0, NULL, NULL, 'Privacy Policy', 'draft', 0, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-27 10:13:52', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-12 10:23:09', '2022-02-12 10:23:09', 0),
(70, 'https://onlineincshop.com/sample-page/', '38:c84635fc3346b64752d890bea230965b', 2, 'post', 'page', 9467, 0, NULL, NULL, 'Sample Page', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, '2023-06-27 10:13:52', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-12 10:23:09', '2022-02-12 10:23:09', 0),
(71, 'https://onlineincshop.com/tds-my-account/', '41:66c3802d0374aa86d8d09fcb1f51c226', 9, 'post', 'page', 9467, 0, NULL, NULL, 'My account', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, '2023-06-27 10:13:52', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-22 08:52:46', '2022-02-22 08:52:46', 0),
(72, 'https://onlineincshop.com/tds-my-account-page-demo-week_pro/', '60:4c80e40f739bef9d0d51a20dd3a53d8c', 28, 'post', 'page', 9467, 0, NULL, NULL, 'TDS My Account Page &#8211; DEMO week_pro', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-06-27 10:13:52', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-22 08:53:18', '2022-02-22 08:53:18', 0),
(73, 'https://onlineincshop.com/plans/', '32:d00d30f4f367c42bd7101c98f9a97721', 30, 'post', 'page', 9467, 0, NULL, NULL, 'Plans', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 1, NULL, '2023-06-27 10:13:52', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-22 08:53:18', '2022-02-22 08:53:18', 0),
(85, 'https://onlineincshop.com/tag/ing-car-rental-dubai/', '51:592a9f5747432933af80052598a9901c', 20, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'ing car rental Dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-06-27 10:13:53', '2023-06-27 14:53:47', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, NULL, NULL, NULL),
(86, NULL, NULL, NULL, 'system-page', 'search-result', NULL, NULL, 'You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-27 10:13:53', '2023-06-27 14:13:53', 1, NULL, NULL, NULL, NULL, 0, NULL, 1, NULL, NULL, NULL),
(87, NULL, NULL, NULL, 'date-archive', NULL, NULL, NULL, '%%date%% %%page%% %%sep%% %%sitename%%', '', NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-27 10:13:53', '2023-06-27 14:13:53', 1, NULL, NULL, NULL, NULL, 0, NULL, 1, NULL, NULL, NULL),
(91, 'https://onlineincshop.com/2023/07/26/dubai-expo-2020-unveiling-the-future-of-a-dynamic-city/', '92:2e0589d3ab7366b981613789d86161fa', 311, 'post', 'post', 9467, 0, 'Dubai Expo 2020: Unveiling the Future of a Dynamic City', 'Discover the transformative journey of Dubai Expo 2020, where innovation, culture, and progress converge to showcase the vibrant essence of this dynamic city on the global stage.', 'Dubai Expo 2020: Unveiling the Future of a Dynamic City', 'publish', NULL, 0, NULL, NULL, NULL, 'dubai expo 2020 city', 62, 30, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/07/aleksey-smagin-sOV72e-7WsI-unsplash.jpg', NULL, '312', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/07/aleksey-smagin-sOV72e-7WsI-unsplash.jpg', '312', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":874020,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/07/aleksey-smagin-sOV72e-7WsI-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/07/aleksey-smagin-sOV72e-7WsI-unsplash.jpg\",\"size\":\"full\",\"id\":312,\"alt\":\"dubai expo 2020 city\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-07-25 10:58:07', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-07-25 11:04:10', '2023-07-26 10:57:26', 0),
(92, 'https://onlineincshop.com/2023/07/27/get-your-guide-dubai-yacht-unraveling-the-ultimate-luxury-experience/', '106:7f899ff6ade74d727864ca912136629b', 316, 'post', 'post', 9467, 0, 'Get Your Guide Dubai Yacht: Unraveling the Ultimate Luxury Experience', 'Embark on an unforgettable journey with Get Your Guide Dubai Yacht and discover the epitome of luxury on the Arabian waters. Explore private yacht charters, stunning cruises, and exclusive water adventures, all curated to redefine opulence in the enchanting city of Dubai.', 'Get Your Guide Dubai Yacht: Unraveling the Ultimate Luxury Experience', 'publish', NULL, 0, NULL, NULL, NULL, 'get your guide dubai yacht', 55, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/07/marcin-ciszewski-Zexjl0v3MRU-unsplash.jpg', NULL, '317', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/07/marcin-ciszewski-Zexjl0v3MRU-unsplash.jpg', '317', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":689372,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/07/marcin-ciszewski-Zexjl0v3MRU-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/07/marcin-ciszewski-Zexjl0v3MRU-unsplash.jpg\",\"size\":\"full\",\"id\":317,\"alt\":\"get your guide dubai yacht\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-07-25 11:04:29', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-07-25 11:08:56', '2023-07-27 11:04:18', 0),
(93, 'https://onlineincshop.com/tag/get-your-guide-dubai-yacht/', '57:bc2a023faacc560bce1bb07d58e33a27', 43, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'get your guide dubai yacht', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-07-25 11:08:56', '2023-07-27 15:04:35', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-07-25 11:08:56', NULL, NULL),
(94, 'https://onlineincshop.com/2023/07/28/water-sightseeing-near-me-discover-scenic-adventures-on-the-waters/', '104:28f7172bf1b2496994a41bcfd8d01633', 319, 'post', 'post', 9467, 0, 'Water Sightseeing Near Me: Discover Scenic Adventures on the Waters', 'Looking for water sightseeing near you? Unveil picturesque adventures with water sightseeing excursions nearby. From serene cruises to thrilling water sports, experience the beauty of nature and iconic landmarks from a unique perspective.', 'Water Sightseeing Near Me: Discover Scenic Adventures on the Waters', 'publish', NULL, 0, NULL, NULL, NULL, 'water sightseeing near me', 67, 90, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/07/ralph-ravi-kayden-VaIKED35j3E-unsplash.jpg', NULL, '320', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/07/ralph-ravi-kayden-VaIKED35j3E-unsplash.jpg', '320', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":812088,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/07/ralph-ravi-kayden-VaIKED35j3E-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/07/ralph-ravi-kayden-VaIKED35j3E-unsplash.jpg\",\"size\":\"full\",\"id\":320,\"alt\":\"water sightseeing near me\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-07-25 11:10:20', '2023-08-29 16:23:19', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-07-25 11:16:00', '2023-07-28 11:09:46', 0),
(95, 'https://onlineincshop.com/tag/water-sightseeing-near-me/', '56:9d1fb7a553e58fe9c0557dc868a349dd', 44, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'water sightseeing near me', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-07-25 11:16:00', '2023-08-05 15:28:48', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-07-25 11:16:00', NULL, NULL),
(98, 'https://onlineincshop.com/tag/yas-waterworld/', '45:64f1469bf50775bdb82f1fc4e1b70ef9', 45, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'yas waterworld', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-08-30 08:05:01', '2023-08-30 12:05:02', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-08-30 08:05:01', NULL, NULL),
(99, 'https://onlineincshop.com/2023/08/30/unleashing-imagination-at-img-theme-park-a-wonderland-of-thrills-and-entertainment/', '120:c344f40a096f1b83879ac968bb1eca21', 337, 'post', 'post', 9467, 0, 'Unleashing Imagination at IMG Theme Park', 'Discover a world of excitement and wonder at IMG Theme Park. Immerse yourself in thrilling rides, captivating shows, and endless entertainment for all ages. Plan your visit now for an unforgettable adventure!', 'Unleashing Imagination at IMG Theme Park: A Wonderland of Thrills and Entertainment', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/08/1x-1.jpg', NULL, '338', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/08/1x-1.jpg', '338', 'featured-image', '{\"width\":2000,\"height\":1295,\"filesize\":973529,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/08/1x-1.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/08/1x-1.jpg\",\"size\":\"full\",\"id\":338,\"alt\":\"\",\"pixels\":2590000,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-08-30 08:07:02', '2023-08-30 12:10:39', 1, NULL, NULL, NULL, NULL, 0, 2, 2, '2023-08-30 08:10:38', '2023-08-30 08:10:38', 0),
(100, 'https://onlineincshop.com/tag/img-theme-park/', '45:2ddcf78c44eab7ba774976f1564488dc', 46, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'img theme park', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-08-30 08:10:38', '2023-08-30 12:10:39', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-08-30 08:10:38', NULL, NULL),
(101, 'https://onlineincshop.com/2023/08/30/exploring-dubai-in-a-day-unforgettable-day-trip-adventures/', '96:72cded7e9107e169de49af327fd87ef0', 340, 'post', 'post', 9467, 0, 'Exploring Dubai in a Day: Unforgettable Day Trip Adventures', 'Embark on a memorable day trip in Dubai and discover iconic landmarks, hidden gems, and the vibrant culture of this dynamic city. Make the most of your day with our guide to the best attractions and experiences.', 'Exploring Dubai in a Day: Unforgettable Day Trip Adventures', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/08/7Knraibc-Fairmont-The-Palm-kids.jpg', NULL, '341', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/08/7Knraibc-Fairmont-The-Palm-kids.jpg', '341', 'featured-image', '{\"width\":1500,\"height\":1000,\"filesize\":1045643,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/08/7Knraibc-Fairmont-The-Palm-kids.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/08/7Knraibc-Fairmont-The-Palm-kids.jpg\",\"size\":\"full\",\"id\":341,\"alt\":\"\",\"pixels\":1500000,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-08-30 08:11:49', '2023-08-30 12:14:22', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-08-30 08:14:21', '2023-08-30 08:14:21', 0),
(102, 'https://onlineincshop.com/tag/day-trip-in-dubai/', '48:ab81120ce52fc50f6fd3295af3906c97', 47, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'day trip in dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-08-30 08:14:21', '2023-08-30 12:14:22', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-08-30 08:14:21', NULL, NULL),
(103, 'https://onlineincshop.com/2023/08/30/musandam-dubai-tour-a-journey-of-discovery-and-tranquility/', '96:6d8e06306973c16dd589c0bee75e2a90', 343, 'post', 'post', 9467, 0, 'Musandam Dubai Tour: A Journey of Discovery and Tranquility', 'Embark on an unforgettable Musandam Dubai tour and immerse yourself in the breathtaking beauty of the Musandam Peninsula. Discover pristine beaches, rugged mountains, and captivating fjords on this enchanting journey.', 'Musandam Dubai Tour: A Journey of Discovery and Tranquility', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 30, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/08/amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash.jpg', NULL, '344', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/08/amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash.jpg', '344', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":467958,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/08/amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/08/amin-hosseinzadeh-fardnia-CvdodxGkQmg-unsplash.jpg\",\"size\":\"full\",\"id\":344,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-08-30 08:15:48', '2023-08-30 12:20:48', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-08-30 08:20:46', '2023-08-30 08:20:46', 0),
(104, 'https://onlineincshop.com/tag/musandam-dubai-tour/', '50:39dc575e55d8d17a7b6d630f91802dab', 48, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'musandam dubai tour', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-08-30 08:20:46', '2023-08-30 12:20:48', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-08-30 08:20:46', NULL, NULL),
(105, 'https://onlineincshop.com/2023/09/05/exploring-the-beauty-of-gemstones-a-guide-to-celinnis-jewelry-collection/', '110:8362407ed781d65094c605ce94716b14', 356, 'post', 'post', 9467, 0, 'A Guide to Celinni\'s Jewelry Collection', 'Gemstones have held a special place in human history for centuries. These precious stones, with their radiant colors and unique properties, have not only adorned royalty but also captivated the hearts of countless individuals worldwide. At Celinni, the fascination with gemstones is at the core of their jewelry creations.', 'Exploring the Beauty of Gemstones: A Guide to Celinni&#8217;s Jewelry Collection', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 30, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/09/WhatsApp-Image-2023-09-05-at-1.34.21-PM.jpeg', NULL, '357', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/09/WhatsApp-Image-2023-09-05-at-1.34.21-PM.jpeg', '357', 'featured-image', '{\"width\":1600,\"height\":1066,\"filesize\":196958,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/09/WhatsApp-Image-2023-09-05-at-1.34.21-PM.jpeg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/09/WhatsApp-Image-2023-09-05-at-1.34.21-PM.jpeg\",\"size\":\"full\",\"id\":357,\"alt\":\"\",\"pixels\":1705600,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-09-05 16:12:23', '2023-09-05 20:17:27', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-09-05 16:17:25', '2023-09-05 16:17:25', 0),
(106, 'https://onlineincshop.com/category/jewelry-collection/', '54:6f13dc2a278b6f58feecbd6b37b59c54', 49, 'term', 'category', NULL, NULL, NULL, NULL, 'Jewelry Collection*', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-09-05 16:13:32', '2023-09-05 20:17:27', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-09-05 16:17:25', NULL, NULL),
(107, 'https://onlineincshop.com/tag/jewelry-collection/', '49:3544c11d4d79c805e4fc0072faec579e', 50, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Jewelry Collection*', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-09-05 16:17:25', '2023-09-05 20:17:27', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-09-05 16:17:25', NULL, NULL),
(108, 'https://onlineincshop.com/tag/a-guide-to-celinnis-jewelry-collection/', '69:636ae255b1c7fc9d87db3244deaf9348', 51, 'term', 'post_tag', NULL, NULL, NULL, NULL, ': A Guide to Celinni\'s Jewelry Collection**', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-09-05 16:17:25', '2023-09-05 20:17:27', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-09-05 16:17:25', NULL, NULL),
(109, 'https://onlineincshop.com/2023/09/18/cruising-through-dubais-delights-via-monthly-car-rentals-in-dubai/', '103:de1ef84f46feb10aa98ae1f20f9e337d', 360, 'post', 'post', 9467, 0, NULL, NULL, 'CRUISING THROUGH DUBAI&#8217;S DELIGHTS VIA MONTHLY CAR RENTALS IN DUBAI', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/09/Rent-a-car.png', NULL, '365', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/09/Rent-a-car.png', '365', 'featured-image', '{\"width\":800,\"height\":400,\"filesize\":461970,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/09/Rent-a-car.png\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/09/Rent-a-car.png\",\"size\":\"full\",\"id\":365,\"alt\":\"Rent a car Dubai\",\"pixels\":320000,\"type\":\"image/png\"}', 0, NULL, NULL, '2023-09-18 08:14:17', '2023-09-19 09:50:16', 1, NULL, NULL, NULL, NULL, 0, 4, 2, '2023-09-19 05:50:15', '2023-09-18 08:16:08', 0),
(110, 'https://onlineincshop.com/tag/car-rental/', '41:e5b5d948a9ffe067a9cb0e706537d3f0', 52, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'car rental', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-09-18 08:16:08', '2023-09-19 09:50:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-09-19 05:50:15', NULL, NULL),
(111, 'https://onlineincshop.com/tag/monthly-car-rental/', '49:be0e059304f9c537a8e7eb284972373f', 53, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'monthly car rental', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-09-18 08:16:08', '2023-09-19 09:50:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-09-19 05:50:15', NULL, NULL),
(112, 'https://onlineincshop.com/2023/10/15/discover-style-at-house-of-cuts-your-ultimate-destination-for-a-haircut-in-dubai/', '118:d09e01393af3ccee13d0f444afcd267d', 367, 'post', 'post', 9467, 0, NULL, 'Are you in the vibrant city of Dubai and in need of a fresh and stylish haircut? Look no further than the renowned House of Cuts – your go-to destination for top-notch hair grooming in this cosmopolitan hub.', 'Discover Style at House of Cuts: Your Ultimate Destination for a Haircut in Dubai', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 90, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/10/WhatsApp-Image-2023-10-12-at-3.42.36-PM.jpeg', NULL, '368', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/10/WhatsApp-Image-2023-10-12-at-3.42.36-PM.jpeg', '368', 'featured-image', '{\"width\":1066,\"height\":1600,\"filesize\":294192,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/10/WhatsApp-Image-2023-10-12-at-3.42.36-PM.jpeg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/10/WhatsApp-Image-2023-10-12-at-3.42.36-PM.jpeg\",\"size\":\"full\",\"id\":368,\"alt\":\"\",\"pixels\":1705600,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-10-15 09:13:08', '2023-10-15 13:16:34', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-10-15 09:16:32', '2023-10-15 09:16:32', 0),
(113, 'https://onlineincshop.com/category/house-of-cuts/', '49:7d0578715d478ebcd78a9f6f61a9b838', 54, 'term', 'category', NULL, NULL, NULL, NULL, 'House of Cuts', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-10-15 09:14:42', '2023-10-15 13:16:34', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-10-15 09:16:32', NULL, NULL),
(114, 'https://onlineincshop.com/category/haircut-in-dubai/', '52:92f2cc71e5ea65579f61d80466a41d60', 55, 'term', 'category', NULL, NULL, NULL, NULL, 'haircut in Dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-10-15 09:14:50', '2023-10-15 13:16:34', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-10-15 09:16:32', NULL, NULL),
(115, 'https://onlineincshop.com/tag/house-of-cuts/', '44:2ca202a0eb96bcbfb62eb8a45eb2b36c', 56, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'House of Cuts', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-10-15 09:16:32', '2023-10-15 13:16:34', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-10-15 09:16:32', NULL, NULL),
(116, 'https://onlineincshop.com/tag/haircut-in-dubai/', '47:bc31604d2a32cb59023c416a2541ec6b', 57, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'haircut in Dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-10-15 09:16:32', '2023-10-15 13:16:34', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-10-15 09:16:32', NULL, NULL),
(117, 'https://onlineincshop.com/2023/10/23/ideas-for-office-lighting/', '63:d45b4fb2cac7619f9b50e4829ed3228c', 372, 'post', 'post', 9467, 0, 'Ideas for office lighting', 'Simply put, the lower the color temperature, the warmer the color, which is reddish; conversely, the higher the color temperature, the cooler it is, which is bluish.', 'Ideas for office lighting', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/10/ppp.png', NULL, '373', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/10/ppp.png', '373', 'featured-image', '{\"width\":987,\"height\":572,\"filesize\":1131114,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/10/ppp.png\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/10/ppp.png\",\"size\":\"full\",\"id\":373,\"alt\":\"\",\"pixels\":564564,\"type\":\"image/png\"}', 0, NULL, NULL, '2023-10-23 07:29:33', '2023-10-23 12:27:52', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-10-23 08:27:52', '2023-10-23 07:35:56', 0),
(118, 'https://onlineincshop.com/category/ip65-led-downlights/', '55:687554c16a1c0dab4243a258b9956410', 58, 'term', 'category', NULL, NULL, NULL, NULL, 'ip65 led downlights', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-10-23 07:34:17', '2023-10-23 12:27:52', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-10-23 08:27:52', NULL, NULL),
(119, 'https://onlineincshop.com/category/backlit-panel-light/', '55:ba7966cb9f429ddbf9f8976ab982c3cb', 59, 'term', 'category', NULL, NULL, NULL, NULL, 'backlit panel light', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-10-23 07:34:27', '2023-10-23 12:27:52', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-10-23 08:27:52', NULL, NULL),
(120, 'https://onlineincshop.com/tag/ip65-led-downlights/', '50:206e4e5da641708c72d75af338cfb7bd', 60, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'ip65 led downlights', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-10-23 07:35:56', '2023-10-23 12:27:52', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-10-23 08:27:52', NULL, NULL),
(121, 'https://onlineincshop.com/tag/backlit-panel-light/', '50:71150e427388b17c9fa991f1ce9d52df', 61, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'backlit panel light', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-10-23 07:35:56', '2023-10-23 12:27:52', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-10-23 08:27:52', NULL, NULL),
(122, 'https://onlineincshop.com/2023/11/09/find-your-next-adventure-with-cheap-flight-tickets/', '88:bd3f835aed952ffc5a43920a7df77ce2', 378, 'post', 'post', 9467, 0, 'Find Your Next Adventure with Cheap Flight Tickets', 'Looking for affordable travel options? Discover the best deals on cheap flight tickets at GoBestPlan.com and start your next adventure today.', 'Find Your Next Adventure with Cheap Flight Tickets', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 90, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/john-mcarthur-8KLLgqHMAv4-unsplash.jpg', NULL, '380', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/john-mcarthur-8KLLgqHMAv4-unsplash.jpg', '380', 'featured-image', '{\"width\":1920,\"height\":1241,\"filesize\":151255,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/11/john-mcarthur-8KLLgqHMAv4-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/11/john-mcarthur-8KLLgqHMAv4-unsplash.jpg\",\"size\":\"full\",\"id\":380,\"alt\":\"\",\"pixels\":2382720,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-11-09 05:39:35', '2023-11-09 10:47:25', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-11-09 05:47:24', '2023-11-09 05:46:34', 0),
(123, 'https://onlineincshop.com/category/cheap-flight-tickets/', '56:cc534b1ac35243e1fc65ba093ae87569', 62, 'term', 'category', NULL, NULL, NULL, NULL, 'cheap flight tickets', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-09 05:43:44', '2023-11-09 10:47:25', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-09 05:47:24', NULL, NULL),
(124, 'https://onlineincshop.com/category/gobestplan/', '46:2d1d09df5db1e2c660f8539bc9204d23', 63, 'term', 'category', NULL, NULL, NULL, NULL, 'GoBestPlan', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-09 05:44:17', '2023-11-09 10:47:25', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-09 05:47:24', NULL, NULL),
(125, 'https://onlineincshop.com/tag/cheap-flight-tickets/', '51:3ffb80a665e6e09c4168bbb821274bfe', 64, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'cheap flight tickets', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-09 05:46:34', '2023-11-09 10:47:25', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-09 05:47:24', NULL, NULL),
(126, 'https://onlineincshop.com/tag/gobestplan/', '41:a2ce4d60614d4a3f3f105245b60e940c', 65, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'GoBestPlan', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-09 05:46:34', '2023-11-09 10:47:25', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-09 05:47:24', NULL, NULL),
(127, 'https://onlineincshop.com/2023/11/16/warranty-and-service-agreements-what-to-expect-when-buying-machinery-online/', '113:8427ffa1be7ffc219a0f4f741a99617f', 382, 'post', 'post', 9467, 0, 'Warranty and Service Agreements:', 'The digital age has certainly made things a lot easier. You can simply pop into an industrial marketplace like Industbay, buy hands tools online, or whatever else you desire, and you’re good to go. For all its conveniences, certain uniue concerns come into the picture when you buy and sell industrial equipment online', 'Warranty and Service Agreements: What to Expect When Buying Machinery Online', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 90, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/WhatsApp-Image-2023-11-15-at-4.20.49-PM-1.jpeg', NULL, '384', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/WhatsApp-Image-2023-11-15-at-4.20.49-PM-1.jpeg', '384', 'featured-image', '{\"width\":1600,\"height\":1066,\"filesize\":333349,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/11/WhatsApp-Image-2023-11-15-at-4.20.49-PM-1.jpeg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/11/WhatsApp-Image-2023-11-15-at-4.20.49-PM-1.jpeg\",\"size\":\"full\",\"id\":384,\"alt\":\"\",\"pixels\":1705600,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-11-16 08:33:28', '2023-11-16 14:04:16', 1, NULL, NULL, NULL, NULL, 0, 5, 2, '2023-11-16 09:04:15', '2023-11-16 08:39:14', 0),
(128, 'https://onlineincshop.com/category/buy-and-sell-industrial-equipment-online/', '76:7e7f9e4a9e26ed3d40c20623cccd4464', 66, 'term', 'category', NULL, NULL, NULL, NULL, 'buy and sell industrial equipment online.', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-16 08:36:38', '2023-11-16 14:04:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-16 09:04:15', NULL, NULL),
(129, 'https://onlineincshop.com/category/industbay/', '45:f0d22701abebdbbc21e39dc9af48f161', 67, 'term', 'category', NULL, NULL, NULL, NULL, 'Industbay', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-16 08:36:49', '2023-11-16 14:04:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-16 09:04:15', NULL, NULL),
(130, 'https://onlineincshop.com/tag/buy-and-sell-industrial-equipment-online/', '71:59b53129bdc1b06407f494765854dd2c', 68, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'buy and sell industrial equipment online.', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-16 08:39:14', '2023-11-16 14:04:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-16 09:04:15', NULL, NULL),
(131, 'https://onlineincshop.com/tag/industbay/', '40:15edf87985496bef2dcf26c98eeb6616', 69, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Industbay', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-16 08:39:14', '2023-11-16 14:04:16', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-16 09:04:15', NULL, NULL),
(132, 'https://onlineincshop.com/2023/11/28/unveiling-the-political-map-of-the-uae-a-closer-look-at-its-administrative-divisions/', '122:da284f2d893d0c79c4b355aa11ecd52b', 388, 'post', 'post', 9467, 0, 'Unveiling the Political Map of the UAE', 'Discover the intricacies of the political map of the UAE, including its administrative divisions and regions.', 'Unveiling the Political Map of the UAE: A Closer Look at Its Administrative Divisions', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 30, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/chris-lawton-o0l-M8W_7wA-unsplash.jpg', NULL, '389', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/chris-lawton-o0l-M8W_7wA-unsplash.jpg', '389', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":430470,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/11/chris-lawton-o0l-M8W_7wA-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/11/chris-lawton-o0l-M8W_7wA-unsplash.jpg\",\"size\":\"full\",\"id\":389,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-11-28 06:54:43', '2023-11-28 11:57:41', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-11-28 06:57:39', '2023-11-28 06:57:39', 0),
(133, 'https://onlineincshop.com/category/political-map-of-uae/', '56:395e3e2f20770ef6603fdd5f9f972745', 70, 'term', 'category', NULL, NULL, NULL, NULL, 'political map of uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-28 06:56:34', '2023-11-28 11:57:41', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-28 06:57:39', NULL, NULL),
(134, 'https://onlineincshop.com/tag/political-map-of-uae/', '51:730bf1eb13848a530a9f6972b251e9b9', 71, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'political map of uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-28 06:57:39', '2023-11-28 11:57:41', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-28 06:57:39', NULL, NULL),
(135, 'https://onlineincshop.com/2023/11/28/navigating-political-science-jobs-in-the-uae-opportunities-and-prospects/', '110:f21de755cb775464801e96d676657466', 391, 'post', 'post', 9467, 0, 'Navigating Political Science Jobs in the UAE', 'Discover the diverse landscape of political science jobs in the UAE.', 'Navigating Political Science Jobs in the UAE: Opportunities and Prospects', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 90, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/cdc-LiNIONbajm4-unsplash.jpg', NULL, '392', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/cdc-LiNIONbajm4-unsplash.jpg', '392', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":436723,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/11/cdc-LiNIONbajm4-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/11/cdc-LiNIONbajm4-unsplash.jpg\",\"size\":\"full\",\"id\":392,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-11-28 06:58:38', '2023-11-28 12:02:15', 1, NULL, NULL, NULL, NULL, 0, 2, 2, '2023-11-28 07:02:14', '2023-11-28 07:02:14', 0),
(136, 'https://onlineincshop.com/category/political-science-jobs-uae/', '62:3fe301e5e2e8cd1c1c57990826f6745f', 72, 'term', 'category', NULL, NULL, NULL, NULL, 'political science jobs uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-28 06:59:01', '2023-11-28 12:02:15', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-28 07:02:14', NULL, NULL),
(137, 'https://onlineincshop.com/tag/political-science-jobs-uae/', '57:c9c85156e4810d24de23febc63fdbb6e', 73, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'political science jobs uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-28 07:02:14', '2023-11-28 12:02:15', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-28 07:02:14', NULL, NULL),
(138, 'https://onlineincshop.com/2023/11/28/dubai-finance-market-navigating-the-heart-of-financial-prosperity/', '103:36bbecef18fbcbf6b4400edac78670cb', 394, 'post', 'post', 9467, 0, 'Dubai Finance Market: Navigating the Heart of Financial Prosperity', 'Discover the Dubai Finance Market and its significance in the global financial landscape.', 'Dubai Finance Market: Navigating the Heart of Financial Prosperity', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/alexander-grey-8lnbXtxFGZw-unsplash.jpg', NULL, '395', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/alexander-grey-8lnbXtxFGZw-unsplash.jpg', '395', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":954510,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/11/alexander-grey-8lnbXtxFGZw-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/11/alexander-grey-8lnbXtxFGZw-unsplash.jpg\",\"size\":\"full\",\"id\":395,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-11-28 07:03:29', '2023-11-28 12:07:25', 1, NULL, NULL, NULL, NULL, 0, 2, 2, '2023-11-28 07:07:24', '2023-11-28 07:07:24', 0),
(139, 'https://onlineincshop.com/category/dubai-finance-market/', '56:c47ebcb021e6c8a4ce40e34a04f0f3a8', 74, 'term', 'category', NULL, NULL, NULL, NULL, 'dubai finance market', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-28 07:03:56', '2023-11-28 12:07:25', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-28 07:07:24', NULL, NULL),
(140, 'https://onlineincshop.com/tag/dubai-finance-market/', '51:a71fb6f08d134f22c2823b42616408e1', 75, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'dubai finance market', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-28 07:07:24', '2023-11-28 12:07:25', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-28 07:07:24', NULL, NULL),
(141, 'https://onlineincshop.com/2023/11/28/navigating-financial-success-the-role-of-finance-consultants-in-dubai/', '107:d1a79e3e2645b4c4cd87c523163ddd37', 397, 'post', 'post', 9467, 0, 'The Role of Finance Consultants in Dubai', 'Explore the world of finance consultants in Dubai and their pivotal role in guiding businesses and individuals toward financial success.', 'Navigating Financial Success: The Role of Finance Consultants in Dubai', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 90, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/headway-5QgIuuBxKwM-unsplash.jpg', NULL, '398', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/headway-5QgIuuBxKwM-unsplash.jpg', '398', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":320918,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/11/headway-5QgIuuBxKwM-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/11/headway-5QgIuuBxKwM-unsplash.jpg\",\"size\":\"full\",\"id\":398,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-11-28 07:09:36', '2023-11-28 12:11:56', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-11-28 07:11:55', '2023-11-28 07:11:55', 0),
(142, 'https://onlineincshop.com/category/finance-consultants-in-dubai/', '64:617a83ff3bb46f4adad5949ff934d08e', 76, 'term', 'category', NULL, NULL, NULL, NULL, 'finance consultants in dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-28 07:11:16', '2023-11-28 12:11:56', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-28 07:11:55', NULL, NULL),
(143, 'https://onlineincshop.com/tag/finance-consultants-in-dubai/', '59:b77ed327d02b77736ad734dd87d06150', 77, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'finance consultants in dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-28 07:11:56', '2023-11-28 12:11:56', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-28 07:11:56', NULL, NULL),
(144, 'https://onlineincshop.com/2023/11/28/unlocking-opportunities-accounting-and-finance-jobs-in-dubai/', '98:2b926a9533c83bfd69cb817adbab2a24', 400, 'post', 'post', 9467, 0, 'Unlocking Opportunities: Accounting and Finance Jobs in Dubai', 'Discover the world of accounting and finance jobs in Dubai and how this thriving city offers a plethora of career opportunities in the financial sector.', 'Unlocking Opportunities: Accounting and Finance Jobs in Dubai', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 90, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/alexander-mils-lCPhGxs7pww-unsplash.jpg', NULL, '401', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/alexander-mils-lCPhGxs7pww-unsplash.jpg', '401', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":377981,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/11/alexander-mils-lCPhGxs7pww-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/11/alexander-mils-lCPhGxs7pww-unsplash.jpg\",\"size\":\"full\",\"id\":401,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-11-28 07:12:49', '2023-11-28 12:15:30', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-11-28 07:15:28', '2023-11-28 07:15:28', 0),
(145, 'https://onlineincshop.com/category/accounting-and-finance-jobs-in-dubai/', '72:d0af7bc6e07a55ad091b8459477ccdf5', 78, 'term', 'category', NULL, NULL, NULL, NULL, 'accounting and finance jobs in dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-28 07:13:22', '2024-01-27 16:05:04', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-01-27 11:05:02', NULL, NULL),
(146, 'https://onlineincshop.com/tag/accounting-and-finance-jobs-in-dubai/', '67:eab9f55df52e64749b6331a5f52f1ea0', 79, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'accounting and finance jobs in dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-28 07:15:28', '2023-11-28 12:15:30', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-28 07:15:28', NULL, NULL),
(147, 'https://onlineincshop.com/2023/11/30/stars-aligned-celebrating-celebrities-birthdays-a-glimpse-into-the-glamorous-occasions/', '124:426ad9686e382d17f05cb7df01e640fa', 403, 'post', 'post', 9467, 0, 'Stars Aligned: Celebrating Celebrities\' Birthdays', 'Join the festivity as we explore the world of celebrities\' birthdays.', 'Stars Aligned: Celebrating Celebrities&#8217; Birthdays – A Glimpse into the Glamorous Occasions', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 90, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/chris-benson-IV17FOQnwcE-unsplash.jpg', NULL, '404', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/chris-benson-IV17FOQnwcE-unsplash.jpg', '404', 'featured-image', '{\"width\":1920,\"height\":1282,\"filesize\":294171,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/11/chris-benson-IV17FOQnwcE-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/11/chris-benson-IV17FOQnwcE-unsplash.jpg\",\"size\":\"full\",\"id\":404,\"alt\":\"\",\"pixels\":2461440,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-11-30 10:24:18', '2023-11-30 15:33:06', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-11-30 10:33:05', '2023-11-30 10:33:05', 0),
(148, 'https://onlineincshop.com/category/celebrities-birthday/', '56:4cd657feca7430c366c1a0aaaf3a1110', 80, 'term', 'category', NULL, NULL, NULL, NULL, 'celebrities birthday', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-30 10:32:04', '2023-11-30 15:33:06', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-30 10:33:05', NULL, NULL),
(149, 'https://onlineincshop.com/tag/celebrities-birthday/', '51:99e025663c56b27425b2388750327e13', 81, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'celebrities birthday', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-30 10:33:05', '2023-11-30 15:33:06', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-30 10:33:05', NULL, NULL),
(150, 'https://onlineincshop.com/2023/11/30/a-culinary-affair-with-the-stars-celebrity-restaurants-in-dubai/', '101:5066945eb922c2a23636aedb83b6c709', 406, 'post', 'post', 9467, 0, 'A Culinary Affair with the Stars: Celebrity Restaurants in Dubai', 'Elevate your dining experience in Dubai by exploring celebrity restaurants.', 'A Culinary Affair with the Stars: Celebrity Restaurants in Dubai', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 90, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/priscilla-du-preez-W3SEyZODn8U-unsplash.jpg', NULL, '407', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/priscilla-du-preez-W3SEyZODn8U-unsplash.jpg', '407', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":555067,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/11/priscilla-du-preez-W3SEyZODn8U-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/11/priscilla-du-preez-W3SEyZODn8U-unsplash.jpg\",\"size\":\"full\",\"id\":407,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-11-30 10:34:31', '2023-11-30 15:41:32', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-11-30 10:41:30', '2023-11-30 10:41:30', 0),
(151, 'https://onlineincshop.com/category/celebrities-restaurant-dubai/', '64:85756b64904653362ca2137361454c4f', 82, 'term', 'category', NULL, NULL, NULL, NULL, 'celebrities restaurant dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-30 10:38:56', '2023-11-30 15:41:32', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-30 10:41:30', NULL, NULL),
(152, 'https://onlineincshop.com/tag/celebrities-restaurant-dubai/', '59:8293b13323a3dc7765db158819df12a9', 83, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'celebrities restaurant dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-30 10:41:30', '2023-11-30 15:41:32', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-30 10:41:30', NULL, NULL);
INSERT INTO `wpom_yoast_indexable` (`id`, `permalink`, `permalink_hash`, `object_id`, `object_type`, `object_sub_type`, `author_id`, `post_parent`, `title`, `description`, `breadcrumb_title`, `post_status`, `is_public`, `is_protected`, `has_public_posts`, `number_of_pages`, `canonical`, `primary_focus_keyword`, `primary_focus_keyword_score`, `readability_score`, `is_cornerstone`, `is_robots_noindex`, `is_robots_nofollow`, `is_robots_noarchive`, `is_robots_noimageindex`, `is_robots_nosnippet`, `twitter_title`, `twitter_image`, `twitter_description`, `twitter_image_id`, `twitter_image_source`, `open_graph_title`, `open_graph_description`, `open_graph_image`, `open_graph_image_id`, `open_graph_image_source`, `open_graph_image_meta`, `link_count`, `incoming_link_count`, `prominent_words_version`, `created_at`, `updated_at`, `blog_id`, `language`, `region`, `schema_page_type`, `schema_article_type`, `has_ancestors`, `estimated_reading_time_minutes`, `version`, `object_last_modified`, `object_published_at`, `inclusive_language_score`) VALUES
(153, 'https://onlineincshop.com/2023/11/30/celeb-chronicles-staying-updated-with-the-latest-celebrities-news/', '103:f3689f21def95be95ad81b22d5926fc2', 409, 'post', 'post', 9467, 0, NULL, NULL, 'Celeb Chronicles: Staying Updated with the Latest Celebrities News', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 90, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/absolutvision-WYd_PkCa1BY-unsplash.jpg', NULL, '410', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/absolutvision-WYd_PkCa1BY-unsplash.jpg', '410', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":244748,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/11/absolutvision-WYd_PkCa1BY-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/11/absolutvision-WYd_PkCa1BY-unsplash.jpg\",\"size\":\"full\",\"id\":410,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-11-30 10:44:17', '2023-11-30 15:50:37', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-11-30 10:50:35', '2023-11-30 10:50:35', 0),
(154, 'https://onlineincshop.com/2023/11/30/savoring-tradition-exploring-the-culinary-riches-of-traditional-uae-food/', '110:af4d9a7262f011a568d04c930b2567e9', 412, 'post', 'post', 9467, 0, 'Exploring the Culinary Riches of Traditional UAE Food\"', 'Embark on a gastronomic journey through the heritage of the UAE with traditional food.', 'Savoring Tradition: Exploring the Culinary Riches of Traditional UAE Food', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/louis-hansel-wTJcMKnd1ls-unsplash.jpg', NULL, '413', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/louis-hansel-wTJcMKnd1ls-unsplash.jpg', '413', 'featured-image', '{\"width\":1920,\"height\":1700,\"filesize\":624443,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/11/louis-hansel-wTJcMKnd1ls-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/11/louis-hansel-wTJcMKnd1ls-unsplash.jpg\",\"size\":\"full\",\"id\":413,\"alt\":\"\",\"pixels\":3264000,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-11-30 10:51:51', '2023-11-30 16:00:17', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-11-30 11:00:15', '2023-11-30 11:00:15', 0),
(155, 'https://onlineincshop.com/category/traditional-uae-food/', '56:2374b67a80b33a45e99e83656fdcaeab', 84, 'term', 'category', NULL, NULL, NULL, NULL, 'traditional uae food', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-30 10:57:59', '2023-11-30 16:00:17', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-30 11:00:15', NULL, NULL),
(156, 'https://onlineincshop.com/tag/traditional-uae-food/', '51:a9bec8f966bdbcec2623ed5189c846d1', 85, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'traditional uae food', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-30 11:00:15', '2023-11-30 16:00:17', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-30 11:00:15', NULL, NULL),
(157, 'https://onlineincshop.com/2023/11/30/savoring-success-a-glimpse-into-the-culinary-titans-food-and-beverage-companies-in-the-uae/', '128:9082b8c4e18a62512c8dd5a53b57b2b6', 415, 'post', 'post', 9467, 0, 'A Glimpse into the Culinary Titans', 'Dive into the vibrant world of food and beverage in the UAE with a spotlight on the top companies shaping the culinary landscape.', 'Savoring Success: A Glimpse into the Culinary Titans – Food and Beverage Companies in the UAE', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/jack-brown-Px_vgkwCJFI-unsplash.jpg', NULL, '416', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/jack-brown-Px_vgkwCJFI-unsplash.jpg', '416', 'featured-image', '{\"width\":1920,\"height\":1248,\"filesize\":410118,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/11/jack-brown-Px_vgkwCJFI-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/11/jack-brown-Px_vgkwCJFI-unsplash.jpg\",\"size\":\"full\",\"id\":416,\"alt\":\"\",\"pixels\":2396160,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2023-11-30 11:06:23', '2023-11-30 16:14:00', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-11-30 11:13:59', '2023-11-30 11:13:59', 0),
(158, 'https://onlineincshop.com/category/food-and-beverage-companies-in-uae/', '70:68c751c04a4fb005d947c914b9c0474d', 86, 'term', 'category', NULL, NULL, NULL, NULL, 'food and beverage companies in uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-30 11:11:03', '2023-11-30 16:14:00', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-30 11:13:59', NULL, NULL),
(159, 'https://onlineincshop.com/tag/food-and-beverage-companies-in-uae/', '65:36199a7f31bd87a2c351c6d010781da4', 87, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'food and beverage companies in uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-30 11:13:59', '2023-11-30 16:14:00', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-30 11:13:59', NULL, NULL),
(160, 'https://onlineincshop.com/2023/11/30/bite-sized-bliss-exploring-the-quick-culinary-delights-of-fast-food-in-the-uae/', '116:689564e0e5f8c8b516d6179cd8be9eba', 418, 'post', 'post', 9467, 0, 'Exploring the Quick Culinary Delights of Fast Food in the UAE', 'Discover the convenience and flavors of fast food in the UAE', 'Bite-sized Bliss: Exploring the Quick Culinary Delights of Fast Food in the UAE', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 90, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/pablo-merchan-montes-0nT08Z-MhiE-unsplash.jpg', NULL, '419', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/pablo-merchan-montes-0nT08Z-MhiE-unsplash.jpg', '419', 'featured-image', '{\"width\":1920,\"height\":1078,\"filesize\":173695,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/11/pablo-merchan-montes-0nT08Z-MhiE-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/11/pablo-merchan-montes-0nT08Z-MhiE-unsplash.jpg\",\"size\":\"full\",\"id\":419,\"alt\":\"\",\"pixels\":2069760,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-11-30 11:15:32', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-11-30 11:18:38', '2023-11-30 11:18:38', 0),
(161, 'https://onlineincshop.com/category/fast-food-in-uae/', '52:306103d68db8c12631b4b7527c9557e7', 88, 'term', 'category', NULL, NULL, NULL, NULL, 'fast food in uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-30 11:17:38', '2023-11-30 16:18:39', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-30 11:18:38', NULL, NULL),
(162, 'https://onlineincshop.com/tag/fast-food-in-uae/', '47:e7ca67951b4eff824136cf033c1735b6', 89, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'fast food in uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-30 11:18:38', '2023-11-30 16:18:39', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-30 11:18:38', NULL, NULL),
(163, 'https://onlineincshop.com/2023/11/30/navigating-the-future-exciting-opportunities-in-information-technology-jobs-in-the-uae/', '124:fc3ac094cba4f66ff3469216e415fb69', 421, 'post', 'post', 9467, 0, 'Exciting Opportunities in Information Technology Jobs in the UA', 'Unlock the potential of your career in the dynamic world of Information Technology jobs in the UAE', 'Navigating the Future: Exciting Opportunities in Information Technology Jobs in the UAE', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 30, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/kaitlyn-baker-vZJdYl5JVXY-unsplash.jpg', NULL, '422', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/kaitlyn-baker-vZJdYl5JVXY-unsplash.jpg', '422', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":204890,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/11/kaitlyn-baker-vZJdYl5JVXY-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/11/kaitlyn-baker-vZJdYl5JVXY-unsplash.jpg\",\"size\":\"full\",\"id\":422,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-11-30 11:20:56', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-11-30 11:23:19', '2023-11-30 11:23:19', 0),
(164, 'https://onlineincshop.com/category/information-technology-jobs-in-uae/', '70:613b91afee742523d2bb23754580251f', 90, 'term', 'category', NULL, NULL, NULL, NULL, 'information technology jobs in uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-30 11:22:08', '2023-11-30 16:23:21', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-30 11:23:19', NULL, NULL),
(165, 'https://onlineincshop.com/tag/information-technology-jobs-in-uae/', '65:f8b061b4c3868a3d9a550cd7862ecac5', 91, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'information technology jobs in uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-30 11:23:19', '2023-11-30 16:23:21', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-30 11:23:19', NULL, NULL),
(166, 'https://onlineincshop.com/2023/11/30/innovation-oasis-the-pinnacle-of-science-and-technology-in-the-uae/', '104:450edf91d39d9767176b0e1317bdb575', 424, 'post', 'post', 9467, 0, 'The Pinnacle of Science and Technology in the UAE', 'Explore the cutting-edge world of science and technology in the UAE.', 'Innovation Oasis: The Pinnacle of Science and Technology in the UAE', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/aideal-hwa-OYzbqk2y26c-unsplash.jpg', NULL, '425', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/aideal-hwa-OYzbqk2y26c-unsplash.jpg', '425', 'featured-image', '{\"width\":1920,\"height\":1279,\"filesize\":440214,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/11/aideal-hwa-OYzbqk2y26c-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/11/aideal-hwa-OYzbqk2y26c-unsplash.jpg\",\"size\":\"full\",\"id\":425,\"alt\":\"\",\"pixels\":2455680,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-11-30 11:26:55', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-11-30 11:31:04', '2023-11-30 11:31:04', 0),
(167, 'https://onlineincshop.com/category/science-and-technology-in-uae/', '65:6f77ea38dd96d861bd7346b97eaed9ef', 92, 'term', 'category', NULL, NULL, NULL, NULL, 'science and technology in uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-30 11:30:11', '2023-11-30 16:31:05', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-30 11:31:04', NULL, NULL),
(168, 'https://onlineincshop.com/tag/science-and-technology-in-uae/', '60:e749448d9f5237cc9e14326cc7114c4d', 93, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'science and technology in uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-30 11:31:04', '2023-11-30 16:31:05', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-30 11:31:04', NULL, NULL),
(169, 'https://onlineincshop.com/2023/11/30/dubais-shopping-extravaganza-navigating-unbeatable-deals-and-luxury-sales-in-the-heart-of-the-uae/', '135:d6d1aa390dea62344a384314767e85e9', 427, 'post', 'post', 9467, 0, 'Deals and Luxury Sales in the Heart of the UAE\"', 'mmerse yourself in the world of sales in Dubai, where luxury intertwines with affordability.', 'Dubai&#8217;s Shopping Extravaganza: Navigating Unbeatable Deals and Luxury Sales in the Heart of the UAE', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/linkedin-sales-solutions-YDVdprpgHv4-unsplash.jpg', NULL, '428', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/11/linkedin-sales-solutions-YDVdprpgHv4-unsplash.jpg', '428', 'featured-image', '{\"width\":1920,\"height\":1310,\"filesize\":333748,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/11/linkedin-sales-solutions-YDVdprpgHv4-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/11/linkedin-sales-solutions-YDVdprpgHv4-unsplash.jpg\",\"size\":\"full\",\"id\":428,\"alt\":\"\",\"pixels\":2515200,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-11-30 11:32:29', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-11-30 11:39:16', '2023-11-30 11:39:16', 0),
(170, 'https://onlineincshop.com/category/sales-in-dubai/', '50:3f33a0b861539198ed7fe619b8152e14', 94, 'term', 'category', NULL, NULL, NULL, NULL, 'Sales in Dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-30 11:37:20', '2023-11-30 16:39:18', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-30 11:39:16', NULL, NULL),
(171, 'https://onlineincshop.com/tag/sales-in-dubai/', '45:274a4b9feefb524462471068ef2efd33', 95, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Sales in Dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-11-30 11:39:16', '2023-11-30 16:39:18', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-11-30 11:39:16', NULL, NULL),
(172, 'https://onlineincshop.com/2023/12/01/discover-the-festive-splendor-a-guide-to-dubais-winter-markets-extravaganza/', '113:8adcfa5774350cc10d6ada90b8545d6e', 430, 'post', 'post', 9467, 0, NULL, 'Immerse yourself in the enchantment of Dubai\'s Winter Markets 2023. From the dazzling lights of the Global Village to the local charm of traditional markets, this guide unveils the treasures that await. Embrace the festive spirit and explore the magic of winter in Dubai.', 'Discover the Festive Splendor: A Guide to Dubai&#8217;s Winter Markets Extravaganza', 'publish', NULL, 0, NULL, NULL, NULL, 'Winter markets dubai', 59, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/12/Winter-markets-dubai.jpeg', NULL, '431', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/12/Winter-markets-dubai.jpeg', '431', 'featured-image', '{\"width\":1200,\"height\":801,\"filesize\":367129,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/12/Winter-markets-dubai.jpeg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/12/Winter-markets-dubai.jpeg\",\"size\":\"full\",\"id\":431,\"alt\":\"Winter markets dubai\",\"pixels\":961200,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-12-01 11:46:45', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-12-01 11:49:13', '2023-12-01 11:49:13', 0),
(173, 'https://onlineincshop.com/tag/winter-markets-dubai/', '51:89ea7edf63a7d5edd7895b0b2a1f469d', 96, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Winter markets dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-12-01 11:49:13', '2023-12-01 16:49:15', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-12-01 11:49:13', NULL, NULL),
(174, 'https://onlineincshop.com/2023/12/09/unlock-savings-navigating-the-abu-dhabi-discount-sale-extravaganza/', '104:ac06383e9a82376569f156db9130ef50', 434, 'post', 'post', 9467, 0, NULL, 'Discover unparalleled deals and savings at the Abu Dhabi Discount Sale. Explore this comprehensive guide to make the most of your shopping experience in the capital city', 'Unlock Savings: Navigating the Abu Dhabi Discount Sale Extravaganza', 'publish', NULL, 0, NULL, NULL, NULL, 'Abu dhabi discount sale', 28, 30, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/12/Abu-dhabi-discount-sale.jpg', NULL, '435', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/12/Abu-dhabi-discount-sale.jpg', '435', 'featured-image', '{\"width\":1440,\"height\":1080,\"filesize\":775981,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/12/Abu-dhabi-discount-sale.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/12/Abu-dhabi-discount-sale.jpg\",\"size\":\"full\",\"id\":435,\"alt\":\"Abu dhabi discount sale\",\"pixels\":1555200,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-12-09 13:23:59', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 2, 2, '2023-12-09 13:30:19', '2023-12-09 13:30:19', 0),
(175, 'https://onlineincshop.com/tag/abu-dhabi-discount-sale/', '54:0c6f88f13d35a99379978fa92a4552fd', 97, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Abu dhabi discount sale', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-12-09 13:30:19', '2023-12-09 18:30:21', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-12-09 13:30:19', NULL, NULL),
(176, 'https://onlineincshop.com/2023/12/15/experiencing-enchantment-christmas-in-dubai/', '81:1de9dd4cc7f89e53c5986625e37d2ce1', 437, 'post', 'post', 9467, 0, NULL, NULL, 'Experiencing Enchantment: Christmas in Dubai', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 30, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/12/Christmas-in-dubai.jpg', NULL, '438', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/12/Christmas-in-dubai.jpg', '438', 'featured-image', '{\"width\":1280,\"height\":854,\"filesize\":198304,\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/12/Christmas-in-dubai.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2023/12/Christmas-in-dubai.jpg\",\"size\":\"full\",\"id\":438,\"alt\":\"Christmas in dubai\",\"pixels\":1093120,\"type\":\"image/jpeg\"}', 0, 3, NULL, '2023-12-15 12:51:06', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-12-15 12:52:37', '2023-12-15 12:52:37', 0),
(177, 'https://onlineincshop.com/tag/christmas-in-dubai/', '49:f553a4005cbf525f2f3961f565eecb3d', 98, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Christmas in dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-12-15 12:52:37', '2023-12-15 17:52:39', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-12-15 12:52:37', NULL, NULL),
(178, 'https://onlineincshop.com/2023/12/22/embracing-new-beginnings-a-guide-to-welcoming-the-new-year-2024/', '101:a240c682c2904c574562b6e46c4d76f0', 441, 'post', 'post', 9467, 0, NULL, 'As the clock ticks toward 2024, this article serves as your companion to usher in the new year with positivity and excitement. Explore celebratory traditions, set empowering resolutions, and embrace the fresh start that the arrival of 2024 offers. Get ready to welcome a year filled with hope, joy, and new opportunities.', 'Embracing New Beginnings: A Guide to Welcoming the New Year 2024', 'publish', NULL, 0, NULL, NULL, NULL, 'New year 2024', 63, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/12/New-year-2024.jpeg', NULL, '442', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/12/New-year-2024-1024x585.jpeg', '442', 'featured-image', '{\"width\":1024,\"height\":585,\"filesize\":136096,\"path\":\"2023/12/New-year-2024-1024x585.jpeg\",\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/12/New-year-2024-1024x585.jpeg\",\"size\":\"large\",\"id\":442,\"alt\":\"New year 2024\",\"pixels\":599040,\"type\":\"image/jpeg\"}', 0, 3, NULL, '2023-12-22 12:35:50', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-12-22 12:38:22', '2023-12-22 12:38:22', 0),
(179, 'https://onlineincshop.com/tag/new-year-2024/', '44:19ffe6b5774f8c6944b2465f869f2070', 99, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'New year 2024', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-12-22 12:38:22', '2023-12-22 17:38:24', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-12-22 12:38:22', NULL, NULL),
(180, 'https://onlineincshop.com/2023/12/29/financial-technology-service-in-uae-segments-ecosystem-and-trends/', '103:860bdca4aeb36de7bac55dcc1d8f7044', 444, 'post', 'post', 9467, 0, NULL, 'Learn about the financial technology service of UAE, which covers a wide range of segments, consisting of startups, investors, accelerators, incubators, hubs, universities, and associations, supports and fosters fintech innovation and adoption.', 'Financial Technology Service in UAE: Segments, Ecosystem, and Trends.', 'publish', NULL, 0, NULL, NULL, NULL, 'Financial technology service in uae.', 70, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/12/Financial-technology-service-in-uae.jpg', NULL, '445', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2023/12/Financial-technology-service-in-uae-1024x683.jpg', '445', 'featured-image', '{\"width\":1024,\"height\":683,\"filesize\":139538,\"path\":\"2023/12/Financial-technology-service-in-uae-1024x683.jpg\",\"url\":\"https://onlineincshop.com/wp-content/uploads/2023/12/Financial-technology-service-in-uae-1024x683.jpg\",\"size\":\"large\",\"id\":445,\"alt\":\"\",\"pixels\":699392,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2023-12-29 11:08:40', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2023-12-29 11:12:51', '2023-12-29 11:12:51', 0),
(181, 'https://onlineincshop.com/tag/financial-technology-service-in-uae/', '66:b28df9e7c2ad01ba4b76f8f1e08b89cf', 100, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Financial technology service in uae.', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2023-12-29 11:12:51', '2023-12-29 16:12:52', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2023-12-29 11:12:51', NULL, NULL),
(182, 'https://onlineincshop.com/2024/01/06/navigating-the-political-landscape-understanding-dubai-politics-in-the-uae/', '112:8789e9d9e15bd4f77fa4ea4694377baf', 448, 'post', 'post', 9467, 0, NULL, 'Delve into the intricacies of Dubai politics and its role within the UAE. Explore the governance structure, key political figures, and the city\'s significance in the broader political landscape of the United Arab Emirates.', 'Navigating the Political Landscape: Understanding Dubai Politics in the UAE', 'publish', NULL, 0, NULL, NULL, NULL, 'politics in uae', 63, 30, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/01/politics-in-uae.jpg', NULL, '449', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/01/politics-in-uae.jpg', '449', 'featured-image', '{\"width\":1440,\"height\":810,\"filesize\":130473,\"url\":\"https://onlineincshop.com/wp-content/uploads/2024/01/politics-in-uae.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2024/01/politics-in-uae.jpg\",\"size\":\"full\",\"id\":449,\"alt\":\"politics in uae\",\"pixels\":1166400,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2024-01-06 10:56:28', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2024-01-06 10:58:22', '2024-01-06 10:58:22', 0),
(183, 'https://onlineincshop.com/tag/politics-in-uae/', '46:5e0398f44a5eca5d202b2f2e7d87807e', 101, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'politics in uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2024-01-06 10:58:22', '2024-02-03 15:29:05', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-02-03 10:29:04', NULL, NULL),
(184, 'https://onlineincshop.com/2024/01/20/anchoring-prosperity-exploring-political-stability-in-the-uae/', '99:299ddbfcd083129dc7ac2face417a226', 452, 'post', 'post', 9467, 0, NULL, 'Explore the bedrock of political stability in the UAE, a key factor in its remarkable progress and development. This article provides insights into the factors that contribute to the country\'s political resilience, offering a glimpse into the stability that anchors the UAE\'s journey towards prosperity.', 'Anchoring Prosperity: Exploring Political Stability in the UAE', 'publish', NULL, 0, NULL, NULL, NULL, 'political stability in uae', 71, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/01/political-stability-in-uae.jpg', NULL, '453', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/01/political-stability-in-uae.jpg', '453', 'featured-image', '{\"width\":1459,\"height\":986,\"filesize\":241467,\"url\":\"https://onlineincshop.com/wp-content/uploads/2024/01/political-stability-in-uae.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2024/01/political-stability-in-uae.jpg\",\"size\":\"full\",\"id\":453,\"alt\":\"political stability in uae\",\"pixels\":1438574,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2024-01-20 10:27:57', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2024-01-20 10:28:34', '2024-01-20 10:28:34', 0),
(185, 'https://onlineincshop.com/tag/political-stability-in-uae/', '57:cdd1e63da67f172d4c0e54302ac8d8da', 102, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'political stability in uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2024-01-20 10:28:34', '2024-01-20 15:28:36', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-01-20 10:28:34', NULL, NULL),
(186, 'https://onlineincshop.com/2024/01/20/unlocking-opportunities-finance-jobs-in-uae/', '81:df5c1a7c3d9965066cd712203d260c90', 455, 'post', 'post', 9467, 0, NULL, NULL, 'Unlocking Opportunities: Finance Jobs in UAE', 'publish', NULL, 0, NULL, NULL, NULL, 'finance jobs in uae', 61, 30, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/01/finance-jobs-in-uae.jpg', NULL, '456', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/01/finance-jobs-in-uae.jpg', '456', 'featured-image', '{\"width\":1470,\"height\":980,\"filesize\":114427,\"url\":\"https://onlineincshop.com/wp-content/uploads/2024/01/finance-jobs-in-uae.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2024/01/finance-jobs-in-uae.jpg\",\"size\":\"full\",\"id\":456,\"alt\":\"finance jobs in uae\",\"pixels\":1440600,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2024-01-20 10:47:30', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2024-01-20 11:00:19', '2024-01-20 11:00:19', 0),
(187, 'https://onlineincshop.com/tag/finance-jobs-in-uae/', '50:b1fa690757d0dd153d0b20df9c6b8c74', 103, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'finance jobs in uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2024-01-20 11:00:19', '2024-01-20 16:00:21', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-01-20 11:00:19', NULL, NULL),
(188, 'https://onlineincshop.com/2024/01/27/navigating-financial-success-exploring-finance-careers-in-uae/', '99:0d7cd8d14e508d7aaaf923f3b13043f8', 458, 'post', 'post', 9467, 0, NULL, 'Dive into the world of finance careers in the UAE and unlock the door to unparalleled opportunities. Learn about the key roles, educational requirements, and skills needed to thrive in this dynamic sector. Choose a path that aligns with your ambitions and sets you on the road to financial success.', 'Navigating Financial Success: Exploring Finance Careers in UAE', 'publish', NULL, 0, NULL, NULL, NULL, 'finance careers in uae', 67, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/01/finance-careers-in-uae.jpg', NULL, '459', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/01/finance-careers-in-uae.jpg', '459', 'featured-image', '{\"width\":1470,\"height\":980,\"filesize\":116315,\"url\":\"https://onlineincshop.com/wp-content/uploads/2024/01/finance-careers-in-uae.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2024/01/finance-careers-in-uae.jpg\",\"size\":\"full\",\"id\":459,\"alt\":\"finance careers in uae\",\"pixels\":1440600,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2024-01-27 10:56:44', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2024-01-27 11:05:02', '2024-01-27 11:05:02', 0),
(189, 'https://onlineincshop.com/tag/finance-careers-in-uae/', '53:4d2c696aadeb3deddbd24ccf71d316aa', 104, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'finance careers in uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2024-01-27 11:05:02', '2024-01-27 16:05:04', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-01-27 11:05:02', NULL, NULL),
(190, 'https://onlineincshop.com/2024/02/03/navigating-the-political-landscape-understanding-politics-in-the-uae/', '106:078d819d82a08251213520e5c723fb8b', 462, 'post', 'post', 9467, 0, NULL, 'Delve into the intricate tapestry of politics in the UAE with this comprehensive article. From the structure of the government to key political figures, gain insights into the political landscape shaping the United Arab Emirates. Explore the nuances and evolution of UAE\'s political system', 'Navigating the Political Landscape: Understanding Politics in the UAE', 'publish', NULL, 0, NULL, NULL, NULL, 'politics in uae', 61, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/02/politics-in-uae.jpg', NULL, '463', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/02/politics-in-uae.jpg', '463', 'featured-image', '{\"width\":1546,\"height\":1161,\"filesize\":513670,\"url\":\"https://onlineincshop.com/wp-content/uploads/2024/02/politics-in-uae.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2024/02/politics-in-uae.jpg\",\"size\":\"full\",\"id\":463,\"alt\":\"politics in uae\",\"pixels\":1794906,\"type\":\"image/jpeg\"}', 0, 3, NULL, '2024-02-03 10:28:17', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 4, 2, '2024-02-03 10:29:04', '2024-02-03 10:29:04', 0),
(191, 'https://onlineincshop.com/2024/02/14/staying-informed-understanding-travel-alerts-for-dubai/', '92:25b8022a67672c6aa1e115fab7384f53', 466, 'post', 'post', 9467, 0, NULL, 'Planning a trip to Dubai? Stay informed and prepared with our comprehensive guide to travel alerts. From safety advisories and health alerts to weather warnings and transportation updates, learn how to access and interpret travel alerts for Dubai to ensure a smooth and hassle-free travel experience. Whether you\'re a tourist or a resident, staying updated on travel alerts is essential for making informed decisions and staying safe while exploring the vibrant city of Dubai.', 'Staying Informed: Understanding Travel Alerts for Dubai', 'publish', NULL, 0, NULL, NULL, NULL, 'travel alerts dubai', 71, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/02/travel-alerts-dubai.jpg', NULL, '467', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/02/travel-alerts-dubai.jpg', '467', 'featured-image', '{\"width\":1470,\"height\":980,\"filesize\":194695,\"url\":\"https://onlineincshop.com/wp-content/uploads/2024/02/travel-alerts-dubai.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2024/02/travel-alerts-dubai.jpg\",\"size\":\"full\",\"id\":467,\"alt\":\"travel alerts dubai\",\"pixels\":1440600,\"type\":\"image/jpeg\"}', 0, 1, NULL, '2024-02-14 14:04:33', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2024-02-14 14:07:59', '2024-02-14 14:07:59', 0),
(192, 'https://onlineincshop.com/tag/travel-alerts-dubai/', '50:658fdd34a8adb3cc16d417a3f03edefc', 105, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'travel alerts dubai', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2024-02-14 14:07:59', '2024-02-14 19:08:00', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-02-14 14:07:59', NULL, NULL),
(193, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/', '136:b137744169b6058957df9c02863cc3f3', 469, 'post', 'post', 9467, 0, 'A Guide to Entrepreneurial Success', 'Discover lucrative business ventures in the UAE that offer promising opportunities for profitability and growth.', 'Unveiling the Most Profitable Business Opportunities in the UAE: A Guide to Entrepreneurial Success', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 90, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/02/kenny-eliason-y_6rqStQBYQ-unsplash.jpg', NULL, '470', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/02/kenny-eliason-y_6rqStQBYQ-unsplash.jpg', '470', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":272240,\"url\":\"https://onlineincshop.com/wp-content/uploads/2024/02/kenny-eliason-y_6rqStQBYQ-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2024/02/kenny-eliason-y_6rqStQBYQ-unsplash.jpg\",\"size\":\"full\",\"id\":470,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, 17, NULL, '2024-02-19 08:28:35', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2024-02-19 08:30:36', '2024-02-19 08:30:36', 0),
(194, 'https://onlineincshop.com/category/which-is-the-most-profitable-business-in-uae/', '80:feaca317bcb20718ce38dd9524881590', 106, 'term', 'category', NULL, NULL, NULL, NULL, 'which is the most profitable business in uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 5, NULL, '2024-02-19 08:30:11', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-02-19 08:30:36', NULL, NULL),
(195, 'https://onlineincshop.com/tag/which-is-the-most-profitable-business-in-uae/', '75:2353dd08c7d96a5ccf301812a38f6dd3', 107, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'which is the most profitable business in uae', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2024-02-19 08:30:36', '2024-02-19 13:30:38', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-02-19 08:30:36', NULL, NULL),
(196, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', '116:03896cfa3d476a4d4fee7b0bab6e640e', 473, 'post', 'post', 9467, 0, 'Ramadan in UAERamadan in UAE', NULL, 'Embracing the Spirit of Ramadan in the UAE: Traditions, Customs, and Celebrations', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/03/fadkhera-official-gRtiUp1VKbs-unsplash.jpg', NULL, '475', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/03/fadkhera-official-gRtiUp1VKbs-unsplash.jpg', '475', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":307428,\"url\":\"https://onlineincshop.com/wp-content/uploads/2024/03/fadkhera-official-gRtiUp1VKbs-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2024/03/fadkhera-official-gRtiUp1VKbs-unsplash.jpg\",\"size\":\"full\",\"id\":475,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, 39, NULL, '2024-03-08 09:54:04', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2024-03-08 09:56:51', '2024-03-08 09:56:51', 0),
(197, 'https://onlineincshop.com/category/ramadan-in-uae/', '50:5655f1f1589c6b0a8e77763d59ce22a7', 108, 'term', 'category', NULL, NULL, NULL, NULL, 'Ramadan in UAE', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 7, NULL, '2024-03-08 09:54:54', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-03-08 09:56:51', NULL, NULL),
(198, 'https://onlineincshop.com/tag/ramadan-in-uae/', '45:30032eeadd74ebda9d0210b797121fcb', 109, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Ramadan in UAE', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2024-03-08 09:56:51', '2024-03-08 14:56:51', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-03-08 09:56:51', NULL, NULL),
(199, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', '93:28c403496cead6dbb3b096d4dbc9c6e6', 478, 'post', 'post', 9467, 0, NULL, NULL, 'Meydan Free Zone: A Gateway to Business Success in Dubai', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 60, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/03/Meydan-Free-Zone.jpg', NULL, '479', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/03/Meydan-Free-Zone.jpg', '479', 'featured-image', '{\"width\":4240,\"height\":2832,\"filesize\":542685,\"url\":\"https://onlineincshop.com/wp-content/uploads/2024/03/Meydan-Free-Zone.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2024/03/Meydan-Free-Zone.jpg\",\"size\":\"full\",\"id\":479,\"alt\":\"Meydan Free Zone\",\"pixels\":12007680,\"type\":\"image/jpeg\"}', 0, 48, NULL, '2024-03-25 08:18:09', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2024-07-12 07:41:12', '2024-03-25 08:20:18', 0),
(200, 'https://onlineincshop.com/tag/meydan-free-zone/', '47:602a331a1b14563165c8f07a159de06e', 110, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Meydan Free Zone', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2024-03-25 08:20:18', '2024-07-12 11:41:13', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-07-12 07:41:12', NULL, NULL),
(201, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', '109:b02679d954762c96d3566181ab2074b8', 482, 'post', 'post', 9467, 0, NULL, NULL, 'Making Waves: Unforgettable Kids Birthday Parties at SeaYou&#8217;s Watersports', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 30, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/04/KIDS-BIRTHDAY-768x512-1.jpg', NULL, '483', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/04/KIDS-BIRTHDAY-768x512-1.jpg', '483', 'featured-image', '{\"width\":768,\"height\":512,\"filesize\":90725,\"url\":\"https://onlineincshop.com/wp-content/uploads/2024/04/KIDS-BIRTHDAY-768x512-1.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2024/04/KIDS-BIRTHDAY-768x512-1.jpg\",\"size\":\"full\",\"id\":483,\"alt\":\"sea you kids birthday\",\"pixels\":393216,\"type\":\"image/jpeg\"}', 0, 48, NULL, '2024-04-13 10:59:16', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2024-04-13 11:01:42', '2024-04-13 11:01:42', 0),
(202, 'https://onlineincshop.com/category/watersports/', '47:401fb98b152a6e48a50008935e8df9f9', 111, 'term', 'category', NULL, NULL, NULL, NULL, 'Watersports', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 10, NULL, '2024-04-13 11:00:07', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-04-13 11:01:42', NULL, NULL),
(203, 'https://onlineincshop.com/tag/watersports/', '42:c661e95c036e58ea5c4eec766832e74e', 112, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Watersports', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2024-04-13 11:01:42', '2024-04-13 15:01:42', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-04-13 11:01:42', NULL, NULL),
(204, 'https://onlineincshop.com/tag/kids-birthday-parties-at-seayous-watersports/', '75:edc5aa1df6c207fdc561ef5ca7b4edae', 113, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Kids Birthday Parties at SeaYou\'s Watersports', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2024-04-13 11:01:42', '2024-04-13 15:01:42', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-04-13 11:01:42', NULL, NULL),
(205, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', '140:225a3f35c1f48bc7320b9b7eeac42bfb', 502, 'post', 'post', 9467, 0, 'Explore Car Sales, Property Rentals, and Job Searches in the UAE with bkamthis Classifieds', 'Discover the endless possibilities in car sales, property rentals, and job searches across the UAE. Leverage bkamthis classifieds platform for free ad posting and instant responses.', 'Seize the Day: Explore Car Sales, Property Rentals, and Job Searches in the UAE with bkamthis Classifieds', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 90, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/05/austin-distel-21GWwco-JBQ-unsplash.jpg', NULL, '503', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2024/05/austin-distel-21GWwco-JBQ-unsplash.jpg', '503', 'featured-image', '{\"width\":1920,\"height\":1280,\"filesize\":367683,\"url\":\"https://onlineincshop.com/wp-content/uploads/2024/05/austin-distel-21GWwco-JBQ-unsplash.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2024/05/austin-distel-21GWwco-JBQ-unsplash.jpg\",\"size\":\"full\",\"id\":503,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}', 0, 50, NULL, '2024-05-10 07:12:28', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2024-05-10 07:20:00', '2024-05-10 07:17:13', 0),
(206, 'https://onlineincshop.com/category/business/', '44:70dfdcd4c73c01885618b8e24057701c', 114, 'term', 'category', NULL, NULL, NULL, NULL, 'business', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 13, NULL, '2024-05-10 07:14:06', '2024-12-24 13:05:05', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-07-12 07:41:12', NULL, NULL),
(207, 'https://onlineincshop.com/tag/business/', '39:f1af82914c7764386036c2c116881aec', 115, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'business', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2024-05-10 07:17:13', '2024-07-12 11:41:13', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-07-12 07:41:12', NULL, NULL),
(209, 'https://onlineincshop.com/tdb_templates/header-template-week-pro/', '65:dedbada4911f029a2d635e558320ee8e', 84, 'post', 'tdb_templates', 9467, 0, NULL, NULL, 'Header Template &#8211; Week PRO', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2024-12-24 12:34:25', '2024-12-24 17:34:25', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-07-12 07:39:55', '2022-02-22 08:53:21', 0),
(210, 'https://onlineincshop.com/tdb_templates/author-template-week-pro/', '65:215f169c96b9bf631a587013b685a99a', 85, 'post', 'tdb_templates', 9467, 0, NULL, NULL, 'Author Template &#8211; Week PRO', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 65, NULL, NULL, '2024-12-24 12:34:25', '2024-12-24 17:34:25', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-22 08:53:21', '2022-02-22 08:53:21', 0),
(211, 'https://onlineincshop.com/tdb_templates/category-template-week-pro/', '67:a8aa53ab794b65a9ffe830bc62fcb59a', 86, 'post', 'tdb_templates', 9467, 0, NULL, NULL, 'Category Template &#8211; Week PRO', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 50, NULL, NULL, '2024-12-24 12:34:25', '2024-12-24 17:34:25', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-08-16 09:34:45', '2022-02-22 08:53:21', 0),
(212, 'https://onlineincshop.com/tdb_templates/tag-template-week-pro/', '62:b92fb7f714a0d3ff034831f11fb56ce2', 87, 'post', 'tdb_templates', 9467, 0, NULL, NULL, 'Tag Template &#8211; Week PRO', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 64, NULL, NULL, '2024-12-24 12:34:25', '2024-12-24 17:45:33', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-22 08:53:21', '2022-02-22 08:53:21', 0),
(213, 'https://onlineincshop.com/tdb_templates/search-template-week-pro/', '65:0c7066d3f38cd094f5932dd3730c270a', 88, 'post', 'tdb_templates', 9467, 0, NULL, NULL, 'Search Template &#8211; Week PRO', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 64, NULL, NULL, '2024-12-24 12:34:25', '2024-12-24 17:45:33', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-22 08:53:21', '2022-02-22 08:53:21', 0),
(214, 'https://onlineincshop.com/tdb_templates/single-template-week-pro/', '65:65a4327c48d3d746e1d744a79394aa09', 89, 'post', 'tdb_templates', 9467, 0, NULL, NULL, 'Single Template &#8211; Week PRO', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 46, NULL, NULL, '2024-12-24 12:34:25', '2024-12-24 17:45:33', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-22 08:53:21', '2022-02-22 08:53:21', 0),
(215, 'https://onlineincshop.com/tdb_templates/404-template-week-pro/', '62:01b880d95f9aa489001ad8b9d63fa646', 90, 'post', 'tdb_templates', 9467, 0, NULL, NULL, '404 Template &#8211; Week PRO', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 46, NULL, NULL, '2024-12-24 12:34:25', '2024-12-24 18:05:05', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-22 08:53:21', '2022-02-22 08:53:21', 0),
(216, 'https://onlineincshop.com/tdb_templates/date-template-week-pro/', '63:bda772a2133cf8f446c6433abf13d072', 91, 'post', 'tdb_templates', 9467, 0, NULL, NULL, 'Date Template &#8211; Week PRO', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 64, NULL, NULL, '2024-12-24 12:34:25', '2024-12-24 18:05:05', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2022-02-22 08:53:21', '2022-02-22 08:53:21', 0),
(217, 'https://onlineincshop.com/tdb_templates/footer-template-week-pro/', '65:a3c29b1cbf99343d0ce08239ee3b4048', 92, 'post', 'tdb_templates', 9467, 0, NULL, NULL, 'Footer Template &#8211; Week PRO', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0, 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 25, NULL, NULL, '2024-12-24 12:34:25', '2024-12-24 18:05:05', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2024-07-12 07:39:55', '2022-02-22 08:53:21', 0);
INSERT INTO `wpom_yoast_indexable` (`id`, `permalink`, `permalink_hash`, `object_id`, `object_type`, `object_sub_type`, `author_id`, `post_parent`, `title`, `description`, `breadcrumb_title`, `post_status`, `is_public`, `is_protected`, `has_public_posts`, `number_of_pages`, `canonical`, `primary_focus_keyword`, `primary_focus_keyword_score`, `readability_score`, `is_cornerstone`, `is_robots_noindex`, `is_robots_nofollow`, `is_robots_noarchive`, `is_robots_noimageindex`, `is_robots_nosnippet`, `twitter_title`, `twitter_image`, `twitter_description`, `twitter_image_id`, `twitter_image_source`, `open_graph_title`, `open_graph_description`, `open_graph_image`, `open_graph_image_id`, `open_graph_image_source`, `open_graph_image_meta`, `link_count`, `incoming_link_count`, `prominent_words_version`, `created_at`, `updated_at`, `blog_id`, `language`, `region`, `schema_page_type`, `schema_article_type`, `has_ancestors`, `estimated_reading_time_minutes`, `version`, `object_last_modified`, `object_published_at`, `inclusive_language_score`) VALUES
(218, 'https://onlineincshop.com/tdc-review/', '37:0bdd2c49e4e34a4d73deb07742f218a7', NULL, 'post-type-archive', 'tdc-review', NULL, NULL, '%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%', '', 'Reviews', NULL, 1, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-12-24 12:34:25', '2024-12-24 17:34:25', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, NULL, NULL, NULL),
(219, 'https://onlineincshop.com/2025/04/22/the-online-elegance-how-chic-shoes-is-redefining-luxury-ecommerce-in-the-uae/', '114:54150f4db4235b6f85cc469c9e0e1204', 561, 'post', 'post', 9467, 0, NULL, NULL, 'The Online Elegance: How Chic Shoes is Redefining Luxury eCommerce in the UAE', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 90, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2025/05/486156189_18496431868034048_381048846317508702_n-e1746616255903.jpg', NULL, '562', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2025/05/486156189_18496431868034048_381048846317508702_n-e1746616255903.jpg', '562', 'featured-image', '{\"width\":1413,\"height\":1374,\"filesize\":135999,\"url\":\"https://onlineincshop.com/wp-content/uploads/2025/05/486156189_18496431868034048_381048846317508702_n-e1746616255903.jpg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2025/05/486156189_18496431868034048_381048846317508702_n-e1746616255903.jpg\",\"size\":\"full\",\"id\":562,\"alt\":\"chic\",\"pixels\":1941462,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2025-05-07 11:09:25', '2025-05-07 15:11:11', 1, NULL, NULL, NULL, NULL, 0, 3, 2, '2025-05-07 11:11:10', '2025-04-22 11:09:18', 0),
(220, 'https://onlineincshop.com/category/fashion/', '43:e7284face4abb1b40a13951949fd61c4', 124, 'term', 'category', NULL, NULL, NULL, NULL, 'Fashion', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2025-05-07 11:10:22', '2025-05-07 15:11:11', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2025-05-07 11:11:10', NULL, NULL),
(221, 'https://onlineincshop.com/tag/chic/', '35:8c74b6fe15e6097fcc90451f9521cb9e', 125, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'chic', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2025-05-07 11:11:11', '2025-05-07 15:11:11', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2025-05-07 11:11:11', NULL, NULL),
(222, 'https://onlineincshop.com/tag/chic-fashions/', '44:fe71ecd2dcd634ee8fd16fac7278fc86', 126, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'chic fashions', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2025-05-07 11:11:11', '2025-05-07 15:11:11', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2025-05-07 11:11:11', NULL, NULL),
(223, 'https://onlineincshop.com/2025/05/26/elevate-your-outdoor-living-with-sabbas-landscaping/', '89:e233769dcfb02bdf4fbd65fa927e4461', 569, 'post', 'post', 9467, 0, 'Elevate Your Outdoor Living with Sabba’s Landscaping', 'Your outdoor space is more than just an extension of your property; it’s an opportunity to create a beautiful and functional area that reflects your style and needs.', 'Elevate Your Outdoor Living with Sabba’s Landscaping', 'publish', NULL, 0, NULL, NULL, NULL, NULL, NULL, 90, 0, NULL, 0, NULL, NULL, NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2025/05/WhatsApp-Image-2025-05-26-at-12.11.34-PM-1.jpeg', NULL, '570', 'featured-image', NULL, NULL, 'https://onlineincshop.com/wp-content/uploads/2025/05/WhatsApp-Image-2025-05-26-at-12.11.34-PM-1.jpeg', '570', 'featured-image', '{\"width\":1600,\"height\":1200,\"filesize\":657301,\"url\":\"https://onlineincshop.com/wp-content/uploads/2025/05/WhatsApp-Image-2025-05-26-at-12.11.34-PM-1.jpeg\",\"path\":\"/home/femauito/onlineincshop.com/wp-content/uploads/2025/05/WhatsApp-Image-2025-05-26-at-12.11.34-PM-1.jpeg\",\"size\":\"full\",\"id\":570,\"alt\":\"\",\"pixels\":1920000,\"type\":\"image/jpeg\"}', 0, NULL, NULL, '2025-05-26 08:09:46', '2025-05-26 12:13:35', 1, NULL, NULL, NULL, NULL, 0, 2, 2, '2025-05-26 08:13:35', '2025-05-26 08:13:01', 0),
(224, 'https://onlineincshop.com/tag/spring-lake-heights-landscaping-services/', '71:852205990e7f3f04cb10bfa0d6425861', 127, 'term', 'post_tag', NULL, NULL, NULL, NULL, 'Spring Lake Heights Landscaping Services', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, '2025-05-26 08:13:01', '2025-05-26 12:13:35', 1, NULL, NULL, NULL, NULL, 0, NULL, 2, '2025-05-26 08:13:35', NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `wpom_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `wpom_yoast_indexable_hierarchy`;
CREATE TABLE IF NOT EXISTS `wpom_yoast_indexable_hierarchy` (
  `indexable_id` int UNSIGNED NOT NULL,
  `ancestor_id` int UNSIGNED NOT NULL,
  `depth` int UNSIGNED DEFAULT NULL,
  `blog_id` bigint NOT NULL DEFAULT '1',
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpom_yoast_indexable_hierarchy`
--

INSERT INTO `wpom_yoast_indexable_hierarchy` (`indexable_id`, `ancestor_id`, `depth`, `blog_id`) VALUES
(2, 0, 0, 1),
(1, 0, 0, 1),
(4, 0, 0, 1),
(5, 0, 0, 1),
(6, 0, 0, 1),
(7, 0, 0, 1),
(8, 0, 0, 1),
(9, 0, 0, 1),
(10, 0, 0, 1),
(11, 0, 0, 1),
(12, 0, 0, 1),
(13, 0, 0, 1),
(14, 0, 0, 1),
(15, 0, 0, 1),
(16, 0, 0, 1),
(89, 0, 0, 1),
(18, 0, 0, 1),
(19, 0, 0, 1),
(20, 0, 0, 1),
(21, 0, 0, 1),
(22, 0, 0, 1),
(24, 0, 0, 1),
(25, 0, 0, 1),
(26, 0, 0, 1),
(27, 0, 0, 1),
(28, 0, 0, 1),
(29, 0, 0, 1),
(30, 0, 0, 1),
(31, 0, 0, 1),
(32, 0, 0, 1),
(33, 0, 0, 1),
(34, 0, 0, 1),
(35, 0, 0, 1),
(36, 0, 0, 1),
(37, 0, 0, 1),
(38, 0, 0, 1),
(39, 0, 0, 1),
(40, 0, 0, 1),
(41, 0, 0, 1),
(42, 0, 0, 1),
(43, 0, 0, 1),
(44, 0, 0, 1),
(45, 0, 0, 1),
(46, 0, 0, 1),
(47, 0, 0, 1),
(48, 0, 0, 1),
(49, 0, 0, 1),
(50, 0, 0, 1),
(51, 0, 0, 1),
(52, 0, 0, 1),
(53, 0, 0, 1),
(54, 0, 0, 1),
(55, 0, 0, 1),
(56, 0, 0, 1),
(57, 0, 0, 1),
(58, 0, 0, 1),
(59, 0, 0, 1),
(60, 0, 0, 1),
(61, 0, 0, 1),
(62, 0, 0, 1),
(63, 0, 0, 1),
(64, 0, 0, 1),
(65, 0, 0, 1),
(66, 0, 0, 1),
(67, 0, 0, 1),
(68, 0, 0, 1),
(69, 0, 0, 1),
(70, 0, 0, 1),
(71, 0, 0, 1),
(72, 0, 0, 1),
(73, 0, 0, 1),
(85, 0, 0, 1),
(90, 0, 0, 1),
(91, 0, 0, 1),
(92, 0, 0, 1),
(93, 0, 0, 1),
(94, 0, 0, 1),
(95, 0, 0, 1),
(86, 0, 0, 1),
(96, 0, 0, 1),
(98, 0, 0, 1),
(99, 0, 0, 1),
(100, 0, 0, 1),
(101, 0, 0, 1),
(102, 0, 0, 1),
(103, 0, 0, 1),
(104, 0, 0, 1),
(97, 0, 0, 1),
(105, 0, 0, 1),
(106, 0, 0, 1),
(107, 0, 0, 1),
(108, 0, 0, 1),
(109, 0, 0, 1),
(110, 0, 0, 1),
(111, 0, 0, 1),
(112, 0, 0, 1),
(113, 0, 0, 1),
(114, 0, 0, 1),
(115, 0, 0, 1),
(116, 0, 0, 1),
(117, 0, 0, 1),
(118, 0, 0, 1),
(119, 0, 0, 1),
(120, 0, 0, 1),
(121, 0, 0, 1),
(122, 0, 0, 1),
(123, 0, 0, 1),
(124, 0, 0, 1),
(125, 0, 0, 1),
(126, 0, 0, 1),
(127, 0, 0, 1),
(128, 0, 0, 1),
(129, 0, 0, 1),
(130, 0, 0, 1),
(131, 0, 0, 1),
(132, 0, 0, 1),
(133, 0, 0, 1),
(134, 0, 0, 1),
(135, 0, 0, 1),
(136, 0, 0, 1),
(137, 0, 0, 1),
(138, 0, 0, 1),
(139, 0, 0, 1),
(140, 0, 0, 1),
(141, 0, 0, 1),
(142, 0, 0, 1),
(143, 0, 0, 1),
(144, 0, 0, 1),
(145, 0, 0, 1),
(146, 0, 0, 1),
(147, 0, 0, 1),
(148, 0, 0, 1),
(149, 0, 0, 1),
(150, 0, 0, 1),
(151, 0, 0, 1),
(152, 0, 0, 1),
(153, 0, 0, 1),
(154, 0, 0, 1),
(155, 0, 0, 1),
(156, 0, 0, 1),
(157, 0, 0, 1),
(158, 0, 0, 1),
(159, 0, 0, 1),
(160, 0, 0, 1),
(161, 0, 0, 1),
(162, 0, 0, 1),
(163, 0, 0, 1),
(164, 0, 0, 1),
(165, 0, 0, 1),
(166, 0, 0, 1),
(167, 0, 0, 1),
(168, 0, 0, 1),
(169, 0, 0, 1),
(170, 0, 0, 1),
(171, 0, 0, 1),
(172, 0, 0, 1),
(173, 0, 0, 1),
(87, 0, 0, 1),
(174, 0, 0, 1),
(175, 0, 0, 1),
(176, 0, 0, 1),
(177, 0, 0, 1),
(178, 0, 0, 1),
(179, 0, 0, 1),
(180, 0, 0, 1),
(181, 0, 0, 1),
(182, 0, 0, 1),
(183, 0, 0, 1),
(184, 0, 0, 1),
(185, 0, 0, 1),
(186, 0, 0, 1),
(187, 0, 0, 1),
(188, 0, 0, 1),
(189, 0, 0, 1),
(190, 0, 0, 1),
(191, 0, 0, 1),
(192, 0, 0, 1),
(193, 0, 0, 1),
(194, 0, 0, 1),
(195, 0, 0, 1),
(196, 0, 0, 1),
(197, 0, 0, 1),
(198, 0, 0, 1),
(199, 0, 0, 1),
(200, 0, 0, 1),
(201, 0, 0, 1),
(202, 0, 0, 1),
(203, 0, 0, 1),
(204, 0, 0, 1),
(205, 0, 0, 1),
(206, 0, 0, 1),
(207, 0, 0, 1),
(209, 0, 0, 1),
(210, 0, 0, 1),
(211, 0, 0, 1),
(212, 0, 0, 1),
(213, 0, 0, 1),
(214, 0, 0, 1),
(215, 0, 0, 1),
(216, 0, 0, 1),
(217, 0, 0, 1),
(219, 0, 0, 1),
(220, 0, 0, 1),
(221, 0, 0, 1),
(222, 0, 0, 1),
(223, 0, 0, 1),
(224, 0, 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `wpom_yoast_migrations`
--

DROP TABLE IF EXISTS `wpom_yoast_migrations`;
CREATE TABLE IF NOT EXISTS `wpom_yoast_migrations` (
  `id` int UNSIGNED NOT NULL AUTO_INCREMENT,
  `version` varchar(191) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `wpom_yoast_migrations_version` (`version`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpom_yoast_migrations`
--

INSERT INTO `wpom_yoast_migrations` (`id`, `version`) VALUES
(1, '20171228151840'),
(2, '20171228151841'),
(3, '20190529075038'),
(4, '20191011111109'),
(5, '20200408101900'),
(6, '20200420073606'),
(7, '20200428123747'),
(8, '20200428194858'),
(9, '20200429105310'),
(10, '20200430075614'),
(11, '20200430150130'),
(12, '20200507054848'),
(13, '20200513133401'),
(14, '20200609154515'),
(15, '20200616130143'),
(16, '20200617122511'),
(17, '20200702141921'),
(18, '20200728095334'),
(19, '20201202144329'),
(20, '20201216124002'),
(21, '20201216141134'),
(22, '20210817092415'),
(23, '20211020091404'),
(24, '20230417083836');

-- --------------------------------------------------------

--
-- Table structure for table `wpom_yoast_primary_term`
--

DROP TABLE IF EXISTS `wpom_yoast_primary_term`;
CREATE TABLE IF NOT EXISTS `wpom_yoast_primary_term` (
  `id` int UNSIGNED NOT NULL AUTO_INCREMENT,
  `post_id` bigint DEFAULT NULL,
  `term_id` bigint DEFAULT NULL,
  `taxonomy` varchar(32) NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=MyISAM AUTO_INCREMENT=52 DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpom_yoast_primary_term`
--

INSERT INTO `wpom_yoast_primary_term` (`id`, `post_id`, `term_id`, `taxonomy`, `created_at`, `updated_at`, `blog_id`) VALUES
(1, 273, 12, 'category', '2023-05-29 09:57:46', '2023-05-30 20:21:12', 1),
(2, 279, 12, 'category', '2023-05-29 10:07:48', '2023-05-30 14:06:58', 1),
(3, 285, 12, 'category', '2023-05-29 10:14:07', '2023-05-31 14:22:12', 1),
(4, 292, 2, 'category', '2023-06-27 09:11:24', '2023-06-27 13:11:24', 1),
(5, 295, 2, 'category', '2023-06-27 09:16:40', '2023-06-28 14:07:43', 1),
(6, 298, 12, 'category', '2023-06-27 09:19:25', '2023-06-29 13:19:27', 1),
(7, 301, 12, 'category', '2023-06-27 09:22:17', '2023-06-30 13:30:44', 1),
(8, 308, 2, 'category', '2023-07-25 10:56:57', '2023-07-25 14:56:57', 1),
(9, 311, 4, 'category', '2023-07-25 11:04:10', '2023-07-26 15:03:31', 1),
(10, 316, 12, 'category', '2023-07-25 11:08:56', '2023-07-27 15:04:35', 1),
(11, 319, 2, 'category', '2023-07-25 11:16:00', '2023-08-05 15:28:48', 1),
(12, 327, 12, 'category', '2023-08-30 08:05:02', '2023-08-30 12:05:02', 1),
(13, 337, 12, 'category', '2023-08-30 08:10:39', '2023-08-30 12:10:39', 1),
(14, 340, 12, 'category', '2023-08-30 08:14:22', '2023-08-30 12:14:22', 1),
(15, 343, 12, 'category', '2023-08-30 08:20:48', '2023-08-30 12:20:48', 1),
(16, 356, 49, 'category', '2023-09-05 16:17:27', '2023-09-05 20:17:27', 1),
(17, 360, 12, 'category', '2023-09-18 08:16:10', '2023-09-19 09:50:16', 1),
(18, 367, 54, 'category', '2023-10-15 09:16:34', '2023-10-15 13:16:34', 1),
(19, 372, 58, 'category', '2023-10-23 07:35:58', '2023-10-23 12:27:52', 1),
(20, 378, 62, 'category', '2023-11-09 05:46:36', '2023-11-09 10:47:25', 1),
(21, 382, 66, 'category', '2023-11-16 08:39:16', '2023-11-16 14:04:16', 1),
(22, 388, 70, 'category', '2023-11-28 06:57:41', '2023-11-28 11:57:41', 1),
(23, 391, 72, 'category', '2023-11-28 07:02:15', '2023-11-28 12:02:15', 1),
(24, 394, 74, 'category', '2023-11-28 07:07:25', '2023-11-28 12:07:25', 1),
(25, 397, 76, 'category', '2023-11-28 07:11:56', '2023-11-28 12:11:56', 1),
(26, 400, 78, 'category', '2023-11-28 07:15:30', '2023-11-28 12:15:30', 1),
(27, 403, 80, 'category', '2023-11-30 10:33:06', '2023-11-30 15:33:06', 1),
(28, 406, 82, 'category', '2023-11-30 10:41:32', '2023-11-30 15:41:32', 1),
(29, 412, 84, 'category', '2023-11-30 11:00:17', '2023-11-30 16:00:17', 1),
(30, 415, 86, 'category', '2023-11-30 11:14:00', '2023-11-30 16:14:00', 1),
(31, 418, 88, 'category', '2023-11-30 11:18:39', '2023-11-30 16:18:39', 1),
(32, 421, 90, 'category', '2023-11-30 11:23:20', '2023-11-30 16:23:21', 1),
(33, 424, 92, 'category', '2023-11-30 11:31:05', '2023-11-30 16:31:05', 1),
(34, 427, 94, 'category', '2023-11-30 11:39:18', '2023-11-30 16:39:18', 1),
(35, 430, 2, 'category', '2023-12-01 11:49:15', '2023-12-01 16:49:15', 1),
(36, 434, 2, 'category', '2023-12-09 13:30:21', '2023-12-09 18:30:21', 1),
(37, 437, 2, 'category', '2023-12-15 12:52:39', '2023-12-15 17:52:39', 1),
(38, 441, 2, 'category', '2023-12-22 12:38:24', '2023-12-22 17:38:24', 1),
(39, 444, 2, 'category', '2023-12-29 11:12:52', '2023-12-29 16:12:52', 1),
(40, 448, 10, 'category', '2024-01-06 10:58:25', '2024-01-06 15:58:25', 1),
(41, 452, 10, 'category', '2024-01-20 10:28:36', '2024-01-20 15:28:36', 1),
(42, 455, 5, 'category', '2024-01-20 11:00:21', '2024-01-20 16:00:21', 1),
(43, 458, 78, 'category', '2024-01-27 11:05:04', '2024-01-27 16:05:04', 1),
(44, 462, 10, 'category', '2024-02-03 10:29:05', '2024-02-03 15:29:05', 1),
(45, 466, 12, 'category', '2024-02-14 14:08:00', '2024-02-14 19:08:00', 1),
(46, 469, 106, 'category', '2024-02-19 08:30:38', '2024-02-19 13:30:38', 1),
(47, 473, 108, 'category', '2024-03-08 09:56:51', '2024-03-08 14:56:51', 1),
(48, 482, 2, 'category', '2024-04-13 11:01:42', '2024-04-13 15:01:42', 1),
(49, 502, 114, 'category', '2024-05-10 07:17:13', '2024-05-10 11:20:00', 1),
(50, 478, 114, 'category', '2024-07-12 07:41:13', '2024-07-12 11:41:13', 1),
(51, 561, 124, 'category', '2025-05-07 11:11:11', '2025-05-07 15:11:11', 1);

-- --------------------------------------------------------

--
-- Table structure for table `wpom_yoast_seo_links`
--

DROP TABLE IF EXISTS `wpom_yoast_seo_links`;
CREATE TABLE IF NOT EXISTS `wpom_yoast_seo_links` (
  `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT,
  `url` varchar(255) DEFAULT NULL,
  `post_id` bigint UNSIGNED DEFAULT NULL,
  `target_post_id` bigint UNSIGNED DEFAULT NULL,
  `type` varchar(8) DEFAULT NULL,
  `indexable_id` int UNSIGNED DEFAULT NULL,
  `target_indexable_id` int UNSIGNED DEFAULT NULL,
  `height` int UNSIGNED DEFAULT NULL,
  `width` int UNSIGNED DEFAULT NULL,
  `size` int UNSIGNED DEFAULT NULL,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=MyISAM AUTO_INCREMENT=1169 DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpom_yoast_seo_links`
--

INSERT INTO `wpom_yoast_seo_links` (`id`, `url`, `post_id`, `target_post_id`, `type`, `indexable_id`, `target_indexable_id`, `height`, `width`, `size`, `language`, `region`) VALUES
(1, 'https://onlineincshop.com/wp-admin/', 2, NULL, 'internal', 70, NULL, NULL, NULL, NULL, NULL, NULL),
(2, 'https://onlineincshop.com/', 8, NULL, 'internal', 56, 1, NULL, NULL, NULL, NULL, NULL),
(3, 'https://onlineincshop.com/', 9, NULL, 'internal', 71, 1, NULL, NULL, NULL, NULL, NULL),
(4, '#', 31, NULL, 'internal', 55, 1, NULL, NULL, NULL, NULL, NULL),
(5, 'plans/', 31, 30, 'internal', 55, 73, NULL, NULL, NULL, NULL, NULL),
(672, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 32, 478, 'internal', 2, 199, NULL, NULL, NULL, NULL, NULL),
(670, 'https://onlineincshop.com/wp-admin/post.php?post=478&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(671, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 32, 478, 'internal', 2, 199, NULL, NULL, NULL, NULL, NULL),
(669, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 32, 482, 'internal', 2, 201, NULL, NULL, NULL, NULL, NULL),
(668, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/#respond', 32, 482, 'internal', 2, 201, NULL, NULL, NULL, NULL, NULL),
(666, 'https://onlineincshop.com/category/watersports/', 32, NULL, 'internal', 2, 202, NULL, NULL, NULL, NULL, NULL),
(667, 'https://onlineincshop.com/author/admin/', 32, NULL, 'internal', 2, 97, NULL, NULL, NULL, NULL, NULL),
(665, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 32, 482, 'internal', 2, 201, NULL, NULL, NULL, NULL, NULL),
(663, 'https://onlineincshop.com/wp-admin/post.php?post=482&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(664, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 32, 482, 'internal', 2, 201, NULL, NULL, NULL, NULL, NULL),
(662, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 32, 502, 'internal', 2, 205, NULL, NULL, NULL, NULL, NULL),
(661, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/#respond', 32, 502, 'internal', 2, 205, NULL, NULL, NULL, NULL, NULL),
(18, '#', 32, NULL, 'internal', 2, 1, NULL, NULL, NULL, NULL, NULL),
(19, '#', 32, NULL, 'internal', 2, 1, NULL, NULL, NULL, NULL, NULL),
(660, 'https://onlineincshop.com/author/admin/', 32, NULL, 'internal', 2, 97, NULL, NULL, NULL, NULL, NULL),
(21, 'https://onlineincshop.com/category/featured/', 32, NULL, 'internal', 2, 13, NULL, NULL, NULL, NULL, NULL),
(659, 'https://onlineincshop.com/category/business/', 32, NULL, 'internal', 2, 206, NULL, NULL, NULL, NULL, NULL),
(658, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 32, 502, 'internal', 2, 205, NULL, NULL, NULL, NULL, NULL),
(657, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 32, 502, 'internal', 2, 205, NULL, NULL, NULL, NULL, NULL),
(656, 'https://onlineincshop.com/wp-admin/post.php?post=502&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(654, 'https://onlineincshop.com/author/admin/', 32, NULL, 'internal', 2, 97, NULL, NULL, NULL, NULL, NULL),
(655, 'https://onlineincshop.com/author/admin/', 32, NULL, 'internal', 2, 97, NULL, NULL, NULL, NULL, NULL),
(29, '#', 32, NULL, 'internal', 2, 1, NULL, NULL, NULL, NULL, NULL),
(30, '#', 32, NULL, 'internal', 2, 1, NULL, NULL, NULL, NULL, NULL),
(31, '#', 32, NULL, 'internal', 2, 1, NULL, NULL, NULL, NULL, NULL),
(32, '#', 32, NULL, 'internal', 2, 1, NULL, NULL, NULL, NULL, NULL),
(33, '#', 32, NULL, 'internal', 2, 1, NULL, NULL, NULL, NULL, NULL),
(34, '#', 32, NULL, 'internal', 2, 1, NULL, NULL, NULL, NULL, NULL),
(653, 'https://onlineincshop.com/category/business/', 32, NULL, 'internal', 2, 206, NULL, NULL, NULL, NULL, NULL),
(36, 'https://onlineincshop.com/category/featured/', 32, NULL, 'internal', 2, 13, NULL, NULL, NULL, NULL, NULL),
(652, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 32, 502, 'internal', 2, 205, NULL, NULL, NULL, NULL, NULL),
(651, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 32, 502, 'internal', 2, 205, NULL, NULL, NULL, NULL, NULL),
(650, 'https://onlineincshop.com/wp-admin/post.php?post=502&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(649, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 32, 473, 'internal', 2, 196, NULL, NULL, NULL, NULL, NULL),
(648, 'https://onlineincshop.com/category/ramadan-in-uae/', 32, NULL, 'internal', 2, 197, NULL, NULL, NULL, NULL, NULL),
(647, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 32, 473, 'internal', 2, 196, NULL, NULL, NULL, NULL, NULL),
(646, 'https://onlineincshop.com/wp-admin/post.php?post=473&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(644, 'https://onlineincshop.com/category/uncategorized/', 32, NULL, 'internal', 2, 6, NULL, NULL, NULL, NULL, NULL),
(645, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 32, 478, 'internal', 2, 199, NULL, NULL, NULL, NULL, NULL),
(643, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 32, 478, 'internal', 2, 199, NULL, NULL, NULL, NULL, NULL),
(49, 'https://onlineincshop.com/category/featured/', 32, NULL, 'internal', 2, 13, NULL, NULL, NULL, NULL, NULL),
(680, 'https://onlineincshop.com/author/admin/', 32, NULL, 'internal', 2, 97, NULL, NULL, NULL, NULL, NULL),
(642, 'https://onlineincshop.com/wp-admin/post.php?post=478&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(640, 'https://onlineincshop.com/category/watersports/', 32, NULL, 'internal', 2, 202, NULL, NULL, NULL, NULL, NULL),
(641, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 32, 482, 'internal', 2, 201, NULL, NULL, NULL, NULL, NULL),
(638, 'https://onlineincshop.com/wp-admin/post.php?post=482&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(639, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 32, 482, 'internal', 2, 201, NULL, NULL, NULL, NULL, NULL),
(636, 'https://onlineincshop.com/category/business/', 32, NULL, 'internal', 2, 206, NULL, NULL, NULL, NULL, NULL),
(637, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 32, 502, 'internal', 2, 205, NULL, NULL, NULL, NULL, NULL),
(635, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 32, 502, 'internal', 2, 205, NULL, NULL, NULL, NULL, NULL),
(634, 'https://onlineincshop.com/wp-admin/post.php?post=502&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(632, 'https://onlineincshop.com/2023/12/15/experiencing-enchantment-christmas-in-dubai/', 32, 437, 'internal', 2, 176, NULL, NULL, NULL, NULL, NULL),
(633, 'https://onlineincshop.com/2023/12/15/experiencing-enchantment-christmas-in-dubai/', 32, 437, 'internal', 2, 176, NULL, NULL, NULL, NULL, NULL),
(631, 'https://onlineincshop.com/wp-admin/post.php?post=437&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(629, 'https://onlineincshop.com/2023/12/22/embracing-new-beginnings-a-guide-to-welcoming-the-new-year-2024/', 32, 441, 'internal', 2, 178, NULL, NULL, NULL, NULL, NULL),
(630, 'https://onlineincshop.com/2023/12/22/embracing-new-beginnings-a-guide-to-welcoming-the-new-year-2024/', 32, 441, 'internal', 2, 178, NULL, NULL, NULL, NULL, NULL),
(628, 'https://onlineincshop.com/wp-admin/post.php?post=441&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(626, 'https://onlineincshop.com/category/politics/', 32, NULL, 'internal', 2, 49, NULL, NULL, NULL, NULL, NULL),
(627, 'https://onlineincshop.com/2024/02/03/navigating-the-political-landscape-understanding-politics-in-the-uae/', 32, 462, 'internal', 2, 190, NULL, NULL, NULL, NULL, NULL),
(625, 'https://onlineincshop.com/2024/02/03/navigating-the-political-landscape-understanding-politics-in-the-uae/', 32, 462, 'internal', 2, 190, NULL, NULL, NULL, NULL, NULL),
(623, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/#respond', 32, 473, 'internal', 2, 196, NULL, NULL, NULL, NULL, NULL),
(624, 'https://onlineincshop.com/wp-admin/post.php?post=462&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(622, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 32, 473, 'internal', 2, 196, NULL, NULL, NULL, NULL, NULL),
(621, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 32, 473, 'internal', 2, 196, NULL, NULL, NULL, NULL, NULL),
(620, 'https://onlineincshop.com/wp-admin/post.php?post=473&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(618, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 32, 478, 'internal', 2, 199, NULL, NULL, NULL, NULL, NULL),
(619, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/#respond', 32, 478, 'internal', 2, 199, NULL, NULL, NULL, NULL, NULL),
(617, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 32, 478, 'internal', 2, 199, NULL, NULL, NULL, NULL, NULL),
(615, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/#respond', 32, 482, 'internal', 2, 201, NULL, NULL, NULL, NULL, NULL),
(616, 'https://onlineincshop.com/wp-admin/post.php?post=478&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(614, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 32, 482, 'internal', 2, 201, NULL, NULL, NULL, NULL, NULL),
(613, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 32, 482, 'internal', 2, 201, NULL, NULL, NULL, NULL, NULL),
(612, 'https://onlineincshop.com/wp-admin/post.php?post=482&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(611, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/#respond', 32, 502, 'internal', 2, 205, NULL, NULL, NULL, NULL, NULL),
(610, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 32, 502, 'internal', 2, 205, NULL, NULL, NULL, NULL, NULL),
(609, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 32, 502, 'internal', 2, 205, NULL, NULL, NULL, NULL, NULL),
(608, 'https://onlineincshop.com/wp-admin/post.php?post=502&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(102, '#', 208, NULL, 'internal', 25, 1, NULL, NULL, NULL, NULL, NULL),
(103, 'https://onlineincshop.com/wp-content/uploads/2022/03/dhow-cruise-min-1024x768.jpg', 171, 173, 'image-in', 20, NULL, 1200, 1600, 183163, NULL, NULL),
(104, 'https://onlineincshop.com/wp-content/uploads/2022/03/car-rental-min-1024x768.jpg', 175, 177, 'image-in', 26, NULL, 1200, 1600, 252870, NULL, NULL),
(105, 'https://shandongtisco.com/product/tinplate-sheet-coil/', 180, NULL, 'external', 45, NULL, NULL, NULL, NULL, NULL, NULL),
(106, 'https://www.yellowberry.co/products/profound-probiotic-facial-serum', 189, NULL, 'external', 46, NULL, NULL, NULL, NULL, NULL, NULL),
(107, 'https://nafisanoor.com/', 201, NULL, 'external', 31, NULL, NULL, NULL, NULL, NULL, NULL),
(108, 'https://www.yellowberry.co/collections/essential-oils', 229, NULL, 'external', 16, NULL, NULL, NULL, NULL, NULL, NULL),
(109, 'https://dm-consultantoman.com/visit-visa/schengen-visa/', 244, NULL, 'external', 30, NULL, NULL, NULL, NULL, NULL, NULL),
(110, 'https://dm-consultantoman.com/visit-visa/schengen-visa/', 244, NULL, 'external', 30, NULL, NULL, NULL, NULL, NULL, NULL),
(111, 'https://dm-consultant.qa/work-permit/canada/', 250, NULL, 'external', 24, NULL, NULL, NULL, NULL, NULL, NULL),
(112, 'https://dm-consultant.qa/', 250, NULL, 'external', 24, NULL, NULL, NULL, NULL, NULL, NULL),
(113, 'https://montessorivision.com/products/montessori-buckle-toy-busy-board', 254, NULL, 'external', 29, NULL, NULL, NULL, NULL, NULL, NULL),
(114, 'https://www.shayanaman.com/', 257, NULL, 'external', 28, NULL, NULL, NULL, NULL, NULL, NULL),
(115, 'https://montessorivision.com/', 261, NULL, 'external', 27, NULL, NULL, NULL, NULL, NULL, NULL),
(679, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 32, 502, 'internal', 2, 205, NULL, NULL, NULL, NULL, NULL),
(678, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 32, 502, 'internal', 2, 205, NULL, NULL, NULL, NULL, NULL),
(677, 'https://onlineincshop.com/wp-admin/post.php?post=502&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(676, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 32, 478, 'internal', 2, 199, NULL, NULL, NULL, NULL, NULL),
(675, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/#respond', 32, 478, 'internal', 2, 199, NULL, NULL, NULL, NULL, NULL),
(674, 'https://onlineincshop.com/author/admin/', 32, NULL, 'internal', 2, 97, NULL, NULL, NULL, NULL, NULL),
(673, 'https://onlineincshop.com/category/uncategorized/', 32, NULL, 'internal', 2, 6, NULL, NULL, NULL, NULL, NULL),
(570, 'https://www.celinni.ae/', 356, NULL, 'external', 105, NULL, NULL, NULL, NULL, NULL, NULL),
(571, 'https://quicklease.ae/', 360, NULL, 'external', 109, NULL, NULL, NULL, NULL, NULL, NULL),
(572, 'https://quicklease.ae/our-fleet/monthl...ent-a-car/', 360, NULL, 'external', 109, NULL, NULL, NULL, NULL, NULL, NULL),
(573, 'https://houseofcuts.ae/', 367, NULL, 'external', 112, NULL, NULL, NULL, NULL, NULL, NULL),
(574, 'https://onlineincshop.com/wp-content/uploads/2023/10/WhatsApp-Image-2023-10-12-at-3.42.36-PM-1-200x300.jpeg', 367, 369, 'image-in', 112, NULL, 1600, 1066, 351737, NULL, NULL),
(575, 'https://grnled.com/', 372, NULL, 'external', 117, NULL, NULL, NULL, NULL, NULL, NULL),
(576, 'https://grnled.com/', 372, NULL, 'external', 117, NULL, NULL, NULL, NULL, NULL, NULL),
(578, 'https://gobestplan.com/', 378, NULL, 'external', 122, NULL, NULL, NULL, NULL, NULL, NULL),
(579, 'https://flights.gobestplan.com/', 378, NULL, 'external', 122, NULL, NULL, NULL, NULL, NULL, NULL),
(580, 'https://gobestplan.com/', 378, NULL, 'external', 122, NULL, NULL, NULL, NULL, NULL, NULL),
(581, 'https://onlineincshop.com/wp-content/uploads/2023/11/suhyeon-choi-tTfDMaRq-FE-unsplash-300x200.jpg', 378, 379, 'image-in', 122, NULL, 1281, 1920, 237855, NULL, NULL),
(585, 'https://blogs.industbay.com/do-you-want-to-know-the-secret-to-get-a-fair-price-when-purchasing-or-selling-industrial-machines-online/', 382, NULL, 'external', 127, NULL, NULL, NULL, NULL, NULL, NULL),
(584, 'https://onlineincshop.com/wp-content/uploads/2023/11/WhatsApp-Image-2023-11-15-at-4.20.49-PM-300x200.jpeg', 382, 383, 'image-in', 127, NULL, 1067, 1600, 255358, NULL, NULL),
(586, 'https://blogs.industbay.com/do-you-want-to-know-the-secret-to-get-a-fair-price-when-purchasing-or-selling-industrial-machines-online/', 382, NULL, 'external', 127, NULL, NULL, NULL, NULL, NULL, NULL),
(587, 'https://www.ipayholding.com/our-playground/fintech/', 444, NULL, 'external', 180, NULL, NULL, NULL, NULL, NULL, NULL),
(588, 'https://freezonemarket.ae/meydan-free-zone-company-setup/', 478, NULL, 'external', 199, NULL, NULL, NULL, NULL, NULL, NULL),
(589, 'https://seayou.ae/activities/kids-birthdays', 482, NULL, 'external', 201, NULL, NULL, NULL, NULL, NULL, NULL),
(590, 'https://seayou.ae/', 482, NULL, 'external', 201, NULL, NULL, NULL, NULL, NULL, NULL),
(591, 'https://bkamthis.com/en', 502, NULL, 'external', 205, NULL, NULL, NULL, NULL, NULL, NULL),
(592, 'https://bkamthis.com/en', 502, NULL, 'external', 205, NULL, NULL, NULL, NULL, NULL, NULL),
(681, 'https://onlineincshop.com/wp-admin/post.php?post=502&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(682, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 32, 502, 'internal', 2, 205, NULL, NULL, NULL, NULL, NULL),
(683, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 32, 502, 'internal', 2, 205, NULL, NULL, NULL, NULL, NULL),
(684, 'https://onlineincshop.com/wp-admin/post.php?post=482&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(685, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 32, 482, 'internal', 2, 201, NULL, NULL, NULL, NULL, NULL),
(686, 'https://onlineincshop.com/category/watersports/', 32, NULL, 'internal', 2, 202, NULL, NULL, NULL, NULL, NULL),
(687, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 32, 482, 'internal', 2, 201, NULL, NULL, NULL, NULL, NULL),
(688, 'https://onlineincshop.com/wp-admin/post.php?post=478&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(689, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 32, 478, 'internal', 2, 199, NULL, NULL, NULL, NULL, NULL),
(690, 'https://onlineincshop.com/category/uncategorized/', 32, NULL, 'internal', 2, 6, NULL, NULL, NULL, NULL, NULL),
(691, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 32, 478, 'internal', 2, 199, NULL, NULL, NULL, NULL, NULL),
(692, 'https://onlineincshop.com/wp-admin/post.php?post=473&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(693, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 32, 473, 'internal', 2, 196, NULL, NULL, NULL, NULL, NULL),
(694, 'https://onlineincshop.com/category/ramadan-in-uae/', 32, NULL, 'internal', 2, 197, NULL, NULL, NULL, NULL, NULL),
(695, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 32, 473, 'internal', 2, 196, NULL, NULL, NULL, NULL, NULL),
(696, 'https://onlineincshop.com/wp-admin/post.php?post=469&amp;action=edit', 32, NULL, 'internal', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(697, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/', 32, 469, 'internal', 2, 193, NULL, NULL, NULL, NULL, NULL),
(698, 'https://onlineincshop.com/category/which-is-the-most-profitable-business-in-uae/', 32, NULL, 'internal', 2, 194, NULL, NULL, NULL, NULL, NULL),
(699, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/', 32, 469, 'internal', 2, 193, NULL, NULL, NULL, NULL, NULL),
(700, 'https://secure.gravatar.com/avatar/5988bc071425827e792163f93e348c0b?s=96&amp;d=mm&amp;r=g', 32, NULL, 'image-ex', 2, NULL, NULL, NULL, NULL, NULL, NULL),
(701, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(702, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(703, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(704, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(705, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 85, 502, 'internal', 210, 205, NULL, NULL, NULL, NULL, NULL),
(706, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 85, 502, 'internal', 210, 205, NULL, NULL, NULL, NULL, NULL),
(707, 'https://onlineincshop.com/category/business/', 85, NULL, 'internal', 210, 206, NULL, NULL, NULL, NULL, NULL),
(708, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 85, 482, 'internal', 210, 201, NULL, NULL, NULL, NULL, NULL),
(709, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 85, 482, 'internal', 210, 201, NULL, NULL, NULL, NULL, NULL),
(710, 'https://onlineincshop.com/category/watersports/', 85, NULL, 'internal', 210, 202, NULL, NULL, NULL, NULL, NULL),
(711, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 85, 478, 'internal', 210, 199, NULL, NULL, NULL, NULL, NULL),
(712, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 85, 478, 'internal', 210, 199, NULL, NULL, NULL, NULL, NULL),
(713, 'https://onlineincshop.com/category/business/', 85, NULL, 'internal', 210, 206, NULL, NULL, NULL, NULL, NULL),
(714, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(715, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(716, 'https://onlineincshop.com/category/uncategorized/', 85, NULL, 'internal', 210, 6, NULL, NULL, NULL, NULL, NULL),
(717, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(718, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(719, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(720, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(721, 'https://onlineincshop.com/category/uncategorized/', 85, NULL, 'internal', 210, 6, NULL, NULL, NULL, NULL, NULL),
(722, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(723, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(724, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(725, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(726, 'https://onlineincshop.com/category/uncategorized/', 85, NULL, 'internal', 210, 6, NULL, NULL, NULL, NULL, NULL),
(727, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(728, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(729, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(730, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(731, 'https://onlineincshop.com/category/uncategorized/', 85, NULL, 'internal', 210, 6, NULL, NULL, NULL, NULL, NULL),
(732, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(733, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(734, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(735, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(736, 'https://onlineincshop.com/category/uncategorized/', 85, NULL, 'internal', 210, 6, NULL, NULL, NULL, NULL, NULL),
(737, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(738, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(739, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(740, 'https://onlineincshop.com/wp-cron.php/page/2/?doing_wp_cron=1735043664.6192541122436523437500', 85, NULL, 'internal', 210, NULL, NULL, NULL, NULL, NULL, NULL),
(741, 'https://onlineincshop.com/wp-cron.php/page/3/?doing_wp_cron=1735043664.6192541122436523437500', 85, NULL, 'internal', 210, NULL, NULL, NULL, NULL, NULL, NULL),
(742, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(743, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 85, 502, 'internal', 210, 205, NULL, NULL, NULL, NULL, NULL),
(744, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 85, 502, 'internal', 210, 205, NULL, NULL, NULL, NULL, NULL),
(745, 'https://onlineincshop.com/author/admin/', 85, NULL, 'internal', 210, 97, NULL, NULL, NULL, NULL, NULL),
(746, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(747, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(748, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 85, 482, 'internal', 210, 201, NULL, NULL, NULL, NULL, NULL),
(749, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 85, 482, 'internal', 210, 201, NULL, NULL, NULL, NULL, NULL),
(750, 'https://onlineincshop.com/category/watersports/', 85, NULL, 'internal', 210, 202, NULL, NULL, NULL, NULL, NULL),
(751, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/#respond', 85, 482, 'internal', 210, 201, NULL, NULL, NULL, NULL, NULL),
(752, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 85, 478, 'internal', 210, 199, NULL, NULL, NULL, NULL, NULL),
(753, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 85, 478, 'internal', 210, 199, NULL, NULL, NULL, NULL, NULL),
(754, 'https://onlineincshop.com/category/business/', 85, NULL, 'internal', 210, 206, NULL, NULL, NULL, NULL, NULL),
(755, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/#respond', 85, 478, 'internal', 210, 199, NULL, NULL, NULL, NULL, NULL),
(756, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 85, 473, 'internal', 210, 196, NULL, NULL, NULL, NULL, NULL),
(757, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 85, 473, 'internal', 210, 196, NULL, NULL, NULL, NULL, NULL),
(758, 'https://onlineincshop.com/category/ramadan-in-uae/', 85, NULL, 'internal', 210, 197, NULL, NULL, NULL, NULL, NULL),
(759, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/#respond', 85, 473, 'internal', 210, 196, NULL, NULL, NULL, NULL, NULL),
(760, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/', 85, 469, 'internal', 210, 193, NULL, NULL, NULL, NULL, NULL),
(761, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/', 85, 469, 'internal', 210, 193, NULL, NULL, NULL, NULL, NULL),
(762, 'https://onlineincshop.com/category/which-is-the-most-profitable-business-in-uae/', 85, NULL, 'internal', 210, 194, NULL, NULL, NULL, NULL, NULL),
(763, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/#respond', 85, 469, 'internal', 210, 193, NULL, NULL, NULL, NULL, NULL),
(764, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(765, '#', 85, NULL, 'internal', 210, 1, NULL, NULL, NULL, NULL, NULL),
(766, 'https://themeforest.net/item/newspaper/5489609', 85, NULL, 'external', 210, NULL, NULL, NULL, NULL, NULL, NULL),
(767, 'https://themeforest.net/item/newspaper/5489609', 85, NULL, 'external', 210, NULL, NULL, NULL, NULL, NULL, NULL),
(768, 'https://secure.gravatar.com/avatar/?s=96&amp;d=mm&amp;r=g', 85, NULL, 'image-ex', 210, NULL, NULL, NULL, NULL, NULL, NULL),
(769, 'https://onlineincshop.com/wp-content/uploads/2022/02/rec-sb.jpg', 85, 23, 'image-in', 210, NULL, 424, 312, 25846, NULL, NULL),
(770, 'https://onlineincshop.com/wp-content/uploads/2022/02/rec-sb@2x.jpg', 85, 24, 'image-in', 210, NULL, 848, 624, 65748, NULL, NULL),
(771, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(772, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(773, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(774, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(775, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 86, 502, 'internal', 211, 205, NULL, NULL, NULL, NULL, NULL),
(776, 'https://onlineincshop.com/category/business/', 86, NULL, 'internal', 211, 206, NULL, NULL, NULL, NULL, NULL),
(777, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 86, 502, 'internal', 211, 205, NULL, NULL, NULL, NULL, NULL),
(778, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 86, 482, 'internal', 211, 201, NULL, NULL, NULL, NULL, NULL),
(779, 'https://onlineincshop.com/category/watersports/', 86, NULL, 'internal', 211, 202, NULL, NULL, NULL, NULL, NULL),
(780, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 86, 482, 'internal', 211, 201, NULL, NULL, NULL, NULL, NULL),
(781, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 86, 478, 'internal', 211, 199, NULL, NULL, NULL, NULL, NULL),
(782, 'https://onlineincshop.com/category/business/', 86, NULL, 'internal', 211, 206, NULL, NULL, NULL, NULL, NULL),
(783, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 86, 478, 'internal', 211, 199, NULL, NULL, NULL, NULL, NULL),
(784, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 86, 473, 'internal', 211, 196, NULL, NULL, NULL, NULL, NULL),
(785, 'https://onlineincshop.com/category/ramadan-in-uae/', 86, NULL, 'internal', 211, 197, NULL, NULL, NULL, NULL, NULL),
(786, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 86, 473, 'internal', 211, 196, NULL, NULL, NULL, NULL, NULL),
(787, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(788, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(789, 'https://onlineincshop.com/category/uncategorized/', 86, NULL, 'internal', 211, 6, NULL, NULL, NULL, NULL, NULL),
(790, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(791, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(792, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(793, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(794, 'https://onlineincshop.com/category/uncategorized/', 86, NULL, 'internal', 211, 6, NULL, NULL, NULL, NULL, NULL),
(795, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(796, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(797, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(798, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(799, 'https://onlineincshop.com/category/uncategorized/', 86, NULL, 'internal', 211, 6, NULL, NULL, NULL, NULL, NULL),
(800, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(801, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(802, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(803, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(804, 'https://onlineincshop.com/category/uncategorized/', 86, NULL, 'internal', 211, 6, NULL, NULL, NULL, NULL, NULL),
(805, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(806, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(807, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(808, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(809, 'https://onlineincshop.com/category/uncategorized/', 86, NULL, 'internal', 211, 6, NULL, NULL, NULL, NULL, NULL),
(810, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(811, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(812, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(813, 'https://onlineincshop.com/wp-cron.php/page/2/?doing_wp_cron=1735043664.6192541122436523437500', 86, NULL, 'internal', 211, NULL, NULL, NULL, NULL, NULL, NULL),
(814, 'https://onlineincshop.com/wp-cron.php/page/3/?doing_wp_cron=1735043664.6192541122436523437500', 86, NULL, 'internal', 211, NULL, NULL, NULL, NULL, NULL, NULL),
(815, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(816, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 86, 502, 'internal', 211, 205, NULL, NULL, NULL, NULL, NULL),
(817, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 86, 502, 'internal', 211, 205, NULL, NULL, NULL, NULL, NULL),
(818, 'https://onlineincshop.com/author/admin/', 86, NULL, 'internal', 211, 97, NULL, NULL, NULL, NULL, NULL),
(819, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(820, '#', 86, NULL, 'internal', 211, 1, NULL, NULL, NULL, NULL, NULL),
(821, 'https://themeforest.net/item/newspaper/5489609', 86, NULL, 'external', 211, NULL, NULL, NULL, NULL, NULL, NULL),
(822, 'https://themeforest.net/item/newspaper/5489609', 86, NULL, 'external', 211, NULL, NULL, NULL, NULL, NULL, NULL),
(823, 'https://secure.gravatar.com/avatar/?s=96&amp;d=mm&amp;r=g', 86, NULL, 'image-ex', 211, NULL, NULL, NULL, NULL, NULL, NULL),
(824, 'https://onlineincshop.com/wp-content/uploads/2022/02/rec-sb.jpg', 86, 23, 'image-in', 211, NULL, 424, 312, 25846, NULL, NULL),
(825, 'https://onlineincshop.com/wp-content/uploads/2022/02/rec-sb@2x.jpg', 86, 24, 'image-in', 211, NULL, 848, 624, 65748, NULL, NULL),
(826, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 87, 502, 'internal', 212, 205, NULL, NULL, NULL, NULL, NULL),
(827, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 87, 502, 'internal', 212, 205, NULL, NULL, NULL, NULL, NULL),
(828, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/#respond', 87, 502, 'internal', 212, 205, NULL, NULL, NULL, NULL, NULL),
(829, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 87, 482, 'internal', 212, 201, NULL, NULL, NULL, NULL, NULL),
(830, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 87, 482, 'internal', 212, 201, NULL, NULL, NULL, NULL, NULL),
(831, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/#respond', 87, 482, 'internal', 212, 201, NULL, NULL, NULL, NULL, NULL),
(832, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 87, 478, 'internal', 212, 199, NULL, NULL, NULL, NULL, NULL),
(833, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 87, 478, 'internal', 212, 199, NULL, NULL, NULL, NULL, NULL),
(834, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/#respond', 87, 478, 'internal', 212, 199, NULL, NULL, NULL, NULL, NULL),
(835, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 87, 473, 'internal', 212, 196, NULL, NULL, NULL, NULL, NULL),
(836, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 87, 473, 'internal', 212, 196, NULL, NULL, NULL, NULL, NULL),
(837, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/#respond', 87, 473, 'internal', 212, 196, NULL, NULL, NULL, NULL, NULL),
(838, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(839, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(840, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(841, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(842, 'https://onlineincshop.com/category/uncategorized/', 87, NULL, 'internal', 212, 6, NULL, NULL, NULL, NULL, NULL),
(843, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(844, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(845, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(846, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(847, 'https://onlineincshop.com/category/uncategorized/', 87, NULL, 'internal', 212, 6, NULL, NULL, NULL, NULL, NULL),
(848, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(849, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(850, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(851, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(852, 'https://onlineincshop.com/category/uncategorized/', 87, NULL, 'internal', 212, 6, NULL, NULL, NULL, NULL, NULL),
(853, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(854, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(855, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(856, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(857, 'https://onlineincshop.com/category/uncategorized/', 87, NULL, 'internal', 212, 6, NULL, NULL, NULL, NULL, NULL),
(858, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(859, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(860, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(861, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(862, 'https://onlineincshop.com/category/uncategorized/', 87, NULL, 'internal', 212, 6, NULL, NULL, NULL, NULL, NULL),
(863, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(864, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(865, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(866, 'https://onlineincshop.com/wp-cron.php/page/2/?doing_wp_cron=1735044331.7938590049743652343750', 87, NULL, 'internal', 212, NULL, NULL, NULL, NULL, NULL, NULL),
(867, 'https://onlineincshop.com/wp-cron.php/page/3/?doing_wp_cron=1735044331.7938590049743652343750', 87, NULL, 'internal', 212, NULL, NULL, NULL, NULL, NULL, NULL),
(868, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(869, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 87, 502, 'internal', 212, 205, NULL, NULL, NULL, NULL, NULL),
(870, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 87, 502, 'internal', 212, 205, NULL, NULL, NULL, NULL, NULL),
(871, 'https://onlineincshop.com/author/admin/', 87, NULL, 'internal', 212, 97, NULL, NULL, NULL, NULL, NULL),
(872, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 87, 482, 'internal', 212, 201, NULL, NULL, NULL, NULL, NULL),
(873, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 87, 482, 'internal', 212, 201, NULL, NULL, NULL, NULL, NULL),
(874, 'https://onlineincshop.com/category/watersports/', 87, NULL, 'internal', 212, 202, NULL, NULL, NULL, NULL, NULL),
(875, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/#respond', 87, 482, 'internal', 212, 201, NULL, NULL, NULL, NULL, NULL),
(876, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 87, 478, 'internal', 212, 199, NULL, NULL, NULL, NULL, NULL),
(877, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 87, 478, 'internal', 212, 199, NULL, NULL, NULL, NULL, NULL),
(878, 'https://onlineincshop.com/category/business/', 87, NULL, 'internal', 212, 206, NULL, NULL, NULL, NULL, NULL),
(879, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/#respond', 87, 478, 'internal', 212, 199, NULL, NULL, NULL, NULL, NULL),
(880, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 87, 473, 'internal', 212, 196, NULL, NULL, NULL, NULL, NULL),
(881, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 87, 473, 'internal', 212, 196, NULL, NULL, NULL, NULL, NULL),
(882, 'https://onlineincshop.com/category/ramadan-in-uae/', 87, NULL, 'internal', 212, 197, NULL, NULL, NULL, NULL, NULL),
(883, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/#respond', 87, 473, 'internal', 212, 196, NULL, NULL, NULL, NULL, NULL),
(884, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/', 87, 469, 'internal', 212, 193, NULL, NULL, NULL, NULL, NULL),
(885, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/', 87, 469, 'internal', 212, 193, NULL, NULL, NULL, NULL, NULL),
(886, 'https://onlineincshop.com/category/which-is-the-most-profitable-business-in-uae/', 87, NULL, 'internal', 212, 194, NULL, NULL, NULL, NULL, NULL),
(887, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/#respond', 87, 469, 'internal', 212, 193, NULL, NULL, NULL, NULL, NULL),
(888, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(889, '#', 87, NULL, 'internal', 212, 1, NULL, NULL, NULL, NULL, NULL),
(890, 'https://themeforest.net/item/newspaper/5489609', 87, NULL, 'external', 212, NULL, NULL, NULL, NULL, NULL, NULL),
(891, 'https://themeforest.net/item/newspaper/5489609', 87, NULL, 'external', 212, NULL, NULL, NULL, NULL, NULL, NULL),
(892, 'https://secure.gravatar.com/avatar/?s=96&amp;d=mm&amp;r=g', 87, NULL, 'image-ex', 212, NULL, NULL, NULL, NULL, NULL, NULL),
(893, 'https://onlineincshop.com/wp-content/uploads/2022/02/rec-sb.jpg', 87, 23, 'image-in', 212, NULL, 424, 312, 25846, NULL, NULL),
(894, 'https://onlineincshop.com/wp-content/uploads/2022/02/rec-sb@2x.jpg', 87, 24, 'image-in', 212, NULL, 848, 624, 65748, NULL, NULL),
(895, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 88, 502, 'internal', 213, 205, NULL, NULL, NULL, NULL, NULL),
(896, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 88, 502, 'internal', 213, 205, NULL, NULL, NULL, NULL, NULL),
(897, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/#respond', 88, 502, 'internal', 213, 205, NULL, NULL, NULL, NULL, NULL),
(898, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 88, 482, 'internal', 213, 201, NULL, NULL, NULL, NULL, NULL),
(899, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 88, 482, 'internal', 213, 201, NULL, NULL, NULL, NULL, NULL),
(900, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/#respond', 88, 482, 'internal', 213, 201, NULL, NULL, NULL, NULL, NULL),
(901, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 88, 478, 'internal', 213, 199, NULL, NULL, NULL, NULL, NULL),
(902, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 88, 478, 'internal', 213, 199, NULL, NULL, NULL, NULL, NULL),
(903, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/#respond', 88, 478, 'internal', 213, 199, NULL, NULL, NULL, NULL, NULL),
(904, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 88, 473, 'internal', 213, 196, NULL, NULL, NULL, NULL, NULL),
(905, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 88, 473, 'internal', 213, 196, NULL, NULL, NULL, NULL, NULL),
(906, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/#respond', 88, 473, 'internal', 213, 196, NULL, NULL, NULL, NULL, NULL),
(907, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(908, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(909, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(910, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(911, 'https://onlineincshop.com/category/uncategorized/', 88, NULL, 'internal', 213, 6, NULL, NULL, NULL, NULL, NULL),
(912, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(913, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(914, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(915, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(916, 'https://onlineincshop.com/category/uncategorized/', 88, NULL, 'internal', 213, 6, NULL, NULL, NULL, NULL, NULL),
(917, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(918, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(919, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(920, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(921, 'https://onlineincshop.com/category/uncategorized/', 88, NULL, 'internal', 213, 6, NULL, NULL, NULL, NULL, NULL),
(922, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(923, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(924, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(925, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(926, 'https://onlineincshop.com/category/uncategorized/', 88, NULL, 'internal', 213, 6, NULL, NULL, NULL, NULL, NULL),
(927, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(928, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(929, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(930, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(931, 'https://onlineincshop.com/category/uncategorized/', 88, NULL, 'internal', 213, 6, NULL, NULL, NULL, NULL, NULL),
(932, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(933, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(934, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(935, 'https://onlineincshop.com/wp-cron.php/page/2/?doing_wp_cron=1735044331.7938590049743652343750', 88, NULL, 'internal', 213, NULL, NULL, NULL, NULL, NULL, NULL),
(936, 'https://onlineincshop.com/wp-cron.php/page/3/?doing_wp_cron=1735044331.7938590049743652343750', 88, NULL, 'internal', 213, NULL, NULL, NULL, NULL, NULL, NULL),
(937, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(938, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 88, 502, 'internal', 213, 205, NULL, NULL, NULL, NULL, NULL),
(939, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 88, 502, 'internal', 213, 205, NULL, NULL, NULL, NULL, NULL),
(940, 'https://onlineincshop.com/author/admin/', 88, NULL, 'internal', 213, 97, NULL, NULL, NULL, NULL, NULL),
(941, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 88, 482, 'internal', 213, 201, NULL, NULL, NULL, NULL, NULL),
(942, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 88, 482, 'internal', 213, 201, NULL, NULL, NULL, NULL, NULL),
(943, 'https://onlineincshop.com/category/watersports/', 88, NULL, 'internal', 213, 202, NULL, NULL, NULL, NULL, NULL),
(944, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/#respond', 88, 482, 'internal', 213, 201, NULL, NULL, NULL, NULL, NULL),
(945, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 88, 478, 'internal', 213, 199, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `wpom_yoast_seo_links` (`id`, `url`, `post_id`, `target_post_id`, `type`, `indexable_id`, `target_indexable_id`, `height`, `width`, `size`, `language`, `region`) VALUES
(946, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 88, 478, 'internal', 213, 199, NULL, NULL, NULL, NULL, NULL),
(947, 'https://onlineincshop.com/category/business/', 88, NULL, 'internal', 213, 206, NULL, NULL, NULL, NULL, NULL),
(948, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/#respond', 88, 478, 'internal', 213, 199, NULL, NULL, NULL, NULL, NULL),
(949, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 88, 473, 'internal', 213, 196, NULL, NULL, NULL, NULL, NULL),
(950, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 88, 473, 'internal', 213, 196, NULL, NULL, NULL, NULL, NULL),
(951, 'https://onlineincshop.com/category/ramadan-in-uae/', 88, NULL, 'internal', 213, 197, NULL, NULL, NULL, NULL, NULL),
(952, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/#respond', 88, 473, 'internal', 213, 196, NULL, NULL, NULL, NULL, NULL),
(953, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/', 88, 469, 'internal', 213, 193, NULL, NULL, NULL, NULL, NULL),
(954, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/', 88, 469, 'internal', 213, 193, NULL, NULL, NULL, NULL, NULL),
(955, 'https://onlineincshop.com/category/which-is-the-most-profitable-business-in-uae/', 88, NULL, 'internal', 213, 194, NULL, NULL, NULL, NULL, NULL),
(956, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/#respond', 88, 469, 'internal', 213, 193, NULL, NULL, NULL, NULL, NULL),
(957, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(958, '#', 88, NULL, 'internal', 213, 1, NULL, NULL, NULL, NULL, NULL),
(959, 'https://themeforest.net/item/newspaper/5489609', 88, NULL, 'external', 213, NULL, NULL, NULL, NULL, NULL, NULL),
(960, 'https://themeforest.net/item/newspaper/5489609', 88, NULL, 'external', 213, NULL, NULL, NULL, NULL, NULL, NULL),
(961, 'https://secure.gravatar.com/avatar/?s=96&amp;d=mm&amp;r=g', 88, NULL, 'image-ex', 213, NULL, NULL, NULL, NULL, NULL, NULL),
(962, 'https://onlineincshop.com/wp-content/uploads/2022/02/rec-sb.jpg', 88, 23, 'image-in', 213, NULL, 424, 312, 25846, NULL, NULL),
(963, 'https://onlineincshop.com/wp-content/uploads/2022/02/rec-sb@2x.jpg', 88, 24, 'image-in', 213, NULL, 848, 624, 65748, NULL, NULL),
(964, '#', 89, NULL, 'internal', 214, 1, NULL, NULL, NULL, NULL, NULL),
(965, '#', 89, NULL, 'internal', 214, 1, NULL, NULL, NULL, NULL, NULL),
(966, '#', 89, NULL, 'internal', 214, 1, NULL, NULL, NULL, NULL, NULL),
(967, '#', 89, NULL, 'internal', 214, 1, NULL, NULL, NULL, NULL, NULL),
(968, '#', 89, NULL, 'internal', 214, 1, NULL, NULL, NULL, NULL, NULL),
(969, '#', 89, NULL, 'internal', 214, 1, NULL, NULL, NULL, NULL, NULL),
(970, '#', 89, NULL, 'internal', 214, 1, NULL, NULL, NULL, NULL, NULL),
(971, '#', 89, NULL, 'internal', 214, 1, NULL, NULL, NULL, NULL, NULL),
(972, '#', 89, NULL, 'internal', 214, 1, NULL, NULL, NULL, NULL, NULL),
(973, '#', 89, NULL, 'internal', 214, 1, NULL, NULL, NULL, NULL, NULL),
(974, 'post-author-website.com', 89, NULL, 'internal', 214, NULL, NULL, NULL, NULL, NULL, NULL),
(975, 'post-author-website.com', 89, NULL, 'internal', 214, NULL, NULL, NULL, NULL, NULL, NULL),
(976, '', 89, NULL, 'internal', 214, 1, NULL, NULL, NULL, NULL, NULL),
(977, '#', 89, NULL, 'internal', 214, 1, NULL, NULL, NULL, NULL, NULL),
(978, '#', 89, NULL, 'internal', 214, 1, NULL, NULL, NULL, NULL, NULL),
(979, '#', 89, NULL, 'internal', 214, 1, NULL, NULL, NULL, NULL, NULL),
(980, '#', 89, NULL, 'internal', 214, 1, NULL, NULL, NULL, NULL, NULL),
(981, '#', 89, NULL, 'internal', 214, 1, NULL, NULL, NULL, NULL, NULL),
(982, '#', 89, NULL, 'internal', 214, 1, NULL, NULL, NULL, NULL, NULL),
(983, '/wp_011_video_pro/?p=35#respond', 89, NULL, 'internal', 214, NULL, NULL, NULL, NULL, NULL, NULL),
(984, 'https://themeforest.net/item/newspaper/5489609', 89, NULL, 'external', 214, NULL, NULL, NULL, NULL, NULL, NULL),
(985, 'https://themeforest.net/item/newspaper/5489609', 89, NULL, 'external', 214, NULL, NULL, NULL, NULL, NULL, NULL),
(986, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 89, 502, 'internal', 214, 205, NULL, NULL, NULL, NULL, NULL),
(987, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 89, 502, 'internal', 214, 205, NULL, NULL, NULL, NULL, NULL),
(988, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 89, 482, 'internal', 214, 201, NULL, NULL, NULL, NULL, NULL),
(989, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 89, 482, 'internal', 214, 201, NULL, NULL, NULL, NULL, NULL),
(990, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 89, 478, 'internal', 214, 199, NULL, NULL, NULL, NULL, NULL),
(991, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 89, 478, 'internal', 214, 199, NULL, NULL, NULL, NULL, NULL),
(992, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 89, 473, 'internal', 214, 196, NULL, NULL, NULL, NULL, NULL),
(993, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 89, 473, 'internal', 214, 196, NULL, NULL, NULL, NULL, NULL),
(994, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/', 89, 469, 'internal', 214, 193, NULL, NULL, NULL, NULL, NULL),
(995, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/', 89, 469, 'internal', 214, 193, NULL, NULL, NULL, NULL, NULL),
(996, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 89, 502, 'internal', 214, 205, NULL, NULL, NULL, NULL, NULL),
(997, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 89, 502, 'internal', 214, 205, NULL, NULL, NULL, NULL, NULL),
(998, 'https://onlineincshop.com/author/admin/', 89, NULL, 'internal', 214, 97, NULL, NULL, NULL, NULL, NULL),
(999, 'https://onlineincshop.com/author/admin/', 89, NULL, 'internal', 214, 97, NULL, NULL, NULL, NULL, NULL),
(1000, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 89, 482, 'internal', 214, 201, NULL, NULL, NULL, NULL, NULL),
(1001, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 89, 482, 'internal', 214, 201, NULL, NULL, NULL, NULL, NULL),
(1002, 'https://onlineincshop.com/author/admin/', 89, NULL, 'internal', 214, 97, NULL, NULL, NULL, NULL, NULL),
(1003, 'https://onlineincshop.com/author/admin/', 89, NULL, 'internal', 214, 97, NULL, NULL, NULL, NULL, NULL),
(1004, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 89, 478, 'internal', 214, 199, NULL, NULL, NULL, NULL, NULL),
(1005, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 89, 478, 'internal', 214, 199, NULL, NULL, NULL, NULL, NULL),
(1006, 'https://onlineincshop.com/author/admin/', 89, NULL, 'internal', 214, 97, NULL, NULL, NULL, NULL, NULL),
(1007, 'https://onlineincshop.com/author/admin/', 89, NULL, 'internal', 214, 97, NULL, NULL, NULL, NULL, NULL),
(1008, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 89, 473, 'internal', 214, 196, NULL, NULL, NULL, NULL, NULL),
(1009, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 89, 473, 'internal', 214, 196, NULL, NULL, NULL, NULL, NULL),
(1010, 'https://onlineincshop.com/author/admin/', 89, NULL, 'internal', 214, 97, NULL, NULL, NULL, NULL, NULL),
(1011, 'https://onlineincshop.com/author/admin/', 89, NULL, 'internal', 214, 97, NULL, NULL, NULL, NULL, NULL),
(1012, 'https://onlineincshop.com/wp-content/plugins/td-cloud-library/assets/images/post_content_center_img.png', 89, 15996, 'image-in', 214, NULL, 0, 0, 0, NULL, NULL),
(1013, 'https://onlineincshop.com/wp-content/plugins/td-cloud-library/assets/images/post_content_left_img.png', 89, 16000, 'image-in', 214, NULL, 0, 0, 0, NULL, NULL),
(1014, 'https://onlineincshop.com/wp-content/plugins/td-cloud-library/assets/images/post_content_right_img.png', 89, 16001, 'image-in', 214, NULL, 0, 0, 0, NULL, NULL),
(1015, 'https://secure.gravatar.com/avatar/?s=96&amp;d=mm&amp;r=g', 89, NULL, 'image-ex', 214, NULL, NULL, NULL, NULL, NULL, NULL),
(1016, 'https://secure.gravatar.com/avatar/01abfc750a0c942167651c40d088531d?s=50&amp;d=mm&amp;r=g', 89, NULL, 'image-ex', 214, NULL, NULL, NULL, NULL, NULL, NULL),
(1017, 'https://onlineincshop.com/wp-content/uploads/2022/02/rec-sb.jpg', 89, 23, 'image-in', 214, NULL, 424, 312, 25846, NULL, NULL),
(1018, 'https://onlineincshop.com/wp-content/uploads/2022/02/rec-sb@2x.jpg', 89, 24, 'image-in', 214, NULL, 848, 624, 65748, NULL, NULL),
(1019, 'https://secure.gravatar.com/avatar/5988bc071425827e792163f93e348c0b?s=96&amp;d=mm&amp;r=g', 89, NULL, 'image-ex', 214, NULL, NULL, NULL, NULL, NULL, NULL),
(1020, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 90, 502, 'internal', 215, 205, NULL, NULL, NULL, NULL, NULL),
(1021, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 90, 502, 'internal', 215, 205, NULL, NULL, NULL, NULL, NULL),
(1022, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/#respond', 90, 502, 'internal', 215, 205, NULL, NULL, NULL, NULL, NULL),
(1023, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 90, 482, 'internal', 215, 201, NULL, NULL, NULL, NULL, NULL),
(1024, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 90, 482, 'internal', 215, 201, NULL, NULL, NULL, NULL, NULL),
(1025, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/#respond', 90, 482, 'internal', 215, 201, NULL, NULL, NULL, NULL, NULL),
(1026, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 90, 478, 'internal', 215, 199, NULL, NULL, NULL, NULL, NULL),
(1027, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 90, 478, 'internal', 215, 199, NULL, NULL, NULL, NULL, NULL),
(1028, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/#respond', 90, 478, 'internal', 215, 199, NULL, NULL, NULL, NULL, NULL),
(1029, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 90, 473, 'internal', 215, 196, NULL, NULL, NULL, NULL, NULL),
(1030, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 90, 473, 'internal', 215, 196, NULL, NULL, NULL, NULL, NULL),
(1031, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/#respond', 90, 473, 'internal', 215, 196, NULL, NULL, NULL, NULL, NULL),
(1032, '#', 90, NULL, 'internal', 215, 1, NULL, NULL, NULL, NULL, NULL),
(1033, '#', 90, NULL, 'internal', 215, 1, NULL, NULL, NULL, NULL, NULL),
(1034, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 90, 502, 'internal', 215, 205, NULL, NULL, NULL, NULL, NULL),
(1035, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 90, 502, 'internal', 215, 205, NULL, NULL, NULL, NULL, NULL),
(1036, 'https://onlineincshop.com/author/admin/', 90, NULL, 'internal', 215, 97, NULL, NULL, NULL, NULL, NULL),
(1037, 'https://onlineincshop.com/author/admin/', 90, NULL, 'internal', 215, 97, NULL, NULL, NULL, NULL, NULL),
(1038, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 90, 482, 'internal', 215, 201, NULL, NULL, NULL, NULL, NULL),
(1039, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 90, 482, 'internal', 215, 201, NULL, NULL, NULL, NULL, NULL),
(1040, 'https://onlineincshop.com/author/admin/', 90, NULL, 'internal', 215, 97, NULL, NULL, NULL, NULL, NULL),
(1041, 'https://onlineincshop.com/author/admin/', 90, NULL, 'internal', 215, 97, NULL, NULL, NULL, NULL, NULL),
(1042, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 90, 478, 'internal', 215, 199, NULL, NULL, NULL, NULL, NULL),
(1043, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 90, 478, 'internal', 215, 199, NULL, NULL, NULL, NULL, NULL),
(1044, 'https://onlineincshop.com/author/admin/', 90, NULL, 'internal', 215, 97, NULL, NULL, NULL, NULL, NULL),
(1045, 'https://onlineincshop.com/author/admin/', 90, NULL, 'internal', 215, 97, NULL, NULL, NULL, NULL, NULL),
(1046, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 90, 473, 'internal', 215, 196, NULL, NULL, NULL, NULL, NULL),
(1047, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 90, 473, 'internal', 215, 196, NULL, NULL, NULL, NULL, NULL),
(1048, 'https://onlineincshop.com/author/admin/', 90, NULL, 'internal', 215, 97, NULL, NULL, NULL, NULL, NULL),
(1049, 'https://onlineincshop.com/author/admin/', 90, NULL, 'internal', 215, 97, NULL, NULL, NULL, NULL, NULL),
(1050, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/', 90, 469, 'internal', 215, 193, NULL, NULL, NULL, NULL, NULL),
(1051, 'https://onlineincshop.com/2024/02/14/staying-informed-understanding-travel-alerts-for-dubai/', 90, 466, 'internal', 215, 191, NULL, NULL, NULL, NULL, NULL),
(1052, 'https://onlineincshop.com/2024/02/03/navigating-the-political-landscape-understanding-politics-in-the-uae/', 90, 462, 'internal', 215, 190, NULL, NULL, NULL, NULL, NULL),
(1053, 'https://onlineincshop.com/2024/01/27/navigating-financial-success-exploring-finance-careers-in-uae/', 90, 458, 'internal', 215, 188, NULL, NULL, NULL, NULL, NULL),
(1054, 'https://onlineincshop.com/2024/01/20/unlocking-opportunities-finance-jobs-in-uae/', 90, 455, 'internal', 215, 186, NULL, NULL, NULL, NULL, NULL),
(1055, 'https://onlineincshop.com/2024/01/20/anchoring-prosperity-exploring-political-stability-in-the-uae/', 90, 452, 'internal', 215, 184, NULL, NULL, NULL, NULL, NULL),
(1056, 'https://onlineincshop.com/2024/01/06/navigating-the-political-landscape-understanding-dubai-politics-in-the-uae/', 90, 448, 'internal', 215, 182, NULL, NULL, NULL, NULL, NULL),
(1057, 'https://onlineincshop.com/2023/12/29/financial-technology-service-in-uae-segments-ecosystem-and-trends/', 90, 444, 'internal', 215, 180, NULL, NULL, NULL, NULL, NULL),
(1058, 'https://onlineincshop.com/2023/12/22/embracing-new-beginnings-a-guide-to-welcoming-the-new-year-2024/', 90, 441, 'internal', 215, 178, NULL, NULL, NULL, NULL, NULL),
(1059, 'https://onlineincshop.com/2023/12/15/experiencing-enchantment-christmas-in-dubai/', 90, 437, 'internal', 215, 176, NULL, NULL, NULL, NULL, NULL),
(1060, 'https://onlineincshop.com/2023/12/09/unlock-savings-navigating-the-abu-dhabi-discount-sale-extravaganza/', 90, 434, 'internal', 215, 174, NULL, NULL, NULL, NULL, NULL),
(1061, 'https://onlineincshop.com/2023/12/01/discover-the-festive-splendor-a-guide-to-dubais-winter-markets-extravaganza/', 90, 430, 'internal', 215, 172, NULL, NULL, NULL, NULL, NULL),
(1062, 'https://onlineincshop.com/2023/11/30/dubais-shopping-extravaganza-navigating-unbeatable-deals-and-luxury-sales-in-the-heart-of-the-uae/', 90, 427, 'internal', 215, 169, NULL, NULL, NULL, NULL, NULL),
(1063, 'https://onlineincshop.com/2023/11/30/innovation-oasis-the-pinnacle-of-science-and-technology-in-the-uae/', 90, 424, 'internal', 215, 166, NULL, NULL, NULL, NULL, NULL),
(1064, 'https://onlineincshop.com/2023/11/30/navigating-the-future-exciting-opportunities-in-information-technology-jobs-in-the-uae/', 90, 421, 'internal', 215, 163, NULL, NULL, NULL, NULL, NULL),
(1065, 'https://onlineincshop.com/2023/11/30/bite-sized-bliss-exploring-the-quick-culinary-delights-of-fast-food-in-the-uae/', 90, 418, 'internal', 215, 160, NULL, NULL, NULL, NULL, NULL),
(1066, 'https://secure.gravatar.com/avatar/5988bc071425827e792163f93e348c0b?s=96&amp;d=mm&amp;r=g', 90, NULL, 'image-ex', 215, NULL, NULL, NULL, NULL, NULL, NULL),
(1067, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 91, 502, 'internal', 216, 205, NULL, NULL, NULL, NULL, NULL),
(1068, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 91, 502, 'internal', 216, 205, NULL, NULL, NULL, NULL, NULL),
(1069, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/#respond', 91, 502, 'internal', 216, 205, NULL, NULL, NULL, NULL, NULL),
(1070, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 91, 482, 'internal', 216, 201, NULL, NULL, NULL, NULL, NULL),
(1071, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 91, 482, 'internal', 216, 201, NULL, NULL, NULL, NULL, NULL),
(1072, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/#respond', 91, 482, 'internal', 216, 201, NULL, NULL, NULL, NULL, NULL),
(1073, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 91, 478, 'internal', 216, 199, NULL, NULL, NULL, NULL, NULL),
(1074, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 91, 478, 'internal', 216, 199, NULL, NULL, NULL, NULL, NULL),
(1075, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/#respond', 91, 478, 'internal', 216, 199, NULL, NULL, NULL, NULL, NULL),
(1076, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 91, 473, 'internal', 216, 196, NULL, NULL, NULL, NULL, NULL),
(1077, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 91, 473, 'internal', 216, 196, NULL, NULL, NULL, NULL, NULL),
(1078, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/#respond', 91, 473, 'internal', 216, 196, NULL, NULL, NULL, NULL, NULL),
(1079, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1080, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1081, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1082, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1083, 'https://onlineincshop.com/category/uncategorized/', 91, NULL, 'internal', 216, 6, NULL, NULL, NULL, NULL, NULL),
(1084, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1085, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1086, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1087, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1088, 'https://onlineincshop.com/category/uncategorized/', 91, NULL, 'internal', 216, 6, NULL, NULL, NULL, NULL, NULL),
(1089, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1090, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1091, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1092, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1093, 'https://onlineincshop.com/category/uncategorized/', 91, NULL, 'internal', 216, 6, NULL, NULL, NULL, NULL, NULL),
(1094, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1095, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1096, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1097, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1098, 'https://onlineincshop.com/category/uncategorized/', 91, NULL, 'internal', 216, 6, NULL, NULL, NULL, NULL, NULL),
(1099, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1100, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1101, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1102, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1103, 'https://onlineincshop.com/category/uncategorized/', 91, NULL, 'internal', 216, 6, NULL, NULL, NULL, NULL, NULL),
(1104, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1105, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1106, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1107, 'https://onlineincshop.com/wp-cron.php/page/2/?doing_wp_cron=1735045503.7287011146545410156250', 91, NULL, 'internal', 216, NULL, NULL, NULL, NULL, NULL, NULL),
(1108, 'https://onlineincshop.com/wp-cron.php/page/3/?doing_wp_cron=1735045503.7287011146545410156250', 91, NULL, 'internal', 216, NULL, NULL, NULL, NULL, NULL, NULL),
(1109, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1110, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 91, 502, 'internal', 216, 205, NULL, NULL, NULL, NULL, NULL),
(1111, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 91, 502, 'internal', 216, 205, NULL, NULL, NULL, NULL, NULL),
(1112, 'https://onlineincshop.com/author/admin/', 91, NULL, 'internal', 216, 97, NULL, NULL, NULL, NULL, NULL),
(1113, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 91, 482, 'internal', 216, 201, NULL, NULL, NULL, NULL, NULL),
(1114, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 91, 482, 'internal', 216, 201, NULL, NULL, NULL, NULL, NULL),
(1115, 'https://onlineincshop.com/category/watersports/', 91, NULL, 'internal', 216, 202, NULL, NULL, NULL, NULL, NULL),
(1116, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/#respond', 91, 482, 'internal', 216, 201, NULL, NULL, NULL, NULL, NULL),
(1117, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 91, 478, 'internal', 216, 199, NULL, NULL, NULL, NULL, NULL),
(1118, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 91, 478, 'internal', 216, 199, NULL, NULL, NULL, NULL, NULL),
(1119, 'https://onlineincshop.com/category/business/', 91, NULL, 'internal', 216, 206, NULL, NULL, NULL, NULL, NULL),
(1120, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/#respond', 91, 478, 'internal', 216, 199, NULL, NULL, NULL, NULL, NULL),
(1121, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 91, 473, 'internal', 216, 196, NULL, NULL, NULL, NULL, NULL),
(1122, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/', 91, 473, 'internal', 216, 196, NULL, NULL, NULL, NULL, NULL),
(1123, 'https://onlineincshop.com/category/ramadan-in-uae/', 91, NULL, 'internal', 216, 197, NULL, NULL, NULL, NULL, NULL),
(1124, 'https://onlineincshop.com/2024/03/08/embracing-the-spirit-of-ramadan-in-the-uae-traditions-customs-and-celebrations/#respond', 91, 473, 'internal', 216, 196, NULL, NULL, NULL, NULL, NULL),
(1125, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/', 91, 469, 'internal', 216, 193, NULL, NULL, NULL, NULL, NULL),
(1126, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/', 91, 469, 'internal', 216, 193, NULL, NULL, NULL, NULL, NULL),
(1127, 'https://onlineincshop.com/category/which-is-the-most-profitable-business-in-uae/', 91, NULL, 'internal', 216, 194, NULL, NULL, NULL, NULL, NULL),
(1128, 'https://onlineincshop.com/2024/02/19/unveiling-the-most-profitable-business-opportunities-in-the-uae-a-guide-to-entrepreneurial-success/#respond', 91, 469, 'internal', 216, 193, NULL, NULL, NULL, NULL, NULL),
(1129, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1130, '#', 91, NULL, 'internal', 216, 1, NULL, NULL, NULL, NULL, NULL),
(1131, 'https://themeforest.net/item/newspaper/5489609', 91, NULL, 'external', 216, NULL, NULL, NULL, NULL, NULL, NULL),
(1132, 'https://themeforest.net/item/newspaper/5489609', 91, NULL, 'external', 216, NULL, NULL, NULL, NULL, NULL, NULL),
(1133, 'https://secure.gravatar.com/avatar/?s=96&amp;d=mm&amp;r=g', 91, NULL, 'image-ex', 216, NULL, NULL, NULL, NULL, NULL, NULL),
(1134, 'https://onlineincshop.com/wp-content/uploads/2022/02/rec-sb.jpg', 91, 23, 'image-in', 216, NULL, 424, 312, 25846, NULL, NULL),
(1135, 'https://onlineincshop.com/wp-content/uploads/2022/02/rec-sb@2x.jpg', 91, 24, 'image-in', 216, NULL, 848, 624, 65748, NULL, NULL),
(1136, 'https://onlineincshop.com/', 92, NULL, 'internal', 217, 1, NULL, NULL, NULL, NULL, NULL),
(1137, 'https://onlineincshop.com/category/music/', 92, NULL, 'internal', 217, 52, NULL, NULL, NULL, NULL, NULL),
(1138, 'https://onlineincshop.com/category/celebrity/', 92, NULL, 'internal', 217, 51, NULL, NULL, NULL, NULL, NULL),
(1139, 'https://onlineincshop.com/category/politics/', 92, NULL, 'internal', 217, 49, NULL, NULL, NULL, NULL, NULL),
(1140, 'https://onlineincshop.com/category/finance/', 92, NULL, 'internal', 217, 47, NULL, NULL, NULL, NULL, NULL),
(1141, 'https://onlineincshop.com/category/travel/', 92, NULL, 'internal', 217, 50, NULL, NULL, NULL, NULL, NULL),
(1142, 'https://onlineincshop.com/category/food/', 92, NULL, 'internal', 217, 14, NULL, NULL, NULL, NULL, NULL),
(1143, 'https://onlineincshop.com/category/marketing/', 92, NULL, 'internal', 217, 43, NULL, NULL, NULL, NULL, NULL),
(1144, 'https://onlineincshop.com/category/tech/', 92, NULL, 'internal', 217, 53, NULL, NULL, NULL, NULL, NULL),
(1145, 'https://onlineincshop.com/category/make-up/', 92, NULL, 'internal', 217, 48, NULL, NULL, NULL, NULL, NULL),
(1146, 'https://onlineincshop.com/contact-us/', 92, 208, 'internal', 217, 25, NULL, NULL, NULL, NULL, NULL),
(1147, 'https://onlineincshop.com/contact-us/', 92, 208, 'internal', 217, 25, NULL, NULL, NULL, NULL, NULL),
(1148, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 92, 502, 'internal', 217, 205, NULL, NULL, NULL, NULL, NULL),
(1149, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/', 92, 502, 'internal', 217, 205, NULL, NULL, NULL, NULL, NULL),
(1150, 'https://onlineincshop.com/category/business/', 92, NULL, 'internal', 217, 206, NULL, NULL, NULL, NULL, NULL),
(1151, 'https://onlineincshop.com/2024/05/10/seize-the-day-explore-car-sales-property-rentals-and-job-searches-in-the-uae-with-bkamthis-classifieds/#respond', 92, 502, 'internal', 217, 205, NULL, NULL, NULL, NULL, NULL),
(1152, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 92, 482, 'internal', 217, 201, NULL, NULL, NULL, NULL, NULL),
(1153, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/', 92, 482, 'internal', 217, 201, NULL, NULL, NULL, NULL, NULL),
(1154, 'https://onlineincshop.com/category/watersports/', 92, NULL, 'internal', 217, 202, NULL, NULL, NULL, NULL, NULL),
(1155, 'https://onlineincshop.com/2024/04/13/making-waves-unforgettable-kids-birthday-parties-at-seayous-watersports/#respond', 92, 482, 'internal', 217, 201, NULL, NULL, NULL, NULL, NULL),
(1156, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 92, 478, 'internal', 217, 199, NULL, NULL, NULL, NULL, NULL),
(1157, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/', 92, 478, 'internal', 217, 199, NULL, NULL, NULL, NULL, NULL),
(1158, 'https://onlineincshop.com/category/business/', 92, NULL, 'internal', 217, 206, NULL, NULL, NULL, NULL, NULL),
(1159, 'https://onlineincshop.com/2024/03/25/meydan-free-zone-a-gateway-to-business-success-in-dubai/#respond', 92, 478, 'internal', 217, 199, NULL, NULL, NULL, NULL, NULL),
(1160, 'https://onlineincshop.com/', 92, NULL, 'internal', 217, 1, NULL, NULL, NULL, NULL, NULL),
(1161, 'https://chic.ae', 561, NULL, 'external', 219, NULL, NULL, NULL, NULL, NULL, NULL),
(1162, 'https://www.chic.ae/', 561, NULL, 'external', 219, NULL, NULL, NULL, NULL, NULL, NULL),
(1163, 'https://www.facebook.com/ChicShoesUAE', 561, NULL, 'external', 219, NULL, NULL, NULL, NULL, NULL, NULL),
(1164, 'https://www.instagram.com/chicshoesuae/', 561, NULL, 'external', 219, NULL, NULL, NULL, NULL, NULL, NULL),
(1165, 'https://x.com/chicshoesuae', 561, NULL, 'external', 219, NULL, NULL, NULL, NULL, NULL, NULL),
(1166, 'https://www.linkedin.com/company/chic-shoes-co-llc/', 561, NULL, 'external', 219, NULL, NULL, NULL, NULL, NULL, NULL),
(1167, 'https://www.pinterest.com/chiconlineuae/', 561, NULL, 'external', 219, NULL, NULL, NULL, NULL, NULL, NULL),
(1168, 'https://landscaping.sabbaslandscaping.com/spring-lake-heights-landscaping/', 569, NULL, 'external', 223, NULL, NULL, NULL, NULL, NULL, NULL);
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
