-- Softaculous SQL Dump
-- http://www.softaculous.com
--
-- Host: localhost
-- Generation Time: March 24, 2026, 5:26 pm
-- Server version: 11.4.10
-- PHP Version: 8.3.30

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
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: `amuuckqu_wp278`
--

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

--
-- Table structure for table `wpuq_commentmeta`
--

CREATE TABLE `wpuq_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

--
-- Table structure for table `wpuq_comments`
--

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

--
-- Dumping data for table `wpuq_comments`
--

INSERT INTO `wpuq_comments` VALUES
(1, 1, 'A WordPress Commenter', 'wapuu@wordpress.example', 'https://wordpress.org/', '', '2026-03-23 10:56:40', '2026-03-23 10:56:40', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href="https://gravatar.com/">Gravatar</a>.', 0, '1', '', 'comment', 0, 0);

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

--
-- Table structure for table `wpuq_cookieadmin_consents`
--

CREATE TABLE `wpuq_cookieadmin_consents` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `consent_id` varchar(128) NOT NULL,
  `user_ip` varbinary(16) DEFAULT NULL,
  `consent_time` int(11) NOT NULL,
  `country` varchar(150) DEFAULT NULL,
  `browser` text DEFAULT NULL,
  `domain` varchar(255) DEFAULT NULL,
  `consent_status` varchar(50) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `consent_id` (`consent_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpuq_cookieadmin_consents`
--

INSERT INTO `wpuq_cookieadmin_consents` VALUES
(1, 'b3babecd-fd4c-4184-b578-126d8581f48b', '¬:\0', 1774315201, 'United States', 'Mozilla/5.0 (Linux; Android 16; SM-F946U1 Build/BP2A.250605.031.A3; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/146.0.7680.119 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/552.0.0.44.65;]', 'amuurulogistics.com', '["accept"]'),
(2, '0b706d45-976b-420d-9963-b536ed8b532f', '¬:\0', 1774364203, '', 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36', 'amuurulogistics.com', '["accept"]');

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

--
-- Table structure for table `wpuq_cookieadmin_cookies`
--

CREATE TABLE `wpuq_cookieadmin_cookies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `cookie_name` varchar(100) NOT NULL,
  `category` varchar(50) DEFAULT NULL,
  `description` varchar(500) DEFAULT NULL,
  `domain` varchar(255) NOT NULL,
  `path` varchar(255) DEFAULT '/',
  `expires` datetime DEFAULT NULL,
  `max_age` int(11) DEFAULT NULL,
  `samesite` varchar(10) DEFAULT NULL,
  `secure` tinyint(1) NOT NULL DEFAULT 0,
  `httponly` tinyint(1) NOT NULL DEFAULT 0,
  `raw_name` varchar(255) DEFAULT NULL,
  `edited` tinyint(1) DEFAULT 0,
  `patterns` varchar(255) NOT NULL DEFAULT '[]',
  `scan_timestamp` int(11) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

--
-- Table structure for table `wpuq_links`
--

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

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

--
-- Table structure for table `wpuq_litespeed_url`
--

CREATE TABLE `wpuq_litespeed_url` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `url` varchar(500) NOT NULL,
  `cache_tags` varchar(1000) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  UNIQUE KEY `url` (`url`(191)),
  KEY `cache_tags` (`cache_tags`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

--
-- Table structure for table `wpuq_litespeed_url_file`
--

CREATE TABLE `wpuq_litespeed_url_file` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `url_id` bigint(20) 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(4) NOT NULL COMMENT 'css=1,js=2,ccss=3,ucss=4',
  `mobile` tinyint(4) NOT NULL COMMENT 'mobile=1',
  `webp` tinyint(4) NOT NULL COMMENT 'webp=1',
  `expired` int(11) 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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

--
-- Table structure for table `wpuq_loginizer_logs`
--

CREATE TABLE `wpuq_loginizer_logs` (
  `username` varchar(255) NOT NULL DEFAULT '',
  `time` int(10) NOT NULL DEFAULT 0,
  `count` int(10) NOT NULL DEFAULT 0,
  `lockout` int(10) NOT NULL DEFAULT 0,
  `ip` varchar(255) NOT NULL DEFAULT '',
  `url` varchar(255) NOT NULL DEFAULT '',
  UNIQUE KEY `ip` (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Dumping data for table `wpuq_loginizer_logs`
--

INSERT INTO `wpuq_loginizer_logs` VALUES
('61q4k', 1774372598, 15, 5, '103.105.86.201', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774332570, 12, 4, '104.28.155.23', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774391028, 6, 2, '104.28.157.144', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774318619, 15, 5, '104.28.164.28', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774314804, 15, 5, '104.28.164.37', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774386341, 15, 5, '129.227.238.152', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774289264, 3, 1, '136.109.186.243', 'https://amuurulogistics.com//xmlrpc.php'),
('61q4k', 1774299412, 3, 1, '143.110.190.12', 'https://amuurulogistics.com//xmlrpc.php'),
('61q4k', 1774288168, 6, 2, '156.59.29.229', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774264687, 3, 1, '164.90.135.59', 'https://amuurulogistics.com//xmlrpc.php'),
('61q4k', 1774336874, 1, 0, '173.239.254.100', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774339250, 1, 0, '173.239.254.101', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774339508, 2, 0, '173.239.254.102', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774339012, 1, 0, '173.239.254.104', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774340242, 3, 1, '173.239.254.106', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774337376, 1, 0, '173.239.254.109', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774338885, 2, 0, '173.239.254.111', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774340607, 1, 0, '173.239.254.85', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774340118, 2, 0, '173.239.254.86', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774340732, 2, 0, '173.239.254.87', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774339133, 2, 0, '173.239.254.90', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774339629, 2, 0, '173.239.254.94', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774337125, 2, 0, '173.239.254.98', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774338631, 2, 0, '193.19.109.1', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774340491, 1, 0, '193.19.109.10', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774339993, 1, 0, '193.19.109.14', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774339872, 1, 0, '193.19.109.15', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774337628, 1, 0, '193.19.109.2', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774339378, 1, 0, '193.19.109.3', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774338140, 1, 0, '193.19.109.5', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774340364, 1, 0, '193.19.109.6', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774338507, 2, 0, '193.37.33.214', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774378462, 1, 0, '202.72.235.148', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774345662, 3, 1, '206.189.155.18', 'https://amuurulogistics.com//xmlrpc.php'),
('61q4k', 1774341864, 3, 1, '34.48.47.108', 'https://amuurulogistics.com//xmlrpc.php'),
('61q4k', 1774376145, 3, 1, '35.193.223.158', 'https://amuurulogistics.com//xmlrpc.php'),
('61q4k', 1774310914, 3, 1, '4.206.202.24', 'https://amuurulogistics.com//xmlrpc.php'),
('61q4k', 1774377408, 5, 1, '45.32.50.34', 'https://amuurulogistics.com/wp-login.php'),
('61q4k', 1774365270, 3, 1, '79.127.171.229', 'https://amuurulogistics.com//xmlrpc.php'),
('61q4k', 1774338756, 1, 0, '85.8.130.1', 'https://amuurulogistics.com/wp-login.php');

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

--
-- Table structure for table `wpuq_options`
--

CREATE TABLE `wpuq_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpuq_options`
--

INSERT INTO `wpuq_options` VALUES
(1, 'cron', 'a:11:{i:1774391173;a:1:{s:19:"litespeed_task_lqip";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:16:"litespeed_filter";s:4:"args";a:0:{}s:8:"interval";i:900;}}}i:1774393000;a:1:{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:1774393001;a:3:{s:16:"wp_version_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:17:"wp_update_plugins";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s: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:1774393002;a:1:{s:39:"check_plugin_updates-loginizer-security";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1774393097;a:1:{s:36:"check_plugin_updates-cookieadmin-pro";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1774393127;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:1774436200;a:1:{s:32:"recovery_mode_clean_expired_keys";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1774436297;a:1:{s:18:"extendify_insights";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1774436327;a:2:{s:19:"wp_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}s:25:"delete_expired_transients";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1774954600;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'),
(2, 'siteurl', 'https://amuurulogistics.com', 'on'),
(3, 'home', 'https://amuurulogistics.com', 'on'),
(4, 'blogname', 'My Blog', 'on'),
(5, 'blogdescription', 'My WordPress Blog', 'on'),
(6, 'users_can_register', '0', 'on'),
(7, 'admin_email', 'admin@amuurulogistics.com', 'on'),
(8, 'start_of_week', '1', 'on'),
(9, 'use_balanceTags', '0', 'on'),
(10, 'use_smilies', '1', 'on'),
(11, 'require_name_email', '1', 'on'),
(12, 'comments_notify', '1', 'on'),
(13, 'posts_per_rss', '10', 'on'),
(14, 'rss_use_excerpt', '0', 'on'),
(15, 'mailserver_url', 'mail.example.com', 'on'),
(16, 'mailserver_login', 'login@example.com', 'on'),
(17, 'mailserver_pass', '', 'on'),
(18, 'mailserver_port', '110', 'on'),
(19, 'default_category', '1', 'on'),
(20, 'default_comment_status', 'open', 'on'),
(21, 'default_ping_status', 'open', 'on'),
(22, 'default_pingback_flag', '1', 'on'),
(23, 'posts_per_page', '10', 'on'),
(24, 'date_format', 'F j, Y', 'on'),
(25, 'time_format', 'g:i a', 'on'),
(26, 'links_updated_date_format', 'F j, Y g:i a', 'on'),
(27, 'comment_moderation', '0', 'on'),
(28, 'moderation_notify', '1', 'on'),
(29, 'permalink_structure', '/%postname%/', 'on'),
(30, 'rewrite_rules', 'a:94:{s:11:"^wp-json/?$";s:22:"index.php?rest_route=/";s:14:"^wp-json/(.*)?";s:33:"index.php?rest_route=/$matches[1]";s:21:"^index.php/wp-json/?$";s:22:"index.php?rest_route=/";s:24:"^index.php/wp-json/(.*)?";s:33:"index.php?rest_route=/$matches[1]";s:17:"^wp-sitemap\\.xml$";s:23:"index.php?sitemap=index";s:17:"^wp-sitemap\\.xsl$";s:36:"index.php?sitemap-stylesheet=sitemap";s:23:"^wp-sitemap-index\\.xsl$";s:34:"index.php?sitemap-stylesheet=index";s:48:"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$";s:75:"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]";s:34:"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$";s:47:"index.php?sitemap=$matches[1]&paged=$matches[2]";s:47:"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:42:"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:23:"category/(.+?)/embed/?$";s:46:"index.php?category_name=$matches[1]&embed=true";s:35:"category/(.+?)/page/?([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&paged=$matches[2]";s: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:12:"robots\\.txt$";s:18:"index.php?robots=1";s:13:"favicon\\.ico$";s:19:"index.php?favicon=1";s:12:"sitemap\\.xml";s:23:"index.php?sitemap=index";s:48:".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$";s:18:"index.php?feed=old";s:20:".*wp-app\\.php(/.*)?$";s:19:"index.php?error=403";s:18:".*wp-register.php$";s:23:"index.php?register=true";s:32:"feed/(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:27:"(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:8:"embed/?$";s:21:"index.php?&embed=true";s:20:"page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s: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: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]";s:27:"[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:"[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:33:"[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:16:"([^/]+)/embed/?$";s:37:"index.php?name=$matches[1]&embed=true";s:20:"([^/]+)/trackback/?$";s:31:"index.php?name=$matches[1]&tb=1";s:40:"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?name=$matches[1]&feed=$matches[2]";s:35:"([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?name=$matches[1]&feed=$matches[2]";s:28:"([^/]+)/page/?([0-9]{1,})/?$";s:44:"index.php?name=$matches[1]&paged=$matches[2]";s:35:"([^/]+)/comment-page-([0-9]{1,})/?$";s:44:"index.php?name=$matches[1]&cpage=$matches[2]";s:24:"([^/]+)(?:/([0-9]+))?/?$";s:43:"index.php?name=$matches[1]&page=$matches[2]";s:16:"[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:26:"[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:46:"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:41:"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:41:"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:22:"[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";}', 'on'),
(31, 'hack_file', '0', 'on'),
(32, 'blog_charset', 'UTF-8', 'on'),
(33, 'moderation_keys', '', 'off'),
(34, 'active_plugins', 'a:7:{i:0;s:35:"cookieadmin-pro/cookieadmin-pro.php";i:1;s:27:"cookieadmin/cookieadmin.php";i:2;s:23:"extendify/extendify.php";i:3;s:35:"litespeed-cache/litespeed-cache.php";i:4;s:41:"loginizer-security/loginizer-security.php";i:5;s:23:"loginizer/loginizer.php";i:6;s:35:"nc-extendify-lc/nc-extendify-lc.php";}', 'on'),
(35, 'category_base', '', 'on'),
(36, 'ping_sites', 'https://rpc.pingomatic.com/', 'on'),
(37, 'comment_max_links', '2', 'on'),
(38, 'gmt_offset', '0', 'on'),
(39, 'default_email_category', '1', 'on'),
(40, 'recently_edited', '', 'off'),
(41, 'template', 'extendable', 'on'),
(42, 'stylesheet', 'extendable', 'on'),
(43, 'comment_registration', '0', 'on'),
(44, 'html_type', 'text/html', 'on'),
(45, 'use_trackback', '0', 'on'),
(46, 'default_role', 'subscriber', 'on'),
(47, 'db_version', '60717', 'on'),
(48, 'uploads_use_yearmonth_folders', '1', 'on'),
(49, 'upload_path', '', 'on'),
(50, 'blog_public', '1', 'on'),
(51, 'default_link_category', '2', 'on'),
(52, 'show_on_front', 'posts', 'on'),
(53, 'tag_base', '', 'on'),
(54, 'show_avatars', '1', 'on'),
(55, 'avatar_rating', 'G', 'on'),
(56, 'upload_url_path', '', 'on'),
(57, 'thumbnail_size_w', '150', 'on'),
(58, 'thumbnail_size_h', '150', 'on'),
(59, 'thumbnail_crop', '1', 'on'),
(60, 'medium_size_w', '300', 'on'),
(61, 'medium_size_h', '300', 'on'),
(62, 'avatar_default', 'mystery', 'on'),
(63, 'large_size_w', '1024', 'on'),
(64, 'large_size_h', '1024', 'on'),
(65, 'image_default_link_type', 'none', 'on'),
(66, 'image_default_size', '', 'on'),
(67, 'image_default_align', '', 'on'),
(68, 'close_comments_for_old_posts', '0', 'on'),
(69, 'close_comments_days_old', '14', 'on'),
(70, 'thread_comments', '1', 'on'),
(71, 'thread_comments_depth', '5', 'on'),
(72, 'page_comments', '0', 'on'),
(73, 'comments_per_page', '50', 'on'),
(74, 'default_comments_page', 'newest', 'on'),
(75, 'comment_order', 'asc', 'on'),
(76, 'sticky_posts', 'a:0:{}', 'on'),
(77, 'widget_categories', 'a:0:{}', 'on'),
(78, 'widget_text', 'a:0:{}', 'on'),
(79, 'widget_rss', 'a:0:{}', 'on'),
(80, 'uninstall_plugins', 'a:2:{s:23:"loginizer/loginizer.php";s:22:"loginizer_deactivation";s:35:"litespeed-cache/litespeed-cache.php";s:47:"LiteSpeed\\Activation::uninstall_litespeed_cache";}', 'off'),
(81, 'timezone_string', '', 'on'),
(82, 'page_for_posts', '0', 'on'),
(83, 'page_on_front', '0', 'on'),
(84, 'default_post_format', '0', 'on'),
(85, 'link_manager_enabled', '0', 'on'),
(86, 'finished_splitting_shared_terms', '1', 'on'),
(87, 'site_icon', '0', 'on'),
(88, 'medium_large_size_w', '768', 'on'),
(89, 'medium_large_size_h', '0', 'on'),
(90, 'wp_page_for_privacy_policy', '3', 'on'),
(91, 'show_comments_cookies_opt_in', '1', 'on'),
(92, 'admin_email_lifespan', '1789815400', 'on'),
(93, 'disallowed_keys', '', 'off'),
(94, 'comment_previously_approved', '1', 'on'),
(95, 'auto_plugin_theme_update_emails', 'a:0:{}', 'off'),
(96, 'auto_update_core_dev', 'enabled', 'on'),
(97, 'auto_update_core_minor', 'enabled', 'on'),
(98, 'auto_update_core_major', 'enabled', 'on'),
(99, 'wp_force_deactivated_plugins', 'a:0:{}', 'on'),
(100, 'wp_attachment_pages_enabled', '0', 'on'),
(101, 'wp_notes_notify', '1', 'on'),
(102, 'initial_db_version', '60717', 'on'),
(103, 'wpuq_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:61:{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: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;}}}', 'on'),
(104, 'fresh_site', '1', 'off'),
(105, 'user_count', '1', 'off'),
(106, '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;}', 'auto'),
(107, 'sidebars_widgets', 'a:4:{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";}s:13:"array_version";i:3;}', 'auto'),
(108, 'widget_pages', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(109, 'widget_calendar', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(110, 'widget_archives', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(111, 'widget_media_audio', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(112, 'widget_media_image', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(113, 'widget_media_gallery', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(114, 'widget_media_video', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(115, 'widget_meta', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(116, 'widget_search', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(117, 'widget_recent-posts', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(118, 'widget_recent-comments', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(119, 'widget_tag_cloud', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(120, 'widget_nav_menu', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(121, 'widget_custom_html', 'a:1:{s:12:"_multiwidget";i:1;}', 'auto'),
(122, 'theme_mods_twentytwentyfive', 'a:1:{s:18:"custom_css_post_id";i:-1;}', 'auto'),
(123, 'recovery_keys', 'a:0:{}', 'off'),
(124, '_transient_wp_core_block_css_files', 'a:2:{s:7:"version";s:5:"6.9.4";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'),
(130, '_site_transient_update_themes', 'O:8:"stdClass":5:{s:12:"last_checked";i:1774350300;s:7:"checked";a:4:{s:10:"extendable";s:5:"2.1.3";s:16:"twentytwentyfive";s:3:"1.4";s:16:"twentytwentyfour";s:3:"1.4";s:17:"twentytwentythree";s:3:"1.6";}s:8:"response";a:0:{}s:9:"no_update";a:4:{s:10:"extendable";a:6:{s:5:"theme";s:10:"extendable";s:11:"new_version";s:5:"2.1.3";s:3:"url";s:40:"https://wordpress.org/themes/extendable/";s:7:"package";s:58:"https://downloads.wordpress.org/theme/extendable.2.1.3.zip";s:8:"requires";s:3:"6.6";s:12:"requires_php";s:3:"7.4";}s:16:"twentytwentyfive";a:6:{s:5:"theme";s:16:"twentytwentyfive";s:11:"new_version";s:3:"1.4";s:3:"url";s:46:"https://wordpress.org/themes/twentytwentyfive/";s:7:"package";s:62:"https://downloads.wordpress.org/theme/twentytwentyfive.1.4.zip";s:8:"requires";s:3:"6.7";s:12:"requires_php";s:3:"7.2";}s:16:"twentytwentyfour";a:6:{s:5:"theme";s:16:"twentytwentyfour";s:11:"new_version";s:3:"1.4";s:3:"url";s:46:"https://wordpress.org/themes/twentytwentyfour/";s:7:"package";s:62:"https://downloads.wordpress.org/theme/twentytwentyfour.1.4.zip";s:8:"requires";s:3:"6.4";s:12:"requires_php";s:3:"7.0";}s:17:"twentytwentythree";a:6:{s:5:"theme";s:17:"twentytwentythree";s:11:"new_version";s:3:"1.6";s:3:"url";s:47:"https://wordpress.org/themes/twentytwentythree/";s:7:"package";s:63:"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip";s:8:"requires";s:3:"6.1";s:12:"requires_php";s:3:"5.6";}}s:12:"translations";a:0:{}}', 'off'),
(131, '_transient_wp_styles_for_blocks', 'a:2:{s:4:"hash";s:32:"f561b58775b8246474c6122e7bb95a5f";s:6:"blocks";a:35:{s:11:"core/button";s:0:"";s:14:"core/site-logo";s:0:"";s:18:"core/post-template";s:0:"";s:18:"core/term-template";s:0:"";s:12:"core/columns";s:0:"";s:14:"core/pullquote";s:400:":root :where(.wp-block-pullquote){background-color: var(--wp--preset--color--tertiary);border-color: transparent;border-width: 1px 0;border-style: solid;color: var(--wp--preset--color--foreground);font-size: clamp(0.984em, 0.984rem + ((1vw - 0.2em) * 0.86), 1.5em);line-height: 1.6;margin-top: var(--wp--custom--spacing--large) !important;margin-bottom: var(--wp--custom--spacing--large) !important;}";s:20:"core/comment-content";s:66:":root :where(.wp-block-comment-content){margin-top: 0 !important;}";s:22:"core/comment-edit-link";s:90:":root :where(.wp-block-comment-edit-link){font-size: var(--wp--preset--font-size--small);}";s:23:"core/comment-reply-link";s:116:":root :where(.wp-block-comment-reply-link){font-size: var(--wp--preset--font-size--small);margin-top: 0 !important;}";s:19:"core/comments-title";s:164:":root :where(.wp-block-comments-title){font-size: var(--wp--preset--font-size--large);font-weight: (--wp--custom--typography--font-weight--bold);letter-spacing: 0;}";s:15:"core/navigation";s:83:":root :where(.wp-block-navigation){font-size: var(--wp--preset--font-size--small);}";s:18:"core/post-comments";s:86:":root :where(.wp-block-post-comments){padding-top: var(--wp--custom--spacing--small);}";s:14:"core/post-date";s:130:":root :where(.wp-block-post-date){font-size: var(--wp--preset--font-size--small);text-decoration: none;text-transform: uppercase;}";s:15:"core/post-terms";s:83:":root :where(.wp-block-post-terms){font-size: var(--wp--preset--font-size--small);}";s:32:"b7c958776cf894ff147e343b0c9ddf57";s:92:":root :where(.wp-block-post-terms a:where(:not(.wp-element-button))){text-decoration: none;}";s:32:"eb904b88c81440705e2673cf9a778b66";s:103:":root :where(.wp-block-post-terms a:where(:not(.wp-element-button)):hover){text-decoration: underline;}";s:32:"031f68dc9be57a6b1d71c3b8f35ca859";s:110:":root :where(.wp-block-post-terms a:where(:not(.wp-element-button)):focus){text-decoration: underline dashed;}";s:32:"a93a5317db32dcb37e6632a4942b8dc0";s:142:":root :where(.wp-block-post-terms a:where(:not(.wp-element-button)):active){color: var(--wp--preset--color--secondary);text-decoration: none;}";s:15:"core/post-title";s:0:"";s:32:"bb496d3fcd9be3502ce57ff8281e5687";s:92:":root :where(.wp-block-post-title a:where(:not(.wp-element-button))){text-decoration: none;}";s:32:"12380ab98fdc81351bb32a39bbfc9249";s:103:":root :where(.wp-block-post-title a:where(:not(.wp-element-button)):hover){text-decoration: underline;}";s:32:"db7080b413e40eaaccb138491d6550ee";s:110:":root :where(.wp-block-post-title a:where(:not(.wp-element-button)):focus){text-decoration: underline dashed;}";s:32:"6449d53deb0a7a970244f284c6743423";s:142:":root :where(.wp-block-post-title a:where(:not(.wp-element-button)):active){color: var(--wp--preset--color--secondary);text-decoration: none;}";s:26:"core/query-pagination-next";s:111:":root :where(.wp-block-query-pagination-next){font-weight: var(--wp--custom--typography--font-weight--medium);}";s:29:"core/query-pagination-numbers";s:114:":root :where(.wp-block-query-pagination-numbers){font-weight: var(--wp--custom--typography--font-weight--medium);}";s:32:"8201370c3f1b3c8948995b35f696c435";s:170:":root :where(.wp-block-query-pagination-numbers a:where(:not(.wp-element-button))){padding-top: 0.5rem;padding-right: 0.5rem;padding-bottom: 0.5rem;padding-left: 0.5rem;}";s:30:"core/query-pagination-previous";s:115:":root :where(.wp-block-query-pagination-previous){font-weight: var(--wp--custom--typography--font-weight--medium);}";s:10:"core/quote";s:240:":root :where(.wp-block-quote){border-color: var(--wp--preset--color--primary);border-width: 0 0 0 1px;border-style: solid;margin-top: var(--wp--custom--spacing--large) !important;margin-bottom: var(--wp--custom--spacing--large) !important;}";s:14:"core/separator";s:79:":root :where(.wp-block-separator){color: var(--wp--preset--color--foreground);}";s:15:"core/site-title";s:260:":root :where(.wp-block-site-title){font-family: var(--wp--preset--font-family--heading);font-size: var(--wp--preset--font-size--large);font-weight: var(--wp--custom--typography--font-weight--bold);line-height: var(--wp--custom--typography--line-height--tiny);}";s:18:"core/template-part";s:55:":root :where(.wp-block-template-part){margin-top: 0px;}";s:10:"core/cover";s:0:"";s:10:"core/group";s:0:"";s:10:"core/image";s:0:"";s:15:"core/media-text";s:0:"";}}', 'on'),
(132, 'loginizer_version', '2.0.6', 'auto'),
(133, 'loginizer_options', 'a:0:{}', 'auto'),
(134, 'loginizer_last_reset', '1774350299', 'auto'),
(135, 'loginizer_whitelist', 'a:0:{}', 'auto'),
(136, 'loginizer_blacklist', 'a:0:{}', 'auto'),
(137, 'loginizer_2fa_whitelist', 'a:0:{}', 'auto'),
(138, '_site_transient_update_core', 'O:8:"stdClass":4:{s:7:"updates";a:1:{i:0;O:8:"stdClass":10:{s:8:"response";s:6:"latest";s:8:"download";s:59:"https://downloads.wordpress.org/release/wordpress-6.9.4.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:59:"https://downloads.wordpress.org/release/wordpress-6.9.4.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-6.9.4-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-6.9.4-new-bundled.zip";s:7:"partial";s:0:"";s:8:"rollback";s:0:"";}s:7:"current";s:5:"6.9.4";s:7:"version";s:5:"6.9.4";s:11:"php_version";s:6:"7.2.24";s:13:"mysql_version";s:5:"5.5.5";s:11:"new_bundled";s:3:"6.7";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1774350300;s:15:"version_checked";s:5:"6.9.4";s:12:"translations";a:0:{}}', 'off'),
(140, '_site_transient_update_plugins', 'O:8:"stdClass":5:{s:12:"last_checked";i:1774350300;s:8:"response";a:0:{}s:12:"translations";a:0:{}s:9:"no_update";a:6:{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:27:"cookieadmin/cookieadmin.php";O:8:"stdClass":10:{s:2:"id";s:25:"w.org/plugins/cookieadmin";s:4:"slug";s:11:"cookieadmin";s:6:"plugin";s:27:"cookieadmin/cookieadmin.php";s:11:"new_version";s:5:"1.1.6";s:3:"url";s:42:"https://wordpress.org/plugins/cookieadmin/";s:7:"package";s:60:"https://downloads.wordpress.org/plugin/cookieadmin.1.1.6.zip";s:5:"icons";a:2:{s:2:"2x";s:64:"https://ps.w.org/cookieadmin/assets/icon-256x256.png?rev=3328221";s:2:"1x";s:64:"https://ps.w.org/cookieadmin/assets/icon-128x128.png?rev=3328221";}s:7:"banners";a:2:{s:2:"2x";s:67:"https://ps.w.org/cookieadmin/assets/banner-1544x500.png?rev=3328221";s:2:"1x";s:66:"https://ps.w.org/cookieadmin/assets/banner-772x250.png?rev=3328221";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"4.4";}s:23:"extendify/extendify.php";O:8:"stdClass":10:{s:2:"id";s:23:"w.org/plugins/extendify";s:4:"slug";s:9:"extendify";s:6:"plugin";s:23:"extendify/extendify.php";s:11:"new_version";s:5:"3.0.0";s:3:"url";s:40:"https://wordpress.org/plugins/extendify/";s:7:"package";s:58:"https://downloads.wordpress.org/plugin/extendify.3.0.0.zip";s:5:"icons";a:2:{s:2:"2x";s:62:"https://ps.w.org/extendify/assets/icon-256x256.png?rev=2653704";s:2:"1x";s:62:"https://ps.w.org/extendify/assets/icon-128x128.png?rev=2653704";}s:7:"banners";a:2:{s:2:"2x";s:65:"https://ps.w.org/extendify/assets/banner-1544x500.png?rev=3464662";s:2:"1x";s:64:"https://ps.w.org/extendify/assets/banner-772x250.png?rev=3464662";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"6.5";}s:9:"hello.php";O:8:"stdClass":10:{s:2:"id";s:25:"w.org/plugins/hello-dolly";s:4:"slug";s:11:"hello-dolly";s:6:"plugin";s:9:"hello.php";s:11:"new_version";s:5:"1.7.2";s:3:"url";s:42:"https://wordpress.org/plugins/hello-dolly/";s:7:"package";s:60:"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip";s:5:"icons";a:2:{s:2:"2x";s:64:"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855";s:2:"1x";s:64:"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855";}s:7:"banners";a:2:{s:2:"2x";s:67:"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582";s:2:"1x";s:66:"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"4.6";}s: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:7:"7.8.0.1";s:3:"url";s:46:"https://wordpress.org/plugins/litespeed-cache/";s:7:"package";s:66:"https://downloads.wordpress.org/plugin/litespeed-cache.7.8.0.1.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.6";s:3:"url";s:40:"https://wordpress.org/plugins/loginizer/";s:7:"package";s:58:"https://downloads.wordpress.org/plugin/loginizer.2.0.6.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:7:"checked";a:9:{s:19:"akismet/akismet.php";s:3:"5.6";s:27:"cookieadmin/cookieadmin.php";s:5:"1.1.6";s:35:"cookieadmin-pro/cookieadmin-pro.php";s:5:"1.1.6";s:23:"extendify/extendify.php";s:5:"3.0.0";s:9:"hello.php";s:5:"1.7.2";s:35:"litespeed-cache/litespeed-cache.php";s:7:"7.8.0.1";s:23:"loginizer/loginizer.php";s:5:"2.0.6";s:41:"loginizer-security/loginizer-security.php";s:5:"2.0.6";s:35:"nc-extendify-lc/nc-extendify-lc.php";s:5:"1.0.0";}}', 'off');
INSERT INTO `wpuq_options` VALUES
(141, 'softaculous_pro_license', 'a:14:{s:7:"license";s:30:"SOFTWP-88264-57440-46048-46125";s:7:"expires";s:8:"20260403";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:"1774263401";s:10:"status_txt";s:33:"<font color="green">Active</font>";s:8:"has_plid";i:1;s:11:"last_update";i:1774350299;}', 'yes'),
(142, 'softaculous_pro_rebranding', 'a:4:{s:2:"sn";s:11:"Softaculous";s:8:"logo_url";s:0:"";s:13:"default_hf_bg";N;s:15:"default_hf_text";N;}', 'yes'),
(143, 'loginizer_ins_time', '1774263401', 'auto'),
(144, 'loginizer_free_installed', '1774263401', 'auto'),
(145, 'loginizer_pro_less_than_201', '1', 'auto'),
(146, 'loginizer_version_pro_nag', '1774263401', 'auto'),
(147, 'loginizer_version_free_nag', '1774263401', 'auto'),
(148, 'loginizer_pro_version', '2.0.6', 'auto'),
(149, 'cookieadmin_version', '1.1.6', 'auto'),
(151, 'external_updates-loginizer-security', 'O:8:"stdClass":3:{s:9:"lastCheck";i:1774364197;s:14:"checkedVersion";s:5:"2.0.6";s:6:"update";O:8:"stdClass":11:{s:2:"id";i:0;s:4:"slug";s:18:"loginizer-security";s:7:"version";s:5:"2.0.6";s:8:"homepage";s:20:"http://loginizer.com";s:6:"tested";s:5:"6.7.2";s:12:"download_url";s:136:"https://s5.softaculous.com/a/loginizer/download.php?version=2.0.6&license=SOFTWP-88264-57440-46048-46125&url=https://amuurulogistics.com";s:14:"upgrade_notice";N;s:8:"filename";s:41:"loginizer-security/loginizer-security.php";s:12:"translations";a:0:{}s:5:"icons";a:2:{s:2:"2x";s:50:"https://ps.w.org/loginizer/assets/icon-256x256.png";s:2:"1x";s:50:"https://ps.w.org/loginizer/assets/icon-128x128.png";}s:7:"banners";a:2:{s:2:"2x";s:53:"https://ps.w.org/loginizer/assets/banner-1544x500.jpg";s:2:"1x";s:52:"https://ps.w.org/loginizer/assets/banner-772x250.jpg";}}}', 'off'),
(152, 'cookieadmin_pro_version', '1.1.6', 'auto'),
(153, 'cookieadmin_auto_scan', '1.1.6', 'auto'),
(154, 'loginizer_checksums_last_run', '1774263403', 'auto'),
(155, 'loginizer_checksums_diff', 'a:0:{}', 'auto'),
(156, 'extendify_partner_data', 'a:4:{s:15:"foregroundColor";s:7:"#ffffff";s:15:"backgroundColor";s:7:"#19208f";s:4:"logo";a:1:{i:0;a:1:{s:10:"thumbnails";a:1:{s:5:"large";a:1:{s:3:"url";s:60:"https://images.extendify-cdn.com/partner-logos/namecheap.png";}}}}s:4:"name";s:9:"Namecheap";}', 'auto'),
(157, '_transient_timeout_extendify_partner_data', '1776855497', 'off'),
(158, '_transient_extendify_partner_data', 'a:4:{s:15:"foregroundColor";s:7:"#ffffff";s:15:"backgroundColor";s:7:"#19208f";s:4:"logo";a:1:{i:0;a:1:{s:10:"thumbnails";a:1:{s:5:"large";a:1:{s:3:"url";s:60:"https://images.extendify-cdn.com/partner-logos/namecheap.png";}}}}s:4:"name";s:9:"Namecheap";}', 'off'),
(159, 'extendify_site_id', 'ca05beb0-293d-455f-878d-c7ad2cfb921c', 'auto'),
(160, 'extendify_insights_checkedin_once', '2026-03-23 10:58:17', 'auto'),
(161, 'extendify_run_migrations', 'a:1:{s:6:"1.14.2";b:1;}', 'auto'),
(164, 'extendify_partner_data_v2', 'a:55:{s:16:"showDomainBanner";b:0;s:14:"showDomainTask";b:0;s:25:"showSecondaryDomainBanner";b:0;s:23:"showSecondaryDomainTask";b:0;s:10:"domainTLDs";a:2:{i:0;s:3:"com";i:1;s:3:"net";}s:12:"stagingSites";a:1:{i:0;s:9:"wordpress";}s:15:"domainSearchURL";s:0:"";s:9:"showDraft";s:1:"1";s:8:"showChat";s:1:"1";s:18:"showAIPageCreation";s:1:"1";s:25:"enableImageImports-1-14-6";b:0;s:22:"disableLibraryAutoOpen";b:0;s:16:"enableApexDomain";b:0;s:10:"showLaunch";s:1:"1";s:11:"deactivated";s:0:"";s:21:"launchRedirectWebsite";b:0;s:10:"showAILogo";s:1:"1";s:26:"showProductRecommendations";b:0;s:22:"productRecommendations";a:3:{s:19:"showPartnerBranding";b:0;s:16:"disabledProducts";a:2:{i:0;s:13:"elementor-pro";i:1;s:10:"aioseo-pro";}s:14:"customProducts";a:0:{}}s:7:"license";s:6:"active";s:12:"showAIAgents";s:1:"1";s:11:"showImprint";a:2:{i:0;s:5:"de_DE";i:1;s:5:"fr_FR";}s:19:"showLaunchQuestions";s:1:"1";s:13:"pluginGroupId";a:1:{i:0;s:17:"rec3Dq1MZJJDil3zW";}s:15:"requiredPlugins";a:0:{}s:18:"useAgentOnboarding";b:0;s:23:"hidePluginNotifications";s:1:"1";s:4:"Name";s:9:"Namecheap";s:15:"backgroundColor";s:7:"#19208f";s:18:"suggestedSEOPlugin";a:1:{i:0;s:17:"reciRW83M63UbCMqp";}s:15:"foregroundColor";s:7:"#ffffff";s:24:"suggestedDonationsPlugin";a:1:{i:0;s:17:"recDnFu2Q8UvC6uKI";}s:27:"suggestedAppointmentsPlugin";a:1:{i:0;s:17:"rec9Mm4qE1vXmV9V5";}s:21:"suggestedEventsPlugin";a:1:{i:0;s:17:"recQLbfGdxMUbwLQD";}s:23:"suggestedProductsPlugin";a:1:{i:0;s:17:"recU1hAv8zbrqOu37";}s:20:"suggestedEmailPlugin";a:1:{i:0;s:17:"rec35Bt1fzdt2GLbS";}s:23:"suggestedServicesPlugin";a:1:{i:0;s:17:"recU1hAv8zbrqOu37";}s:9:"PartnerID";s:9:"nmc1j293j";s:5:"logo2";s:60:"https://images.extendify-cdn.com/partner-logos/namecheap.png";s:6:"status";a:1:{i:0;s:6:"active";}s:14:"secondaryColor";s:7:"#19208f";s:27:"blockAffiliate_wpforms-lite";s:1:"1";s:34:"blockAffiliate_all-in-one-seo-pack";s:1:"1";s:45:"blockAffiliate_google-analytics-for-wordpress";s:1:"1";s:10:"showAICopy";s:1:"1";s:17:"showLocalizedCopy";s:1:"1";s:16:"consentTermsHTML";s:78:"By using AI features, you agree to the OpenAI Terms of Use and Privacy Policy.";s:14:"allowedPlugins";a:2:{i:0;s:17:"rec35Bt1fzdt2GLbS";i:1;s:17:"recU1hAv8zbrqOu37";}s:19:"allowedPluginsSlugs";a:2:{i:0;s:12:"wpforms-lite";i:1;s:11:"woocommerce";}s:29:"productRecommendationDisabled";a:2:{i:0;s:17:"recQDWx2vInyihPCH";i:1;s:17:"rec6tru84e59XSlTZ";}s:34:"productRecommendationDisabledSlugs";a:2:{i:0;s:13:"elementor-pro";i:1;s:10:"aioseo-pro";}s:11:"pluginGroup";a:1:{i:0;s:17:"rec3Dq1MZJJDil3zW";}s:13:"Key Decisions";a:4:{s:5:"state";s:5:"error";s:9:"errorType";s:15:"emptyDependency";s:5:"value";s:0:"";s:7:"isStale";s:0:"";}s:4:"logo";a:1:{i:0;a:1:{s:10:"thumbnails";a:1:{s:5:"large";a:1:{s:3:"url";s:60:"https://images.extendify-cdn.com/partner-logos/namecheap.png";}}}}s:18:"consentTermsCustom";s:0:"";}', 'auto'),
(168, 'theme_mods_extendable', 'a:1:{s:18:"custom_css_post_id";i:-1;}', 'auto'),
(169, 'external_updates-cookieadmin-pro', 'O:8:"stdClass":3:{s:9:"lastCheck";i:1774364197;s:14:"checkedVersion";s:5:"1.1.6";s:6:"update";O:8:"stdClass":9:{s:2:"id";i:0;s:4:"slug";s:15:"cookieadmin-pro";s:7:"version";s:5:"1.1.6";s:8:"homepage";s:24:"https://cookieadmin.net/";s:6:"tested";s:5:"6.8.3";s:12:"download_url";s:138:"https://s4.softaculous.com/a/cookieadmin/download.php?version=1.1.6&license=SOFTWP-88264-57440-46048-46125&url=https://amuurulogistics.com";s:14:"upgrade_notice";N;s:8:"filename";s:35:"cookieadmin-pro/cookieadmin-pro.php";s:12:"translations";a:0:{}}}', 'off'),
(172, 'extendify_first_installed_version', '3.0.0', 'auto'),
(173, '_transient_extendify_admin_pages_menu', 'a:67:{i:0;s:9:"index.php";i:1;s:10:"upload.php";i:2;s:36:"edit-tags.php?taxonomy=link_category";i:3;s:17:"edit-comments.php";i:4;s:8:"edit.php";i:5;s:23:"edit.php?post_type=page";i:6;s:10:"themes.php";i:7;s:11:"plugins.php";i:8;s:9:"users.php";i:9;s:9:"tools.php";i:10;s:19:"options-general.php";i:11;s:26:"admin.php?page=cookieadmin";i:12;s:24:"admin.php?page=loginizer";i:13;s:31:"admin.php?page=extendify-assist";i:14;s:9:"index.php";i:15;s:15:"update-core.php";i:16;s:38:"index.php?page=extendify-notifications";i:17;s:10:"upload.php";i:18;s:13:"media-new.php";i:19;s:17:"edit-comments.php";i:20;s:8:"edit.php";i:21;s:12:"post-new.php";i:22;s:31:"edit-tags.php?taxonomy=category";i:23;s:31:"edit-tags.php?taxonomy=post_tag";i:24;s:23:"edit.php?post_type=page";i:25;s:27:"post-new.php?post_type=page";i:26;s:10:"themes.php";i:27;s:15:"site-editor.php";i:28;s:11:"plugins.php";i:29;s:18:"plugin-install.php";i:30;s:9:"users.php";i:31;s:12:"user-new.php";i:32;s:11:"profile.php";i:33;s:9:"tools.php";i:34;s:10:"import.php";i:35;s:10:"export.php";i:36;s:15:"site-health.php";i:37;s:24:"export-personal-data.php";i:38;s:23:"erase-personal-data.php";i:39;s:16:"theme-editor.php";i:40;s:17:"plugin-editor.php";i:41;s:19:"options-general.php";i:42;s:19:"options-writing.php";i:43;s:19:"options-reading.php";i:44;s:22:"options-discussion.php";i:45;s:17:"options-media.php";i:46;s:21:"options-permalink.php";i:47;s:19:"options-privacy.php";i:48;s:36:"edit-tags.php?taxonomy=link_category";i:49;s:26:"admin.php?page=cookieadmin";i:50;s:34:"admin.php?page=cookieadmin-consent";i:51;s:35:"admin.php?page=cookieadmin-settings";i:52;s:39:"admin.php?page=cookieadmin-scan-cookies";i:53;s:39:"admin.php?page=cookieadmin-consent-logs";i:54;s:34:"admin.php?page=cookieadmin-license";i:55;s:24:"admin.php?page=loginizer";i:56;s:36:"admin.php?page=loginizer_brute_force";i:57;s:33:"admin.php?page=loginizer_firewall";i:58;s:37:"admin.php?page=loginizer_passwordless";i:59;s:28:"admin.php?page=loginizer_2fa";i:60;s:34:"admin.php?page=loginizer_recaptcha";i:61;s:28:"admin.php?page=loginizer_sso";i:62;s:37:"admin.php?page=loginizer_social_login";i:63;s:33:"admin.php?page=loginizer_security";i:64;s:34:"admin.php?page=loginizer_checksums";i:65;s:31:"admin.php?page=extendify-launch";i:66;s:36:"admin.php?page=extendify-auto-launch";}', 'on'),
(174, 'extendify_attempted_redirect_count', '1', 'auto'),
(175, 'extendify_attempted_redirect', '2026-03-23 10:58:47', 'auto'),
(179, '_transient_extendify_domains', 'a:0:{}', 'on'),
(180, '_transient_timeout_extendify_recommendations', '1776941928', 'off'),
(181, '_transient_extendify_recommendations', 'a:4:{i:0;a:16:{s:4:"slug";s:17:"promote-your-site";s:5:"title";s:17:"Promote your site";s:11:"description";s:55:"Promote your site with $500 in Google Ad Words credits.";s:8:"linkType";s:12:"externalLink";s:12:"internalLink";s:0:"";s:12:"externalLink";s:37:"https://ads.google.com/home/?pli=1#!/";s:14:"pluginDepSlugs";s:0:"";s:12:"goalDepSlugs";s:0:"";s:12:"taskDepSlugs";s:0:"";s:17:"generalExclusions";s:0:"";s:16:"pluginExclusions";s:0:"";s:12:"showAfterDay";s:0:"";s:8:"priority";s:0:"";s:5:"image";s:70:"https://images.extendify-cdn.com/assist-recommendations/google-ads.png";s:2:"by";s:6:"Google";s:10:"pluginSlug";s:0:"";}i:1;a:16:{s:4:"slug";s:16:"install-site-kit";s:5:"title";s:23:"Install Google Site Kit";s:11:"description";s:55:"Install Google Site Kit to manage your SEO and traffic.";s:8:"linkType";s:12:"internalLink";s:12:"internalLink";s:60:"plugin-install.php?s=Site+Kit+by+Google&tab=search&type=term";s:12:"externalLink";s:0:"";s:14:"pluginDepSlugs";s:0:"";s:12:"goalDepSlugs";s:0:"";s:12:"taskDepSlugs";s:0:"";s:17:"generalExclusions";s:0:"";s:16:"pluginExclusions";a:1:{i:0;s:12:"optinmonster";}s:12:"showAfterDay";s:0:"";s:8:"priority";i:10;s:5:"image";s:76:"https://images.extendify-cdn.com/assist-recommendations/install-site-kit.png";s:2:"by";s:6:"Google";s:10:"pluginSlug";s:15:"google-site-kit";}i:2;a:16:{s:4:"slug";s:11:"create-logo";s:5:"title";s:13:"Create a logo";s:11:"description";s:71:"Create the perfect logo for your site using Adobe''s free logo generator";s:8:"linkType";s:12:"externalLink";s:12:"internalLink";s:0:"";s:12:"externalLink";s:41:"https://www.adobe.com/express/create/logo";s:14:"pluginDepSlugs";s:0:"";s:12:"goalDepSlugs";s:0:"";s:12:"taskDepSlugs";s:0:"";s:17:"generalExclusions";s:0:"";s:16:"pluginExclusions";s:0:"";s:12:"showAfterDay";s:0:"";s:8:"priority";i:11;s:5:"image";s:74:"https://images.extendify-cdn.com/assist-recommendations/adobe_express.webp";s:2:"by";s:5:"Adobe";s:10:"pluginSlug";s:0:"";}i:3;a:16:{s:4:"slug";s:14:"wp-6.5-release";s:5:"title";s:13:"WordPress 6.8";s:11:"description";s:31:"See what''s new in WordPress 6.8";s:8:"linkType";s:12:"externalLink";s:12:"internalLink";s:0:"";s:12:"externalLink";s:44:"https://wordpress.org/download/releases/6-8/";s:14:"pluginDepSlugs";s:0:"";s:12:"goalDepSlugs";s:0:"";s:12:"taskDepSlugs";s:0:"";s:17:"generalExclusions";s:0:"";s:16:"pluginExclusions";s:0:"";s:12:"showAfterDay";s:0:"";s:8:"priority";i:25;s:5:"image";s:63:"https://images.extendify-cdn.com/assist-recommendations/wp.webp";s:2:"by";s:9:"WordPress";s:10:"pluginSlug";s:0:"";}}', 'off'),
(182, '_transient_timeout_extendify_supportArticles', '1776941928', 'off'),
(183, '_transient_extendify_supportArticles', 'a:70:{i:0;a:5:{s:2:"id";i:1;s:4:"cats";a:1:{i:0;s:22:"wordpress-block-editor";}s:4:"slug";s:22:"wordpress-block-editor";s:5:"title";s:22:"WordPress Block Editor";s:7:"summary";s:368:"The WordPress block editor, also known as the Gutenberg editor, is the default editor in WordPress since version 5.0. It allows users to create content using blocks, which are different content elements such as paragraphs, images, videos, and more. The block editor has a top toolbar, a sidebar with settings, and a content area where users can add and arrange blocks.";}i:1;a:5:{s:2:"id";i:15;s:4:"cats";a:1:{i:0;s:17:"site-wide-changes";}s:4:"slug";s:11:"site-editor";s:5:"title";s:11:"Site Editor";s:7:"summary";s:736:"The Site Editor allows you to design your entire website, including the header, footer, and everything in between, using blocks. It is only available when you install and activate a Block theme on your site. To access the Site Editor, go to Appearance > Editor and select the Site Editor option. From there, you can browse your menus, edit styles, edit pages, review templates, and manage patterns. The Site Editor also includes tools such as the Command Palette, List View, and Block Patterns to help you customize your site. You can export your theme with the changes you made in the Site Editor, and there are also useful tools like copy and paste styles, applying style changes globally, and resizing the preview of the Site Editor.";}i:2;a:5:{s:2:"id";i:24;s:4:"cats";a:1:{i:0;s:6:"themes";}s:4:"slug";s:16:"work-with-themes";s:5:"title";s:15:"Themes overview";s:7:"summary";s:282:"A WordPress Theme is a collection of files that work together to create the visual design and layout of a website. It includes template files, image files, style sheets, and code files. Themes can be customized to create different looks for different pages and categories on a site.";}i:3;a:5:{s:2:"id";i:28;s:4:"cats";a:1:{i:0;s:8:"blogging";}s:4:"slug";s:24:"introduction-to-blogging";s:5:"title";s:24:"Introduction to Blogging";s:7:"summary";s:400:"Blogging is the act of regularly sharing information through blogs on the internet. A blog is a website that features diary-type commentary and links to articles, and a blogger is a person who owns or maintains a blog. The quality of blogging is determined by the content and comments, and it is important for bloggers to update their content regularly and engage with their readers through comments.";}i:4;a:5:{s:2:"id";i:2;s:4:"cats";a:1:{i:0;s:22:"wordpress-block-editor";}s:4:"slug";s:11:"blocks-list";s:5:"title";s:18:"Overview of blocks";s:7:"summary";s:285:"The WordPress block editor allows users to add and customize content using different blocks. There are various types of blocks available, including text, media, design, widgets, theme, and embeds. Users can also install additional third-party blocks from the WordPress block directory.";}i:5;a:5:{s:2:"id";i:16;s:4:"cats";a:1:{i:0;s:17:"site-wide-changes";}s:4:"slug";s:15:"styles-overview";s:5:"title";s:12:"Style editor";s:7:"summary";s:689:"Styles is a new feature in WordPress that allows you to set the overall aesthetics and layout of your site at a global level. You can customize the colors, typography, layout, and spacing for the entire site, as well as edit the appearance of individual blocks. To access the Styles panel, you need to install and activate a block theme and be using WordPress 5.9 or higher. From there, you can make changes to the typography, colors, and layout of your site, as well as customize the appearance of specific blocks. You can also use the Styles panel to add custom colors and gradients to your site''s color palette. Additionally, you can use the Styles panel to add custom CSS to your site.";}i:6;a:5:{s:2:"id";i:3;s:4:"cats";a:1:{i:0;s:22:"wordpress-block-editor";}s:4:"slug";s:18:"adding-a-new-block";s:5:"title";s:13:"Adding blocks";s:7:"summary";s:453:"There are several ways to add a block to your post or page in the WordPress block editor. You can use the Block Inserter + icon in the top toolbar, the Block Inserter + icon to the right of an empty block, or the Block Inserter + icon in between blocks. You can also add blocks using a shortcut slash command or the More options on a block''s toolbar. Additionally, you can add blocks within nested blocks and search for blocks using the block directory.";}i:7;a:5:{s:2:"id";i:17;s:4:"cats";a:1:{i:0;s:17:"site-wide-changes";}s:4:"slug";s:15:"template-editor";s:5:"title";s:15:"Template Editor";s:7:"summary";s:268:"The Template Editor allows you to edit and create templates using blocks, which control the layout of posts, pages, or page types on your WordPress site. You can access the Template Editor through the WordPress Block Editor or the Site Editor, depending on your theme.";}i:8;a:5:{s:2:"id";i:25;s:4:"cats";a:1:{i:0;s:6:"themes";}s:4:"slug";s:12:"block-themes";s:5:"title";s:12:"Block themes";s:7:"summary";s:274:"Block themes are a new type of theme in WordPress that use blocks for all parts of a site, allowing for easy customization without changing themes. They replace widgets with blocks and do not use the Customizer, offering more control over the design and layout of a website.";}i:9;a:5:{s:2:"id";i:29;s:4:"cats";a:1:{i:0;s:8:"blogging";}s:4:"slug";s:12:"posts-screen";s:5:"title";s:16:"Posts admin menu";s:7:"summary";s:291:"The Posts Screen in a blog allows users to manage and edit posts. Users can filter and search for specific posts, and there is a bulk edit feature that allows users to edit multiple posts at once. However, it is not possible to change or delete categories or tags for a set of posts in bulk.";}i:10;a:5:{s:2:"id";i:4;s:4:"cats";a:1:{i:0;s:22:"wordpress-block-editor";}s:4:"slug";s:13:"block-pattern";s:5:"title";s:14:"Block Patterns";s:7:"summary";s:327:"Block Patterns are pre-designed collections of blocks that can be inserted into posts and pages in WordPress. They can be customized with your own content and are a time-saving way to create interesting and visually appealing content. You can find more patterns in the Block Pattern Directory and even create your own patterns.";}i:11;a:5:{s:2:"id";i:5;s:4:"cats";a:1:{i:0;s:22:"wordpress-block-editor";}s:4:"slug";s:23:"block-pattern-directory";s:5:"title";s:23:"Block Pattern Directory";s:7:"summary";s:263:"The Block Pattern Directory is a resource for content creators to find and use block patterns on their websites. Users can search for patterns, copy them to their clipboard, and customize them as needed. There is also an option to report any issues with patterns.";}i:12;a:5:{s:2:"id";i:6;s:4:"cats";a:1:{i:0;s:22:"wordpress-block-editor";}s:4:"slug";s:15:"block-directory";s:5:"title";s:15:"Block Directory";s:7:"summary";s:326:"The Block Directory is a new feature in the block editor that allows users to discover and install new blocks for their website. Users can search for blocks, preview them, and choose which ones to add to their page. Blocks from the Block Directory are installed as plugins, and users can uninstall or reinstall them as needed.";}i:13;a:5:{s:2:"id";i:7;s:4:"cats";a:1:{i:0;s:22:"wordpress-block-editor";}s:4:"slug";s:13:"moving-blocks";s:5:"title";s:13:"Moving blocks";s:7:"summary";s:425:"There are three ways to move or change the position of a block in the WordPress Block Editor: using the move handles, drag & drop, or using the Move to option in the Block toolbar. The move handles are the up and down arrow handles in the Block toolbar, drag & drop can be done by clicking and holding the rectangle of dots in the Block toolbar, and the Move to option can be found in the three-dot menu in the Block toolbar.";}i:14;a:5:{s:2:"id";i:8;s:4:"cats";a:1:{i:0;s:22:"wordpress-block-editor";}s:4:"slug";s:9:"list-view";s:5:"title";s:9:"List view";s:7:"summary";s:326:"List View is a new tool in the WordPress editor that allows users to navigate between layers of content and nested blocks. It helps users easily select and view all the blocks that make up their content, and allows for actions such as dragging and dropping blocks, making changes to individual blocks, and collapsing sections.";}i:15;a:5:{s:2:"id";i:9;s:4:"cats";a:1:{i:0;s:22:"wordpress-block-editor";}s:4:"slug";s:31:"how-to-use-the-preview-function";s:5:"title";s:14:"Preview a page";s:7:"summary";s:232:"The View button in the WordPress Block Editor and Site Editor allows you to preview your changes on different devices such as desktop, tablet, and mobile. You can also choose to preview the page or site in a new tab on your browser.";}i:16;a:5:{s:2:"id";i:10;s:4:"cats";a:1:{i:0;s:22:"wordpress-block-editor";}s:4:"slug";s:31:"keyboard-shortcuts-block-editor";s:5:"title";s:34:"Keyboard Shortcuts in Block Editor";s:7:"summary";s:356:"WordPress visual (block) editor provides several keyboard shortcuts for performing tasks without using the mouse. These shortcuts include switching between the visual and code editor, toggling fullscreen mode, navigating through the editor, selecting and manipulating blocks, and formatting text. The shortcuts are available for both Windows and Mac users.";}i:17;a:5:{s:2:"id";i:18;s:4:"cats";a:1:{i:0;s:17:"site-wide-changes";}s:4:"slug";s:19:"template-part-block";s:5:"title";s:19:"Template Part Block";s:7:"summary";s:330:"The Template Part block is an advanced block introduced in WordPress 5.9 that can be used to organize and display site structure. It is best used to create areas like site headers and footers, and when you change blocks inside a template part, the editor updates the blocks on every block template that includes the template part.";}i:18;a:5:{s:2:"id";i:11;s:4:"cats";a:1:{i:0;s:22:"wordpress-block-editor";}s:4:"slug";s:20:"preferences-overview";s:5:"title";s:16:"Preferences menu";s:7:"summary";s:287:"The Preferences feature in the WordPress Block Editor and Site Editor allows users to customize their editing experience by turning on/off various options. Users can customize publishing options, appearance, block interactions, and panels to create a layout that suits their preferences.";}i:19;a:5:{s:2:"id";i:12;s:4:"cats";a:1:{i:0;s:22:"wordpress-block-editor";}s:4:"slug";s:26:"page-post-settings-sidebar";s:5:"title";s:16:"Settings sidebar";s:7:"summary";s:356:"The Page/Post settings sidebar in the WordPress Block Editor allows users to customize various aspects of their page or post, such as visibility, publish date, URL, template, and more. It is accessed by clicking on the gear icon in the upper-right corner of the editor and can vary depending on whether you are working on a page, post, or custom post type.";}i:20;a:5:{s:2:"id";i:23;s:4:"cats";a:1:{i:0;s:17:"site-wide-changes";}s:4:"slug";s:26:"create-a-static-front-page";s:5:"title";s:26:"Create a Static Front Page";s:7:"summary";s:352:"A Static Front Page is a specific page used as the home page of a WordPress site, instead of displaying a list of posts. To set up a Static Front Page, you need to create a page for the home page and another empty page for the posts page, then go to Settings > Reading and select the static page for the home page and the empty page for the posts page.";}i:21;a:5:{s:2:"id";i:13;s:4:"cats";a:1:{i:0;s:22:"wordpress-block-editor";}s:4:"slug";s:15:"reusable-blocks";s:5:"title";s:15:"Reusable Blocks";s:7:"summary";s:476:"The Synced Pattern feature in WordPress allows you to create reusable blocks that can be edited and updated in multiple locations. You can create a Synced Pattern by selecting the block or blocks you want to turn into a pattern, clicking on the three-dot menu, and choosing "Create pattern/reusable block." Once created, you can use the Synced Pattern in your content and make changes to it either directly in a post or page or through the Options > Manage Patterns interface.";}i:22;a:5:{s:2:"id";i:26;s:4:"cats";a:1:{i:0;s:6:"themes";}s:4:"slug";s:10:"customizer";s:5:"title";s:19:"Customizer (legacy)";s:7:"summary";s:359:"WordPress Version 3.4 introduced Theme Customizer, which allows users to preview and make changes to their website''s appearance before publishing them. Users can customize various aspects such as colors, backgrounds, and image headers. The Customizer is only available if the active theme supports it, and each theme may have a different Customizer interface.";}i:23;a:5:{s:2:"id";i:27;s:4:"cats";a:1:{i:0;s:6:"themes";}s:4:"slug";s:24:"manage-wordpress-widgets";s:5:"title";s:16:"Widgets (legacy)";s:7:"summary";s:265:"WordPress Widgets are tools that allow users to add content and features to their website''s sidebars. They can be easily added, removed, and rearranged through the WordPress Administration Screens, and can be customized to include forms, images, and other features.";}i:24;a:5:{s:2:"id";i:14;s:4:"cats";a:1:{i:0;s:22:"wordpress-block-editor";}s:4:"slug";s:16:"work-with-blocks";s:5:"title";s:16:"Work with blocks";s:7:"summary";s:540:"The WordPress Block Editor allows users to create media-rich pages and posts by using blocks, which are the building blocks of content. Each block has its own toolbar and settings sidebar, allowing for easy customization and control over the layout and appearance of the block. Blocks can be added anywhere on a post or page using the Block Inserter, and there are a variety of blocks available for different types of content. Users can also lock and unlock blocks, remove blocks, and find blocks or block patterns using the Block Inserter.";}i:25;a:5:{s:2:"id";i:30;s:4:"cats";a:1:{i:0;s:8:"blogging";}s:4:"slug";s:20:"customize-permalinks";s:5:"title";s:20:"Customize Permalinks";s:7:"summary";s:328:"Permalinks are the permanent URLs of your posts, pages, categories, and other archive pages on your website. They help create a URL structure that is easy for both humans and search engines to understand and share. There are three types of WordPress permalinks: Plain Permalinks, Pretty Permalinks, and Almost Pretty Permalinks.";}i:26;a:5:{s:2:"id";i:31;s:4:"cats";a:1:{i:0;s:8:"blogging";}s:4:"slug";s:21:"comments-in-wordpress";s:5:"title";s:8:"Comments";s:7:"summary";s:291:"WordPress allows users to enable comments on their website, which allows visitors to have discussions with each other and the website owner. The comments are displayed on the Comments dashboard in the WordPress admin area, where the website owner can approve, reply to, or edit the comments.";}i:27;a:5:{s:2:"id";i:32;s:4:"cats";a:1:{i:0;s:8:"blogging";}s:4:"slug";s:18:"comment-moderation";s:5:"title";s:18:"Comment Moderation";s:7:"summary";s:258:"Comment moderation in WordPress allows you to manually approve or delete comments before they appear on your site. You can control which comments are held for moderation by setting rules based on factors such as the number of hyperlinks or specific keywords.";}i:28;a:5:{s:2:"id";i:33;s:4:"cats";a:1:{i:0;s:8:"blogging";}s:4:"slug";s:17:"posts-tags-screen";s:5:"title";s:9:"Post tags";s:7:"summary";s:830:"In WordPress, tags are used to categorize posts and aid in navigation. They are displayed under each post and can be clicked on to view all posts with that tag. Tags can be managed in the Posts Tag Screen, where new tags can be created and existing ones can be edited or deleted. The Popular Tags section displays the most used tags, and the Add New Tag section allows for the creation of new tags. The Table of Tags lists all tags alphabetically and provides options for editing and deleting tags. The Screen Options tab allows for customization of the displayed columns, and the search box can be used to search for specific tags. Actions can be performed on tags, such as bulk deletion or immediate editing. Quick Edit allows for quick changes to tag information, and the Edit Tag screen provides more detailed editing options.";}i:29;a:5:{s:2:"id";i:34;s:4:"cats";a:1:{i:0;s:8:"blogging";}s:4:"slug";s:12:"create-pages";s:5:"title";s:12:"Create Pages";s:7:"summary";s:403:"In WordPress, you can create content for your website as either a Post or a Page. Posts are for time-dependent content and appear in reverse chronological order on your blog''s home page, while Pages are for non-chronological content and are often used for timeless information about yourself or your site. Pages can be organized into parent and child pages, and you can create as many pages as you want.";}i:30;a:5:{s:2:"id";i:35;s:4:"cats";a:1:{i:0;s:23:"administrative-settings";}s:4:"slug";s:25:"users-your-profile-screen";s:5:"title";s:12:"Your profile";s:7:"summary";s:282:"The Your Profile screen in WordPress allows users to specify their name, email address, personal information, and personal options. The only required information is the email address and a nickname, and all other information is optional and not shared with any other site or person.";}i:31;a:5:{s:2:"id";i:36;s:4:"cats";a:1:{i:0;s:23:"administrative-settings";}s:4:"slug";s:22:"roles-and-capabilities";s:5:"title";s:10:"User roles";s:7:"summary";s:211:"WordPress uses a concept of Roles to control what users can do on a site. There are six pre-defined roles, each with a set of capabilities, and additional capabilities can be assigned or removed using functions.";}i:32;a:5:{s:2:"id";i:37;s:4:"cats";a:1:{i:0;s:23:"administrative-settings";}s:4:"slug";s:23:"settings-general-screen";s:5:"title";s:13:"Settings menu";s:7:"summary";s:348:"The General Settings screen in the WordPress administration allows you to configure basic settings for your site, such as the site title, tagline, URL, email address, membership options, site language, timezone, date format, and time format. You can make changes to these settings and save them to your database by clicking the Save Changes button.";}i:33;a:5:{s:2:"id";i:38;s:4:"cats";a:1:{i:0;s:23:"administrative-settings";}s:4:"slug";s:23:"settings-reading-screen";s:5:"title";s:21:"Reading settings menu";s:7:"summary";s:313:"The Reading Settings Screen allows you to choose whether you want your latest posts or a static page to be displayed as your website''s home page. You can also adjust the number of posts displayed on the home page and customize how information from your site is sent to readers'' web browsers or other applications.";}i:34;a:5:{s:2:"id";i:39;s:4:"cats";a:1:{i:0;s:23:"administrative-settings";}s:4:"slug";s:22:"administration-screens";s:5:"title";s:22:"Administration Screens";s:7:"summary";s:341:"The Administration Screen in WordPress provides access to the control features of your WordPress installation. It is divided into sections, including the toolbar, main navigation, work area, and footer, and allows you to perform various administrative functions such as creating new posts, managing comments, and updating plugins and themes.";}i:35;a:5:{s:2:"id";i:40;s:4:"cats";a:1:{i:0;s:23:"administrative-settings";}s:4:"slug";s:16:"dashboard-screen";s:5:"title";s:9:"Dashboard";s:7:"summary";s:329:"The Dashboard screen in WordPress provides an overview of your site''s content and allows you to access different areas of the WordPress community. It includes default widgets such as At a Glance, Activity, Quick Draft, WordPress Events and News, and Welcome, but you can also add or remove widgets using the Screen Options panel.";}i:36;a:5:{s:2:"id";i:19;s:4:"cats";a:1:{i:0;s:23:"administrative-settings";}s:4:"slug";s:23:"two-step-authentication";s:5:"title";s:23:"Two Step Authentication";s:7:"summary";s:287:"Two-step authentication, also known as Two-Factor Authentication, is becoming more popular as websites look for better ways to secure logins. It involves using two of the three possible factors to prove your identity, such as something you know (password) and something you have (phone).";}i:37;a:5:{s:2:"id";i:20;s:4:"cats";a:1:{i:0;s:5:"media";}s:4:"slug";s:20:"media-library-screen";s:5:"title";s:13:"Media library";s:7:"summary";s:389:"The Media Library in WordPress is where you can manage and edit all the media files (images, videos, recordings, etc.) that you have uploaded to your blog. You can view, delete, and search for media items, as well as perform bulk actions such as deleting multiple items at once. The Media Library provides two views: a grid view with thumbnails and a list view with a table of media items.";}i:38;a:5:{s:2:"id";i:21;s:4:"cats";a:1:{i:0;s:5:"media";}s:4:"slug";s:20:"media-add-new-screen";s:5:"title";s:13:"Add new media";s:7:"summary";s:201:"The Media Add New Screen allows you to upload media files for later use in your posts and pages. You can upload files one at a time or in bulk using the Multi-File Uploader or Browser Uploader methods.";}i:39;a:5:{s:2:"id";i:22;s:4:"cats";a:1:{i:0;s:7:"plugins";}s:4:"slug";s:14:"manage-plugins";s:5:"title";s:14:"Manage Plugins";s:7:"summary";s:330:"WordPress plugins are PHP scripts that extend the functionality of WordPress, allowing users to customize their websites with additional features. They can be easily installed and are available for free in the WordPress Plugin Directory. Some popular plugin categories include spam control, SEO, e-commerce, security, and caching.";}i:40;a:5:{s:2:"id";i:41;s:4:"cats";a:1:{i:0;s:7:"plugins";}s:4:"slug";s:16:"must-use-plugins";s:5:"title";s:10:"mu-plugins";s:7:"summary";s:363:"Must-use plugins are plugins that are automatically enabled on all sites in a WordPress installation and cannot be disabled except by removing the plugin file from the must-use directory. These plugins do not appear in the default list of plugins and have some limitations, such as not being able to use activation hooks and not appearing in update notifications.";}i:41;a:5:{s:2:"id";i:42;s:4:"cats";a:1:{i:0;s:8:"advanced";}s:4:"slug";s:20:"assign-custom-fields";s:5:"title";s:13:"Custom Fields";s:7:"summary";s:307:"WordPress allows post authors to assign custom fields, also known as metadata, to a post. This metadata can include information such as mood, currently reading, and weather. Users can add custom fields to a post by enabling the Custom Fields option in the post editor and entering the desired key and value.";}i:42;a:5:{s:2:"id";i:43;s:4:"cats";a:1:{i:0;s:8:"advanced";}s:4:"slug";s:17:"what-is-post-type";s:5:"title";s:10:"Post Types";s:7:"summary";s:303:"WordPress has different types of content called post types, including posts, pages, attachments, revisions, menus, custom CSS, and changesets. Users can also create custom post types to organize their content, and can customize the display of these post types using template files and post type queries.";}i:43;a:5:{s:2:"id";i:44;s:4:"cats";a:1:{i:0;s:8:"advanced";}s:4:"slug";s:10:"taxonomies";s:5:"title";s:10:"Taxonomies";s:7:"summary";s:434:"Taxonomies in WordPress are a way of grouping posts together based on relationships. By default, WordPress has two taxonomies called Categories and Tags, but you can remove or change them and even add more. Taxonomies have terms, which are like children, and you can create your own taxonomies and terms in WordPress. You can also extend the functionality of taxonomies and their terms to improve categorization and filtering options.";}i:44;a:5:{s:2:"id";i:45;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:15:"paragraph-block";s:5:"title";s:15:"Paragraph block";s:7:"summary";s:596:"The Paragraph block is a basic building block in WordPress that allows you to add text content to a post or page. It offers various formatting options such as bold, italics, and strikethrough, as well as the ability to add links, inline images, and highlight text. The block toolbar for the Paragraph block includes options to transform the block into different types of blocks, move the block within the editor, change text alignment, and access more rich text editing options. Additionally, the Paragraph block has settings options for color, typography, dimensions, and advanced customization.";}i:45;a:5:{s:2:"id";i:46;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:13:"heading-block";s:5:"title";s:13:"Heading block";s:7:"summary";s:622:"This article provides instructions on how to add and customize heading blocks in the WordPress Block Editor. It explains how to add headings using the Block Inserter or by typing specific commands, and it also covers the various options available in the heading block toolbar, such as transforming the block, changing alignment and heading level, and adding formatting options like bold, italic, and links. Additionally, the article discusses the block settings available in the editor sidebar, including color customization, typography settings, dimension controls, and advanced options like HTML anchors and CSS classes.";}i:46;a:5:{s:2:"id";i:47;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:10:"list-block";s:5:"title";s:10:"List block";s:7:"summary";s:169:"The List Block in WordPress allows you to create bulleted or numbered lists. You can customize the list items by using options such as bold, italic, hyperlink, and more.";}i:47;a:5:{s:2:"id";i:48;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:11:"quote-block";s:5:"title";s:11:"Quote block";s:7:"summary";s:396:"This article provides instructions on how to use the Quote block in WordPress. It explains how to add the Quote block to a page, as well as the various toolbar icons and options available for manipulating the block. It also covers the block settings, including styles, color, typography, dimensions, and advanced options. The article concludes with a changelog of updates made to the Quote block.";}i:48;a:5:{s:2:"id";i:49;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:13:"classic-block";s:5:"title";s:13:"Classic block";s:7:"summary";s:200:"The classic block is a block version of the classic editor, with custom TinyMCE buttons. You can add a classic block by clicking on the Block Inserter icon or typing /classic in a new paragraph block.";}i:49;a:5:{s:2:"id";i:50;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:10:"code-block";s:5:"title";s:10:"Code block";s:7:"summary";s:422:"The Code block in WordPress allows you to add and display code snippets. You can add the Code block by using the block inserter or typing /code in the editor. The block has various options for customization, including transforming it into different block types, bolding and italicizing text, adding links, and more. You can also customize the color, typography, dimensions, border, and advanced settings of the Code block.";}i:50;a:5:{s:2:"id";i:51;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:18:"preformatted-block";s:5:"title";s:18:"Preformatted block";s:7:"summary";s:246:"The Preformatted Block in WordPress allows you to display text exactly as you type it, with spacing and line breaks preserved. It has similarities to the Paragraph Block and Code Block, but also includes styling and the ability to add hyperlinks.";}i:51;a:5:{s:2:"id";i:52;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:15:"pullquote-block";s:5:"title";s:15:"Pullquote block";s:7:"summary";s:236:"The pullquote block in WordPress allows you to add emphasis to text by creating a visually appealing snippet. You can customize the appearance of the pullquote block by changing its alignment, style, color, typography, border, and more.";}i:52;a:5:{s:2:"id";i:53;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:11:"table-block";s:5:"title";s:11:"Table block";s:7:"summary";s:427:"The Table block in WordPress allows users to easily create tables in their posts or pages. The block toolbar for the Table block includes buttons for transforming the block, moving it, aligning it, changing column alignment, bolding and italicizing text, adding links, and more. Users can also customize the table''s style, settings, color, typography, dimensions, border, and add advanced HTML anchor or additional CSS classes.";}i:53;a:5:{s:2:"id";i:54;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:11:"verse-block";s:5:"title";s:11:"Verse block";s:7:"summary";s:227:"The Verse block is used for writing poetry on a website. It has various toolbar icons and user controls for manipulating the block, such as changing text alignment, adding bold or italic formatting, adding hyperlinks, and more.";}i:54;a:5:{s:2:"id";i:55;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:13:"buttons-block";s:5:"title";s:13:"Buttons block";s:7:"summary";s:209:"The Buttons block in WordPress allows you to add one or more buttons to your page or post. You can customize the text, link, and style of each button, and there are various layout and design options available.";}i:55;a:5:{s:2:"id";i:56;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:13:"columns-block";s:5:"title";s:13:"Columns block";s:7:"summary";s:269:"The Columns Block in WordPress allows you to create a grid effect by inserting text, media, and other content into columns. You can add or remove columns, customize the alignment and vertical alignment, and change the color, typography, dimensions, and border settings.";}i:56;a:5:{s:2:"id";i:57;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:11:"group-block";s:5:"title";s:11:"Group block";s:7:"summary";s:244:"The Group block in WordPress allows you to group different blocks together and customize them with background colors, spacing, and more. You can add a Group block by clicking on the Block Inserter icon or typing /group in a new paragraph block.";}i:57;a:5:{s:2:"id";i:58;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:9:"row-block";s:5:"title";s:9:"Row block";s:7:"summary";s:354:"The Row block in the WordPress editor allows you to arrange blocks horizontally. It has various toolbar icons that allow you to manipulate the block, such as transforming it into different block types, dragging and moving it, changing justification and alignment, and customizing its settings like color, typography, dimensions, border, and advanced CSS.";}i:58;a:5:{s:2:"id";i:59;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:11:"stack-block";s:5:"title";s:11:"Stack block";s:7:"summary";s:493:"The Stack block is a container block that can be used to nest other blocks vertically. It can be transformed into a Group or Row block without changing the content. The block toolbar for the Stack block includes options to transform the block, move it within the editor, change the justification and alignment of items, and adjust the width. The block settings panel allows for further customization of the block''s layout, position, color, typography, dimensions, border, and advanced options.";}i:59;a:5:{s:2:"id";i:60;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:10:"more-block";s:5:"title";s:10:"More block";s:7:"summary";s:188:"The More block is used to display a "Read More" link on the blog home page or archive pages. It truncates the blog entries and directs readers to the full post when they click on the link.";}i:60;a:5:{s:2:"id";i:61;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:16:"page-break-block";s:5:"title";s:16:"Page break block";s:7:"summary";s:222:"The page break block allows you to separate your content into multiple pages and add pagination. You can add as many page breaks as you want, and each one adds a new number to the multi-page link at the bottom of the page.";}i:61;a:5:{s:2:"id";i:62;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:15:"separator-block";s:5:"title";s:15:"Separator block";s:7:"summary";s:588:"The separator block in WordPress creates a horizontal line to separate content. It can be added using the Block Inserter or by typing /separator in a new paragraph block. The block toolbar allows you to transform the separator block into columns or a group block, change the style and alignment, and access more options such as copying and editing the block as HTML. The block settings in the sidebar allow you to customize the style, color, dimensions, and add advanced options such as HTML anchor and CSS class. The changelog provides information on updates made to the separator block.";}i:62;a:5:{s:2:"id";i:63;s:4:"cats";a:1:{i:0;s:6:"blocks";}s:4:"slug";s:12:"spacer-block";s:5:"title";s:12:"Spacer block";s:7:"summary";s:392:"The Spacer block in WordPress allows you to add space between two blocks. You can modify the spacer block by using the block toolbar, which includes options to transform the block, drag it to a new location, and move it up and down within your document. The block settings panel allows you to adjust the height of the spacer block and add HTML anchor and CSS class(es) to customize the block.";}i:63;a:5:{s:2:"id";i:64;s:4:"cats";a:2:{i:0;s:6:"blocks";i:1;s:5:"media";}s:4:"slug";s:11:"image-block";s:5:"title";s:11:"Image block";s:7:"summary";s:318:"This article provides instructions on how to add and customize image blocks in the WordPress editor. It explains how to add images using the Add Block button or the slash command, and how to resize and align images. It also covers features such as captions, link settings, image editing, adding text overlay, and more.";}i:64;a:5:{s:2:"id";i:65;s:4:"cats";a:2:{i:0;s:6:"blocks";i:1;s:5:"media";}s:4:"slug";s:13:"gallery-block";s:5:"title";s:13:"Gallery block";s:7:"summary";s:188:"The Gallery block in WordPress allows you to add multiple photos and arrange them in a gallery. You can control the number of columns, image size, and add captions and links to the images.";}i:65;a:5:{s:2:"id";i:66;s:4:"cats";a:2:{i:0;s:6:"blocks";i:1;s:5:"media";}s:4:"slug";s:11:"audio-block";s:5:"title";s:11:"Audio block";s:7:"summary";s:207:"The audio block allows you to embed music, podcasts, or other sound files into your page or post. You can upload a file from your computer, select a file from your media library, or insert a file from a URL.";}i:66;a:5:{s:2:"id";i:67;s:4:"cats";a:2:{i:0;s:6:"blocks";i:1;s:5:"media";}s:4:"slug";s:11:"cover-block";s:5:"title";s:11:"Cover block";s:7:"summary";s:224:"The Cover block in WordPress allows you to add an image or video with a text overlay. You can customize the block by adding media, changing alignment, resizing, and adjusting settings such as background color and typography.";}i:67;a:5:{s:2:"id";i:68;s:4:"cats";a:2:{i:0;s:6:"blocks";i:1;s:5:"media";}s:4:"slug";s:10:"file-block";s:5:"title";s:10:"File block";s:7:"summary";s:297:"This article provides instructions on how to add a File block to a post or page on WordPress. It explains how to upload files, edit file names, copy file URLs, and customize the block using the toolbar icons and block settings. The article also includes a changelog with updates to the File block.";}i:68;a:5:{s:2:"id";i:69;s:4:"cats";a:2:{i:0;s:6:"blocks";i:1;s:5:"media";}s:4:"slug";s:16:"media-text-block";s:5:"title";s:16:"Media text block";s:7:"summary";s:256:"The Media & Text block allows you to place an image or video side-by-side with text. You can add content, align the block, insert links, replace the media file, and customize the block''s settings such as color, typography, dimensions, and advanced options.";}i:69;a:5:{s:2:"id";i:70;s:4:"cats";a:2:{i:0;s:6:"blocks";i:1;s:5:"media";}s:4:"slug";s:11:"video-block";s:5:"title";s:11:"Video block";s:7:"summary";s:574:"The Video block allows you to upload and embed videos into your post or page. You can choose to upload a new video file, select a file from your media library, or insert a URL from a supported block type like YouTube. The block toolbar provides options to transform the Video block into other block types, move the block, change alignment, add text tracks, replace the video file, and access more options. The block settings panel allows you to customize autoplay, loop, mute, play inline, playback controls, preload, poster image, dimensions, HTML element, and CSS classes.";}}', 'off'),
(186, 'extendify_launch_loaded', '2026-03-23T10:58:49.716Z', 'auto'),
(187, 'can_compress_scripts', '1', 'on'),
(188, 'extendify_user_selections', 'a:2:{s:5:"state";a:8:{s:8:"siteType";a:2:{s:4:"slug";s:8:"0default";s:4:"name";s:7:"Default";}s:11:"siteProfile";a:4:{s:10:"aiSiteType";s:0:"";s:14:"aiSiteCategory";s:0:"";s:13:"aiDescription";s:0:"";s:10:"aiKeywords";a:0:{}}s:15:"siteInformation";a:1:{s:5:"title";s:7:"My Blog";}s:19:"businessInformation";a:3:{s:11:"description";s:0:"";s:5:"tones";a:0:{}s:11:"acceptTerms";s:0:"";}s:6:"siteQA";a:2:{s:10:"showHidden";s:0:"";s:9:"questions";a:0:{}}s:7:"attempt";i:1;s:11:"sitePlugins";a:0:{}s:13:"urlParameters";a:6:{s:5:"title";s:0:"";s:11:"description";s:0:"";s:9:"objective";s:0:"";s:9:"structure";s:0:"";s:4:"tone";s:0:"";s:4:"skip";s:0:"";}}s:7:"version";i:0;}', 'auto'),
(189, 'extendify_site_profile', '', 'auto'),
(192, 'finished_updating_comment_type', '1', 'auto'),
(196, 'loginizer_login_attempt_stats', 'a:24:{i:1774263600;a:1:{i:0;i:3;}i:1774281600;a:1:{i:0;i:3;}i:1774285200;a:1:{i:0;i:3;}i:1774288800;a:1:{i:0;i:10;}i:1774292400;a:1:{i:0;i:7;}i:1774296000;a:1:{i:0;i:3;}i:1774306800;a:1:{i:0;i:3;}i:1774310400;a:1:{i:0;i:8;}i:1774314000;a:1:{i:0;i:5;}i:1774317600;a:1:{i:0;i:3;}i:1774324800;a:1:{i:0;i:2;}i:1774328400;a:1:{i:0;i:7;}i:1774332000;a:1:{i:0;i:3;}i:1774335600;a:1:{i:0;i:21;}i:1774339200;a:1:{i:0;i:16;}i:1774342800;a:1:{i:0;i:3;}i:1774364400;a:1:{i:0;i:9;}i:1774368000;a:1:{i:0;i:6;}i:1774371600;a:1:{i:0;i:5;}i:1774375200;a:1:{i:0;i:7;}i:1774378800;a:1:{i:0;i:6;}i:1774382400;a:1:{i:0;i:7;}i:1774386000;a:1:{i:0;i:5;}i:1774389600;a:1:{i:0;i:3;}}', 'off'),
(394, 'category_children', 'a:0:{}', 'auto'),
(522, 'litespeed.conf._version', '7.8.0.1', 'auto'),
(523, 'litespeed.conf.hash', 'TIYDBS4w9ic52Xd80lfUmE0tTtrfy46u', 'auto'),
(524, 'litespeed.conf.api_key', '', 'auto'),
(525, 'litespeed.conf.auto_upgrade', '', 'auto'),
(526, 'litespeed.conf.server_ip', '', 'auto'),
(527, 'litespeed.conf.guest', '', 'auto'),
(528, 'litespeed.conf.guest_optm', '', 'auto'),
(529, 'litespeed.conf.news', '1', 'auto'),
(530, 'litespeed.conf.cache', '1', 'auto'),
(531, 'litespeed.conf.cache-priv', '1', 'auto'),
(532, 'litespeed.conf.cache-commenter', '1', 'auto'),
(533, 'litespeed.conf.cache-rest', '1', 'auto'),
(534, 'litespeed.conf.cache-page_login', '1', 'auto'),
(535, 'litespeed.conf.cache-mobile', '', 'auto'),
(536, 'litespeed.conf.cache-mobile_rules', '["Mobile","Android","Silk\\/","Kindle","BlackBerry","Opera Mini","Opera Mobi"]', 'auto'),
(537, 'litespeed.conf.cache-browser', '', 'auto'),
(538, 'litespeed.conf.cache-exc_useragents', '[]', 'auto'),
(539, 'litespeed.conf.cache-exc_cookies', '[]', 'auto'),
(540, 'litespeed.conf.cache-exc_qs', '[]', 'auto'),
(541, 'litespeed.conf.cache-exc_cat', '[]', 'auto'),
(542, 'litespeed.conf.cache-exc_tag', '[]', 'auto'),
(543, 'litespeed.conf.cache-force_uri', '[]', 'auto'),
(544, 'litespeed.conf.cache-force_pub_uri', '[]', 'auto'),
(545, 'litespeed.conf.cache-priv_uri', '[]', 'auto'),
(546, 'litespeed.conf.cache-exc', '[]', 'auto'),
(547, 'litespeed.conf.cache-exc_roles', '[]', 'auto'),
(548, 'litespeed.conf.cache-drop_qs', '["fbclid","gclid","utm*","_ga"]', 'auto'),
(549, 'litespeed.conf.cache-ttl_pub', '604800', 'auto'),
(550, 'litespeed.conf.cache-ttl_priv', '1800', 'auto'),
(551, 'litespeed.conf.cache-ttl_frontpage', '604800', 'auto'),
(552, 'litespeed.conf.cache-ttl_feed', '604800', 'auto'),
(553, 'litespeed.conf.cache-ttl_rest', '604800', 'auto'),
(554, 'litespeed.conf.cache-ttl_browser', '31557600', 'auto'),
(555, 'litespeed.conf.cache-ttl_status', '["404 3600","500 600"]', 'auto'),
(556, 'litespeed.conf.cache-login_cookie', '', 'auto');
INSERT INTO `wpuq_options` VALUES
(557, 'litespeed.conf.cache-ajax_ttl', '[]', 'auto'),
(558, 'litespeed.conf.cache-vary_cookies', '[]', 'auto'),
(559, 'litespeed.conf.cache-vary_group', '[]', 'auto'),
(560, 'litespeed.conf.purge-upgrade', '', 'auto'),
(561, 'litespeed.conf.purge-stale', '', 'auto'),
(562, 'litespeed.conf.purge-post_all', '', 'auto'),
(563, 'litespeed.conf.purge-post_f', '1', 'auto'),
(564, 'litespeed.conf.purge-post_h', '1', 'auto'),
(565, 'litespeed.conf.purge-post_p', '1', 'auto'),
(566, 'litespeed.conf.purge-post_pwrp', '1', 'auto'),
(567, 'litespeed.conf.purge-post_a', '1', 'auto'),
(568, 'litespeed.conf.purge-post_y', '', 'auto'),
(569, 'litespeed.conf.purge-post_m', '1', 'auto'),
(570, 'litespeed.conf.purge-post_d', '', 'auto'),
(571, 'litespeed.conf.purge-post_t', '1', 'auto'),
(572, 'litespeed.conf.purge-post_pt', '1', 'auto'),
(573, 'litespeed.conf.purge-timed_urls', '[]', 'auto'),
(574, 'litespeed.conf.purge-timed_urls_time', '', 'auto'),
(575, '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'),
(576, 'litespeed.conf.esi', '', 'auto'),
(577, 'litespeed.conf.esi-cache_admbar', '1', 'auto'),
(578, 'litespeed.conf.esi-cache_commform', '1', 'auto'),
(579, 'litespeed.conf.esi-nonce', '["stats_nonce","subscribe_nonce"]', 'auto'),
(580, 'litespeed.conf.util-instant_click', '', 'auto'),
(581, 'litespeed.conf.util-no_https_vary', '', 'auto'),
(582, 'litespeed.conf.debug-disable_all', '', 'auto'),
(583, 'litespeed.conf.debug', '0', 'auto'),
(584, 'litespeed.conf.debug-ips', '["127.0.0.1"]', 'auto'),
(585, 'litespeed.conf.debug-level', '', 'auto'),
(586, 'litespeed.conf.debug-filesize', '3', 'auto'),
(587, 'litespeed.conf.debug-collapse_qs', '', 'auto'),
(588, 'litespeed.conf.debug-inc', '[]', 'auto'),
(589, 'litespeed.conf.debug-exc', '[]', 'auto'),
(590, 'litespeed.conf.debug-exc_strings', '[]', 'auto'),
(591, 'litespeed.conf.db_optm-revisions_max', '0', 'auto'),
(592, 'litespeed.conf.db_optm-revisions_age', '0', 'auto'),
(593, 'litespeed.conf.optm-css_min', '', 'auto'),
(594, 'litespeed.conf.optm-css_comb', '', 'auto'),
(595, 'litespeed.conf.optm-css_comb_ext_inl', '1', 'auto'),
(596, 'litespeed.conf.optm-ucss', '', 'auto'),
(597, 'litespeed.conf.optm-ucss_inline', '', 'auto'),
(598, 'litespeed.conf.optm-ucss_whitelist', '[]', 'auto'),
(599, 'litespeed.conf.optm-ucss_file_exc_inline', '[]', 'auto'),
(600, 'litespeed.conf.optm-ucss_exc', '[]', 'auto'),
(601, 'litespeed.conf.optm-css_exc', '[]', 'auto'),
(602, 'litespeed.conf.optm-js_min', '', 'auto'),
(603, 'litespeed.conf.optm-js_comb', '', 'auto'),
(604, 'litespeed.conf.optm-js_comb_ext_inl', '1', 'auto'),
(605, 'litespeed.conf.optm-js_delay_inc', '[]', 'auto'),
(606, 'litespeed.conf.optm-js_exc', '["jquery.js","jquery.min.js"]', 'auto'),
(607, 'litespeed.conf.optm-html_min', '', 'auto'),
(608, 'litespeed.conf.optm-html_lazy', '[]', 'auto'),
(609, 'litespeed.conf.optm-html_skip_comment', '[]', 'auto'),
(610, 'litespeed.conf.optm-qs_rm', '', 'auto'),
(611, 'litespeed.conf.optm-ggfonts_rm', '', 'auto'),
(612, 'litespeed.conf.optm-css_async', '', 'auto'),
(613, 'litespeed.conf.optm-ccss_per_url', '', 'auto'),
(614, 'litespeed.conf.optm-ccss_sep_posttype', '["page"]', 'auto'),
(615, 'litespeed.conf.optm-ccss_sep_uri', '[]', 'auto'),
(616, 'litespeed.conf.optm-ccss_whitelist', '[]', 'auto'),
(617, 'litespeed.conf.optm-css_async_inline', '1', 'auto'),
(618, 'litespeed.conf.optm-css_font_display', '', 'auto'),
(619, 'litespeed.conf.optm-js_defer', '0', 'auto'),
(620, 'litespeed.conf.optm-emoji_rm', '', 'auto'),
(621, 'litespeed.conf.optm-noscript_rm', '', 'auto'),
(622, 'litespeed.conf.optm-ggfonts_async', '', 'auto'),
(623, 'litespeed.conf.optm-exc_roles', '[]', 'auto'),
(624, 'litespeed.conf.optm-ccss_con', '', 'auto'),
(625, 'litespeed.conf.optm-js_defer_exc', '["jquery.js","jquery.min.js","gtm.js","analytics.js"]', 'auto'),
(626, 'litespeed.conf.optm-gm_js_exc', '[]', 'auto'),
(627, 'litespeed.conf.optm-dns_prefetch', '[]', 'auto'),
(628, 'litespeed.conf.optm-dns_prefetch_ctrl', '', 'auto'),
(629, 'litespeed.conf.optm-dns_preconnect', '[]', 'auto'),
(630, 'litespeed.conf.optm-exc', '[]', 'auto'),
(631, 'litespeed.conf.optm-guest_only', '1', 'auto'),
(632, 'litespeed.conf.object', '', 'auto'),
(633, 'litespeed.conf.object-kind', '', 'auto'),
(634, 'litespeed.conf.object-host', 'localhost', 'auto'),
(635, 'litespeed.conf.object-port', '11211', 'auto'),
(636, 'litespeed.conf.object-life', '360', 'auto'),
(637, 'litespeed.conf.object-persistent', '1', 'auto'),
(638, 'litespeed.conf.object-admin', '1', 'auto'),
(639, 'litespeed.conf.object-db_id', '0', 'auto'),
(640, 'litespeed.conf.object-user', '', 'auto'),
(641, 'litespeed.conf.object-pswd', '', 'auto'),
(642, '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'),
(643, 'litespeed.conf.object-non_persistent_groups', '["comment","counts","plugins","wc_session_id"]', 'auto'),
(644, 'litespeed.conf.discuss-avatar_cache', '', 'auto'),
(645, 'litespeed.conf.discuss-avatar_cron', '', 'auto'),
(646, 'litespeed.conf.discuss-avatar_cache_ttl', '604800', 'auto'),
(647, 'litespeed.conf.optm-localize', '', 'auto'),
(648, 'litespeed.conf.optm-localize_domains', '["### Popular scripts ###","https:\\/\\/platform.twitter.com\\/widgets.js","https:\\/\\/connect.facebook.net\\/en_US\\/fbevents.js"]', 'auto'),
(649, 'litespeed.conf.media-lazy', '', 'auto'),
(650, 'litespeed.conf.media-lazy_placeholder', '', 'auto'),
(651, 'litespeed.conf.media-placeholder_resp', '', 'auto'),
(652, 'litespeed.conf.media-placeholder_resp_color', '#cfd4db', 'auto'),
(653, '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'),
(654, 'litespeed.conf.media-lqip', '', 'auto'),
(655, 'litespeed.conf.media-lqip_qual', '4', 'auto'),
(656, 'litespeed.conf.media-lqip_min_w', '150', 'auto'),
(657, 'litespeed.conf.media-lqip_min_h', '150', 'auto'),
(658, 'litespeed.conf.media-placeholder_resp_async', '1', 'auto'),
(659, 'litespeed.conf.media-iframe_lazy', '', 'auto'),
(660, 'litespeed.conf.media-add_missing_sizes', '', 'auto'),
(661, 'litespeed.conf.media-lazy_exc', '[]', 'auto'),
(662, 'litespeed.conf.media-lazy_cls_exc', '["wmu-preview-img"]', 'auto'),
(663, 'litespeed.conf.media-lazy_parent_cls_exc', '[]', 'auto'),
(664, 'litespeed.conf.media-iframe_lazy_cls_exc', '[]', 'auto'),
(665, 'litespeed.conf.media-iframe_lazy_parent_cls_exc', '[]', 'auto'),
(666, 'litespeed.conf.media-lazy_uri_exc', '[]', 'auto'),
(667, 'litespeed.conf.media-lqip_exc', '[]', 'auto'),
(668, 'litespeed.conf.media-vpi', '', 'auto'),
(669, 'litespeed.conf.media-vpi_cron', '', 'auto'),
(670, 'litespeed.conf.media-auto_rescale_ori', '', 'auto'),
(671, 'litespeed.conf.img_optm-auto', '', 'auto'),
(672, 'litespeed.conf.img_optm-ori', '1', 'auto'),
(673, 'litespeed.conf.img_optm-rm_bkup', '', 'auto'),
(674, 'litespeed.conf.img_optm-webp', '0', 'auto'),
(675, 'litespeed.conf.img_optm-lossless', '', 'auto'),
(676, 'litespeed.conf.img_optm-sizes_skipped', '[]', 'auto'),
(677, 'litespeed.conf.img_optm-exif', '1', 'auto'),
(678, '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'),
(679, 'litespeed.conf.img_optm-webp_replace_srcset', '', 'auto'),
(680, 'litespeed.conf.img_optm-jpg_quality', '82', 'auto'),
(681, 'litespeed.conf.crawler', '', 'auto'),
(682, 'litespeed.conf.crawler-crawl_interval', '302400', 'auto'),
(683, 'litespeed.conf.crawler-load_limit', '1', 'auto'),
(684, 'litespeed.conf.crawler-sitemap', '', 'auto'),
(685, 'litespeed.conf.crawler-roles', '[]', 'auto'),
(686, 'litespeed.conf.crawler-cookies', '[]', 'auto'),
(687, 'litespeed.conf.misc-heartbeat_front', '', 'auto'),
(688, 'litespeed.conf.misc-heartbeat_front_ttl', '60', 'auto'),
(689, 'litespeed.conf.misc-heartbeat_back', '', 'auto'),
(690, 'litespeed.conf.misc-heartbeat_back_ttl', '60', 'auto'),
(691, 'litespeed.conf.misc-heartbeat_editor', '', 'auto'),
(692, 'litespeed.conf.misc-heartbeat_editor_ttl', '15', 'auto'),
(693, 'litespeed.conf.cdn', '', 'auto'),
(694, 'litespeed.conf.cdn-ori', '[]', 'auto'),
(695, 'litespeed.conf.cdn-ori_dir', '["https:\\/\\/amuurulogistics.com\\/wp-content","wp-includes"]', 'auto'),
(696, 'litespeed.conf.cdn-exc', '[]', 'auto'),
(697, 'litespeed.conf.cdn-quic', '', 'auto'),
(698, 'litespeed.conf.cdn-cloudflare', '', 'auto'),
(699, 'litespeed.conf.cdn-cloudflare_email', '', 'auto'),
(700, 'litespeed.conf.cdn-cloudflare_key', '', 'auto'),
(701, 'litespeed.conf.cdn-cloudflare_name', '', 'auto'),
(702, 'litespeed.conf.cdn-cloudflare_zone', '', 'auto'),
(703, 'litespeed.conf.cdn-cloudflare_clear', '', 'auto'),
(704, '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'),
(705, 'litespeed.conf.cdn-attr', '[".src",".data-src",".href",".poster","source.srcset"]', 'auto'),
(706, 'litespeed.conf.qc-nameservers', '', 'auto'),
(707, 'litespeed.conf.qc-cname', '', 'auto'),
(708, 'litespeed.conf.debug-disable_tmp', '0', 'auto'),
(709, 'litespeed.purge.queue', '-1', 'auto'),
(710, 'litespeed.purge.queue2', '-1', 'auto'),
(733, 'litespeed.admin_display.thirdparty_litespeed_check', '1', 'auto'),
(766, '_site_transient_timeout_theme_roots', '1774352099', 'off'),
(767, '_site_transient_theme_roots', 'a:4:{s:10:"extendable";s:7:"/themes";s:16:"twentytwentyfive";s:7:"/themes";s:16:"twentytwentyfour";s:7:"/themes";s:17:"twentytwentythree";s:7:"/themes";}', 'off'),
(768, '_site_transient_timeout_php_check_0fbbe329bc0ccd676924cb4c767b781d', '1774955099', 'off'),
(769, '_site_transient_php_check_0fbbe329bc0ccd676924cb4c767b781d', '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'),
(770, '_transient_health-check-site-status-result', '{"good":20,"recommended":4,"critical":0}', 'on'),
(854, '_site_transient_timeout_wp_theme_files_patterns-d495843b29e068f4104f7a9ead68336b', '1774392284', 'off'),
(855, '_site_transient_wp_theme_files_patterns-d495843b29e068f4104f7a9ead68336b', 'a:2:{s:7:"version";s:5:"2.1.3";s:8:"patterns";a:20:{s:30:"footer-call-to-action-dark.php";a:4:{s:5:"title";s:27:"Dark Footer, Call to Action";s:4:"slug";s:37:"extendable/footer-call-to-action-dark";s:11:"description";s:0:"";s:10:"categories";a:1:{i:0;s:6:"footer";}}s:25:"footer-call-to-action.php";a:4:{s:5:"title";s:35:"Footer with logo and two column nav";s:4:"slug";s:35:"extendable/footer-logo-desc-two-nav";s:11:"description";s:0:"";s:10:"categories";a:1:{i:0;s:6:"footer";}}s:18:"footer-default.php";a:4:{s:5:"title";s:32:"Footer (Logo, Copyright, Social)";s:4:"slug";s:25:"extendable/footer-default";s:11:"description";s:0:"";s:10:"categories";a:1:{i:0;s:6:"footer";}}s:28:"footer-logo-desc-two-nav.php";a:4:{s:5:"title";s:22:"Footer, Call to Action";s:4:"slug";s:32:"extendable/footer-call-to-action";s:11:"description";s:0:"";s:10:"categories";a:1:{i:0;s:6:"footer";}}s:19:"footer-logo-nav.php";a:4:{s:5:"title";s:32:"Footer, Logo and Navigation TEST";s:4:"slug";s:26:"extendable/footer-logo-nav";s:11:"description";s:0:"";s:10:"categories";a:1:{i:0;s:6:"footer";}}s:38:"footer-offset-heading-buttons-dark.php";a:4:{s:5:"title";s:43:"Dark Footer with offset heading and buttons";s:4:"slug";s:45:"extendable/footer-offset-heading-buttons-dark";s:11:"description";s:0:"";s:10:"categories";a:1:{i:0;s:6:"footer";}}s:41:"footer-offset-heading-buttons-primary.php";a:4:{s:5:"title";s:38:"Footer with offset heading and buttons";s:4:"slug";s:48:"extendable/footer-offset-heading-buttons-primary";s:11:"description";s:0:"";s:10:"categories";a:1:{i:0;s:6:"footer";}}s:33:"footer-offset-heading-buttons.php";a:4:{s:5:"title";s:48:"Footer with offset heading and buttons (Primary)";s:4:"slug";s:40:"extendable/footer-offset-heading-buttons";s:11:"description";s:0:"";s:10:"categories";a:1:{i:0;s:6:"footer";}}s:15:"general-cta.php";a:4:{s:5:"title";s:14:"Call to action";s:4:"slug";s:22:"extendable/general-cta";s:11:"description";s:0:"";s:10:"categories";a:1:{i:0;s:4:"text";}}s:18:"header-default.php";a:4:{s:5:"title";s:37:"Header (Logo, Site Title, Navigation)";s:4:"slug";s:25:"extendable/header-default";s:11:"description";s:0:"";s:10:"categories";a:1:{i:0;s:6:"header";}}s:27:"header-title-nav-button.php";a:4:{s:5:"title";s:39:"Header (Site Title, Navigation, Button)";s:4:"slug";s:34:"extendable/header-title-nav-button";s:11:"description";s:0:"";s:10:"categories";a:1:{i:0;s:6:"header";}}s:27:"header-title-social-nav.php";a:4:{s:5:"title";s:39:"Header (Site Title, Social, Navigation)";s:4:"slug";s:34:"extendable/header-title-social-nav";s:11:"description";s:0:"";s:10:"categories";a:1:{i:0;s:6:"header";}}s:14:"hidden-404.php";a:4:{s:5:"title";s:18:"404 error content.";s:4:"slug";s:21:"extendable/hidden-404";s:11:"description";s:0:"";s:8:"inserter";b:0;}s:22:"hidden-no-products.php";a:4:{s:5:"title";s:11:"No products";s:4:"slug";s:29:"extendable/hidden-no-products";s:11:"description";s:0:"";s:8:"inserter";b:0;}s:21:"hidden-no-results.php";a:4:{s:5:"title";s:10:"No results";s:4:"slug";s:28:"extendable/hidden-no-results";s:11:"description";s:0:"";s:8:"inserter";b:0;}s:29:"hidden-order-confirmation.php";a:4:{s:5:"title";s:18:"Order Confirmation";s:4:"slug";s:36:"extendable/hidden-order-confirmation";s:11:"description";s:0:"";s:8:"inserter";b:0;}s:17:"hidden-search.php";a:4:{s:5:"title";s:6:"Search";s:4:"slug";s:24:"extendable/hidden-search";s:11:"description";s:0:"";s:8:"inserter";b:0;}s:23:"hidden-shop-product.php";a:4:{s:5:"title";s:12:"Shop product";s:4:"slug";s:30:"extendable/hidden-shop-product";s:11:"description";s:0:"";s:8:"inserter";b:0;}s:31:"hidden-woo-related-products.php";a:4:{s:5:"title";s:16:"Related-Products";s:4:"slug";s:38:"extendable/hidden-woo-related-products";s:11:"description";s:0:"";s:8:"inserter";b:0;}s:15:"posts-1-col.php";a:5:{s:5:"title";s:23:"List of posts, 1 column";s:4:"slug";s:22:"extendable/posts-1-col";s:11:"description";s:0:"";s:10:"categories";a:1:{i:0;s:5:"query";}s:10:"blockTypes";a:1:{i:0;s:10:"core/query";}}}}', 'off');

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

--
-- Table structure for table `wpuq_postmeta`
--

CREATE TABLE `wpuq_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpuq_postmeta`
--

INSERT INTO `wpuq_postmeta` VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default');

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

--
-- Table structure for table `wpuq_posts`
--

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

--
-- Dumping data for table `wpuq_posts`
--

INSERT INTO `wpuq_posts` VALUES
(1, 1, '2026-03-23 10:56:40', '2026-03-23 10:56:40', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2026-03-23 10:56:40', '2026-03-23 10:56:40', '', 0, 'https://amuurulogistics.com/?p=1', 0, 'post', '', 1),
(2, 1, '2026-03-23 10:56:40', '2026-03-23 10:56:40', '<!-- 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">\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n</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">\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n</blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href="https://amuurulogistics.com/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2026-03-23 10:56:40', '2026-03-23 10:56:40', '', 0, 'https://amuurulogistics.com/?page_id=2', 0, 'page', '', 0),
(3, 1, '2026-03-23 10:56:40', '2026-03-23 10:56:40', '<!-- wp:heading -->\n<h2 class="wp-block-heading">Who we are</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>Our website address is: https://amuurulogistics.com.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Comments</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Media</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Cookies</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Embedded content from other websites</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Who we share your data with</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">How long we retain your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">What rights you have over your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Where your data is sent</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->\n', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2026-03-23 10:56:40', '2026-03-23 10:56:40', '', 0, 'https://amuurulogistics.com/?page_id=3', 0, 'page', '', 0),
(4, 0, '2026-03-23 10:56:41', '2026-03-23 10:56:41', '<!-- wp:page-list /-->', 'Navigation', '', 'publish', 'closed', 'closed', '', 'navigation', '', '', '2026-03-23 10:56:41', '2026-03-23 10:56:41', '', 0, 'https://amuurulogistics.com/2026/03/23/navigation/', 0, 'wp_navigation', '', 0),
(5, 1, '2026-03-23 10:58:48', '2026-03-23 10:58:48', '{"version": 3, "isGlobalStylesUserThemeJSON": true }', 'Custom Styles', '', 'publish', 'closed', 'closed', '', 'wp-global-styles-extendable', '', '', '2026-03-23 10:58:48', '2026-03-23 10:58:48', '', 0, 'https://amuurulogistics.com/wp-global-styles-extendable/', 0, 'wp_global_styles', '', 0);

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

--
-- Table structure for table `wpuq_termmeta`
--

CREATE TABLE `wpuq_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

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

--
-- Table structure for table `wpuq_terms`
--

CREATE TABLE `wpuq_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpuq_terms`
--

INSERT INTO `wpuq_terms` VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'extendable', 'extendable', 0);

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

--
-- Table structure for table `wpuq_term_relationships`
--

CREATE TABLE `wpuq_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpuq_term_relationships`
--

INSERT INTO `wpuq_term_relationships` VALUES
(1, 1, 0),
(5, 2, 0);

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

--
-- Table structure for table `wpuq_term_taxonomy`
--

CREATE TABLE `wpuq_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpuq_term_taxonomy`
--

INSERT INTO `wpuq_term_taxonomy` VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'wp_theme', '', 0, 1);

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

--
-- Table structure for table `wpuq_usermeta`
--

CREATE TABLE `wpuq_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpuq_usermeta`
--

INSERT INTO `wpuq_usermeta` VALUES
(1, 1, 'nickname', '61q4k'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'fresh'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'wpuq_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(13, 1, 'wpuq_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', ''),
(15, 1, 'show_welcome_panel', '1'),
(16, 1, 'session_tokens', 'a:1:{s:64:"67db56d6eabf02731ead4da802abd7ed946a96c3e292b7439c79775786db787d";a:4:{s:10:"expiration";i:1774436327;s:2:"ip";s:11:"107.4.72.58";s:2:"ua";s:117:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36";s:5:"login";i:1774263527;}}'),
(17, 1, 'wp_persisted_preferences', 'a:3:{s:14:"core/edit-post";a:1:{s:12:"welcomeGuide";b:0;}s:4:"core";a:1:{s:24:"enableChoosePatternModal";b:0;}s:9:"_modified";s:24:"2026-03-23T10:58:47.000Z";}');

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

--
-- Table structure for table `wpuq_users`
--

CREATE TABLE `wpuq_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpuq_users`
--

INSERT INTO `wpuq_users` VALUES
(1, '61q4k', '$wp$2y$10$R9ak83PaYmn24v4DiPyPeuj8daMKdd.KUgOb00U/CFlD6PlzjDxRm', '61q4k', 'admin@amuurulogistics.com', 'https://amuurulogistics.com', '2026-03-23 10:56:40', '', 0, '61q4k');

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

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